マスタエディタ:ROMヘッダフォーマットをRC3に合わせる。HW_AES_Slot_B_Sign_JPEG_for_Userのフラグに対応。メッセージの誤字修正。

git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2602 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
nishikawa_takeshi 2008-10-09 06:27:25 +00:00
parent 99d757e4b7
commit 2821e16ba6
9 changed files with 16 additions and 6 deletions

View File

@ -712,7 +712,7 @@ private: System::Windows::Forms::CheckBox^ cboxIsPhotoEx;
// 複数行表示したいが初期値で設定できないのでここで設定
this->tboxGuideRomEditInfo->Text = "このタブの各項目への入力は提出確認書およびマスターROMの作成のために必要です。";
this->tboxGuideRomEditInfo->Text += "\r\nこれらの情報はマスターROMの作成時にROM内登録データとして登録されます(「その他ROM情報」を除く)";
this->tboxGuideRomEditInfo->Text += "\r\nこれらの情報はマスターROMの作成時にROM内登録データとして登録されます(「その他ROM情報」を除く)";
this->tboxGuideErrorInfo->Text = "このタブには読み込んだROMデータの問題と本プログラムでの入力ミスが列挙されます。";
this->tboxGuideErrorInfo->Text += "\r\n赤文字の項目は、本プログラムで修正不可です。ROMデータ作成時の設定をご確認ください。";

View File

@ -67,7 +67,7 @@ void Form1::changeJapanese(void)
this->tboxGuideTWLInfo->Text = gcnew System::String( "このタブの情報は編集不可です。データに誤りがある場合にはROMデータの作成時の設定を見直してください。" );
this->tboxGuideRomEditInfo->Text = gcnew System::String( "" );
this->tboxGuideRomEditInfo->Text += "このタブの各項目への入力は提出確認書およびマスターROMの作成のために必要です。";
this->tboxGuideRomEditInfo->Text += "\r\nこれらの情報はマスターROMの作成時にROM内登録データとして登録されます(「その他ROM情報」を除く)";
this->tboxGuideRomEditInfo->Text += "\r\nこれらの情報はマスターROMの作成時にROM内登録データとして登録されます(「その他ROM情報」を除く)";
this->tboxGuideSubmitInfo->Text = gcnew System::String( "このタブの情報は提出確認書の作成に必要です。入力してください。" );
this->tboxGuideCompanyInfo->Text = gcnew System::String( "このタブの情報は提出確認書の作成に必要です。入力してください。" );
this->tboxGuideErrorInfo->Text = gcnew System::String( "" );

View File

@ -159,7 +159,11 @@ void Form1::setSrlForms(void)
}
if( *(this->hSrl->hIsAesSlotBForJpegEnc) == true )
{
acc += "AES-SlotB(JpegEnc.).\r\n";
acc += "AES-SlotB(Jpeg Launcher).\r\n";
}
if( *(this->hSrl->hIsAesSlotBForJpegEncUser) == true )
{
acc += "AES-SlotB(Jpeg User).\r\n";
}
if( *(this->hSrl->hIsAesSlotAForSSL) == true )
{
@ -167,7 +171,7 @@ void Form1::setSrlForms(void)
}
if( *(this->hSrl->hIsCommonClientKeyForDebugger) == true )
{
acc += "commonClientKey(Debug.).\r\n";
acc += "commonClientKey(Debug).\r\n";
}
this->tboxAccessOther->Text = acc;

View File

@ -104,7 +104,11 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
}
if( *(hSrl->hIsAesSlotBForJpegEnc) == true )
{
access += "AES-SlotB(JpegEnc.). ";
access += "AES-SlotB(Jpeg Launcher). ";
}
if( *(hSrl->hIsAesSlotBForJpegEncUser) == true )
{
access += "AES-SlotB(Jpeg User). ";
}
if( *(hSrl->hIsAesSlotAForSSL) == true )
{
@ -121,7 +125,7 @@ ECDeliverableResult RCDeliverable::writeSpreadsheet(
{
for each( RCLicense ^lic in hSrl->hLicenseList )
{
lib += lic->Publisher + " " + lic->Name + ". ";
lib += "[" + lic->Publisher + " " + lic->Name + "]. ";
}
}

View File

@ -262,6 +262,7 @@ ECSrlResult RCSrl::setRomInfo(void)
this->hIsGameCardOn = gcnew System::Boolean( (this->pRomHeader->s.access_control.game_card_on != 0)?true:false );
this->hIsShared2 = gcnew System::Boolean( (this->pRomHeader->s.access_control.shared2_file != 0)?true:false );
this->hIsAesSlotBForJpegEnc = gcnew System::Boolean( (this->pRomHeader->s.access_control.hw_aes_slot_B_SignJPEGForLauncher != 0)?true:false );
this->hIsAesSlotBForJpegEncUser = gcnew System::Boolean( (this->pRomHeader->s.access_control.hw_aes_slot_B_SignJPEGForUser != 0)?true:false );
this->hIsGameCardNitro = gcnew System::Boolean( (this->pRomHeader->s.access_control.game_card_nitro_mode != 0)?true:false );
this->hIsAesSlotAForSSL = gcnew System::Boolean( (this->pRomHeader->s.access_control.hw_aes_slot_A_SSLClientCert != 0)?true:false );
this->hIsCommonClientKeyForDebugger

View File

@ -314,6 +314,7 @@ namespace MasterEditorTWL
property System::Boolean ^hIsGameCardOn;
property System::Boolean ^hIsShared2;
property System::Boolean ^hIsAesSlotBForJpegEnc;
property System::Boolean ^hIsAesSlotBForJpegEncUser;
property System::Boolean ^hIsGameCardNitro;
property System::Boolean ^hIsAesSlotAForSSL;
property System::Boolean ^hIsCommonClientKeyForDebugger;