diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/create_kyradat/create_kyradat.cpp | 6 | ||||
-rw-r--r-- | tools/create_kyradat/create_kyradat.h | 4 | ||||
-rw-r--r-- | tools/create_kyradat/games.cpp | 2 | ||||
-rw-r--r-- | tools/create_kyradat/tables.cpp | 7 |
4 files changed, 14 insertions, 5 deletions
diff --git a/tools/create_kyradat/create_kyradat.cpp b/tools/create_kyradat/create_kyradat.cpp index 99ce7a3817..dc20400acd 100644 --- a/tools/create_kyradat/create_kyradat.cpp +++ b/tools/create_kyradat/create_kyradat.cpp @@ -37,7 +37,7 @@ #include "md5.h" enum { - kKyraDatVersion = 62, + kKyraDatVersion = 63, kIndexSize = 12 }; @@ -218,7 +218,7 @@ const ExtractFilename extractFilenames[] = { { kLolMusicTrackMap, kTypeRawData, "MUSIC.MAP" }, { kLolGMSfxIndex, kTypeRawData, "SFX_GM.MAP" }, { kLolMT32SfxIndex, kTypeRawData, "SFX_MT32.MAP" }, - //{ kLolADLSfxIndex, kTypeRawData, "SFX_ADL.MAP" }, + { kLolPcSpkSfxIndex, kTypeRawData, "SFX_PCS.MAP" }, { kLolSpellProperties, kTypeRawData, "SPELLS.DEF" }, { kLolGameShapeMap, kTypeRawData, "GAMESHP.MAP" }, { kLolSceneItemOffs, kTypeRawData, "ITEMOFFS.DEF" }, @@ -881,6 +881,8 @@ const char *getIdString(const int id) { return "kLolGMSfxIndex"; case kLolMT32SfxIndex: return "kLolMT32SfxIndex"; + case kLolPcSpkSfxIndex: + return "kLolPcSpkSfxIndex"; case kLolSpellProperties: return "kLolSpellProperties"; case kLolGameShapeMap: diff --git a/tools/create_kyradat/create_kyradat.h b/tools/create_kyradat/create_kyradat.h index ea877414bc..c7a560cff5 100644 --- a/tools/create_kyradat/create_kyradat.h +++ b/tools/create_kyradat/create_kyradat.h @@ -197,7 +197,7 @@ enum kExtractID { kLolMusicTrackMap, kLolGMSfxIndex, kLolMT32SfxIndex, - //lolADLSfxIndex, + kLolPcSpkSfxIndex, kLolSpellProperties, kLolGameShapeMap, kLolSceneItemOffs, @@ -206,7 +206,6 @@ enum kExtractID { kLolCharDefsMan, kLolCharDefsWoman, kLolCharDefsKieran, - //lolCharDefsUnk, kLolCharDefsAkshel, kLolExpRequirements, kLolMonsterModifiers, @@ -264,7 +263,6 @@ enum kExtractID { kLolLegendData, kLolMapCursorOvl, kLolMapStringId, - //lolMapPal, kLolSpellbookAnim, kLolSpellbookCoords, diff --git a/tools/create_kyradat/games.cpp b/tools/create_kyradat/games.cpp index aa84e4f7ee..a3c8ac0e2c 100644 --- a/tools/create_kyradat/games.cpp +++ b/tools/create_kyradat/games.cpp @@ -683,6 +683,7 @@ const int lolFloppyNeed[] = { kLolMusicTrackMap, kLolGMSfxIndex, kLolMT32SfxIndex, + kLolPcSpkSfxIndex, kLolSpellProperties, kLolGameShapeMap, kLolSceneItemOffs, @@ -854,6 +855,7 @@ const int lolCDFile2Need[] = { kLolMusicTrackMap, kLolGMSfxIndex, kLolMT32SfxIndex, + kLolPcSpkSfxIndex, kLolSpellProperties, kLolGameShapeMap, kLolSceneItemOffs, diff --git a/tools/create_kyradat/tables.cpp b/tools/create_kyradat/tables.cpp index 0204e78edf..e0d1497a3f 100644 --- a/tools/create_kyradat/tables.cpp +++ b/tools/create_kyradat/tables.cpp @@ -1308,6 +1308,12 @@ const ExtractEntrySearchData kLolMT32SfxIndexProvider[] = { EXTRACT_END_ENTRY }; +const ExtractEntrySearchData kLolPcSpkSfxIndexProvider[] = { + { UNK_LANG, kPlatformPC, { 0x000000FA, 0x00005EFC, { { 0xA3, 0x5C, 0x69, 0xED, 0x13, 0xEC, 0x08, 0x0E, 0xFA, 0x72, 0x83, 0x0D, 0xD7, 0x8D, 0x9C, 0x70 } } } }, + + EXTRACT_END_ENTRY +}; + const ExtractEntrySearchData kLolSpellPropertiesProvider[] = { { UNK_LANG, kPlatformPC, { 0x00000118, 0x00000B06, { { 0x27, 0x69, 0x53, 0x01, 0xA0, 0xE3, 0x76, 0xAA, 0x33, 0xA4, 0x52, 0x11, 0x52, 0xB1, 0x0E, 0xDA } } } }, @@ -1857,6 +1863,7 @@ const ExtractEntry extractProviders[] = { { kLolMusicTrackMap, kLolMusicTrackMapProvider }, { kLolGMSfxIndex, kLolGMSfxIndexProvider }, { kLolMT32SfxIndex, kLolMT32SfxIndexProvider }, + { kLolPcSpkSfxIndex, kLolPcSpkSfxIndexProvider }, { kLolSpellProperties, kLolSpellPropertiesProvider }, { kLolGameShapeMap, kLolGameShapeMapProvider }, { kLolSceneItemOffs, kLolSceneItemOffsProvider }, |