diff options
author | Johannes Schickel | 2009-09-16 23:03:48 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-09-16 23:03:48 +0000 |
commit | 1b75a1825ede80a21b2cac65d7b574342575dc0d (patch) | |
tree | 20efc4971a927121f5adf461ab94e271cfa74687 /tools | |
parent | c4e8c51110f70dd7bc36b19ade4149f87d00a5ab (diff) | |
download | scummvm-rg350-1b75a1825ede80a21b2cac65d7b574342575dc0d.tar.gz scummvm-rg350-1b75a1825ede80a21b2cac65d7b574342575dc0d.tar.bz2 scummvm-rg350-1b75a1825ede80a21b2cac65d7b574342575dc0d.zip |
Extract "kTypeTownsWDSfxTable" via a special extraction routine instead of a hacky patch level.
svn-id: r44125
Diffstat (limited to 'tools')
-rw-r--r-- | tools/create_kyradat/create_kyradat.cpp | 37 | ||||
-rw-r--r-- | tools/create_kyradat/create_kyradat.h | 1 |
2 files changed, 21 insertions, 17 deletions
diff --git a/tools/create_kyradat/create_kyradat.cpp b/tools/create_kyradat/create_kyradat.cpp index 6064202913..9cc4dd95d0 100644 --- a/tools/create_kyradat/create_kyradat.cpp +++ b/tools/create_kyradat/create_kyradat.cpp @@ -48,6 +48,8 @@ bool extractStrings10(PAKFile &out, const Game *g, const byte *data, const uint3 bool extractRooms(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch); bool extractShapes(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch); bool extractAmigaSfx(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch); +bool extractWdSfx(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch); + bool extractHofSeqData(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch); bool extractHofShapeAnimDataV1(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch); bool extractHofShapeAnimDataV2(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch); @@ -74,6 +76,7 @@ const ExtractType extractTypeTable[] = { { kTypeShapeList, extractShapes, createFilename }, { kTypeRawData, extractRaw, createFilename }, { kTypeAmigaSfxTable, extractAmigaSfx, createFilename }, + { kTypeTownsWDSfxTable, extractWdSfx, createFilename }, { k2TypeSeqData, extractHofSeqData, createFilename }, { k2TypeShpDataV1, extractHofShapeAnimDataV1, createFilename }, @@ -202,7 +205,7 @@ const ExtractFilename extractFilenames[] = { { kCreditsStrings, kTypeRawData, "CREDITS" }, // FM-TOWNS specific - { kKyra1TownsSFXwdTable, kTypeRawData, "SFXWDTABLE" }, + { kKyra1TownsSFXwdTable, kTypeTownsWDSfxTable, "SFXWDTABLE" }, { kKyra1TownsSFXbtTable, kTypeRawData, "SFXBTTABLE" }, { kKyra1TownsCDATable, kTypeRawData, "CDATABLE" }, @@ -414,23 +417,11 @@ void createLangFilename(char *dstFilename, const int gid, const int lang, const // extraction bool extractRaw(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch) { - uint8 *buffer = 0; - - if (fmtPatch == 2) { - buffer = new uint8[0x12602]; - assert(buffer); - memcpy(buffer, data, 0x7EE5); - memcpy(buffer + 0x7EE5, data + 0x7EE7, 0x7FFF); - memcpy(buffer + 0xFEE4, data + 0xFEE8, 0x271E); - - return out.addFile(filename, buffer, 0x12602); - } else { - buffer = new uint8[size]; - assert(buffer); - memcpy(buffer, data, size); + uint8 *buffer = new uint8[size]; + assert(buffer); + memcpy(buffer, data, size); - return out.addFile(filename, buffer, size); - } + return out.addFile(filename, buffer, size); } bool extractStrings(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch) { @@ -673,6 +664,18 @@ bool extractAmigaSfx(PAKFile &out, const Game *g, const byte *data, const uint32 return out.addFile(filename, buffer, entries * 6 + 1 * 4); } +bool extractWdSfx(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch) { + const int bufferSize = 0x12602; + + uint8 *buffer = new uint8[0x12602]; + assert(buffer); + memcpy(buffer, data, 0x7EE5); + memcpy(buffer + 0x7EE5, data + 0x7EE7, 0x7FFF); + memcpy(buffer + 0xFEE4, data + 0xFEE8, 0x271E); + + return out.addFile(filename, buffer, bufferSize); +} + bool extractHofSeqData(PAKFile &out, const Game *g, const byte *data, const uint32 size, const char *filename, int fmtPatch) { int numSequences = 0; int numNestedSequences = 0; diff --git a/tools/create_kyradat/create_kyradat.h b/tools/create_kyradat/create_kyradat.h index 00f2ec7b02..e64f278109 100644 --- a/tools/create_kyradat/create_kyradat.h +++ b/tools/create_kyradat/create_kyradat.h @@ -360,6 +360,7 @@ enum kExtractType { kTypeShapeList, kTypeRawData, kTypeAmigaSfxTable, + kTypeTownsWDSfxTable, k2TypeSeqData, k2TypeShpDataV1, |