マスタエディタ:ペアレンタルコントロールの読み込み時チェック作成中。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2322 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-08-29 08:48:15 +00:00
parent 801d2c0bee
commit ccc9d4894d
8 changed files with 315 additions and 87 deletions

View File

@ -3071,7 +3071,7 @@ private: System::Windows::Forms::GroupBox^ gboxMakeMaster;
this->Controls->Add(this->gboxSrl);
this->Controls->Add(this->tboxMsg);
this->Name = L"Form1";
this->Text = L"MasterEditor for TWL";
this->Text = L"TWL MasterEditor";
this->gboxSrl->ResumeLayout(false);
this->gboxSrl->PerformLayout();
this->gboxCRC->ResumeLayout(false);

View File

@ -68,6 +68,14 @@ ECSrlResult RCSrl::readFromFile( System::String ^filename )
(void)fclose(fp);
return r;
}
}
// ROMヘッダの値をROM固有情報フィールドに反映させる
(void)this->setRomInfo();
// すべて設定したあとにMRC
{
ECSrlResult r;
r = this->mrc( fp );
if( r != ECSrlResult::NOERROR )
{
@ -76,10 +84,6 @@ ECSrlResult RCSrl::readFromFile( System::String ^filename )
}
}
(void)fclose( fp );
// ROMヘッダの値をROM固有情報フィールドに反映させる
(void)this->setRomInfo();
return (ECSrlResult::NOERROR);
}
@ -876,27 +880,6 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
// ROMヘッダのチェック (TWL専用領域)
// 値チェック
u32 region = this->pRomHeader->s.card_region_bitmap;
if( (region != METWL_MASK_REGION_JAPAN) &&
(region != METWL_MASK_REGION_AMERICA) &&
(region != METWL_MASK_REGION_EUROPE) &&
(region != (METWL_MASK_REGION_EUROPE | METWL_MASK_REGION_AUSTRALIA)) )
{
#if defined(METWL_VER_APPTYPE_SYSTEM) || defined(METWL_VER_APPTYPE_SECURE) || defined(METWL_VER_APPTYPE_LAUNCHER)
if( region != METWL_MASK_REGION_ALL ) // オールリージョンを許す
{
this->hErrorList->Add( gcnew RCMRCError(
"カードリージョン", 0x1b0, 0x1b3, "仕向地の組み合わせが不正です。本ツールを用いて修正できます。",
"Card Region", "Illigal Region. This tool can modify this information.", true ) );
}
#else
{
this->hErrorList->Add( gcnew RCMRCError(
"カードリージョン", 0x1b0, 0x1b3, "仕向地の組み合わせが不正です。本ツールを用いて修正できます。",
"Card Region", "Illigal Region. This tool can modify this information.", true ) );
}
#endif
}
{
u32 idH;
u8 idL[4];
@ -975,14 +958,14 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
{
this->hErrorList->Add( gcnew RCMRCError(
"アクセスコントロール情報", 0x1b4, 0x1b7, "ゲームカード電源設定にーマルモードとNTRモードの両方を設定することはできません。",
"Access Control Info.", "Game card power setting is either normal mode or NTR mode.", true ) );
"Access Control Info.", "Game card power setting is either normal mode or NTR mode.", false ) );
}
if( ((this->pRomHeader->s.titleID_Hi & TITLE_ID_HI_MEDIA_MASK) == 0) && // カードアプリ
((this->pRomHeader->s.access_control.game_card_on != 0) || (this->pRomHeader->s.access_control.game_card_nitro_mode != 0)) )
{
this->hErrorList->Add( gcnew RCMRCError(
"アクセスコントロール情報", 0x1b4, 0x1b7, "ゲームカード用ソフトに対してゲームカード電源設定をすることはできません。",
"Access Control Info.", "Game card power setting is not for Game Card Soft.", true ) );
"Access Control Info.", "Game card power setting is not for Game Card Soft.", false ) );
}
if( this->pRomHeader->s.access_control.shared2_file == 0 )
{
@ -992,7 +975,7 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
{
this->hErrorList->Add( gcnew RCMRCError(
"アクセスコントロール情報", 0x1b4, 0x1b7, "Shared2ファイルのサイズが設定されているにもかかわらず不使用設定になっています。",
"Access Control Info.", "Sizes of shared2 files is setting, but using them is not enabled.", true ) );
"Access Control Info.", "Sizes of shared2 files is setting, but using them is not enabled.", false ) );
}
}
@ -1000,7 +983,7 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
{
this->hWarnList->Add( gcnew RCMRCError(
"SCFG設定", 0x1b8, 0x1bb, "SCFGレジスタへアクセス可能になっています。",
"SCFG Setting", "In this setting, SCFG register is accessible.", true ) );
"SCFG Setting", "In this setting, SCFG register is accessible.", false ) );
}
if( (this->pRomHeader->s.titleID_Lo[0] != this->pRomHeader->s.game_code[3]) ||
@ -1010,7 +993,7 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
{
this->hWarnList->Add( gcnew RCMRCError(
"タイトルID", 0x230, 0x233, "下位4バイトがイニシャルコードと一致しません。",
"Title ID", "Lower 4 bytes don't match ones of Game Code.", true ) );
"Title ID", "Lower 4 bytes don't match ones of Game Code.", false ) );
}
for( i=0; i < (0x2f0 - 0x240); i++ )
@ -1036,5 +1019,301 @@ ECSrlResult RCSrl::mrcTWL( FILE *fp )
// ROMヘッダ以外の領域のチェック
ECSrlResult pctl = this->mrcTWLParentalControl();
if( pctl != ECSrlResult::NOERROR )
{
return pctl;
}
return ECSrlResult::NOERROR;
} // mrcTWL()
} // mrcTWL()
// PCTL専用
ECSrlResult RCSrl::mrcTWLParentalControl(void)
{
// リージョン
System::Boolean bRegionResult = true; // リージョン設定が正常であるか
u32 region = this->pRomHeader->s.card_region_bitmap;
if( (region != METWL_MASK_REGION_JAPAN) &&
(region != METWL_MASK_REGION_AMERICA) &&
(region != METWL_MASK_REGION_EUROPE) &&
(region != METWL_MASK_REGION_AUSTRALIA) &&
(region != (METWL_MASK_REGION_EUROPE | METWL_MASK_REGION_AUSTRALIA)) )
{
#if defined(METWL_VER_APPTYPE_SYSTEM) || defined(METWL_VER_APPTYPE_SECURE) || defined(METWL_VER_APPTYPE_LAUNCHER)
if( region != METWL_MASK_REGION_ALL ) // オールリージョンを許す
{
this->hErrorList->Add( gcnew RCMRCError(
"カードリージョン", 0x1b0, 0x1b3, "仕向地の組み合わせが不正です。本ツールを用いて修正できます。",
"Card Region", "Illigal Region. This tool can modify this information.", true ) );
bRegionResult = false;
}
#else
{
this->hErrorList->Add( gcnew RCMRCError(
"カードリージョン", 0x1b0, 0x1b3, "仕向地の組み合わせが不正です。本ツールを用いて修正してください。",
"Card Region", "Illigal Region. Please modify this information using this tool.", true ) );
bRegionResult = false;
}
#endif
}
// リージョンが不正のときすべてのPCTL情報をクリア(ROMヘッダには影響しない)
if( !bRegionResult )
{
int i;
for( i=0; i < PARENTAL_CONTROL_INFO_SIZE; i++ )
{
this->clearParentalControl( i );
}
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "仕向地の設定が不正のため、ROMデータ内のすべてのレーティング団体の情報を無視して読み込みました。本ツールを用いて修正してください。",
"Parental Control", "Illigal region. In reading, therefore, settings for all rating organizations are ignored. Please set this infomation using this tool.", true ) );
return ECSrlResult::NOERROR; // もうこれ以上チェックしない
}
// リージョンに含まれていない団体の設定がされていたらダメ
System::String ^warnEmptyJ = gcnew System::String( "レーティング審査の必要がないソフトだとみなします。審査が必要である場合には、本ツールを用いて修正してください。" );
System::String ^warnEmptyE = gcnew System::String( "This ROM is not necessary for CERO rating. If necessary, please set this infomation using this tool." );
System::String ^warnFillJ = gcnew System::String( "リージョンに含まれない団体の情報が設定されていたため、これらの団体の情報を無視して読み込みました。本ツールを用いて修正してください。" );
System::String ^warnFillE = gcnew System::String( "Some organizations is not include in the region. In reading, therefore, settings for all rating organizations are ignored. Please set this infomation using this tool." );
if( region == METWL_MASK_REGION_JAPAN )
{
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_CERO ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "CERO: " + warnEmptyJ,
"Parental Control", "CERO: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_CERO );
}
if( (this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_ESRB ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_USK ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_GEN ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_PRT ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_BBFC ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_OFLC ] != 0) )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, warnFillJ,
"Parental Control", warnFillE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_ESRB );
this->clearParentalControl( OS_TWL_PCTL_OGN_USK );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_GEN );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_PRT );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_BBFC );
this->clearParentalControl( OS_TWL_PCTL_OGN_OFLC );
}
}
if( region == METWL_MASK_REGION_AMERICA )
{
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_ESRB ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "ESRB: " + warnEmptyJ,
"Parental Control", "ESRB: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_ESRB );
}
if( (this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_CERO ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_USK ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_GEN ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_PRT ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_BBFC ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_OFLC ] != 0) )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, warnFillJ,
"Parental Control", warnFillE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_CERO );
this->clearParentalControl( OS_TWL_PCTL_OGN_USK );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_GEN );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_PRT );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_BBFC );
this->clearParentalControl( OS_TWL_PCTL_OGN_OFLC );
}
}
if( region == METWL_MASK_REGION_EUROPE )
{
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_USK ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "USK: " + warnEmptyJ,
"Parental Control", "USK: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_USK );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_GEN ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI(General): " + warnEmptyJ,
"Parental Control", "PEGI(General): " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_GEN );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_PRT ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI(Portugal): " + warnEmptyJ,
"Parental Control", "PEGI(Portugal): " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_PRT );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_BBFC ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI and BBFC: " + warnEmptyJ,
"Parental Control", "PEGI and BBFC: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_BBFC );
}
if( (this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_CERO ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_ESRB ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_OFLC ] != 0) )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, warnFillJ,
"Parental Control", warnFillE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_CERO );
this->clearParentalControl( OS_TWL_PCTL_OGN_ESRB );
this->clearParentalControl( OS_TWL_PCTL_OGN_OFLC );
}
}
if( region == METWL_MASK_REGION_AUSTRALIA )
{
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_OFLC ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "OFLC: " + warnEmptyJ,
"Parental Control", "OFLC: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_OFLC );
}
if( (this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_CERO ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_ESRB ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_USK ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_GEN ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_PRT ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_BBFC ] != 0) )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, warnFillJ,
"Parental Control", warnFillE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_CERO );
this->clearParentalControl( OS_TWL_PCTL_OGN_ESRB );
this->clearParentalControl( OS_TWL_PCTL_OGN_USK );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_GEN );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_PRT );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_BBFC );
}
}
if( region == (METWL_MASK_REGION_EUROPE | METWL_MASK_REGION_AUSTRALIA) )
{
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_USK ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "USK: " + warnEmptyJ,
"Parental Control", "USK: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_USK );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_GEN ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI(General): " + warnEmptyJ,
"Parental Control", "PEGI(General): " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_GEN );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_PRT ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI(Portugal): " + warnEmptyJ,
"Parental Control", "PEGI(Portugal): " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_PRT );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_BBFC ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI and BBFC: " + warnEmptyJ,
"Parental Control", "PEGI and BBFC: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_BBFC );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_OFLC ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "OFLC: " + warnEmptyJ,
"Parental Control", "OFLC: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_OFLC );
}
if( (this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_CERO ] != 0) ||
(this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_ESRB ] != 0) )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, warnFillJ,
"Parental Control", warnFillE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_CERO );
this->clearParentalControl( OS_TWL_PCTL_OGN_ESRB );
}
}
if( region == METWL_MASK_REGION_ALL )
{
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_CERO ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "CERO: " + warnEmptyJ,
"Parental Control", "CERO: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_CERO );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_ESRB ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "ESRB: " + warnEmptyJ,
"Parental Control", "ESRB: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_ESRB );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_USK ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "USK: " + warnEmptyJ,
"Parental Control", "USK: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_USK );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_GEN ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI(General): " + warnEmptyJ,
"Parental Control", "PEGI(General): " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_GEN );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_PRT ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI(Portugal): " + warnEmptyJ,
"Parental Control", "PEGI(Portugal): " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_PRT );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_PEGI_BBFC ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "PEGI and BBFC: " + warnEmptyJ,
"Parental Control", "PEGI and BBFC: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_PEGI_BBFC );
}
if( this->pRomHeader->s.parental_control_rating_info[ OS_TWL_PCTL_OGN_OFLC ] == 0 )
{
this->hWarnList->Add( gcnew RCMRCError(
"ペアレンタルコントロール情報", 0x2f0, 0x2ff, "OFLC: " + warnEmptyJ,
"Parental Control", "OFLC: " + warnEmptyE, true ) );
this->clearParentalControl( OS_TWL_PCTL_OGN_OFLC );
}
}
// リージョンに含まれている団体の設定が正しいかどうか
if( region == METWL_MASK_REGION_JAPAN )
{
if( *(this->hArrayParentalEffect[ OS_TWL_PCTL_OGN_CERO ]) == false )
{
}
}
return ECSrlResult::NOERROR;
}
// ペアレンタルコントロールのクリア
void RCSrl::clearParentalControl( System::Byte ogn )
{
this->hArrayParentalRating[ ogn ] = gcnew System::Byte( 0x00 );
this->hArrayParentalEffect[ ogn ] = gcnew System::Boolean( false );
this->hArrayParentalAlways[ ogn ] = gcnew System::Boolean( false );
}

