mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
提出確認書チェッカ:ファイル追加し忘れ。
git-svn-id: file:///Users/lillianskinner/Downloads/platinum/twl/TwlToolsRED@106 7061adef-622a-194b-ae81-725974e89856
This commit is contained in:
parent
537e1fd9a4
commit
5c3060a667
@ -0,0 +1,251 @@
|
||||
#include "stdafx.h"
|
||||
#include "SheetCheckerTWL.h"
|
||||
#include "crc_whole.h"
|
||||
#include <twl/types.h>
|
||||
#include <twl/os/common/format_rom.h>
|
||||
#include <cstdio>
|
||||
#include "Form1.h"
|
||||
|
||||
using namespace SheetCheckerTWL;
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// ROMヘッダの読み込み
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
System::Boolean readRomHeader( System::String ^srlfile, ROM_Header *rh )
|
||||
{
|
||||
FILE *fp = NULL;
|
||||
const char *pchFilename =
|
||||
(const char*)System::Runtime::InteropServices::Marshal::StringToHGlobalAnsi( srlfile ).ToPointer();
|
||||
|
||||
// ファイルを開いてROMヘッダのみ読み出す
|
||||
if( fopen_s( &fp, pchFilename, "rb" ) != NULL )
|
||||
{
|
||||
return false;
|
||||
}
|
||||
(void)fseek( fp, 0, SEEK_SET ); // ROMヘッダはsrlの先頭から
|
||||
|
||||
// 1バイトをsizeof(~)だけリード (逆だと返り値がsizeof(~)にならないので注意)
|
||||
if( fread( (void*)rh, 1, sizeof(ROM_Header), fp ) != sizeof(ROM_Header) )
|
||||
{
|
||||
fclose( fp );
|
||||
return false;
|
||||
}
|
||||
fclose( fp );
|
||||
return true;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// 提出確認書の読み込み
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
System::Boolean readSheet( System::String ^sheetfile, SheetItem ^item )
|
||||
{
|
||||
// XSLによってXML変換
|
||||
System::String ^tmpfile = ".\\temp" + System::DateTime::Now.ToString("yyyyMMddHHmmss") + ".xml";
|
||||
System::Xml::Xsl::XslCompiledTransform ^xslt = gcnew System::Xml::Xsl::XslCompiledTransform;
|
||||
System::String ^xslpath = System::IO::Path::GetDirectoryName( System::Reflection::Assembly::GetEntryAssembly()->Location )
|
||||
+ "\\extract_sheet.xsl";
|
||||
try
|
||||
{
|
||||
//Console::WriteLine( "xslpath: " + xslpath );
|
||||
xslt->Load( xslpath );
|
||||
xslt->Transform( sheetfile, tmpfile );
|
||||
}
|
||||
catch( System::Exception ^ex )
|
||||
{
|
||||
(void)ex;
|
||||
//Console::WriteLine( "XSLT Error" );
|
||||
return false;
|
||||
}
|
||||
// 変換したXMLを読み込み
|
||||
System::Xml::XmlDocument ^doc = gcnew System::Xml::XmlDocument;
|
||||
try
|
||||
{
|
||||
doc->Load( tmpfile );
|
||||
}
|
||||
catch( System::Exception ^ex )
|
||||
{
|
||||
(void)ex;
|
||||
//Console::WriteLine( "Load error" );
|
||||
return false;
|
||||
}
|
||||
|
||||
// XMLからデータを抽出
|
||||
System::Xml::XmlElement ^root = doc->DocumentElement;
|
||||
System::String ^text;
|
||||
try
|
||||
{
|
||||
item->Media = getXPathText( root, "/Sheet/Media" );
|
||||
|
||||
text = getXPathText( root, "/Sheet/GameCode" );
|
||||
char code[4];
|
||||
int i;
|
||||
for(i=0; i<4; i++ )
|
||||
{
|
||||
code[i] = (char)text[i];
|
||||
}
|
||||
item->GameCode = code; // 代入したらコピーするように property を定義している
|
||||
|
||||
text = getXPathText( root, "/Sheet/RomVersion" );
|
||||
if( text->Contains( "(" ) ) // 事前版のときには"(事前版)"が入る
|
||||
{
|
||||
text = text->Remove( text->IndexOf("(") );
|
||||
}
|
||||
text = text->Trim();
|
||||
item->RomVersion = System::Byte::Parse( text, System::Globalization::NumberStyles::AllowHexSpecifier );
|
||||
|
||||
text = getXPathText( root, "/Sheet/CRC" );
|
||||
if( text->Contains( "0x" ) )
|
||||
{
|
||||
text = text->Substring( text->IndexOf("x")+1 );
|
||||
}
|
||||
item->FileCRC = System::UInt16::Parse( text, System::Globalization::NumberStyles::AllowHexSpecifier );
|
||||
|
||||
text = getXPathText( root, "/Sheet/SubmitVersion" );
|
||||
char c = (char)text[0];
|
||||
if( ('G' <= c) && (c <= 'Z') ) // Fより上はG..Zで表現されていく(可能性あり)
|
||||
{
|
||||
item->SubmitVersion = c - 'G' + 16;
|
||||
}
|
||||
else if( ('g' <= c) && (c <= 'z') )
|
||||
{
|
||||
item->SubmitVersion = c - 'g' + 16;
|
||||
}
|
||||
else
|
||||
{
|
||||
item->SubmitVersion = System::Byte::Parse( text, System::Globalization::NumberStyles::AllowHexSpecifier );
|
||||
}
|
||||
|
||||
text = getXPathText( root, "/Sheet/IsUnnecessaryRating" );
|
||||
if( !System::String::IsNullOrEmpty( text ) && text->Equals( "○" ) )
|
||||
{
|
||||
item->IsUnnecessaryRating = true;
|
||||
}
|
||||
else
|
||||
{
|
||||
item->IsUnnecessaryRating = false;
|
||||
}
|
||||
}
|
||||
catch( System::Exception ^ex )
|
||||
{
|
||||
(void)ex;
|
||||
return false;
|
||||
}
|
||||
|
||||
// 中間ファイルを削除
|
||||
if( System::IO::File::Exists( tmpfile ) )
|
||||
{
|
||||
System::IO::File::Delete( tmpfile );
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// 一致判定
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
SheetCheckerError checkSheet( ROM_Header *rh, System::UInt16 crc, SheetItem ^item )
|
||||
{
|
||||
SheetCheckerError error;
|
||||
if( memcmp( rh->s.game_code, item->GameCode, 4 ) != 0 )
|
||||
{
|
||||
error = SheetCheckerError::ERROR_VERIFY_GAME_CODE;
|
||||
}
|
||||
else if( rh->s.rom_version != item->RomVersion )
|
||||
{
|
||||
error = SheetCheckerError::ERROR_VERIFY_ROM_VERSION;
|
||||
}
|
||||
else if( crc != item->FileCRC )
|
||||
{
|
||||
error = SheetCheckerError::ERROR_VERIFY_CRC;
|
||||
}
|
||||
else
|
||||
{
|
||||
error = SheetCheckerError::NOERROR;
|
||||
}
|
||||
return error;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// getopt
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
// @ret オプションを除いたときのargc
|
||||
System::Int32 parseOption( array<System::String ^> ^args, SheetCheckerContext ^context )
|
||||
{
|
||||
System::Collections::Generic::List<System::Int32> ^indexList
|
||||
= gcnew System::Collections::Generic::List<System::Int32>;
|
||||
|
||||
int numopt = 0;
|
||||
int i;
|
||||
for( i=0; i < args->Length; i++ )
|
||||
{
|
||||
if( args[i]->StartsWith( "-s" ) )
|
||||
{
|
||||
context->bSubmitVersion = true;
|
||||
numopt++;
|
||||
}
|
||||
else if( args[i]->StartsWith( "-r" ) )
|
||||
{
|
||||
context->bResult = true;
|
||||
numopt++;
|
||||
}
|
||||
else if( args[i]->StartsWith( "-t" ) )
|
||||
{
|
||||
context->bTadVersion = true;
|
||||
numopt++;
|
||||
}
|
||||
else if( args[i]->StartsWith( "-a" ) )
|
||||
{
|
||||
context->bUnnecessaryRating = true;
|
||||
numopt++;
|
||||
}
|
||||
else if( !args[i]->StartsWith( "-" ) ) // オプションでない引数のindexを記録
|
||||
{
|
||||
indexList->Add(i);
|
||||
}
|
||||
}
|
||||
i=0;
|
||||
for each( System::Int32 index in indexList ) // オプションでない引数を前につめていく
|
||||
{
|
||||
args[i] = args[index];
|
||||
i++;
|
||||
}
|
||||
return (args->Length - numopt);
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// XMLタグ検索
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
// @ret テキストが存在するときそのテキストを返す。存在しないときnullptr。
|
||||
System::String^ getXPathText( System::Xml::XmlElement ^root, System::String ^xpath )
|
||||
{
|
||||
System::Xml::XmlNode ^tmp = root->SelectSingleNode( xpath );
|
||||
if( tmp && tmp->FirstChild && tmp->FirstChild->Value )
|
||||
{
|
||||
return tmp->FirstChild->Value;
|
||||
}
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
// ------------------------------------------------------------------
|
||||
// String を char 配列に格納
|
||||
// ------------------------------------------------------------------
|
||||
|
||||
// @arg [out] 格納先
|
||||
// @arg [in] 格納元
|
||||
// @arg [in] 文字列長
|
||||
// @arg [in] 余りを埋める padding
|
||||
void setStringToChars( char *pDst, System::String ^hSrc,
|
||||
const System::Int32 nMax, const System::SByte pad )
|
||||
{
|
||||
System::Int32 i;
|
||||
|
||||
memset( pDst, pad, nMax );
|
||||
for( i=0; (i < hSrc->Length) && (i < nMax); i++ )
|
||||
{
|
||||
pDst[i] = (char)hSrc[i];
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user