mirror of
https://github.com/rvtr/TwlIPL.git
synced 2025-10-31 06:01:12 -04:00
マスタエディタ:MRCエラー表示用ウィンドウを追加。MRCエラー情報クラスを定義。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlIPL/trunk@2219 b08762b0-b915-fc4b-9d8c-17b2551a87ff
This commit is contained in:
parent
a5e39e68c5
commit
e151090ca6
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -4,6 +4,7 @@
|
|||||||
#include "deliverable.h"
|
#include "deliverable.h"
|
||||||
#include "crc_whole.h"
|
#include "crc_whole.h"
|
||||||
#include "utility.h"
|
#include "utility.h"
|
||||||
|
#include "FormError.h"
|
||||||
|
|
||||||
namespace MasterEditorTWL {
|
namespace MasterEditorTWL {
|
||||||
|
|
||||||
@ -36,10 +37,13 @@ namespace MasterEditorTWL {
|
|||||||
// 書類出力モード(ノーマルXML or XML Spread Sheet)
|
// 書類出力モード(ノーマルXML or XML Spread Sheet)
|
||||||
System::Boolean ^hIsSpreadSheet;
|
System::Boolean ^hIsSpreadSheet;
|
||||||
|
|
||||||
|
// エラーウインドウ
|
||||||
|
FormError ^hErrorWindowR;
|
||||||
|
|
||||||
// VC自動追加フィールド
|
// VC自動追加フィールド
|
||||||
private: System::Windows::Forms::GroupBox^ gboxCRC;
|
private: System::Windows::Forms::GroupBox^ gboxCRC;
|
||||||
private: System::Windows::Forms::TextBox^ tboxWholeCRC;
|
private: System::Windows::Forms::TextBox^ tboxWholeCRC;
|
||||||
private: System::Windows::Forms::Button^ butMakeMaster;
|
|
||||||
private: System::Windows::Forms::Label^ labTitleName;
|
private: System::Windows::Forms::Label^ labTitleName;
|
||||||
private: System::Windows::Forms::Label^ labGameCode;
|
private: System::Windows::Forms::Label^ labGameCode;
|
||||||
private: System::Windows::Forms::TextBox^ tboxGameCode;
|
private: System::Windows::Forms::TextBox^ tboxGameCode;
|
||||||
@ -427,6 +431,12 @@ private: System::Windows::Forms::Label^ labMultiForeign2;
|
|||||||
private: System::Windows::Forms::Label^ labCautionInput;
|
private: System::Windows::Forms::Label^ labCautionInput;
|
||||||
private: System::Windows::Forms::Label^ labCautionCheck;
|
private: System::Windows::Forms::Label^ labCautionCheck;
|
||||||
private: System::Windows::Forms::GroupBox^ gboxProd;
|
private: System::Windows::Forms::GroupBox^ gboxProd;
|
||||||
|
private: System::Windows::Forms::Button^ butErrorWindow;
|
||||||
|
private: System::Windows::Forms::Button^ butMakeMaster;
|
||||||
|
private: System::Windows::Forms::GroupBox^ gboxMakeMaster;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -467,6 +477,7 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
//
|
//
|
||||||
this->hSrl = gcnew (RCSrl);
|
this->hSrl = gcnew (RCSrl);
|
||||||
this->hDeliv = gcnew (RCDeliverable);
|
this->hDeliv = gcnew (RCDeliverable);
|
||||||
|
this->hErrorWindowR = gcnew (FormError);
|
||||||
|
|
||||||
// デフォルト値
|
// デフォルト値
|
||||||
this->hIsSpreadSheet = gcnew System::Boolean( true );
|
this->hIsSpreadSheet = gcnew System::Boolean( true );
|
||||||
@ -538,7 +549,6 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->tboxWholeCRC = (gcnew System::Windows::Forms::TextBox());
|
this->tboxWholeCRC = (gcnew System::Windows::Forms::TextBox());
|
||||||
this->gboxFileOpen = (gcnew System::Windows::Forms::GroupBox());
|
this->gboxFileOpen = (gcnew System::Windows::Forms::GroupBox());
|
||||||
this->butSaveAs = (gcnew System::Windows::Forms::Button());
|
this->butSaveAs = (gcnew System::Windows::Forms::Button());
|
||||||
this->butMakeMaster = (gcnew System::Windows::Forms::Button());
|
|
||||||
this->labCaption = (gcnew System::Windows::Forms::Label());
|
this->labCaption = (gcnew System::Windows::Forms::Label());
|
||||||
this->tboxCaption = (gcnew System::Windows::Forms::TextBox());
|
this->tboxCaption = (gcnew System::Windows::Forms::TextBox());
|
||||||
this->gboxSelectLang = (gcnew System::Windows::Forms::GroupBox());
|
this->gboxSelectLang = (gcnew System::Windows::Forms::GroupBox());
|
||||||
@ -732,6 +742,9 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->tboxCaptionEx = (gcnew System::Windows::Forms::TextBox());
|
this->tboxCaptionEx = (gcnew System::Windows::Forms::TextBox());
|
||||||
this->tabCheck = (gcnew System::Windows::Forms::TabControl());
|
this->tabCheck = (gcnew System::Windows::Forms::TabControl());
|
||||||
this->gboxProd = (gcnew System::Windows::Forms::GroupBox());
|
this->gboxProd = (gcnew System::Windows::Forms::GroupBox());
|
||||||
|
this->butErrorWindow = (gcnew System::Windows::Forms::Button());
|
||||||
|
this->butMakeMaster = (gcnew System::Windows::Forms::Button());
|
||||||
|
this->gboxMakeMaster = (gcnew System::Windows::Forms::GroupBox());
|
||||||
this->gboxSrl->SuspendLayout();
|
this->gboxSrl->SuspendLayout();
|
||||||
this->gboxCRC->SuspendLayout();
|
this->gboxCRC->SuspendLayout();
|
||||||
this->gboxFileOpen->SuspendLayout();
|
this->gboxFileOpen->SuspendLayout();
|
||||||
@ -760,6 +773,7 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->gboxTitleID->SuspendLayout();
|
this->gboxTitleID->SuspendLayout();
|
||||||
this->tabCheck->SuspendLayout();
|
this->tabCheck->SuspendLayout();
|
||||||
this->gboxProd->SuspendLayout();
|
this->gboxProd->SuspendLayout();
|
||||||
|
this->gboxMakeMaster->SuspendLayout();
|
||||||
this->SuspendLayout();
|
this->SuspendLayout();
|
||||||
//
|
//
|
||||||
// tboxFile
|
// tboxFile
|
||||||
@ -788,7 +802,7 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->tboxMsg->Location = System::Drawing::Point(12, 678);
|
this->tboxMsg->Location = System::Drawing::Point(12, 678);
|
||||||
this->tboxMsg->Name = L"tboxMsg";
|
this->tboxMsg->Name = L"tboxMsg";
|
||||||
this->tboxMsg->ReadOnly = true;
|
this->tboxMsg->ReadOnly = true;
|
||||||
this->tboxMsg->Size = System::Drawing::Size(797, 19);
|
this->tboxMsg->Size = System::Drawing::Size(622, 19);
|
||||||
this->tboxMsg->TabIndex = 2;
|
this->tboxMsg->TabIndex = 2;
|
||||||
//
|
//
|
||||||
// gboxSrl
|
// gboxSrl
|
||||||
@ -1049,16 +1063,6 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->butSaveAs->UseVisualStyleBackColor = true;
|
this->butSaveAs->UseVisualStyleBackColor = true;
|
||||||
this->butSaveAs->Click += gcnew System::EventHandler(this, &Form1::butSaveAs_Click);
|
this->butSaveAs->Click += gcnew System::EventHandler(this, &Form1::butSaveAs_Click);
|
||||||
//
|
//
|
||||||
// butMakeMaster
|
|
||||||
//
|
|
||||||
this->butMakeMaster->Location = System::Drawing::Point(656, 641);
|
|
||||||
this->butMakeMaster->Name = L"butMakeMaster";
|
|
||||||
this->butMakeMaster->Size = System::Drawing::Size(149, 23);
|
|
||||||
this->butMakeMaster->TabIndex = 7;
|
|
||||||
this->butMakeMaster->Text = L"マスタ提出書類を作成";
|
|
||||||
this->butMakeMaster->UseVisualStyleBackColor = true;
|
|
||||||
this->butMakeMaster->Click += gcnew System::EventHandler(this, &Form1::butMakeMaster_Click);
|
|
||||||
//
|
|
||||||
// labCaption
|
// labCaption
|
||||||
//
|
//
|
||||||
this->labCaption->AutoSize = true;
|
this->labCaption->AutoSize = true;
|
||||||
@ -3008,16 +3012,46 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->gboxProd->TabStop = false;
|
this->gboxProd->TabStop = false;
|
||||||
this->gboxProd->Text = L"ROM生産情報(必ず入力してください)";
|
this->gboxProd->Text = L"ROM生産情報(必ず入力してください)";
|
||||||
//
|
//
|
||||||
|
// butErrorWindow
|
||||||
|
//
|
||||||
|
this->butErrorWindow->Location = System::Drawing::Point(652, 676);
|
||||||
|
this->butErrorWindow->Name = L"butErrorWindow";
|
||||||
|
this->butErrorWindow->Size = System::Drawing::Size(149, 23);
|
||||||
|
this->butErrorWindow->TabIndex = 23;
|
||||||
|
this->butErrorWindow->Text = L"ROMチェック結果を表示";
|
||||||
|
this->butErrorWindow->UseVisualStyleBackColor = true;
|
||||||
|
this->butErrorWindow->Click += gcnew System::EventHandler(this, &Form1::butErrorWindow_Click);
|
||||||
|
//
|
||||||
|
// butMakeMaster
|
||||||
|
//
|
||||||
|
this->butMakeMaster->Location = System::Drawing::Point(6, 16);
|
||||||
|
this->butMakeMaster->Name = L"butMakeMaster";
|
||||||
|
this->butMakeMaster->Size = System::Drawing::Size(149, 23);
|
||||||
|
this->butMakeMaster->TabIndex = 7;
|
||||||
|
this->butMakeMaster->Text = L"マスタ提出書類を作成";
|
||||||
|
this->butMakeMaster->UseVisualStyleBackColor = true;
|
||||||
|
this->butMakeMaster->Click += gcnew System::EventHandler(this, &Form1::butMakeMaster_Click);
|
||||||
|
//
|
||||||
|
// gboxMakeMaster
|
||||||
|
//
|
||||||
|
this->gboxMakeMaster->Controls->Add(this->butMakeMaster);
|
||||||
|
this->gboxMakeMaster->Location = System::Drawing::Point(646, 625);
|
||||||
|
this->gboxMakeMaster->Name = L"gboxMakeMaster";
|
||||||
|
this->gboxMakeMaster->Size = System::Drawing::Size(163, 47);
|
||||||
|
this->gboxMakeMaster->TabIndex = 32;
|
||||||
|
this->gboxMakeMaster->TabStop = false;
|
||||||
|
//
|
||||||
// Form1
|
// Form1
|
||||||
//
|
//
|
||||||
this->AutoScaleDimensions = System::Drawing::SizeF(6, 12);
|
this->AutoScaleDimensions = System::Drawing::SizeF(6, 12);
|
||||||
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
|
this->AutoScaleMode = System::Windows::Forms::AutoScaleMode::Font;
|
||||||
this->ClientSize = System::Drawing::Size(825, 701);
|
this->ClientSize = System::Drawing::Size(825, 702);
|
||||||
|
this->Controls->Add(this->gboxMakeMaster);
|
||||||
|
this->Controls->Add(this->butErrorWindow);
|
||||||
this->Controls->Add(this->gboxProd);
|
this->Controls->Add(this->gboxProd);
|
||||||
this->Controls->Add(this->tabDoc);
|
this->Controls->Add(this->tabDoc);
|
||||||
this->Controls->Add(this->gboxSelectLang);
|
this->Controls->Add(this->gboxSelectLang);
|
||||||
this->Controls->Add(this->gboxTWLInfoWritable);
|
this->Controls->Add(this->gboxTWLInfoWritable);
|
||||||
this->Controls->Add(this->butMakeMaster);
|
|
||||||
this->Controls->Add(this->tabCheck);
|
this->Controls->Add(this->tabCheck);
|
||||||
this->Controls->Add(this->gboxFileOpen);
|
this->Controls->Add(this->gboxFileOpen);
|
||||||
this->Controls->Add(this->gboxCRC);
|
this->Controls->Add(this->gboxCRC);
|
||||||
@ -3073,6 +3107,7 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->tabCheck->ResumeLayout(false);
|
this->tabCheck->ResumeLayout(false);
|
||||||
this->gboxProd->ResumeLayout(false);
|
this->gboxProd->ResumeLayout(false);
|
||||||
this->gboxProd->PerformLayout();
|
this->gboxProd->PerformLayout();
|
||||||
|
this->gboxMakeMaster->ResumeLayout(false);
|
||||||
this->ResumeLayout(false);
|
this->ResumeLayout(false);
|
||||||
this->PerformLayout();
|
this->PerformLayout();
|
||||||
|
|
||||||
@ -3083,6 +3118,10 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
// 内部メソッド
|
// 内部メソッド
|
||||||
/////////////////////////////////////////////
|
/////////////////////////////////////////////
|
||||||
private:
|
private:
|
||||||
|
// ----------------------------------------------
|
||||||
|
// ファイルのR/W
|
||||||
|
// ----------------------------------------------
|
||||||
|
|
||||||
// 設定ファイルの読み込み
|
// 設定ファイルの読み込み
|
||||||
void loadInit(void)
|
void loadInit(void)
|
||||||
{
|
{
|
||||||
@ -3144,7 +3183,107 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->tboxMsg->Text = msg;
|
this->tboxMsg->Text = msg;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 設定可能なフォームをすべて disable にする
|
private:
|
||||||
|
// SRLのオープン
|
||||||
|
System::Void loadSrl( System::String ^filename )
|
||||||
|
{
|
||||||
|
if( this->hSrl->readFromFile( filename ) != ECSrlResult::NOERROR )
|
||||||
|
{
|
||||||
|
if( this->rSelectJ->Checked == true )
|
||||||
|
this->errMsg( "リードに失敗しました。" );
|
||||||
|
else
|
||||||
|
this->errMsg( "Reading the file failed." );
|
||||||
|
return; // 前のファイルが正常である保証なしなので前のファイルも上書き保存できないようにする
|
||||||
|
}
|
||||||
|
this->tboxFile->Text = filename;
|
||||||
|
|
||||||
|
// GUIにROM情報を格納
|
||||||
|
this->setSrlForms();
|
||||||
|
|
||||||
|
// 全体のCRCを算出
|
||||||
|
u16 crc;
|
||||||
|
if( !getWholeCRCInFile( filename, &crc ) )
|
||||||
|
{
|
||||||
|
if( this->rSelectJ->Checked == true )
|
||||||
|
this->errMsg( "CRCの計算に失敗しました。" );
|
||||||
|
else
|
||||||
|
this->errMsg( "Calc CRC failed." );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
System::UInt16 ^hcrc = gcnew System::UInt16( crc );
|
||||||
|
this->tboxWholeCRC->Clear();
|
||||||
|
this->tboxWholeCRC->AppendText( "0x" );
|
||||||
|
this->tboxWholeCRC->AppendText( hcrc->ToString("X") );
|
||||||
|
|
||||||
|
if( this->rSelectJ->Checked == true )
|
||||||
|
this->tboxMsg->Text = "ファイルオープンに成功しました。";
|
||||||
|
else
|
||||||
|
this->tboxMsg->Text = "Opening the file succeeded.";
|
||||||
|
} // openSrl
|
||||||
|
|
||||||
|
private:
|
||||||
|
// SRLの保存
|
||||||
|
System::Void saveSrl( System::String ^filename )
|
||||||
|
{
|
||||||
|
// ROM情報をフォームから取得してSRLバイナリに反映させる
|
||||||
|
this->setSrlPropaties();
|
||||||
|
// マスタ書類情報をフォームから取得して書類に反映させる -> 必要なし
|
||||||
|
//this->setDeliverablePropaties();
|
||||||
|
|
||||||
|
// ファイルをコピー
|
||||||
|
if( !(filename->Equals( this->tboxFile->Text )) )
|
||||||
|
{
|
||||||
|
System::IO::File::Copy( this->tboxFile->Text, filename, true );
|
||||||
|
}
|
||||||
|
|
||||||
|
// コピーしたファイルにROMヘッダを上書き
|
||||||
|
if( this->hSrl->writeToFile( filename ) != ECSrlResult::NOERROR )
|
||||||
|
{
|
||||||
|
if( this->rSelectJ->Checked == true )
|
||||||
|
this->errMsg( "保存に失敗しました。" );
|
||||||
|
else
|
||||||
|
this->errMsg( "Saving the file failed." );
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if( this->rSelectJ->Checked == true )
|
||||||
|
this->tboxMsg->Text = "保存が成功しました。";
|
||||||
|
else
|
||||||
|
this->tboxMsg->Text = "Saving the file succeeded.";
|
||||||
|
this->tboxFile->Text = filename;
|
||||||
|
|
||||||
|
// 再リード
|
||||||
|
this->loadSrl( filename );
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
// エラー専用ウィンドウを開いてMRCエラーと入力エラーを表示
|
||||||
|
void openErrorWindow(void)
|
||||||
|
{
|
||||||
|
// ウインドウを新たに開く
|
||||||
|
if( this->hErrorWindowR->IsDisposed )
|
||||||
|
{
|
||||||
|
this->hErrorWindowR = gcnew FormError; // 閉じられたときだけ再度作成する
|
||||||
|
}
|
||||||
|
this->hErrorWindowR->Show();
|
||||||
|
this->hErrorWindowR->Select();
|
||||||
|
|
||||||
|
// 言語設定はメインウィンドウにあわせる
|
||||||
|
if( this->rSelectJ->Checked == true )
|
||||||
|
this->hErrorWindowR->changeJapanese();
|
||||||
|
else
|
||||||
|
this->hErrorWindowR->changeEnglish();
|
||||||
|
|
||||||
|
// エラー項目をgridViewに追記していく
|
||||||
|
this->hErrorWindowR->setGridError( this->hSrl->hErrorList, this->rSelectJ->Checked );
|
||||||
|
this->hErrorWindowR->setGridWarn( this->hSrl->hWarnList, this->rSelectJ->Checked );
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
// ----------------------------------------------
|
||||||
|
// フォームの初期設定
|
||||||
|
// ----------------------------------------------
|
||||||
|
|
||||||
|
// 設定/選択可能なフォームをすべて disable にする
|
||||||
void disableForms( void )
|
void disableForms( void )
|
||||||
{
|
{
|
||||||
this->cboxIsEULA->Enabled = false;
|
this->cboxIsEULA->Enabled = false;
|
||||||
@ -3176,6 +3315,10 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
// ----------------------------------------------
|
||||||
|
// フォームとSRL内情報を矛盾なく一致させる
|
||||||
|
// ----------------------------------------------
|
||||||
|
|
||||||
// ROM情報をフォームから取得してSRLクラスのプロパティに反映させる
|
// ROM情報をフォームから取得してSRLクラスのプロパティに反映させる
|
||||||
// (ROMヘッダへの反映やCRCと署名の再計算をしない)
|
// (ROMヘッダへの反映やCRCと署名の再計算をしない)
|
||||||
void setSrlPropaties(void)
|
void setSrlPropaties(void)
|
||||||
@ -4109,6 +4252,10 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// ----------------------------------------------
|
||||||
|
// エラーメッセージの一元化
|
||||||
|
// ----------------------------------------------
|
||||||
|
|
||||||
// テキスト入力がされているかチェック
|
// テキスト入力がされているかチェック
|
||||||
System::Boolean checkTextForm( System::String ^formtext, System::String ^label )
|
System::Boolean checkTextForm( System::String ^formtext, System::String ^label )
|
||||||
{
|
{
|
||||||
@ -4193,6 +4340,10 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
}
|
}
|
||||||
|
|
||||||
private:
|
private:
|
||||||
|
// ----------------------------------------------
|
||||||
|
// 日英両対応
|
||||||
|
// ----------------------------------------------
|
||||||
|
|
||||||
// 日本語版への切り替え
|
// 日本語版への切り替え
|
||||||
void changeJapanese(void)
|
void changeJapanese(void)
|
||||||
{
|
{
|
||||||
@ -4220,10 +4371,11 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->combBackup->SelectedIndex = index;
|
this->combBackup->SelectedIndex = index;
|
||||||
|
|
||||||
// フロントパネル下部
|
// フロントパネル下部
|
||||||
this->gboxFileOpen->Text = gcnew System::String( "ROMデータファイルの入出力" );
|
this->gboxFileOpen->Text = gcnew System::String( "ROMデータファイルの入出力" );
|
||||||
this->butOpen->Text = gcnew System::String( "ROMデータを開く" );
|
this->butOpen->Text = gcnew System::String( "ROMデータを開く" );
|
||||||
this->butSaveAs->Text = gcnew System::String( "入力情報を反映させて保存" );
|
this->butSaveAs->Text = gcnew System::String( "入力情報を反映させて保存" );
|
||||||
this->butMakeMaster->Text = gcnew System::String( "マスタ提出書類を作成" );
|
this->butMakeMaster->Text = gcnew System::String( "マスタ提出書類を作成" );
|
||||||
|
this->butErrorWindow->Text = gcnew System::String( "ROMチェック結果を表示" );
|
||||||
|
|
||||||
// 提出情報タブ
|
// 提出情報タブ
|
||||||
this->tabSubmitInfo->Text = gcnew System::String( "提出情報" );
|
this->tabSubmitInfo->Text = gcnew System::String( "提出情報" );
|
||||||
@ -4381,17 +4533,18 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->labRomCRC->Text = gcnew System::String( "ROM CRC" );
|
this->labRomCRC->Text = gcnew System::String( "ROM CRC" );
|
||||||
index = this->combBackup->SelectedIndex;
|
index = this->combBackup->SelectedIndex;
|
||||||
// バックアップメモリ
|
// バックアップメモリ
|
||||||
this->gboxProd->Text = gcnew System::String( "ROM Production Info.(Please Input certainly)" );
|
this->gboxProd->Text = gcnew System::String( "ROM Production Info.(Please input certainly)" );
|
||||||
this->combBackup->Items->Clear();
|
this->combBackup->Items->Clear();
|
||||||
this->combBackup->Items->AddRange(gcnew cli::array< System::Object^ >(9) {L"4Kbit EEPROM", L"64Kbit EEPROM", L"512Kbit EEPROM",
|
this->combBackup->Items->AddRange(gcnew cli::array< System::Object^ >(9) {L"4Kbit EEPROM", L"64Kbit EEPROM", L"512Kbit EEPROM",
|
||||||
L"256Kbit FRAM", L"2Mbit FLASH", L"4Mbit FLASH", L"8Mbit FLASH", L"Nothing", L"Other"});
|
L"256Kbit FRAM", L"2Mbit FLASH", L"4Mbit FLASH", L"8Mbit FLASH", L"Nothing", L"Other"});
|
||||||
this->combBackup->SelectedIndex = index;
|
this->combBackup->SelectedIndex = index;
|
||||||
|
|
||||||
// フロントパネル下部
|
// フロントパネル下部
|
||||||
this->gboxFileOpen->Text = gcnew System::String( "ROM file I/O" );
|
this->gboxFileOpen->Text = gcnew System::String( "ROM file I/O" );
|
||||||
this->butOpen->Text = gcnew System::String( "Open a ROM file" );
|
this->butOpen->Text = gcnew System::String( "Open a ROM file" );
|
||||||
this->butSaveAs->Text = gcnew System::String( "Save a ROM file" );
|
this->butSaveAs->Text = gcnew System::String( "Save a ROM file" );
|
||||||
this->butMakeMaster->Text = gcnew System::String( "Make a submission sheet" );
|
this->butMakeMaster->Text = gcnew System::String( "Make a submission sheet" );
|
||||||
|
this->butErrorWindow->Text = gcnew System::String( "See results of ROM check" );
|
||||||
|
|
||||||
// 提出情報タブ
|
// 提出情報タブ
|
||||||
this->tabSubmitInfo->Text = gcnew System::String( "Submission Info." );
|
this->tabSubmitInfo->Text = gcnew System::String( "Submission Info." );
|
||||||
@ -4531,77 +4684,6 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
this->setSrlFormsCaptionEx();
|
this->setSrlFormsCaptionEx();
|
||||||
}
|
}
|
||||||
|
|
||||||
private:
|
|
||||||
// SRLのオープン
|
|
||||||
System::Void loadSrl( System::String ^filename )
|
|
||||||
{
|
|
||||||
if( this->hSrl->readFromFile( filename ) != ECSrlResult::NOERROR )
|
|
||||||
{
|
|
||||||
if( this->rSelectJ->Checked == true )
|
|
||||||
this->errMsg( "リードに失敗しました。" );
|
|
||||||
else
|
|
||||||
this->errMsg( "Reading the file failed." );
|
|
||||||
return; // 前のファイルが正常である保証なしなので前のファイルも上書き保存できないようにする
|
|
||||||
}
|
|
||||||
this->tboxFile->Text = filename;
|
|
||||||
|
|
||||||
// GUIにROM情報を格納
|
|
||||||
this->setSrlForms();
|
|
||||||
|
|
||||||
// 全体のCRCを算出
|
|
||||||
u16 crc;
|
|
||||||
if( !getWholeCRCInFile( filename, &crc ) )
|
|
||||||
{
|
|
||||||
if( this->rSelectJ->Checked == true )
|
|
||||||
this->errMsg( "CRCの計算に失敗しました。" );
|
|
||||||
else
|
|
||||||
this->errMsg( "Calc CRC failed." );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
System::UInt16 ^hcrc = gcnew System::UInt16( crc );
|
|
||||||
this->tboxWholeCRC->Clear();
|
|
||||||
this->tboxWholeCRC->AppendText( "0x" );
|
|
||||||
this->tboxWholeCRC->AppendText( hcrc->ToString("X") );
|
|
||||||
|
|
||||||
if( this->rSelectJ->Checked == true )
|
|
||||||
this->tboxMsg->Text = "ファイルオープンに成功しました。";
|
|
||||||
else
|
|
||||||
this->tboxMsg->Text = "Opening the file succeeded.";
|
|
||||||
} // openSrl
|
|
||||||
|
|
||||||
// SRLの保存
|
|
||||||
System::Void saveSrl( System::String ^filename )
|
|
||||||
{
|
|
||||||
// ROM情報をフォームから取得してSRLバイナリに反映させる
|
|
||||||
this->setSrlPropaties();
|
|
||||||
// マスタ書類情報をフォームから取得して書類に反映させる -> 必要なし
|
|
||||||
//this->setDeliverablePropaties();
|
|
||||||
|
|
||||||
// ファイルをコピー
|
|
||||||
if( !(filename->Equals( this->tboxFile->Text )) )
|
|
||||||
{
|
|
||||||
System::IO::File::Copy( this->tboxFile->Text, filename, true );
|
|
||||||
}
|
|
||||||
|
|
||||||
// コピーしたファイルにROMヘッダを上書き
|
|
||||||
if( this->hSrl->writeToFile( filename ) != ECSrlResult::NOERROR )
|
|
||||||
{
|
|
||||||
if( this->rSelectJ->Checked == true )
|
|
||||||
this->errMsg( "保存に失敗しました。" );
|
|
||||||
else
|
|
||||||
this->errMsg( "Saving the file failed." );
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if( this->rSelectJ->Checked == true )
|
|
||||||
this->tboxMsg->Text = "保存が成功しました。";
|
|
||||||
else
|
|
||||||
this->tboxMsg->Text = "Saving the file succeeded.";
|
|
||||||
this->tboxFile->Text = filename;
|
|
||||||
|
|
||||||
// 再リード
|
|
||||||
this->loadSrl( filename );
|
|
||||||
}
|
|
||||||
|
|
||||||
/////////////////////////////////////////////
|
/////////////////////////////////////////////
|
||||||
// フォーム操作メソッド
|
// フォーム操作メソッド
|
||||||
/////////////////////////////////////////////
|
/////////////////////////////////////////////
|
||||||
@ -4972,6 +5054,12 @@ private: System::Windows::Forms::GroupBox^ gboxProd;
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
System::Void butErrorWindow_Click(System::Object^ sender, System::EventArgs^ e)
|
||||||
|
{
|
||||||
|
this->openErrorWindow();
|
||||||
|
}
|
||||||
|
|
||||||
}; // enf of ref class Form1
|
}; // enf of ref class Form1
|
||||||
|
|
||||||
} // end of namespace MasterEditorTWL
|
} // end of namespace MasterEditorTWL
|
||||||
|
|||||||
@ -271,6 +271,20 @@
|
|||||||
>
|
>
|
||||||
</File>
|
</File>
|
||||||
</File>
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\FormError.cpp"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
<File
|
||||||
|
RelativePath=".\FormError.h"
|
||||||
|
FileType="3"
|
||||||
|
>
|
||||||
|
<File
|
||||||
|
RelativePath=".\FormError.resx"
|
||||||
|
SubType="Designer"
|
||||||
|
>
|
||||||
|
</File>
|
||||||
|
</File>
|
||||||
<File
|
<File
|
||||||
RelativePath=".\keys.h"
|
RelativePath=".\keys.h"
|
||||||
>
|
>
|
||||||
|
|||||||
@ -68,6 +68,12 @@ ECSrlResult RCSrl::readFromFile( System::String ^filename )
|
|||||||
(void)fclose(fp);
|
(void)fclose(fp);
|
||||||
return r;
|
return r;
|
||||||
}
|
}
|
||||||
|
r = this->mrc( fp );
|
||||||
|
if( r != ECSrlResult::NOERROR )
|
||||||
|
{
|
||||||
|
(void)fclose(fp);
|
||||||
|
return r;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
(void)fclose( fp );
|
(void)fclose( fp );
|
||||||
|
|
||||||
@ -599,3 +605,20 @@ ECSrlResult RCSrl::searchLicenses(FILE *fp)
|
|||||||
|
|
||||||
return ECSrlResult::NOERROR;
|
return ECSrlResult::NOERROR;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
//
|
||||||
|
// MRC
|
||||||
|
//
|
||||||
|
ECSrlResult RCSrl::mrc( FILE *fp )
|
||||||
|
{
|
||||||
|
this->hErrorList = gcnew System::Collections::Generic::List<RCMRCError^>;
|
||||||
|
this->hWarnList = gcnew System::Collections::Generic::List<RCMRCError^>;
|
||||||
|
|
||||||
|
this->hErrorList->Clear();
|
||||||
|
this->hWarnList->Clear();
|
||||||
|
|
||||||
|
//this->hErrorList->Add( gcnew RCMRCError( "テスト", 0x01, 0xfe, "テスト要因", "test", "reason", false ) );
|
||||||
|
//this->hWarnList->Add( gcnew RCMRCError( "テスト2", 0x01, 0xfe, "テスト要因2", "test2", "reason2", false ) );
|
||||||
|
|
||||||
|
return ECSrlResult::NOERROR;
|
||||||
|
}
|
||||||
|
|||||||
@ -109,6 +109,67 @@ namespace MasterEditorTWL
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------
|
||||||
|
// Type : ref class
|
||||||
|
// Name : RCMRCError
|
||||||
|
//
|
||||||
|
// Description : RCSrlクラスに持たせるMRCエラー情報クラス
|
||||||
|
//
|
||||||
|
// Role : 構造体としてデータをまとめておく
|
||||||
|
// -------------------------------------------------------------------
|
||||||
|
public ref class RCMRCError
|
||||||
|
{
|
||||||
|
private:
|
||||||
|
System::String ^hName; // 項目名
|
||||||
|
System::UInt32 ^hBegin; // 開始アドレス
|
||||||
|
System::UInt32 ^hEnd; // 終了アドレス
|
||||||
|
System::String ^hMsg; // エラーメッセージ
|
||||||
|
System::String ^hNameE; // 英語版
|
||||||
|
System::String ^hMsgE;
|
||||||
|
System::Boolean ^hEnableModify; // マスタエディタで修正可能かどうか
|
||||||
|
private:
|
||||||
|
RCMRCError(){} // 封じる
|
||||||
|
public:
|
||||||
|
RCMRCError(
|
||||||
|
System::String ^name, System::UInt32 beg, System::UInt32 end, System::String ^msg,
|
||||||
|
System::String ^nameE, System::String ^msgE, System::Boolean enableModify )
|
||||||
|
{
|
||||||
|
if( name == nullptr )
|
||||||
|
this->hName = gcnew System::String("");
|
||||||
|
else
|
||||||
|
this->hName = name;
|
||||||
|
|
||||||
|
if( nameE == nullptr )
|
||||||
|
this->hNameE = gcnew System::String("");
|
||||||
|
else
|
||||||
|
this->hNameE = nameE;
|
||||||
|
|
||||||
|
this->hBegin = gcnew System::UInt32( beg );
|
||||||
|
this->hEnd = gcnew System::UInt32( end );
|
||||||
|
|
||||||
|
if( msg == nullptr )
|
||||||
|
this->hMsg = gcnew System::String("");
|
||||||
|
else
|
||||||
|
this->hMsg = msg;
|
||||||
|
|
||||||
|
if( msgE == nullptr )
|
||||||
|
this->hMsgE = gcnew System::String("");
|
||||||
|
else
|
||||||
|
this->hMsgE = msgE;
|
||||||
|
|
||||||
|
this->hEnableModify = gcnew System::Boolean( enableModify );
|
||||||
|
}
|
||||||
|
public:
|
||||||
|
// gridViewの表示形式にあわせる
|
||||||
|
cli::array<System::Object^>^ getAll( System::Boolean isJapanese )
|
||||||
|
{
|
||||||
|
if( isJapanese )
|
||||||
|
return (gcnew array<System::Object^>{this->hName, this->hBegin->ToString("X04")+"h", this->hEnd->ToString("X04")+"h", this->hMsg});
|
||||||
|
else
|
||||||
|
return (gcnew array<System::Object^>{this->hNameE, this->hBegin->ToString("X04")+"h", this->hEnd->ToString("X04")+"h", this->hMsgE});
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
// -------------------------------------------------------------------
|
// -------------------------------------------------------------------
|
||||||
// Type : ref class
|
// Type : ref class
|
||||||
// Name : RCSrl
|
// Name : RCSrl
|
||||||
@ -201,10 +262,14 @@ namespace MasterEditorTWL
|
|||||||
//property System::Boolean ^hRegionChina;
|
//property System::Boolean ^hRegionChina;
|
||||||
//property System::Boolean ^hRegionKorea;
|
//property System::Boolean ^hRegionKorea;
|
||||||
|
|
||||||
// SDKバージョンリスト
|
// SDKバージョンと使用ライブラリのリスト
|
||||||
property System::Collections::Generic::List<RCSDKVersion^> ^hSDKList;
|
property System::Collections::Generic::List<RCSDKVersion^> ^hSDKList;
|
||||||
property System::Collections::Generic::List<RCLicense^> ^hLicenseList;
|
property System::Collections::Generic::List<RCLicense^> ^hLicenseList;
|
||||||
|
|
||||||
|
// MRC機能でチェックされたエラー情報のリスト
|
||||||
|
property System::Collections::Generic::List<RCMRCError^> ^hErrorList;
|
||||||
|
property System::Collections::Generic::List<RCMRCError^> ^hWarnList;
|
||||||
|
|
||||||
// constructor and destructor
|
// constructor and destructor
|
||||||
public:
|
public:
|
||||||
RCSrl();
|
RCSrl();
|
||||||
@ -238,6 +303,11 @@ namespace MasterEditorTWL
|
|||||||
ECSrlResult searchSDKVersion( FILE *fp ); // SDKバージョンを取得する
|
ECSrlResult searchSDKVersion( FILE *fp ); // SDKバージョンを取得する
|
||||||
ECSrlResult searchLicenses( FILE *fp ); // 使用ライセンスを取得する
|
ECSrlResult searchLicenses( FILE *fp ); // 使用ライセンスを取得する
|
||||||
|
|
||||||
|
// MRC(Master ROM Checker)機能
|
||||||
|
ECSrlResult mrc( FILE *fp );
|
||||||
|
//ECSrlResult mrcNTR( FILE *fp );
|
||||||
|
//ECSrlResult mrcTWL( FILE *fp );
|
||||||
|
|
||||||
}; // end of ref class RCSrl
|
}; // end of ref class RCSrl
|
||||||
|
|
||||||
} // end of namespace MasterEditorTWL
|
} // end of namespace MasterEditorTWL
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user