View File

@ -310,6 +310,10 @@ namespace MasterEditorTWL
ECSrlResult mrc( FILE *fp );
ECSrlResult mrcNTR( FILE *fp );
ECSrlResult mrcTWL( FILE *fp );
ECSrlResult mrcTWLParentalControl(void);
// utility
void clearParentalControl( System::Byte ogn );
}; // end of ref class RCSrl

View File

@ -378,56 +378,3 @@ System::Collections::Generic::List<u32>^ MasterEditorTWL::patternMatch( FILE *fp
}
return list;
}
void MasterEditorTWL::debugPatternMatch( System::String ^filename )
{
FILE *fp = NULL;
u32 i;
const u8 pattern[8] = {0x21, 0x06, 0xc0, 0xde, 0xde, 0xc0, 0x06, 0x21};
System::Collections::Generic::List<u32> ^list;
const char *pchFilename =
(const char*)System::Runtime::InteropServices::Marshal::StringToHGlobalAnsi( filename ).ToPointer();
// ファイルを開いてROMヘッダのみ読み出す
if( fopen_s( &fp, pchFilename, "rb" ) != NULL )
{
System::Diagnostics::Debug::WriteLine( "f_open failed" );
return;
}
list = MasterEditorTWL::patternMatch( fp, pattern , 8 );
fclose( fp );
i=0;
if( list == nullptr )
{
System::Diagnostics::Debug::WriteLine( "no list" );
return;
}
for each( u32 item in list )
{
System::Diagnostics::Debug::WriteLine( "item " + i.ToString() + " = 0x" + item.ToString("X") );
i++;
}
//u8 buf[ 512 ];
//u32 i;
//u8 pattern[8] = {0xfe, 0xff, 0x00, 0x01, 0x02, 0x03, 0x04, 0x05};
//System::Collections::Generic::List<u32> ^list;
//for( i=0; i < 512; i++ )
//{
// buf[i] = i % 256;
//}
//list = MasterEditorTWL::patternMatch( buf, 512, pattern, 8, true );
//i = 0;
//System::Diagnostics::Debug::WriteLine( "pattern match" );
//for each( u32 item in list )
//{
// System::Diagnostics::Debug::WriteLine( "item " + i + " = " + item );
// i++;
//}
}

View File

@ -70,6 +70,4 @@ namespace MasterEditorTWL
//
System::Collections::Generic::List<u32>^ patternMatch( FILE *fp, const u8 *pattern, const u32 patternLen );
void debugPatternMatch( System::String ^filename );
} // end of namespace MasterEditorTWL