- vimj_cut.pl
- F_XXX.BIN & F_XXX.IDX からファイルを取り出します
- vimj_sss2s14.pl
- MIDステレオの楽曲データ(*.SSS)を2つの *.S14 ファイルに分割します
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Maruamyu\Imas\Constants; | |
/** | |
* @lisence MIT | |
*/ | |
class Line | |
{ | |
/** @var string[] packageId => name */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
# ユーティリティ | |
class Maruamyu_Imas_Core_Util | |
{ | |
# アイドル名, 声優名, アイドルならtrue | |
public static $IDOL_LIST = array( | |
'har' => array('天海春香', '中村繪里子', true), | |
'chi' => array('如月千早', '今井麻美', true), | |
'yuk' => array('萩原雪歩', '浅倉杏美', true), |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/*! | |
* jQuery.isExist | |
* written by mirai-iro. | |
* https://gist.github.com/mirai-iro/11401781 | |
* Released under the MIT license. | |
*/ | |
(function($){ | |
$.fn.isExist = function(){ | |
return($(this).length > 0); | |
} |