From 2680caa5bde09e3ecc7a1c8ef6c345e2bc9a134b Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 15 May 2016 18:43:33 -0400 Subject: DEVTOOLS: Creation of titanic.dat for holding static data --- devtools/create_titanic/create_titanic_dat.cpp | 205 +++++++++++++++++++++++++ 1 file changed, 205 insertions(+) create mode 100644 devtools/create_titanic/create_titanic_dat.cpp (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp new file mode 100644 index 0000000000..e41b125713 --- /dev/null +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -0,0 +1,205 @@ +/* ScummVM - Graphic Adventure Engine + * + * ScummVM is the legal property of its developers, whose names + * are too numerous to list here. Please refer to the COPYRIGHT + * file distributed with this source distribution. + * + * This program is free software; you can redistribute it and/or + * modify it under the terms of the GNU General Public License + * as published by the Free Software Foundation; either version 2 + * of the License, or (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. + * + */ + + // Disable symbol overrides so that we can use system headers. +#define FORBIDDEN_SYMBOL_ALLOW_ALL + +// HACK to allow building with the SDL backend on MinGW +// see bug #1800764 "TOOLS: MinGW tools building broken" +#ifdef main +#undef main +#endif // main + +#include +#include +#include +#include "common/language.h" +#include "common/rect.h" +#include "winexe_pe.h" +#include "file.h" + +/** + * Format of the access.dat file that will be created: + * 4 Bytes - Magic string 'SVTN' to identify valid data file + * 2 bytes - Version number + * + * Following is a series of index entries with the following fields: + * 4 bytes - offset in file of entry + * 4 bytes - size of entry in the file + * ASCIIZ - name of the resource + */ + +#define VERSION_NUMBER 1 + +Common::File inputFile, outputFile; +Common::PEResources res; +uint headerOffset = 6; +uint dataOffset = 0x200; +#define SEGMENT_OFFSET 0x401C00 + +void NORETURN_PRE error(const char *s, ...) { + printf("%s\n", s); + exit(1); +} + +void writeEntryHeader(const char *name, uint offset, uint size) { + assert(headerOffset < 0x200); + outputFile.seek(headerOffset); + outputFile.writeLong(offset); + outputFile.writeLong(size); + outputFile.writeString(name); + + headerOffset += 8 + strlen(name) + 1; +} + +void writeFinalEntryHeader() { + assert(headerOffset <= 0x1F8); + outputFile.seek(headerOffset); + outputFile.writeLong(0); + outputFile.writeLong(0); +} + +void writeStringArray(const char *name, uint offset, int count) { + outputFile.seek(dataOffset); + + inputFile.seek(offset); + uint *offsets = new uint[count]; + for (int idx = 0; idx < count; ++idx) + offsets[idx] = inputFile.readLong(); + + // Iterate through reading each string + for (int idx = 0; idx < count; ++idx) { + if (offsets[idx]) { + inputFile.seek(offsets[idx] - SEGMENT_OFFSET); + outputFile.writeString(inputFile); + } else { + outputFile.writeString(""); + } + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader(name, dataOffset, size); + dataOffset += size; + + delete[] offsets; +} + +Common::WinResourceID getResId(uint id) { + return Common::WinResourceID(id); +} + +Common::WinResourceID getResId(const char *id) { + if (!strcmp(id, "Bitmap")) + return Common::WinResourceID(2); + + return Common::WinResourceID(id); +} + +void writeResource(const char *name, Common::File *file) { + outputFile.seek(dataOffset); + outputFile.write(*file, file->size()); + + writeEntryHeader(name, dataOffset, file->size()); + dataOffset += file->size(); + delete file; +} + +void writeResource(const char *sectionStr, const uint32 resId) { + char nameBuffer[256]; + sprintf(nameBuffer, "%s/%d", sectionStr, resId); + + Common::File *file = res.getResource(getResId(sectionStr), resId); + assert(file); + writeResource(nameBuffer, file); +} + +void writeResource(const char *sectionStr, const char *resId) { + char nameBuffer[256]; + sprintf(nameBuffer, "%s/%s", sectionStr, resId); + + Common::File *file = res.getResource(getResId(sectionStr), + Common::WinResourceID(resId)); + assert(file); + writeResource(nameBuffer, file); +} + +void writeHeader() { + // Write out magic string + const char *MAGIC_STR = "SVTN"; + outputFile.write(MAGIC_STR, 4); + + // Write out version number + outputFile.writeWord(VERSION_NUMBER); +} + +void writeData() { + writeStringArray("TEXT/STRINGS1", 0x21B7C8, 376); + writeStringArray("TEXT/STRINGS2", 0x21BDB0, 218); + writeStringArray("TEXT/STRINGS3", 0x21C120, 1576); + writeStringArray("TEXT/STRINGS4", 0x21D9C8, 82); + + writeResource("Bitmap", "BACKDROP"); + writeResource("Bitmap", "EVILTWIN"); + writeResource("Bitmap", "RESTORED"); + writeResource("Bitmap", "RESTOREF"); + writeResource("Bitmap", "RESTOREU"); + writeResource("Bitmap", "STARTD"); + writeResource("Bitmap", "STARTF"); + writeResource("Bitmap", "STARTU"); + writeResource("Bitmap", "TITANIC"); + writeResource("Bitmap", 133); + writeResource("Bitmap", 164); + writeResource("Bitmap", 165); + + writeResource("STFONT", 149); + writeResource("STFONT", 151); + writeResource("STFONT", 152); + writeResource("STFONT", 153); + + writeResource("TEXT", "STVOCAB.TXT"); + writeResource("TEXT", "JRQUOTES.TXT"); + writeResource("TEXT", 155); +} + +int main(int argc, char *argv[]) { + if (argc != 3) { + printf("Format: %s ST.exe titanic.dat\n", argv[0]); + exit(0); + } + + if (!inputFile.open(argv[1])) { + error("Could not open input file"); + } + res.loadFromEXE(argv[1]); + + if (!outputFile.open(argv[2], Common::kFileWriteMode)) { + error("Could not open output file"); + } + + writeHeader(); + writeData(); + writeFinalEntryHeader(); + + inputFile.close(); + outputFile.close(); + return 0; +} -- cgit v1.2.3 From b37da849c936cc1842969b150e84dd0ad145f576 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 15 May 2016 23:15:24 -0400 Subject: TITANIC: Implement TTparser searchAndReplace methods --- devtools/create_titanic/create_titanic_dat.cpp | 86 +++++++++++++++++++++++--- 1 file changed, 79 insertions(+), 7 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index e41b125713..2f6050846a 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -49,20 +49,74 @@ */ #define VERSION_NUMBER 1 +#define HEADER_SIZE 0x280 Common::File inputFile, outputFile; Common::PEResources res; uint headerOffset = 6; -uint dataOffset = 0x200; +uint dataOffset = HEADER_SIZE; #define SEGMENT_OFFSET 0x401C00 +static const char *const ITEM_NAMES[46] = { + "LeftArmWith", "LeftArmWithout", "RightArmWith", "RightArmWithout", "BridgeRed", + "BridgeYellow", "BridgeBlue", "BridgeGreen", "Parrot", "CentralCore", "BrainGreen", + "BrainYellow", "BrainRed", "BrainBlue", "ChickenGreasy", "ChickenPlain", "ChickenPurple", + "ChickenRed", "ChickenYellow", "CrushedTV", "Ear", "Ear1", "Eyeball", "Eyeball1", + "Feather", "Lemon", "GlassEmpty", "GlassPurple", "GlassRed", "GlassYellow", "Hammer", + "Hose", "HoseEnd", "LiftHead", "LongStick", "Magazine", "Mouth", "MusicKey", "Napkin", + "Nose", "Perch", "PhonoCylinder", "PhonoCylinder1", "PhonoCylinder2", "PhonoCylinder3", + "Photo" +}; + +static const char *const ITEM_DESCRIPTIONS[46] = { + "The Maitre d'Bot's left arm holding a key", "The Maitre d'Bot's left arm", + "The Maitre d'Bot's right arm holding Titania's auditory center", + "The Maitre d'Bot's right arm", "Red Fuse", "Yellow Fuse", "Blue Fuse", + "Green Fuse", "The Parrot", "Titania's central intelligence core", + "Titania's auditory center", "Titania's olfactory center", + "Titania's speech center", "Titania's vision center", "rather greasy chicken", + "very plain chicken", "chicken smeared with starling pur$e", + "chicken covered with tomato sauce", "chicken coated in mustard sauce", + "A crushed television set", "Titania's ear", "Titania's ear", "Titania's eye", + "Titania's eye", "A parrot feather", "A nice fat juicy lemon", + "An empty beer glass", "A beer glass containing pur$ed flock of starlings", + "A beer glass containing tomato sauce", "A beer glass containing mustard sauce", + "A hammer", "A hose", "The other end of a hose", "The LiftBot's head", + "A rather long stick", "A magazine", "Titania's mouth", "A key", + "A super-absorbent napkin", "Titania's nose", "A perch", "A phonograph cylinder", + "A phonograph cylinder", "A phonograph cylinder", "A phonograph cylinder", + "A photograph" +}; + +static const char *const ITEM_IDS[40] = { + "MaitreD Left Arm", "MaitreD Right Arm", "OlfactoryCentre", "AuditoryCentre", + "SpeechCentre", "VisionCentre", "CentralCore", "Perch", "SeasonBridge", + "FanBridge", "BeamBridge", "ChickenBridge", "CarryParrot", "Chicken", + "CrushedTV", "Feathers", "Lemon", "BeerGlass", "BigHammer", "Ear1", "Ear 2", + "Eye1", "Eye2", "Mouth", "Nose", "NoseSpare", "Hose", "DeadHoseSpare", + "HoseEnd", "DeadHoseEndSpare", "BrokenLiftbotHead", "LongStick", "Magazine", + "Napkin", "Phonograph Cylinder", "Phonograph Cylinder 1", "Phonograph Cylinder 2", + "Phonograph Cylinder 3", "Photograph", "Music System Key" +}; + +static const char *const ROOM_NAMES[34] = { + "1stClassLobby", "1stClassRestaurant", "1stClassState", + "2ndClassLobby", "secClassState", "Arboretum", "FrozenArboretum", + "Bar", "BilgeRoom", "BilgeRoomWith", "BottomOfWell", "Bridge", + "CreatorsChamber", "CreatorsChamberOn", "Dome", "Home", "Lift", + "EmbLobby", "MoonEmbLobby", "MusicRoomLobby", "MusicRoom", + "ParrotLobby", "Pellerator", "PromenadeDeck", "SculptureChamber", + "SecClassLittleLift", "ServiceElevator", "SGTLeisure", "SGTLittleLift", + "SgtLobby", "SGTState", "Titania", "TopOfWell", "PlayersRoom" +}; + void NORETURN_PRE error(const char *s, ...) { printf("%s\n", s); exit(1); } void writeEntryHeader(const char *name, uint offset, uint size) { - assert(headerOffset < 0x200); + assert(headerOffset < HEADER_SIZE); outputFile.seek(headerOffset); outputFile.writeLong(offset); outputFile.writeLong(size); @@ -72,7 +126,7 @@ void writeEntryHeader(const char *name, uint offset, uint size) { } void writeFinalEntryHeader() { - assert(headerOffset <= 0x1F8); + assert(headerOffset <= (HEADER_SIZE - 8)); outputFile.seek(headerOffset); outputFile.writeLong(0); outputFile.writeLong(0); @@ -103,6 +157,19 @@ void writeStringArray(const char *name, uint offset, int count) { delete[] offsets; } +void writeStringArray(const char *name, const char *const *strings, int count) { + outputFile.seek(dataOffset); + + // Iterate through writing each string + for (int idx = 0; idx < count; ++idx) { + outputFile.writeString(strings[idx]); + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader(name, dataOffset, size); + dataOffset += size; +} + Common::WinResourceID getResId(uint id) { return Common::WinResourceID(id); } @@ -152,10 +219,15 @@ void writeHeader() { } void writeData() { - writeStringArray("TEXT/STRINGS1", 0x21B7C8, 376); - writeStringArray("TEXT/STRINGS2", 0x21BDB0, 218); - writeStringArray("TEXT/STRINGS3", 0x21C120, 1576); - writeStringArray("TEXT/STRINGS4", 0x21D9C8, 82); + writeStringArray("TEXT/ITEM_DESCRIPTIONS", ITEM_DESCRIPTIONS, 46); + writeStringArray("TEXT/ITEM_NAMES", ITEM_NAMES, 46); + writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40); + writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34); + + writeStringArray("TEXT/PHRASES", 0x21B7C8, 376); + writeStringArray("TEXT/REPLACEMENTS1", 0x21BDB0, 218); + writeStringArray("TEXT/REPLACEMENTS2", 0x21C120, 1576); + writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); writeResource("Bitmap", "BACKDROP"); writeResource("Bitmap", "EVILTWIN"); -- cgit v1.2.3 From 3878f38d8c76f2289be1f53bbecf9cda95e43067 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 16 May 2016 19:59:09 -0400 Subject: TITANIC: Move replacement string arrays into TTparser, added NUMBERS array --- devtools/create_titanic/create_titanic_dat.cpp | 122 ++++++++++++++++++++++--- 1 file changed, 111 insertions(+), 11 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 2f6050846a..ca55f7c5cf 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -49,7 +49,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x280 +#define HEADER_SIZE 0x290 Common::File inputFile, outputFile; Common::PEResources res; @@ -110,6 +110,90 @@ static const char *const ROOM_NAMES[34] = { "SgtLobby", "SGTState", "Titania", "TopOfWell", "PlayersRoom" }; +struct NumberEntry { + const char *_text; + int _value; + uint _flags; +}; + +const NumberEntry NUMBERS[76] = { + { "a", 1, 3 }, + { "and", 0, 1 }, + { "negative", 0, 10 }, + { "minus", 0, 10 }, + { "below zeor", 0, 8 }, + { "degrees below zero", 0, 8 }, + { "nil", 0, 2 }, + { "zero", 0, 2 }, + { "one", 1, 0x12 }, + { "two", 2, 0x12 }, + { "three", 3, 0x12 }, + { "four", 4, 0x12 }, + { "five", 5, 0x12 }, + { "six", 6, 0x12 }, + { "seven", 7, 0x12 }, + { "eight", 8, 0x12 }, + { "nine", 9, 0x12 }, + { "0", 0, 2 }, + { "1", 1, 2 }, + { "2", 2, 2 }, + { "3", 3, 2 }, + { "4", 4, 2 }, + { "5", 5, 2 }, + { "6", 6, 2 }, + { "7", 7, 2 }, + { "8", 8, 2 }, + { "9", 9, 2 }, + { "first", 1, 2 }, + { "second", 2, 2 }, + { "third", 3, 2 }, + { "fourth", 4, 2 }, + { "fifth", 5, 2 }, + { "sixth", 6, 2 }, + { "seventh", 7, 2 }, + { "eighth", 8, 2 }, + { "ninth", 9, 2 }, + { "ten", 10, 2 }, + { "eleven", 11, 2 }, + { "twelve", 12, 2 }, + { "thirteen", 13, 2 }, + { "fourteen", 14, 2 }, + { "fifteen", 15, 2 }, + { "sixteen", 16, 2 }, + { "seventeen", 17, 2 }, + { "eighteen", 18, 2 }, + { "nineteen", 19, 2 }, + { "tenth", 10, 2 }, + { "eleventh", 11, 2 }, + { "twelfth", 12, 2 }, + { "thirteenth", 13, 2 }, + { "fourteenth", 14, 2 }, + { "fifteenth", 15, 2 }, + { "sixteenth", 16, 2 }, + { "seventeenth", 17, 2 }, + { "eighteenth", 18, 2 }, + { "nineteenth", 19, 2 }, + { "twenty", 20, 0x12 }, + { "thirty", 30, 0x12 }, + { "forty", 40, 0x12 }, + { "fourty", 40, 0x12 }, + { "fifty", 50, 0x12 }, + { "sixty", 60, 0x12 }, + { "seventy", 70, 0x12 }, + { "eighty", 80, 0x12 }, + { "ninety", 90, 0x12 }, + { "twentieth", 20, 2 }, + { "thirtieth", 30, 2 }, + { "fortieth", 40, 2 }, + { "fiftieth", 50, 2 }, + { "sixtieth", 60, 2 }, + { "seventieth", 70, 2 }, + { "eightieth", 80, 2 }, + { "ninetieth", 90, 2 }, + { "hundred", 100, 4 }, + { "hundredth", 100, 6 } +}; + void NORETURN_PRE error(const char *s, ...) { printf("%s\n", s); exit(1); @@ -209,6 +293,21 @@ void writeResource(const char *sectionStr, const char *resId) { writeResource(nameBuffer, file); } +void writeNumbers() { + outputFile.seek(dataOffset); + + // Iterate through writing each string + for (int idx = 0; idx < 76; ++idx) { + outputFile.writeString(NUMBERS[idx]._text); + outputFile.writeLong(NUMBERS[idx]._value); + outputFile.writeLong(NUMBERS[idx]._flags); + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("TEXT/NUMBERS", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -219,16 +318,6 @@ void writeHeader() { } void writeData() { - writeStringArray("TEXT/ITEM_DESCRIPTIONS", ITEM_DESCRIPTIONS, 46); - writeStringArray("TEXT/ITEM_NAMES", ITEM_NAMES, 46); - writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40); - writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34); - - writeStringArray("TEXT/PHRASES", 0x21B7C8, 376); - writeStringArray("TEXT/REPLACEMENTS1", 0x21BDB0, 218); - writeStringArray("TEXT/REPLACEMENTS2", 0x21C120, 1576); - writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); - writeResource("Bitmap", "BACKDROP"); writeResource("Bitmap", "EVILTWIN"); writeResource("Bitmap", "RESTORED"); @@ -250,6 +339,17 @@ void writeData() { writeResource("TEXT", "STVOCAB.TXT"); writeResource("TEXT", "JRQUOTES.TXT"); writeResource("TEXT", 155); + + writeStringArray("TEXT/ITEM_DESCRIPTIONS", ITEM_DESCRIPTIONS, 46); + writeStringArray("TEXT/ITEM_NAMES", ITEM_NAMES, 46); + writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40); + writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34); + + writeStringArray("TEXT/PHRASES", 0x21B7C8, 376); + writeStringArray("TEXT/REPLACEMENTS1", 0x21BDB0, 218); + writeStringArray("TEXT/REPLACEMENTS2", 0x21C120, 1576); + writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); + writeNumbers(); } int main(int argc, char *argv[]) { -- cgit v1.2.3 From 938ec867fe6d172c4489bb28ab4a2609004459dc Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 22 May 2016 15:51:35 -0400 Subject: TITANIC: Added TTword isClass method --- devtools/create_titanic/create_titanic_dat.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index ca55f7c5cf..35157b07cf 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -49,7 +49,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x290 +#define HEADER_SIZE 0x300 Common::File inputFile, outputFile; Common::PEResources res; @@ -349,6 +349,8 @@ void writeData() { writeStringArray("TEXT/REPLACEMENTS1", 0x21BDB0, 218); writeStringArray("TEXT/REPLACEMENTS2", 0x21C120, 1576); writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); + writeStringArray("TEXT/PRONOUNS", 0x22F718, 15); + writeNumbers(); } -- cgit v1.2.3 From ef3bd4e28609749b4ada71210dce079cd77dc2a4 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 30 May 2016 22:35:45 -0400 Subject: DEVTOOLS: Adding Deskbot tags list --- devtools/create_titanic/create_titanic_dat.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 35157b07cf..9b8e8caa58 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -36,6 +36,7 @@ #include "common/rect.h" #include "winexe_pe.h" #include "file.h" +#include "script_tags.h" /** * Format of the access.dat file that will be created: @@ -352,6 +353,7 @@ void writeData() { writeStringArray("TEXT/PRONOUNS", 0x22F718, 15); writeNumbers(); + writeAllScriptTags(); } int main(int argc, char *argv[]) { -- cgit v1.2.3 From ec33749157a18780b7df13733f23af831d4cb096 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 31 May 2016 20:52:16 -0400 Subject: DEVTOOLS: Add Bellbot script responses to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 43 +++++++++++++++++++++++++- 1 file changed, 42 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 9b8e8caa58..133bad577d 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -36,7 +36,7 @@ #include "common/rect.h" #include "winexe_pe.h" #include "file.h" -#include "script_tags.h" +#include "script_responses.h" /** * Format of the access.dat file that will be created: @@ -356,7 +356,48 @@ void writeData() { writeAllScriptTags(); } +// Support method used for translating IDA debugger's output for +// an NPC's chooseResponse method tag list to a format for inclusion +// in this tool's script_respones.cpp file +void createScriptResponses() { + Common::File inFile; + char line[80]; + char c[2]; + c[0] = c[1] = '\0'; + + inFile.open("d:\\temp\\bellbot.txt"); + printf("static const int xxxx_RESPONSES[][5] = {\n"); + + do { + strcpy(line, ""); + + while (!inFile.eof()) { + c[0] = inFile.readByte(); + if (c[0] == '\n') + c[0] = ' '; + else if (c[0] == '\r') + continue; + strcat(line, c); + if (inFile.eof() || strlen(line) == (5 * 9)) + break; + } + + int tag, v1, v2, v3, v4; + sscanf(line, "%x %x %x %x %x", &tag, &v1, &v2, &v3, &v4); + + printf("\t{ MKTAG('%c', '%c', '%c', '%c'), %d, %d, %d, %d },\n", + (tag >> 24) & 0xff, (tag >> 16) & 0xff, (tag >> 8) & 0xff, tag & 0xff, + v1, v2, v3, v4); + + } while (!inFile.eof()); + + printf("};\r\n"); + inFile.close(); +} + int main(int argc, char *argv[]) { + createScriptResponses(); + if (argc != 3) { printf("Format: %s ST.exe titanic.dat\n", argv[0]); exit(0); -- cgit v1.2.3 From f51a428f8b32323a4328d69dff7c5afd48630224 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 31 May 2016 21:01:13 -0400 Subject: DEVTOOLS: Fixes to Deskbot responses in create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 133bad577d..11b963c37f 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -353,7 +353,7 @@ void writeData() { writeStringArray("TEXT/PRONOUNS", 0x22F718, 15); writeNumbers(); - writeAllScriptTags(); + writeAllScriptResponses(); } // Support method used for translating IDA debugger's output for @@ -365,7 +365,7 @@ void createScriptResponses() { char c[2]; c[0] = c[1] = '\0'; - inFile.open("d:\\temp\\bellbot.txt"); + inFile.open("d:\\temp\\deskbot.txt"); printf("static const int xxxx_RESPONSES[][5] = {\n"); do { @@ -396,8 +396,6 @@ void createScriptResponses() { } int main(int argc, char *argv[]) { - createScriptResponses(); - if (argc != 3) { printf("Format: %s ST.exe titanic.dat\n", argv[0]); exit(0); -- cgit v1.2.3 From ba5e13d479f3c8615e8c0984c58e86421499f1b3 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 31 May 2016 21:47:12 -0400 Subject: TITANIC: Set up loading of deskbot & bellbot script response lists --- devtools/create_titanic/create_titanic_dat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 11b963c37f..4999ee3f7d 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -50,7 +50,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x300 +#define HEADER_SIZE 0x340 Common::File inputFile, outputFile; Common::PEResources res; -- cgit v1.2.3 From 764cfcb6d6ccad3046c9d96788b3edd5857f1c79 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 4 Jun 2016 17:24:38 -0400 Subject: TITANIC: gcc compilation fixes --- devtools/create_titanic/create_titanic_dat.cpp | 46 +++++++++++++++++++++++++- 1 file changed, 45 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 4999ee3f7d..b8d3565368 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -50,7 +50,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x340 +#define HEADER_SIZE 0x380 Common::File inputFile, outputFile; Common::PEResources res; @@ -309,6 +309,47 @@ void writeNumbers() { dataOffset += size; } +void writeResponseTree() { + const int FILE_DIFF = 0x401C00; + outputFile.seek(dataOffset); + + inputFile.seek(0x619500 - FILE_DIFF); + char buffer[32]; + inputFile.read(buffer, 32); + if (strcmp(buffer, "ReadInt(): No number to read")) { + printf("Could not find tree data at expected position\n"); + exit(1); + } + + for (int idx = 0; idx < 1022; ++idx) { + inputFile.seek(0x619520 - FILE_DIFF + idx * 8); + uint id = inputFile.readLong(); + uint offset = inputFile.readLong(); + + outputFile.writeLong(id); + if (!id) { + // An end of list id + } else if (offset >= 0x619520 && offset <= 0x61B510) { + // Offset to another table + outputFile.writeByte(0); + outputFile.writeLong((offset - 0x619520) / 8); + } else { + // Offset to ASCIIZ string + outputFile.writeByte(1); + inputFile.seek(offset - FILE_DIFF); + char c; + do { + c = inputFile.readByte(); + outputFile.writeByte(c); + } while (c); + } + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("TEXT/TREE", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -337,6 +378,8 @@ void writeData() { writeResource("STFONT", 152); writeResource("STFONT", 153); + writeResource("STARFIELD", 132); + writeResource("TEXT", "STVOCAB.TXT"); writeResource("TEXT", "JRQUOTES.TXT"); writeResource("TEXT", 155); @@ -351,6 +394,7 @@ void writeData() { writeStringArray("TEXT/REPLACEMENTS2", 0x21C120, 1576); writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); writeStringArray("TEXT/PRONOUNS", 0x22F718, 15); + writeResponseTree(); writeNumbers(); writeAllScriptResponses(); -- cgit v1.2.3 From 59c033e68f09f323601f17892dfa2a270c8f8a00 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 6 Jun 2016 08:51:37 -0400 Subject: DEVTOOLS: Start of script ranges addition to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index b8d3565368..03d05528fc 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -37,6 +37,7 @@ #include "winexe_pe.h" #include "file.h" #include "script_responses.h" +#include "script_ranges.h" /** * Format of the access.dat file that will be created: @@ -398,6 +399,7 @@ void writeData() { writeNumbers(); writeAllScriptResponses(); + writeAllScriptRanges(); } // Support method used for translating IDA debugger's output for -- cgit v1.2.3 From 9a35125d65fcba2df05a0a226878da43c0394319 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 6 Jun 2016 22:40:20 -0400 Subject: TITANIC: Added Deskbot ranges to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 03d05528fc..506aaaec70 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -51,7 +51,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x380 +#define HEADER_SIZE 0x400 Common::File inputFile, outputFile; Common::PEResources res; -- cgit v1.2.3 From e9c3d180cd245fd25fb0f234e55e30ea864634ce Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 7 Jun 2016 20:12:12 -0400 Subject: DEVTOOLS: Fixes for range data generation in create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 506aaaec70..b5a8e46da4 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -51,7 +51,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x400 +#define HEADER_SIZE 0x420 Common::File inputFile, outputFile; Common::PEResources res; -- cgit v1.2.3 From 074dbb8c1a2bfd9ad377ec6f57280d62dfe83803 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Tue, 7 Jun 2016 22:33:51 -0400 Subject: DEVTOOLS: Add NPC sentence entry data to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 79 +++++++++++++++++++++++--- 1 file changed, 71 insertions(+), 8 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index b5a8e46da4..ad52a5dba5 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -51,7 +51,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x420 +#define HEADER_SIZE 0x500 Common::File inputFile, outputFile; Common::PEResources res; @@ -310,6 +310,16 @@ void writeNumbers() { dataOffset += size; } +void writeString(uint offset) { + const int FILE_DIFF = 0x401C00; + inputFile.seek(offset - FILE_DIFF); + char c; + do { + c = inputFile.readByte(); + outputFile.writeByte(c); + } while (c); +} + void writeResponseTree() { const int FILE_DIFF = 0x401C00; outputFile.seek(dataOffset); @@ -337,12 +347,7 @@ void writeResponseTree() { } else { // Offset to ASCIIZ string outputFile.writeByte(1); - inputFile.seek(offset - FILE_DIFF); - char c; - do { - c = inputFile.readByte(); - outputFile.writeByte(c); - } while (c); + writeString(offset); } } @@ -351,6 +356,55 @@ void writeResponseTree() { dataOffset += size; } + +void writeSentenceEntries(const char *name, uint tableOffset) { + const int FILE_DIFF = 0x401C00; + outputFile.seek(dataOffset); + + uint v1, v2, v4, v9, v11, v12, v13; + uint offset3, offset5, offset6, offset7, offset8, offset10; + + for (uint idx = 0; ; ++idx) { + inputFile.seek(tableOffset - FILE_DIFF + idx * 0x34); + v1 = inputFile.readLong(); + if (!v1) + // Reached end of list + break; + + // Read data fields + v2 = inputFile.readLong(); + offset3 = inputFile.readLong(); + v4 = inputFile.readLong(); + offset5 = inputFile.readLong(); + offset6 = inputFile.readLong(); + offset7 = inputFile.readLong(); + offset8 = inputFile.readLong(); + v9 = inputFile.readLong(); + offset10 = inputFile.readLong(); + v11 = inputFile.readLong(); + v12 = inputFile.readLong(); + v13 = inputFile.readLong(); + + outputFile.writeLong(v1); + outputFile.writeLong(v2); + writeString(offset3); + outputFile.writeLong(v1); + writeString(offset5); + writeString(offset6); + writeString(offset7); + writeString(offset8); + outputFile.writeLong(v9); + writeString(offset10); + outputFile.writeLong(v11); + outputFile.writeLong(v12); + outputFile.writeLong(v13); + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("TEXT/TREE", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -395,8 +449,17 @@ void writeData() { writeStringArray("TEXT/REPLACEMENTS2", 0x21C120, 1576); writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); writeStringArray("TEXT/PRONOUNS", 0x22F718, 15); - writeResponseTree(); + writeSentenceEntries("Sentences/Barbot", 0x5ABE60); + writeSentenceEntries("Sentences/Bellbot", 0x5C2230); + writeSentenceEntries("Sentences/Deskbot", 0x5DCD10); + writeSentenceEntries("Sentences/Doorbot", 0x5EC110); + writeSentenceEntries("Sentences/Liftbot", 0x6026B0); + writeSentenceEntries("Sentences/MaitreD", 0x60CFD8); + writeSentenceEntries("Sentences/Parrot", 0x615858); + writeSentenceEntries("Sentences/SuccUBus", 0x616698); + + writeResponseTree(); writeNumbers(); writeAllScriptResponses(); writeAllScriptRanges(); -- cgit v1.2.3 From 041ce7f4efd80af0c8cea3b58d87741ee1206a6e Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 8 Jun 2016 19:15:15 -0400 Subject: DEVTOOLS: Add NPC Id mapping tables to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 32 ++++++++++++++++++++++---- 1 file changed, 28 insertions(+), 4 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index ad52a5dba5..b90777c243 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -51,7 +51,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x500 +#define HEADER_SIZE 0x580 Common::File inputFile, outputFile; Common::PEResources res; @@ -59,6 +59,8 @@ uint headerOffset = 6; uint dataOffset = HEADER_SIZE; #define SEGMENT_OFFSET 0x401C00 +const int FILE_DIFF = 0x401C00; + static const char *const ITEM_NAMES[46] = { "LeftArmWith", "LeftArmWithout", "RightArmWith", "RightArmWithout", "BridgeRed", "BridgeYellow", "BridgeBlue", "BridgeGreen", "Parrot", "CentralCore", "BrainGreen", @@ -311,7 +313,6 @@ void writeNumbers() { } void writeString(uint offset) { - const int FILE_DIFF = 0x401C00; inputFile.seek(offset - FILE_DIFF); char c; do { @@ -321,7 +322,6 @@ void writeString(uint offset) { } void writeResponseTree() { - const int FILE_DIFF = 0x401C00; outputFile.seek(dataOffset); inputFile.seek(0x619500 - FILE_DIFF); @@ -358,7 +358,6 @@ void writeResponseTree() { void writeSentenceEntries(const char *name, uint tableOffset) { - const int FILE_DIFF = 0x401C00; outputFile.seek(dataOffset); uint v1, v2, v4, v9, v11, v12, v13; @@ -405,6 +404,23 @@ void writeSentenceEntries(const char *name, uint tableOffset) { dataOffset += size; } +void writeSentenceMappings(const char *name, uint offset, int numValues) { + inputFile.seek(offset - FILE_DIFF); + outputFile.seek(dataOffset); + + uint id; + while ((id = inputFile.readLong()) != 0) { + outputFile.writeLong(id); + + for (int ctr = 0; ctr < numValues; ++ctr) + outputFile.writeLong(inputFile.readLong()); + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader(name, dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -458,6 +474,14 @@ void writeData() { writeSentenceEntries("Sentences/MaitreD", 0x60CFD8); writeSentenceEntries("Sentences/Parrot", 0x615858); writeSentenceEntries("Sentences/SuccUBus", 0x616698); + writeSentenceMappings("Sentences/Barbot", 0x5B28A0, 8); + writeSentenceMappings("Sentences/Bellbot", 0x5CD830, 1); + writeSentenceMappings("Sentences/Deskbot", 0x5E2BB8, 4); + writeSentenceMappings("Sentences/Doorbot", 0x5F7950, 4); + writeSentenceMappings("Sentences/Liftbot", 0x608660, 4); + writeSentenceMappings("Sentences/MaitreD", 0x6125C8, 1); + writeSentenceMappings("Sentences/Parrot", 0x615B68, 1); + writeSentenceMappings("Sentences/SuccUBus", 0x6189F0, 1); writeResponseTree(); writeNumbers(); -- cgit v1.2.3 From cf79431c72becc58791a610f2ff184801e74f998 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 8 Jun 2016 19:41:20 -0400 Subject: DEVTOOLS: Fix NPC Id mapping names in create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index b90777c243..22489dd9e8 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -474,14 +474,14 @@ void writeData() { writeSentenceEntries("Sentences/MaitreD", 0x60CFD8); writeSentenceEntries("Sentences/Parrot", 0x615858); writeSentenceEntries("Sentences/SuccUBus", 0x616698); - writeSentenceMappings("Sentences/Barbot", 0x5B28A0, 8); - writeSentenceMappings("Sentences/Bellbot", 0x5CD830, 1); - writeSentenceMappings("Sentences/Deskbot", 0x5E2BB8, 4); - writeSentenceMappings("Sentences/Doorbot", 0x5F7950, 4); - writeSentenceMappings("Sentences/Liftbot", 0x608660, 4); - writeSentenceMappings("Sentences/MaitreD", 0x6125C8, 1); - writeSentenceMappings("Sentences/Parrot", 0x615B68, 1); - writeSentenceMappings("Sentences/SuccUBus", 0x6189F0, 1); + writeSentenceMappings("Mappings/Barbot", 0x5B28A0, 8); + writeSentenceMappings("Mappings/Bellbot", 0x5CD830, 1); + writeSentenceMappings("Mappings/Deskbot", 0x5E2BB8, 4); + writeSentenceMappings("Mappings/Doorbot", 0x5F7950, 4); + writeSentenceMappings("Mappings/Liftbot", 0x608660, 4); + writeSentenceMappings("Mappings/MaitreD", 0x6125C8, 1); + writeSentenceMappings("Mappings/Parrot", 0x615B68, 1); + writeSentenceMappings("Mappings/SuccUBus", 0x6189F0, 1); writeResponseTree(); writeNumbers(); -- cgit v1.2.3 From c3d2f5f5ca89b0626c0ee933a825572fc952d4b4 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 8 Jun 2016 22:00:36 -0400 Subject: DEVTOOLS: Fix writing of sentence entries in create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 22489dd9e8..f0f7370693 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -51,7 +51,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x580 +#define HEADER_SIZE 0x5A0 Common::File inputFile, outputFile; Common::PEResources res; @@ -400,7 +400,7 @@ void writeSentenceEntries(const char *name, uint tableOffset) { } uint size = outputFile.size() - dataOffset; - writeEntryHeader("TEXT/TREE", dataOffset, size); + writeEntryHeader(name, dataOffset, size); dataOffset += size; } -- cgit v1.2.3 From 8c237b3ee2c6b33edcc11ce9783f87e34f971508 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 9 Jun 2016 22:14:29 -0400 Subject: TITANIC: Fix NPC handleQuote method stubs --- devtools/create_titanic/create_titanic_dat.cpp | 29 ++++++++++++++------------ 1 file changed, 16 insertions(+), 13 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index f0f7370693..09a4b4ce35 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -38,6 +38,7 @@ #include "file.h" #include "script_responses.h" #include "script_ranges.h" +#include "tag_maps.h" /** * Format of the access.dat file that will be created: @@ -51,7 +52,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x5A0 +#define HEADER_SIZE 0x640 Common::File inputFile, outputFile; Common::PEResources res; @@ -487,19 +488,18 @@ void writeData() { writeNumbers(); writeAllScriptResponses(); writeAllScriptRanges(); + writeAllTagMappings(); } -// Support method used for translating IDA debugger's output for -// an NPC's chooseResponse method tag list to a format for inclusion -// in this tool's script_respones.cpp file -void createScriptResponses() { +void createScriptMap() { Common::File inFile; char line[80]; char c[2]; c[0] = c[1] = '\0'; + int counter = 0; - inFile.open("d:\\temp\\deskbot.txt"); - printf("static const int xxxx_RESPONSES[][5] = {\n"); + inFile.open("d:\\temp\\map.txt"); + printf("static const TagMapping xxxx_ID_MAP[] = {\n"); do { strcpy(line, ""); @@ -511,17 +511,20 @@ void createScriptResponses() { else if (c[0] == '\r') continue; strcat(line, c); - if (inFile.eof() || strlen(line) == (5 * 9)) + if (inFile.eof() || strlen(line) == (2 * 9)) break; } - int tag, v1, v2, v3, v4; - sscanf(line, "%x %x %x %x %x", &tag, &v1, &v2, &v3, &v4); + int v1, v2; + sscanf(line, "%x %x", &v1, &v2); - printf("\t{ MKTAG('%c', '%c', '%c', '%c'), %d, %d, %d, %d },\n", - (tag >> 24) & 0xff, (tag >> 16) & 0xff, (tag >> 8) & 0xff, tag & 0xff, - v1, v2, v3, v4); + if (counter != 0 && (counter % 3) == 0) + printf("\r\n"); + if ((counter % 3) == 0) + printf("\t"); + printf("{ 0x%.5x, 0x%.5x }, ", v1, v2); + ++counter; } while (!inFile.eof()); printf("};\r\n"); -- cgit v1.2.3 From 2ff4d3ed66bd839fb3534429a645291b8ccbec67 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 2 Jul 2016 19:48:40 -0400 Subject: TITANIC: Adding starfield points loading --- devtools/create_titanic/create_titanic_dat.cpp | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 09a4b4ce35..be58deb68d 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -52,7 +52,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x640 +#define HEADER_SIZE 0x680 Common::File inputFile, outputFile; Common::PEResources res; @@ -422,6 +422,18 @@ void writeSentenceMappings(const char *name, uint offset, int numValues) { dataOffset += size; } + +void writeStarfieldPoints() { + outputFile.seek(dataOffset); + + inputFile.seek(0x59DE4C - FILE_DIFF); + uint size = 876 * 12; + + outputFile.write(inputFile, size); + writeEntryHeader("STARFIELD/POINTS", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -451,6 +463,7 @@ void writeData() { writeResource("STFONT", 153); writeResource("STARFIELD", 132); + writeStarfieldPoints(); writeResource("TEXT", "STVOCAB.TXT"); writeResource("TEXT", "JRQUOTES.TXT"); -- cgit v1.2.3 From 82c0be2bc525e87b1be0f59c88a93ebd0ae2e189 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 3 Jul 2016 11:28:26 -0400 Subject: DEVTOOLS: Add second starfield points array to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index be58deb68d..2ea8f2a676 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -422,7 +422,6 @@ void writeSentenceMappings(const char *name, uint offset, int numValues) { dataOffset += size; } - void writeStarfieldPoints() { outputFile.seek(dataOffset); @@ -434,6 +433,25 @@ void writeStarfieldPoints() { dataOffset += size; } +void writeStarfieldPoints2() { + outputFile.seek(dataOffset); + + for (int rootCtr = 0; rootCtr < 80; ++rootCtr) { + inputFile.seek(0x5A2F28 - FILE_DIFF + rootCtr * 8); + uint offset = inputFile.readUint32LE(); + uint count = inputFile.readUint32LE(); + + outputFile.writeLong(count); + inputFile.seek(offset - FILE_DIFF); + outputFile.write(inputFile, count * 4 * 4); + } + + uint size = outputFile.size() - dataOffset; + outputFile.write(inputFile, size); + writeEntryHeader("STARFIELD/POINTS2", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -464,6 +482,7 @@ void writeData() { writeResource("STARFIELD", 132); writeStarfieldPoints(); + writeStarfieldPoints2(); writeResource("TEXT", "STVOCAB.TXT"); writeResource("TEXT", "JRQUOTES.TXT"); -- cgit v1.2.3 From 7f05cfad13fbce82326542d9bdd0dd0473565baf Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 22 Jul 2016 21:44:50 -0400 Subject: DEVTOOLS: Save create_titanic bitmap resources with correct bitmap headers --- devtools/create_titanic/create_titanic_dat.cpp | 66 ++++++++++++++++++++------ 1 file changed, 51 insertions(+), 15 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 2ea8f2a676..ed263d7b77 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -279,9 +279,9 @@ void writeResource(const char *name, Common::File *file) { delete file; } -void writeResource(const char *sectionStr, const uint32 resId) { +void writeResource(const char *sectionStr, uint32 resId) { char nameBuffer[256]; - sprintf(nameBuffer, "%s/%d", sectionStr, resId); + sprintf(nameBuffer, "%s/%u", sectionStr, resId); Common::File *file = res.getResource(getResId(sectionStr), resId); assert(file); @@ -298,6 +298,43 @@ void writeResource(const char *sectionStr, const char *resId) { writeResource(nameBuffer, file); } +void writeBitmap(const char *name, Common::File *file) { + outputFile.seek(dataOffset); + + // Write out the necessary bitmap header so that the ScummVM + // BMP decoder can properly handle decoding the bitmaps + outputFile.write("BM", 2); + outputFile.writeLong(file->size() + 14); // Filesize + outputFile.writeLong(0); // res1 & res2 + outputFile.writeLong(0x436); // image offset + + outputFile.write(*file, file->size() + 14); + + writeEntryHeader(name, dataOffset, file->size() + 14); + dataOffset += file->size() + 14; + delete file; +} + +void writeBitmap(const char *sectionStr, const char *resId) { + char nameBuffer[256]; + sprintf(nameBuffer, "%s/%s", sectionStr, resId); + + Common::File *file = res.getResource(getResId(sectionStr), + Common::WinResourceID(resId)); + assert(file); + writeBitmap(nameBuffer, file); +} + +void writeBitmap(const char *sectionStr, uint32 resId) { + char nameBuffer[256]; + sprintf(nameBuffer, "%s/%u", sectionStr, resId); + + Common::File *file = res.getResource(getResId(sectionStr), + Common::WinResourceID(resId)); + assert(file); + writeBitmap(nameBuffer, file); +} + void writeNumbers() { outputFile.seek(dataOffset); @@ -357,7 +394,6 @@ void writeResponseTree() { dataOffset += size; } - void writeSentenceEntries(const char *name, uint tableOffset) { outputFile.seek(dataOffset); @@ -462,18 +498,18 @@ void writeHeader() { } void writeData() { - writeResource("Bitmap", "BACKDROP"); - writeResource("Bitmap", "EVILTWIN"); - writeResource("Bitmap", "RESTORED"); - writeResource("Bitmap", "RESTOREF"); - writeResource("Bitmap", "RESTOREU"); - writeResource("Bitmap", "STARTD"); - writeResource("Bitmap", "STARTF"); - writeResource("Bitmap", "STARTU"); - writeResource("Bitmap", "TITANIC"); - writeResource("Bitmap", 133); - writeResource("Bitmap", 164); - writeResource("Bitmap", 165); + writeBitmap("Bitmap", "BACKDROP"); + writeBitmap("Bitmap", "EVILTWIN"); + writeBitmap("Bitmap", "RESTORED"); + writeBitmap("Bitmap", "RESTOREF"); + writeBitmap("Bitmap", "RESTOREU"); + writeBitmap("Bitmap", "STARTD"); + writeBitmap("Bitmap", "STARTF"); + writeBitmap("Bitmap", "STARTU"); + writeBitmap("Bitmap", "TITANIC"); + writeBitmap("Bitmap", 133); + writeBitmap("Bitmap", 164); + writeBitmap("Bitmap", 165); writeResource("STFONT", 149); writeResource("STFONT", 151); -- cgit v1.2.3 From 773bfca60551c519a3bf1989724bafe77390a728 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 24 Jul 2016 19:44:04 -0400 Subject: DEVTOOLS: Add secondary Barbot sentence data to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index ed263d7b77..199a8d1fec 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -52,7 +52,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x680 +#define HEADER_SIZE 0x700 Common::File inputFile, outputFile; Common::PEResources res; @@ -535,7 +535,9 @@ void writeData() { writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); writeStringArray("TEXT/PRONOUNS", 0x22F718, 15); + writeSentenceEntries("Sentences/Default", 0x5C0130); writeSentenceEntries("Sentences/Barbot", 0x5ABE60); + writeSentenceEntries("Sentences/Barbot2", 0x5BD4E8); writeSentenceEntries("Sentences/Bellbot", 0x5C2230); writeSentenceEntries("Sentences/Deskbot", 0x5DCD10); writeSentenceEntries("Sentences/Doorbot", 0x5EC110); -- cgit v1.2.3 From d59b012442289e81f021957306bee36de294aac5 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 24 Jul 2016 23:08:19 -0400 Subject: DEVTOOLS: Add NPC Script word lists to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 30 +++++++++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 199a8d1fec..1ddfd46fd3 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -52,7 +52,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x700 +#define HEADER_SIZE 0x740 Common::File inputFile, outputFile; Common::PEResources res; @@ -441,6 +441,29 @@ void writeSentenceEntries(const char *name, uint tableOffset) { dataOffset += size; } +void writeWords(const char *name, uint tableOffset, int recordCount = 2) { + outputFile.seek(dataOffset); + int recordSize = recordCount * 4; + + uint val, strOffset; + for (uint idx = 0; ; ++idx) { + inputFile.seek(tableOffset - FILE_DIFF + idx * recordSize); + val = inputFile.readLong(); + strOffset = inputFile.readLong(); + + if (!val) + // Reached end of list + break; + + outputFile.writeLong(val); + writeString(strOffset); + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader(name, dataOffset, size); + dataOffset += size; +} + void writeSentenceMappings(const char *name, uint offset, int numValues) { inputFile.seek(offset - FILE_DIFF); outputFile.seek(dataOffset); @@ -553,6 +576,11 @@ void writeData() { writeSentenceMappings("Mappings/MaitreD", 0x6125C8, 1); writeSentenceMappings("Mappings/Parrot", 0x615B68, 1); writeSentenceMappings("Mappings/SuccUBus", 0x6189F0, 1); + writeWords("Words/Barbot", 0x5BE2E0); + writeWords("Words/Bellbot", 0x5D8230); + writeWords("Words/Deskbot", 0x5EAAA8); + writeWords("Words/Doorbot", 0x601098, 3); + writeWords("Words/Liftbot", 0x60C788); writeResponseTree(); writeNumbers(); -- cgit v1.2.3 From 95529c6a6ea17b88da2f0d3f93e3cfdae6cac5e8 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 27 Jul 2016 06:42:40 -0400 Subject: DEVTOOLS: Added handleQuote methods arrays to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 1ddfd46fd3..c202e75fcf 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -36,6 +36,7 @@ #include "common/rect.h" #include "winexe_pe.h" #include "file.h" +#include "script_quotes.h" #include "script_responses.h" #include "script_ranges.h" #include "tag_maps.h" @@ -52,7 +53,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x740 +#define HEADER_SIZE 0x800 Common::File inputFile, outputFile; Common::PEResources res; @@ -584,6 +585,7 @@ void writeData() { writeResponseTree(); writeNumbers(); + writeAllScriptQuotes(); writeAllScriptResponses(); writeAllScriptRanges(); writeAllTagMappings(); -- cgit v1.2.3 From f36d392c11ef58c33050d952459870a9c931e427 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 28 Jul 2016 21:03:02 -0400 Subject: DEVTOOLS: Add updateState methods arrays to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index c202e75fcf..cc0283e454 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -39,6 +39,7 @@ #include "script_quotes.h" #include "script_responses.h" #include "script_ranges.h" +#include "script_states.h" #include "tag_maps.h" /** @@ -53,7 +54,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x800 +#define HEADER_SIZE 0x880 Common::File inputFile, outputFile; Common::PEResources res; @@ -589,6 +590,7 @@ void writeData() { writeAllScriptResponses(); writeAllScriptRanges(); writeAllTagMappings(); + writeAllUpdateStates(); } void createScriptMap() { -- cgit v1.2.3 From 0ab3c53e15507fc410507f5500e70fb53e7fc6fe Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 29 Jul 2016 21:57:19 -0400 Subject: DEVTOOLS: Add NPC pre-response arrays to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index cc0283e454..cffbf3cab4 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -36,6 +36,7 @@ #include "common/rect.h" #include "winexe_pe.h" #include "file.h" +#include "script_preresponses.h" #include "script_quotes.h" #include "script_responses.h" #include "script_ranges.h" @@ -54,7 +55,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x880 +#define HEADER_SIZE 0x900 Common::File inputFile, outputFile; Common::PEResources res; @@ -591,6 +592,7 @@ void writeData() { writeAllScriptRanges(); writeAllTagMappings(); writeAllUpdateStates(); + writeAllScriptPreResponses(); } void createScriptMap() { -- cgit v1.2.3 From d9435e538f3b06e4e51b414076134126ae498e72 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 30 Jul 2016 20:02:52 -0400 Subject: TITANIC: Added BellbotScript process --- devtools/create_titanic/create_titanic_dat.cpp | 22 +++++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index cffbf3cab4..afed200d4d 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -55,7 +55,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0x900 +#define HEADER_SIZE 0xB00 Common::File inputFile, outputFile; Common::PEResources res; @@ -565,6 +565,26 @@ void writeData() { writeSentenceEntries("Sentences/Barbot", 0x5ABE60); writeSentenceEntries("Sentences/Barbot2", 0x5BD4E8); writeSentenceEntries("Sentences/Bellbot", 0x5C2230); + writeSentenceEntries("Sentences/Bellbot/1", 0x5D1670); + writeSentenceEntries("Sentences/Bellbot/2", 0x5D1A80); + writeSentenceEntries("Sentences/Bellbot/3", 0x5D1AE8); + writeSentenceEntries("Sentences/Bellbot/4", 0x5D1B88); + writeSentenceEntries("Sentences/Bellbot/5", 0x5D2A60); + writeSentenceEntries("Sentences/Bellbot/6", 0x5D2CD0); + writeSentenceEntries("Sentences/Bellbot/7", 0x5D3488); + writeSentenceEntries("Sentences/Bellbot/8", 0x5D3900); + writeSentenceEntries("Sentences/Bellbot/9", 0x5D3968); + writeSentenceEntries("Sentences/Bellbot/10", 0x5D4668); + writeSentenceEntries("Sentences/Bellbot/11", 0x5D47A0); + writeSentenceEntries("Sentences/Bellbot/12", 0x5D4EC0); + writeSentenceEntries("Sentences/Bellbot/13", 0x5D5100); + writeSentenceEntries("Sentences/Bellbot/14", 0x5D5370); + writeSentenceEntries("Sentences/Bellbot/15", 0x5D5548); + writeSentenceEntries("Sentences/Bellbot/16", 0x5D56B8); + writeSentenceEntries("Sentences/Bellbot/17", 0x5D57C0); + writeSentenceEntries("Sentences/Bellbot/18", 0x5D5B38); + writeSentenceEntries("Sentences/Bellbot/19", 0x5D61B8); + writeSentenceEntries("Sentences/Deskbot", 0x5DCD10); writeSentenceEntries("Sentences/Doorbot", 0x5EC110); writeSentenceEntries("Sentences/Liftbot", 0x6026B0); -- cgit v1.2.3 From 2b38dd4ff110e56e741b6ae6c2ea1598ddee6fc6 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 30 Jul 2016 23:28:03 -0400 Subject: TITANIC: Added Bellbot common phrase list to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 63 ++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index afed200d4d..bf1da8e427 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -202,6 +202,54 @@ const NumberEntry NUMBERS[76] = { { "hundredth", 100, 6 } }; +struct CommonPhrase { + const char *_str; + uint _dialogueId; + uint _roomNum; + uint _val1; +}; + +static const CommonPhrase BELLBOT_COMMON_PHRASES[] = { + { "what is wrong with her", 0x30FF9, 0x7B, 0 }, + { "what is wrong with titania", 0x30FF9, 0x7B, 0 }, + { "something for the weekend", 0x30D8B, 0x00, 0 }, + { "other food", 0x30E1D, 0x00, 3 }, + { "different food", 0x30E1D, 0x00, 3 }, + { "alternative food", 0x30E1D, 0x00, 3 }, + { "decent food", 0x30E1D, 0x00, 3 }, + { "nice food", 0x30E1D, 0x00, 3 }, + { "nicer food", 0x30E1D, 0x00, 3 }, + { "make me happy", 0x31011, 0x00, 0 }, + { "cheer me up", 0x31011, 0x00, 0 }, + { "help me if im unhappy", 0x31011, 0x00, 0 }, + { "i obtain a better room", 0x30E8A, 0x00, 3 }, + { "i obtain a better room", 0x30E8A, 0x00, 2 }, + { "i get a better room", 0x30E8A, 0x00, 3 }, + { "i get a better room", 0x30E8A, 0x00, 2 }, + { "i want a better room", 0x30E8A, 0x00, 3 }, + { "i want a better room", 0x30E8A, 0x00, 2 }, + { "i understood", 0x30D75, 0x6D, 0 }, + { "i knew", 0x30D75, 0x6D, 0 }, + { "i know", 0x30D75, 0x6D, 0 }, + { "not stupid", 0x30D75, 0x6D, 0 }, + { "cheeky", 0x30D75, 0x6D, 0 }, + { "not help", 0x30D6F, 0x6D, 0 }, + { "not helpful", 0x30D6F, 0x6D, 0 }, + { "dont help", 0x30D6F, 0x6D, 0 }, + { "no help", 0x30D6F, 0x6D, 0 }, + { "sorry", 0x30D76, 0x6D, 0 }, + { "not mean that", 0x30D76, 0x6D, 0 }, + { "didnt mean that", 0x30D76, 0x6D, 0 }, + { "apologise", 0x30D76, 0x6D, 0 }, + { "play golf", 0x313B6, 0x00, 0 }, + { "is not the captain meant to go down with the ship", 0x31482, 0x00, 0 }, + { "is not the captain supposed to go down with the ship", 0x31482, 0x00, 0 }, + { "sauce sticks to the chicken", 0x3156B, 0x00, 0 }, + { "sauce gets stuck to the chicken", 0x3156B, 0x00, 0 }, + { nullptr, 0, 0, 0 } +}; + + void NORETURN_PRE error(const char *s, ...) { printf("%s\n", s); exit(1); @@ -514,6 +562,20 @@ void writeStarfieldPoints2() { dataOffset += size; } +void writePhrases(const char *name, const CommonPhrase *phrases) { + for (uint idx = 0; phrases->_str; ++idx, ++phrases) { + outputFile.seek(dataOffset + idx * 4); + outputFile.writeString(phrases->_str); + outputFile.writeLong(phrases->_dialogueId); + outputFile.writeLong(phrases->_roomNum); + outputFile.writeLong(phrases->_val1); + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("Phrases/Bellbot", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -604,6 +666,7 @@ void writeData() { writeWords("Words/Deskbot", 0x5EAAA8); writeWords("Words/Doorbot", 0x601098, 3); writeWords("Words/Liftbot", 0x60C788); + writePhrases("Phrases/Bellbot", BELLBOT_COMMON_PHRASES); writeResponseTree(); writeNumbers(); -- cgit v1.2.3 From af286f2c979c2a959894ec003843c295b04d49ee Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 31 Jul 2016 15:02:09 -0400 Subject: DEVTOOLS: Add entries sentence sets for Deskbot in create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index bf1da8e427..1f359c4705 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -648,6 +648,8 @@ void writeData() { writeSentenceEntries("Sentences/Bellbot/19", 0x5D61B8); writeSentenceEntries("Sentences/Deskbot", 0x5DCD10); + writeSentenceEntries("Sentences/Deskbot/2", 0x5E8E18); + writeSentenceEntries("Sentences/Deskbot/3", 0x5E8BA8); writeSentenceEntries("Sentences/Doorbot", 0x5EC110); writeSentenceEntries("Sentences/Liftbot", 0x6026B0); writeSentenceEntries("Sentences/MaitreD", 0x60CFD8); -- cgit v1.2.3 From 19f8a0965be832a71a101054748cf000adf16add Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 31 Jul 2016 17:16:23 -0400 Subject: TITANIC: Added DoorbotScript process --- devtools/create_titanic/create_titanic_dat.cpp | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 1f359c4705..2fe6679822 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -55,7 +55,7 @@ */ #define VERSION_NUMBER 1 -#define HEADER_SIZE 0xB00 +#define HEADER_SIZE 0xD00 Common::File inputFile, outputFile; Common::PEResources res; @@ -650,7 +650,20 @@ void writeData() { writeSentenceEntries("Sentences/Deskbot", 0x5DCD10); writeSentenceEntries("Sentences/Deskbot/2", 0x5E8E18); writeSentenceEntries("Sentences/Deskbot/3", 0x5E8BA8); + writeSentenceEntries("Sentences/Doorbot", 0x5EC110); + writeSentenceEntries("Sentences/Doorbot/2", 0x5FD930); + writeSentenceEntries("Sentences/Doorbot/100", 0x5FD930); + writeSentenceEntries("Sentences/Doorbot/101", 0x5FE668); + writeSentenceEntries("Sentences/Doorbot/102", 0x5FDD40); + writeSentenceEntries("Sentences/Doorbot/107", 0x5FFF08); + writeSentenceEntries("Sentences/Doorbot/110", 0x5FE3C0); + writeSentenceEntries("Sentences/Doorbot/111", 0x5FF0C8); + writeSentenceEntries("Sentences/Doorbot/124", 0x5FF780); + writeSentenceEntries("Sentences/Doorbot/129", 0x5FFAC0); + writeSentenceEntries("Sentences/Doorbot/131", 0x5FFC30); + writeSentenceEntries("Sentences/Doorbot/132", 0x6000E0); + writeSentenceEntries("Sentences/Liftbot", 0x6026B0); writeSentenceEntries("Sentences/MaitreD", 0x60CFD8); writeSentenceEntries("Sentences/Parrot", 0x615858); -- cgit v1.2.3 From a0dde3959e167b64f167a68ef2e10e808a136e0c Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Mon, 1 Aug 2016 19:24:15 -0400 Subject: DEVTOOLS: Add sentence sentence list for MaitreD to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 1 + 1 file changed, 1 insertion(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 2fe6679822..72c7f1ef46 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -666,6 +666,7 @@ void writeData() { writeSentenceEntries("Sentences/Liftbot", 0x6026B0); writeSentenceEntries("Sentences/MaitreD", 0x60CFD8); + writeSentenceEntries("Sentences/MaitreD/1", 0x614288); writeSentenceEntries("Sentences/Parrot", 0x615858); writeSentenceEntries("Sentences/SuccUBus", 0x616698); writeSentenceMappings("Mappings/Barbot", 0x5B28A0, 8); -- cgit v1.2.3 From bbc9e072271e787dd151f24f4b4c43a0528c5ee3 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 13 Aug 2016 15:09:49 -0400 Subject: DEVTOOLS: Add Barbot's action frame ranges to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 33 ++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 72c7f1ef46..5bc64e269d 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -249,6 +249,25 @@ static const CommonPhrase BELLBOT_COMMON_PHRASES[] = { { nullptr, 0, 0, 0 } }; +struct FrameRange { + int _startFrame; + int _endFrame; +}; + +static const FrameRange BARBOT_FRAME_RANGES[60] = { + { 558, 585 }, { 659, 692 }, { 802, 816 }, { 1941, 1977 }, { 1901, 1941 }, + { 810, 816 }, { 857, 865}, { 842, 857 }, { 821, 842 }, { 682, 692 }, + { 1977, 2018 }, { 2140, 2170 }, { 2101, 2139 }, { 2018, 2099}, { 1902, 2015 }, + { 1811, 1901 }, { 1751, 1810 }, { 1703, 1750 }, { 1681, 1702 }, { 1642, 1702 }, + { 1571, 1641 }, { 1499, 1570 }, { 1403, 1463 }, { 1464, 1499 }, { 1288, 1295 }, + { 1266, 1287 }, { 1245, 1265 }, { 1208, 1244 }, { 1171, 1207 }, { 1120, 1170 }, + { 1092, 1120 }, { 1092, 1092 }, { 1044, 1091 }, { 1011, 1043 }, { 1001, 1010 }, + { 985, 1001 }, { 927, 984 }, { 912, 926 }, { 898, 906 }, { 802, 896 }, + { 865, 896 }, { 842, 865 }, { 816, 842 }, { 802, 842 }, { 740, 801 }, + { 692, 740 }, { 610, 692 }, { 558, 610 }, { 500, 558 }, { 467, 500 }, + { 421, 466 }, { 349, 420 }, { 306, 348 }, { 305, 306 }, { 281, 305 }, + { 202, 281 }, { 182, 202 }, { 165, 182 }, { 96, 165 }, { 0, 95 } +}; void NORETURN_PRE error(const char *s, ...) { printf("%s\n", s); @@ -576,6 +595,19 @@ void writePhrases(const char *name, const CommonPhrase *phrases) { dataOffset += size; } +void writeBarbotFrameRanges() { + outputFile.seek(dataOffset); + + for (int idx = 0; idx < 60; ++idx) { + outputFile.writeLong(BARBOT_FRAME_RANGES[idx]._startFrame); + outputFile.writeLong(BARBOT_FRAME_RANGES[idx]._endFrame); + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("FRAMES/BARBOT", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -692,6 +724,7 @@ void writeData() { writeAllTagMappings(); writeAllUpdateStates(); writeAllScriptPreResponses(); + writeBarbotFrameRanges(); } void createScriptMap() { -- cgit v1.2.3 From ca07e26f9e31a59f1c6862db7de7a40a8ba50d94 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sat, 20 Aug 2016 21:52:19 -0400 Subject: DEVTOOLS: Add support for original 3CD executable to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 230 ++++++++++++++++--------- 1 file changed, 144 insertions(+), 86 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 5bc64e269d..8e1584f675 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -61,9 +61,20 @@ Common::File inputFile, outputFile; Common::PEResources res; uint headerOffset = 6; uint dataOffset = HEADER_SIZE; -#define SEGMENT_OFFSET 0x401C00 -const int FILE_DIFF = 0x401C00; +#define ENGLISH_GOG_FILESIZE 4099072 +#define ENGLISH_ORIG_FILESIZE 4095488 +enum { + ENGLISH_ORIG_DIFF = 0x401400, + ENGLISH_GOG_DIFF = 0x401C00 +}; +enum Version { + ENGLISH_GOG = 0, + ENGLISH_ORIG = 1 +}; +Version _version; + +const int FILE_DIFF[2] = { ENGLISH_GOG_DIFF, ENGLISH_ORIG_DIFF }; static const char *const ITEM_NAMES[46] = { "LeftArmWith", "LeftArmWithout", "RightArmWith", "RightArmWithout", "BridgeRed", @@ -302,7 +313,7 @@ void writeStringArray(const char *name, uint offset, int count) { // Iterate through reading each string for (int idx = 0; idx < count; ++idx) { if (offsets[idx]) { - inputFile.seek(offsets[idx] - SEGMENT_OFFSET); + inputFile.seek(offsets[idx] - FILE_DIFF[_version]); outputFile.writeString(inputFile); } else { outputFile.writeString(""); @@ -378,7 +389,7 @@ void writeBitmap(const char *name, Common::File *file) { outputFile.writeLong(0); // res1 & res2 outputFile.writeLong(0x436); // image offset - outputFile.write(*file, file->size() + 14); + outputFile.write(*file, file->size()); writeEntryHeader(name, dataOffset, file->size() + 14); dataOffset += file->size() + 14; @@ -421,7 +432,7 @@ void writeNumbers() { } void writeString(uint offset) { - inputFile.seek(offset - FILE_DIFF); + inputFile.seek(offset - FILE_DIFF[_version]); char c; do { c = inputFile.readByte(); @@ -432,26 +443,19 @@ void writeString(uint offset) { void writeResponseTree() { outputFile.seek(dataOffset); - inputFile.seek(0x619500 - FILE_DIFF); - char buffer[32]; - inputFile.read(buffer, 32); - if (strcmp(buffer, "ReadInt(): No number to read")) { - printf("Could not find tree data at expected position\n"); - exit(1); - } - + const int OFFSETS[2] = { 0x619520, 0x618340 }; for (int idx = 0; idx < 1022; ++idx) { - inputFile.seek(0x619520 - FILE_DIFF + idx * 8); + inputFile.seek(OFFSETS[_version] - FILE_DIFF[_version] + idx * 8); uint id = inputFile.readLong(); uint offset = inputFile.readLong(); outputFile.writeLong(id); if (!id) { // An end of list id - } else if (offset >= 0x619520 && offset <= 0x61B510) { + } else if (offset >= OFFSETS[_version] && offset <= (OFFSETS[_version] + 0x1FF0)) { // Offset to another table outputFile.writeByte(0); - outputFile.writeLong((offset - 0x619520) / 8); + outputFile.writeLong((offset - OFFSETS[_version]) / 8); } else { // Offset to ASCIIZ string outputFile.writeByte(1); @@ -471,7 +475,7 @@ void writeSentenceEntries(const char *name, uint tableOffset) { uint offset3, offset5, offset6, offset7, offset8, offset10; for (uint idx = 0; ; ++idx) { - inputFile.seek(tableOffset - FILE_DIFF + idx * 0x34); + inputFile.seek(tableOffset - FILE_DIFF[_version] + idx * 0x34); v1 = inputFile.readLong(); if (!v1) // Reached end of list @@ -517,7 +521,7 @@ void writeWords(const char *name, uint tableOffset, int recordCount = 2) { uint val, strOffset; for (uint idx = 0; ; ++idx) { - inputFile.seek(tableOffset - FILE_DIFF + idx * recordSize); + inputFile.seek(tableOffset - FILE_DIFF[_version] + idx * recordSize); val = inputFile.readLong(); strOffset = inputFile.readLong(); @@ -535,7 +539,7 @@ void writeWords(const char *name, uint tableOffset, int recordCount = 2) { } void writeSentenceMappings(const char *name, uint offset, int numValues) { - inputFile.seek(offset - FILE_DIFF); + inputFile.seek(offset - FILE_DIFF[_version]); outputFile.seek(dataOffset); uint id; @@ -554,7 +558,8 @@ void writeSentenceMappings(const char *name, uint offset, int numValues) { void writeStarfieldPoints() { outputFile.seek(dataOffset); - inputFile.seek(0x59DE4C - FILE_DIFF); + const int OFFSETS[2] = { 0x59DE4C, 0x59DBEC }; + inputFile.seek(OFFSETS[_version] - FILE_DIFF[_version]); uint size = 876 * 12; outputFile.write(inputFile, size); @@ -565,13 +570,14 @@ void writeStarfieldPoints() { void writeStarfieldPoints2() { outputFile.seek(dataOffset); + const int OFFSETS[2] = { 0x5A2F28, 0x5A2CC8 }; for (int rootCtr = 0; rootCtr < 80; ++rootCtr) { - inputFile.seek(0x5A2F28 - FILE_DIFF + rootCtr * 8); + inputFile.seek(OFFSETS[_version] - FILE_DIFF[_version] + rootCtr * 8); uint offset = inputFile.readUint32LE(); uint count = inputFile.readUint32LE(); outputFile.writeLong(count); - inputFile.seek(offset - FILE_DIFF); + inputFile.seek(offset - FILE_DIFF[_version]); outputFile.write(inputFile, count * 4 * 4); } @@ -649,71 +655,113 @@ void writeData() { writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40); writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34); - writeStringArray("TEXT/PHRASES", 0x21B7C8, 376); - writeStringArray("TEXT/REPLACEMENTS1", 0x21BDB0, 218); - writeStringArray("TEXT/REPLACEMENTS2", 0x21C120, 1576); - writeStringArray("TEXT/REPLACEMENTS3", 0x21D9C8, 82); - writeStringArray("TEXT/PRONOUNS", 0x22F718, 15); - - writeSentenceEntries("Sentences/Default", 0x5C0130); - writeSentenceEntries("Sentences/Barbot", 0x5ABE60); - writeSentenceEntries("Sentences/Barbot2", 0x5BD4E8); - writeSentenceEntries("Sentences/Bellbot", 0x5C2230); - writeSentenceEntries("Sentences/Bellbot/1", 0x5D1670); - writeSentenceEntries("Sentences/Bellbot/2", 0x5D1A80); - writeSentenceEntries("Sentences/Bellbot/3", 0x5D1AE8); - writeSentenceEntries("Sentences/Bellbot/4", 0x5D1B88); - writeSentenceEntries("Sentences/Bellbot/5", 0x5D2A60); - writeSentenceEntries("Sentences/Bellbot/6", 0x5D2CD0); - writeSentenceEntries("Sentences/Bellbot/7", 0x5D3488); - writeSentenceEntries("Sentences/Bellbot/8", 0x5D3900); - writeSentenceEntries("Sentences/Bellbot/9", 0x5D3968); - writeSentenceEntries("Sentences/Bellbot/10", 0x5D4668); - writeSentenceEntries("Sentences/Bellbot/11", 0x5D47A0); - writeSentenceEntries("Sentences/Bellbot/12", 0x5D4EC0); - writeSentenceEntries("Sentences/Bellbot/13", 0x5D5100); - writeSentenceEntries("Sentences/Bellbot/14", 0x5D5370); - writeSentenceEntries("Sentences/Bellbot/15", 0x5D5548); - writeSentenceEntries("Sentences/Bellbot/16", 0x5D56B8); - writeSentenceEntries("Sentences/Bellbot/17", 0x5D57C0); - writeSentenceEntries("Sentences/Bellbot/18", 0x5D5B38); - writeSentenceEntries("Sentences/Bellbot/19", 0x5D61B8); - - writeSentenceEntries("Sentences/Deskbot", 0x5DCD10); - writeSentenceEntries("Sentences/Deskbot/2", 0x5E8E18); - writeSentenceEntries("Sentences/Deskbot/3", 0x5E8BA8); + const int TEXT_PHRASES[2] = { 0x21B7C8, 0x21ADA0 }; + const int TEXT_REPLACEMENTS1[2] = { 0x21BDB0, 0x21B388 }; + const int TEXT_REPLACEMENTS2[2] = { 0x21C120, 0x21B6F8 }; + const int TEXT_REPLACEMENTS3[2] = { 0x21D9C8, 0x21CFA0 }; + const int TEXT_PRONOUNS[2] = { 0x22F718, 0x22ECF8 }; + writeStringArray("TEXT/PHRASES", TEXT_PHRASES[_version], 376); + writeStringArray("TEXT/REPLACEMENTS1", TEXT_REPLACEMENTS1[_version], 218); + writeStringArray("TEXT/REPLACEMENTS2", TEXT_REPLACEMENTS2[_version], 1576); + writeStringArray("TEXT/REPLACEMENTS3", TEXT_REPLACEMENTS3[_version], 82); + writeStringArray("TEXT/PRONOUNS", TEXT_PRONOUNS[_version], 15); + + const int SENTENCES_DEFAULT[2] = { 0x5C0130, 0x5BEFC8 }; + const int SENTENCES_BARBOT[2][2] = { { 0x5ABE60, 0x5AACF8 }, { 0x5BD4E8, 0x5BC380 } }; + const int SENTENCES_BELLBOT[21][2] = { + { 0x5C2230, 0x5C10C8 }, { 0x5D1670, 0x5D0508 }, { 0x5D1A80, 0x5D0918 }, + { 0x5D1AE8, 0x5D0980 }, { 0x5D1B88, 0x5D0A20 }, { 0x5D2A60, 0x5D18F8 }, + { 0x5D2CD0, 0x5D1B68 }, { 0x5D3488, 0x5D2320 }, { 0x5D3900, 0x5D2798 }, + { 0x5D3968, 0x5D2800 }, { 0x5D4668, 0x5D3500 }, { 0x5D47A0, 0x5D3638 }, + { 0x5D4EC0, 0x5D3D58 }, { 0x5D5100, 0x5D3F98 }, { 0x5D5370, 0x5D4208 }, + { 0x5D5548, 0x5D43E0 }, { 0x5D56B8, 0x5D4550 }, { 0x5D57C0, 0x5D4658 }, + { 0x5D5B38, 0x5D49D0 }, { 0x5D61B8, 0x5D5050 } + }; + writeSentenceEntries("Sentences/Default", SENTENCES_DEFAULT[_version]); + writeSentenceEntries("Sentences/Barbot", SENTENCES_BARBOT[0][_version]); + writeSentenceEntries("Sentences/Barbot2", SENTENCES_BARBOT[1][_version]); + writeSentenceEntries("Sentences/Bellbot", SENTENCES_BELLBOT[0][_version]); + writeSentenceEntries("Sentences/Bellbot/1", SENTENCES_BELLBOT[1][_version]); + writeSentenceEntries("Sentences/Bellbot/2", SENTENCES_BELLBOT[2][_version]); + writeSentenceEntries("Sentences/Bellbot/3", SENTENCES_BELLBOT[3][_version]); + writeSentenceEntries("Sentences/Bellbot/4", SENTENCES_BELLBOT[4][_version]); + writeSentenceEntries("Sentences/Bellbot/5", SENTENCES_BELLBOT[5][_version]); + writeSentenceEntries("Sentences/Bellbot/6", SENTENCES_BELLBOT[6][_version]); + writeSentenceEntries("Sentences/Bellbot/7", SENTENCES_BELLBOT[7][_version]); + writeSentenceEntries("Sentences/Bellbot/8", SENTENCES_BELLBOT[8][_version]); + writeSentenceEntries("Sentences/Bellbot/9", SENTENCES_BELLBOT[9][_version]); + writeSentenceEntries("Sentences/Bellbot/10", SENTENCES_BELLBOT[10][_version]); + writeSentenceEntries("Sentences/Bellbot/11", SENTENCES_BELLBOT[11][_version]); + writeSentenceEntries("Sentences/Bellbot/12", SENTENCES_BELLBOT[12][_version]); + writeSentenceEntries("Sentences/Bellbot/13", SENTENCES_BELLBOT[13][_version]); + writeSentenceEntries("Sentences/Bellbot/14", SENTENCES_BELLBOT[14][_version]); + writeSentenceEntries("Sentences/Bellbot/15", SENTENCES_BELLBOT[15][_version]); + writeSentenceEntries("Sentences/Bellbot/16", SENTENCES_BELLBOT[16][_version]); + writeSentenceEntries("Sentences/Bellbot/17", SENTENCES_BELLBOT[17][_version]); + writeSentenceEntries("Sentences/Bellbot/18", SENTENCES_BELLBOT[18][_version]); + writeSentenceEntries("Sentences/Bellbot/19", SENTENCES_BELLBOT[19][_version]); + + const int SENTENCES_DESKBOT[3][2] = { + { 0x5DCD10, 0x5DBBA8 }, { 0x5E8E18, 0x5E7CB0 }, { 0x5E8BA8, 0x5E7A40 } + }; + writeSentenceEntries("Sentences/Deskbot", SENTENCES_DESKBOT[0][_version]); + writeSentenceEntries("Sentences/Deskbot/2", SENTENCES_DESKBOT[1][_version]); + writeSentenceEntries("Sentences/Deskbot/3", SENTENCES_DESKBOT[2][_version]); - writeSentenceEntries("Sentences/Doorbot", 0x5EC110); - writeSentenceEntries("Sentences/Doorbot/2", 0x5FD930); - writeSentenceEntries("Sentences/Doorbot/100", 0x5FD930); - writeSentenceEntries("Sentences/Doorbot/101", 0x5FE668); - writeSentenceEntries("Sentences/Doorbot/102", 0x5FDD40); - writeSentenceEntries("Sentences/Doorbot/107", 0x5FFF08); - writeSentenceEntries("Sentences/Doorbot/110", 0x5FE3C0); - writeSentenceEntries("Sentences/Doorbot/111", 0x5FF0C8); - writeSentenceEntries("Sentences/Doorbot/124", 0x5FF780); - writeSentenceEntries("Sentences/Doorbot/129", 0x5FFAC0); - writeSentenceEntries("Sentences/Doorbot/131", 0x5FFC30); - writeSentenceEntries("Sentences/Doorbot/132", 0x6000E0); - - writeSentenceEntries("Sentences/Liftbot", 0x6026B0); - writeSentenceEntries("Sentences/MaitreD", 0x60CFD8); - writeSentenceEntries("Sentences/MaitreD/1", 0x614288); - writeSentenceEntries("Sentences/Parrot", 0x615858); - writeSentenceEntries("Sentences/SuccUBus", 0x616698); - writeSentenceMappings("Mappings/Barbot", 0x5B28A0, 8); - writeSentenceMappings("Mappings/Bellbot", 0x5CD830, 1); - writeSentenceMappings("Mappings/Deskbot", 0x5E2BB8, 4); - writeSentenceMappings("Mappings/Doorbot", 0x5F7950, 4); - writeSentenceMappings("Mappings/Liftbot", 0x608660, 4); - writeSentenceMappings("Mappings/MaitreD", 0x6125C8, 1); - writeSentenceMappings("Mappings/Parrot", 0x615B68, 1); - writeSentenceMappings("Mappings/SuccUBus", 0x6189F0, 1); - writeWords("Words/Barbot", 0x5BE2E0); - writeWords("Words/Bellbot", 0x5D8230); - writeWords("Words/Deskbot", 0x5EAAA8); - writeWords("Words/Doorbot", 0x601098, 3); - writeWords("Words/Liftbot", 0x60C788); + const int SENTENCES_DOORBOT[12][2] = { + { 0x5EC110, 0x5EAFA8 }, { 0x5FD930, 0x5FC7C8 }, { 0x5FDD0C, 0x5FCBA4 }, + { 0x5FE668, 0x5FD500 }, { 0x5FDD40, 0x5FCBD8 }, { 0x5FFF08, 0x5FEDA0 }, + { 0x5FE3C0, 0x5FD258 }, { 0x5FF0C8, 0x5FDF60 }, { 0x5FF780, 0x5FE618 }, + { 0x5FFAC0, 0x5FE958 }, { 0x5FFC30, 0x5FEAC8 }, { 0x6000E0, 0x5FEF78 } + }; + writeSentenceEntries("Sentences/Doorbot", SENTENCES_DOORBOT[0][_version]); + writeSentenceEntries("Sentences/Doorbot/2", SENTENCES_DOORBOT[1][_version]); + writeSentenceEntries("Sentences/Doorbot/100", SENTENCES_DOORBOT[2][_version]); + writeSentenceEntries("Sentences/Doorbot/101", SENTENCES_DOORBOT[3][_version]); + writeSentenceEntries("Sentences/Doorbot/102", SENTENCES_DOORBOT[4][_version]); + writeSentenceEntries("Sentences/Doorbot/107", SENTENCES_DOORBOT[5][_version]); + writeSentenceEntries("Sentences/Doorbot/110", SENTENCES_DOORBOT[6][_version]); + writeSentenceEntries("Sentences/Doorbot/111", SENTENCES_DOORBOT[7][_version]); + writeSentenceEntries("Sentences/Doorbot/124", SENTENCES_DOORBOT[8][_version]); + writeSentenceEntries("Sentences/Doorbot/129", SENTENCES_DOORBOT[9][_version]); + writeSentenceEntries("Sentences/Doorbot/131", SENTENCES_DOORBOT[10][_version]); + writeSentenceEntries("Sentences/Doorbot/132", SENTENCES_DOORBOT[11][_version]); + + const int SENTENCES_LIFTBOT[2] = { 0x6026B0, 0x601548 }; + const int SENTENCES_MAITRED[2][2] = { { 0x60CFD8, 0x60BE70 }, { 0x614288, 0x613120 } }; + const int SENTENCES_PARROT[2] = { 0x615858, 0x6146F0 }; + const int SENTENCES_SUCCUBUS[2] = { 0x616698, 0x615530 }; + const int MAPPINGS_BARBOT[2] = { 0x5B28A0, 0x5B173E }; + const int MAPPINGS_BELLBOT[2] = { 0x5CD830, 0x5CC6C8 }; + const int MAPPINGS_DESKBOT[2] = { 0x5E2BB8, 0x5E1A50 }; + const int MAPPINGS_DOORBOT[2] = { 0x5F7950, 0x5F67E8 }; + const int MAPPINGS_LIFTBOT[2] = { 0x608660, 0x6074F8 }; + const int MAPPINGS_MAITRED[2] = { 0x6125C8, 0x611460 }; + const int MAPPINGS_PARROT[2] = { 0x615B68, 0x614A00 }; + const int MAPPINGS_SUCCUBUS[2] = { 0x6189F0, 0x617888 }; + const int WORDS_BARBOT[2] = { 0x5BE2E0, 0x5BD178 }; + const int WORDS_BELLBOT[2] = { 0x5D8230, 0x5D70C8 }; + const int WORDS_DESKBOT[2] = { 0x5EAAA8, 0x5E9940 }; + const int WORDS_DOORBOT[2] = { 0x601098, 0x5FFF30 }; + const int WORDS_LIFTBOT[2] = { 0x60C788, 0x60B620 }; + writeSentenceEntries("Sentences/Liftbot", SENTENCES_LIFTBOT[_version]); + writeSentenceEntries("Sentences/MaitreD", SENTENCES_MAITRED[0][_version]); + writeSentenceEntries("Sentences/MaitreD/1", SENTENCES_MAITRED[1][_version]); + writeSentenceEntries("Sentences/Parrot", SENTENCES_PARROT[_version]); + writeSentenceEntries("Sentences/SuccUBus", SENTENCES_SUCCUBUS[_version]); + writeSentenceMappings("Mappings/Barbot", MAPPINGS_BARBOT[_version], 8); + writeSentenceMappings("Mappings/Bellbot", MAPPINGS_BELLBOT[_version], 1); + writeSentenceMappings("Mappings/Deskbot", MAPPINGS_DESKBOT[_version], 4); + writeSentenceMappings("Mappings/Doorbot", MAPPINGS_DOORBOT[_version], 4); + writeSentenceMappings("Mappings/Liftbot", MAPPINGS_LIFTBOT[_version], 4); + writeSentenceMappings("Mappings/MaitreD", MAPPINGS_MAITRED[_version], 1); + writeSentenceMappings("Mappings/Parrot", MAPPINGS_PARROT[_version], 1); + writeSentenceMappings("Mappings/SuccUBus", MAPPINGS_SUCCUBUS[_version], 1); + writeWords("Words/Barbot", WORDS_BARBOT[_version]); + writeWords("Words/Bellbot", WORDS_BELLBOT[_version]); + writeWords("Words/Deskbot", WORDS_DESKBOT[_version]); + writeWords("Words/Doorbot", WORDS_DOORBOT[_version], 3); + writeWords("Words/Liftbot", WORDS_LIFTBOT[_version]); writePhrases("Phrases/Bellbot", BELLBOT_COMMON_PHRASES); writeResponseTree(); @@ -721,6 +769,7 @@ void writeData() { writeAllScriptQuotes(); writeAllScriptResponses(); writeAllScriptRanges(); + writeAllTagMappings(); writeAllUpdateStates(); writeAllScriptPreResponses(); @@ -778,6 +827,15 @@ int main(int argc, char *argv[]) { } res.loadFromEXE(argv[1]); + if (inputFile.size() == ENGLISH_GOG_FILESIZE) + _version = ENGLISH_GOG; + else if (inputFile.size() == ENGLISH_ORIG_FILESIZE) + _version = ENGLISH_ORIG; + else { + printf("Unknown version of ST.exe specified"); + exit(0); + } + if (!outputFile.open(argv[2], Common::kFileWriteMode)) { error("Could not open output file"); } -- cgit v1.2.3 From c7ac12272a3b448c9d6118753a62426e42d2a62f Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Sun, 21 Aug 2016 09:21:14 -0400 Subject: DEVTOOLS: Add support for English 1.00.42 EXE to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 125 ++++++++++++++----------- 1 file changed, 71 insertions(+), 54 deletions(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 8e1584f675..9186c1ce20 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -62,19 +62,24 @@ Common::PEResources res; uint headerOffset = 6; uint dataOffset = HEADER_SIZE; -#define ENGLISH_GOG_FILESIZE 4099072 -#define ENGLISH_ORIG_FILESIZE 4095488 +#define ENGLISH_10042C_FILESIZE 4099072 +#define ENGLISH_10042B_FILESIZE 4095488 +#define ENGLISH_10042_FILESIZE 4094976 enum { - ENGLISH_ORIG_DIFF = 0x401400, - ENGLISH_GOG_DIFF = 0x401C00 + ENGLISH_10042C_DIFF = 0x401C00, + ENGLISH_10042B_DIFF = 0x401400, + ENGLISH_10042_DIFF = 0x402000 }; enum Version { - ENGLISH_GOG = 0, - ENGLISH_ORIG = 1 + ENGLISH_10042C = 0, + ENGLISH_10042B = 1, + ENGLISH_10042 = 2 }; Version _version; -const int FILE_DIFF[2] = { ENGLISH_GOG_DIFF, ENGLISH_ORIG_DIFF }; +const int FILE_DIFF[3] = { + ENGLISH_10042C_DIFF, ENGLISH_10042B_DIFF, ENGLISH_10042_DIFF +}; static const char *const ITEM_NAMES[46] = { "LeftArmWith", "LeftArmWithout", "RightArmWith", "RightArmWithout", "BridgeRed", @@ -305,7 +310,7 @@ void writeFinalEntryHeader() { void writeStringArray(const char *name, uint offset, int count) { outputFile.seek(dataOffset); - inputFile.seek(offset); + inputFile.seek(offset - FILE_DIFF[_version]); uint *offsets = new uint[count]; for (int idx = 0; idx < count; ++idx) offsets[idx] = inputFile.readLong(); @@ -443,7 +448,7 @@ void writeString(uint offset) { void writeResponseTree() { outputFile.seek(dataOffset); - const int OFFSETS[2] = { 0x619520, 0x618340 }; + const int OFFSETS[3] = { 0x619520, 0x618340, 0x617380 }; for (int idx = 0; idx < 1022; ++idx) { inputFile.seek(OFFSETS[_version] - FILE_DIFF[_version] + idx * 8); uint id = inputFile.readLong(); @@ -558,7 +563,7 @@ void writeSentenceMappings(const char *name, uint offset, int numValues) { void writeStarfieldPoints() { outputFile.seek(dataOffset); - const int OFFSETS[2] = { 0x59DE4C, 0x59DBEC }; + const int OFFSETS[3] = { 0x59DE4C, 0x59DBEC, 0x59CC1C }; inputFile.seek(OFFSETS[_version] - FILE_DIFF[_version]); uint size = 876 * 12; @@ -570,7 +575,7 @@ void writeStarfieldPoints() { void writeStarfieldPoints2() { outputFile.seek(dataOffset); - const int OFFSETS[2] = { 0x5A2F28, 0x5A2CC8 }; + const int OFFSETS[3] = { 0x5A2F28, 0x5A2CC8, 0x5A1CF8 }; for (int rootCtr = 0; rootCtr < 80; ++rootCtr) { inputFile.seek(OFFSETS[_version] - FILE_DIFF[_version] + rootCtr * 8); uint offset = inputFile.readUint32LE(); @@ -655,27 +660,32 @@ void writeData() { writeStringArray("TEXT/ITEM_IDS", ITEM_IDS, 40); writeStringArray("TEXT/ROOM_NAMES", ROOM_NAMES, 34); - const int TEXT_PHRASES[2] = { 0x21B7C8, 0x21ADA0 }; - const int TEXT_REPLACEMENTS1[2] = { 0x21BDB0, 0x21B388 }; - const int TEXT_REPLACEMENTS2[2] = { 0x21C120, 0x21B6F8 }; - const int TEXT_REPLACEMENTS3[2] = { 0x21D9C8, 0x21CFA0 }; - const int TEXT_PRONOUNS[2] = { 0x22F718, 0x22ECF8 }; + const int TEXT_PHRASES[3] = { 0x61D3C8, 0x618340, 0x61B1E0 }; + const int TEXT_REPLACEMENTS1[3] = { 0x61D9B0, 0x61C788, 0x61B7C8 }; + const int TEXT_REPLACEMENTS2[3] = { 0x61DD20, 0x61CAF8, 0x61BB38 }; + const int TEXT_REPLACEMENTS3[3] = { 0x61F5C8, 0x61E3A0, 0x61D3E0 }; + const int TEXT_PRONOUNS[3] = { 0x631318, 0x6300F8, 0x62F138 }; writeStringArray("TEXT/PHRASES", TEXT_PHRASES[_version], 376); writeStringArray("TEXT/REPLACEMENTS1", TEXT_REPLACEMENTS1[_version], 218); writeStringArray("TEXT/REPLACEMENTS2", TEXT_REPLACEMENTS2[_version], 1576); writeStringArray("TEXT/REPLACEMENTS3", TEXT_REPLACEMENTS3[_version], 82); writeStringArray("TEXT/PRONOUNS", TEXT_PRONOUNS[_version], 15); - const int SENTENCES_DEFAULT[2] = { 0x5C0130, 0x5BEFC8 }; - const int SENTENCES_BARBOT[2][2] = { { 0x5ABE60, 0x5AACF8 }, { 0x5BD4E8, 0x5BC380 } }; - const int SENTENCES_BELLBOT[21][2] = { - { 0x5C2230, 0x5C10C8 }, { 0x5D1670, 0x5D0508 }, { 0x5D1A80, 0x5D0918 }, - { 0x5D1AE8, 0x5D0980 }, { 0x5D1B88, 0x5D0A20 }, { 0x5D2A60, 0x5D18F8 }, - { 0x5D2CD0, 0x5D1B68 }, { 0x5D3488, 0x5D2320 }, { 0x5D3900, 0x5D2798 }, - { 0x5D3968, 0x5D2800 }, { 0x5D4668, 0x5D3500 }, { 0x5D47A0, 0x5D3638 }, - { 0x5D4EC0, 0x5D3D58 }, { 0x5D5100, 0x5D3F98 }, { 0x5D5370, 0x5D4208 }, - { 0x5D5548, 0x5D43E0 }, { 0x5D56B8, 0x5D4550 }, { 0x5D57C0, 0x5D4658 }, - { 0x5D5B38, 0x5D49D0 }, { 0x5D61B8, 0x5D5050 } + const int SENTENCES_DEFAULT[3] = { 0x5C0130, 0x5BEFC8, 0x5BE008 }; + const int SENTENCES_BARBOT[2][3] = { + { 0x5ABE60, 0x5AACF8, 0x5A9D38 }, { 0x5BD4E8, 0x5BC380, 0x5BB3C0 } + }; + const int SENTENCES_BELLBOT[20][3] = { + { 0x5C2230, 0x5C10C8, 0X5C0108 }, { 0x5D1670, 0x5D0508, 0x5CF548 }, + { 0x5D1A80, 0x5D0918, 0x5CF958 }, { 0x5D1AE8, 0x5D0980, 0x5CF9C0 }, + { 0x5D1B88, 0x5D0A20, 0x5CFA60 }, { 0x5D2A60, 0x5D18F8, 0x5D0938 }, + { 0x5D2CD0, 0x5D1B68, 0x5D0BA8 }, { 0x5D3488, 0x5D2320, 0x5D1360 }, + { 0x5D3900, 0x5D2798, 0x5D17D8 }, { 0x5D3968, 0x5D2800, 0x5D1840 }, + { 0x5D4668, 0x5D3500, 0x5D2540 }, { 0x5D47A0, 0x5D3638, 0x5D2678 }, + { 0x5D4EC0, 0x5D3D58, 0x5D2D98 }, { 0x5D5100, 0x5D3F98, 0x5D2FD8 }, + { 0x5D5370, 0x5D4208, 0x5D3248 }, { 0x5D5548, 0x5D43E0, 0x5D3420 }, + { 0x5D56B8, 0x5D4550, 0x5D3590 }, { 0x5D57C0, 0x5D4658, 0x5D3698 }, + { 0x5D5B38, 0x5D49D0, 0x5D3A10 }, { 0x5D61B8, 0x5D5050, 0x5D4090 } }; writeSentenceEntries("Sentences/Default", SENTENCES_DEFAULT[_version]); writeSentenceEntries("Sentences/Barbot", SENTENCES_BARBOT[0][_version]); @@ -701,18 +711,21 @@ void writeData() { writeSentenceEntries("Sentences/Bellbot/18", SENTENCES_BELLBOT[18][_version]); writeSentenceEntries("Sentences/Bellbot/19", SENTENCES_BELLBOT[19][_version]); - const int SENTENCES_DESKBOT[3][2] = { - { 0x5DCD10, 0x5DBBA8 }, { 0x5E8E18, 0x5E7CB0 }, { 0x5E8BA8, 0x5E7A40 } + const int SENTENCES_DESKBOT[3][3] = { + { 0x5DCD10, 0x5DBBA8, 0x5DABE8 }, { 0x5E8E18, 0x5E7CB0, 0x5E6CF0 }, + { 0x5E8BA8, 0x5E7A40, 0x5E6A80 } }; writeSentenceEntries("Sentences/Deskbot", SENTENCES_DESKBOT[0][_version]); writeSentenceEntries("Sentences/Deskbot/2", SENTENCES_DESKBOT[1][_version]); writeSentenceEntries("Sentences/Deskbot/3", SENTENCES_DESKBOT[2][_version]); - const int SENTENCES_DOORBOT[12][2] = { - { 0x5EC110, 0x5EAFA8 }, { 0x5FD930, 0x5FC7C8 }, { 0x5FDD0C, 0x5FCBA4 }, - { 0x5FE668, 0x5FD500 }, { 0x5FDD40, 0x5FCBD8 }, { 0x5FFF08, 0x5FEDA0 }, - { 0x5FE3C0, 0x5FD258 }, { 0x5FF0C8, 0x5FDF60 }, { 0x5FF780, 0x5FE618 }, - { 0x5FFAC0, 0x5FE958 }, { 0x5FFC30, 0x5FEAC8 }, { 0x6000E0, 0x5FEF78 } + const int SENTENCES_DOORBOT[12][3] = { + { 0x5EC110, 0x5EAFA8, 0x5E9FE8 }, { 0x5FD930, 0x5FC7C8, 0x5FB808 }, + { 0x5FDD0C, 0x5FCBA4, 0x5FBBE4 }, { 0x5FE668, 0x5FD500, 0x5FC540 }, + { 0x5FDD40, 0x5FCBD8, 0X5FBC18 }, { 0x5FFF08, 0x5FEDA0, 0x5FDDE0 }, + { 0x5FE3C0, 0x5FD258, 0x5FC298 }, { 0x5FF0C8, 0x5FDF60, 0x5FCFA0 }, + { 0x5FF780, 0x5FE618, 0x5FD658 }, { 0x5FFAC0, 0x5FE958, 0x5FD998 }, + { 0x5FFC30, 0x5FEAC8, 0x5FDB08 }, { 0x6000E0, 0x5FEF78, 0x5FDFB8 } }; writeSentenceEntries("Sentences/Doorbot", SENTENCES_DOORBOT[0][_version]); writeSentenceEntries("Sentences/Doorbot/2", SENTENCES_DOORBOT[1][_version]); @@ -727,23 +740,25 @@ void writeData() { writeSentenceEntries("Sentences/Doorbot/131", SENTENCES_DOORBOT[10][_version]); writeSentenceEntries("Sentences/Doorbot/132", SENTENCES_DOORBOT[11][_version]); - const int SENTENCES_LIFTBOT[2] = { 0x6026B0, 0x601548 }; - const int SENTENCES_MAITRED[2][2] = { { 0x60CFD8, 0x60BE70 }, { 0x614288, 0x613120 } }; - const int SENTENCES_PARROT[2] = { 0x615858, 0x6146F0 }; - const int SENTENCES_SUCCUBUS[2] = { 0x616698, 0x615530 }; - const int MAPPINGS_BARBOT[2] = { 0x5B28A0, 0x5B173E }; - const int MAPPINGS_BELLBOT[2] = { 0x5CD830, 0x5CC6C8 }; - const int MAPPINGS_DESKBOT[2] = { 0x5E2BB8, 0x5E1A50 }; - const int MAPPINGS_DOORBOT[2] = { 0x5F7950, 0x5F67E8 }; - const int MAPPINGS_LIFTBOT[2] = { 0x608660, 0x6074F8 }; - const int MAPPINGS_MAITRED[2] = { 0x6125C8, 0x611460 }; - const int MAPPINGS_PARROT[2] = { 0x615B68, 0x614A00 }; - const int MAPPINGS_SUCCUBUS[2] = { 0x6189F0, 0x617888 }; - const int WORDS_BARBOT[2] = { 0x5BE2E0, 0x5BD178 }; - const int WORDS_BELLBOT[2] = { 0x5D8230, 0x5D70C8 }; - const int WORDS_DESKBOT[2] = { 0x5EAAA8, 0x5E9940 }; - const int WORDS_DOORBOT[2] = { 0x601098, 0x5FFF30 }; - const int WORDS_LIFTBOT[2] = { 0x60C788, 0x60B620 }; + const int SENTENCES_LIFTBOT[3] = { 0x6026B0, 0x601548, 0x600588 }; + const int SENTENCES_MAITRED[2][3] = { + { 0x60CFD8, 0x60BE70, 0x60AEB0 }, { 0x614288, 0x613120, 0x612160 } + }; + const int SENTENCES_PARROT[3] = { 0x615858, 0x6146F0, 0x613730 }; + const int SENTENCES_SUCCUBUS[3] = { 0x616698, 0x615530, 0x614570 }; + const int MAPPINGS_BARBOT[3] = { 0x5B28A0, 0x5B173E, 0x5B0778 }; + const int MAPPINGS_BELLBOT[3] = { 0x5CD830, 0x5CC6C8, 0x5CB708 }; + const int MAPPINGS_DESKBOT[3] = { 0x5E2BB8, 0x5E1A50, 0x5E0A90 }; + const int MAPPINGS_DOORBOT[3] = { 0x5F7950, 0x5F67E8, 0x5F5828 }; + const int MAPPINGS_LIFTBOT[3] = { 0x608660, 0x6074F8, 0x606538 }; + const int MAPPINGS_MAITRED[3] = { 0x6125C8, 0x611460, 0x6104A0 }; + const int MAPPINGS_PARROT[3] = { 0x615B68, 0x614A00, 0x613A40 }; + const int MAPPINGS_SUCCUBUS[3] = { 0x6189F0, 0x617888, 0x6168C8 }; + const int WORDS_BARBOT[3] = { 0x5BE2E0, 0x5BD178, 0x5BC1B8 }; + const int WORDS_BELLBOT[3] = { 0x5D8230, 0x5D70C8, 0x5D6108 }; + const int WORDS_DESKBOT[3] = { 0x5EAAA8, 0x5E9940, 0x5E8980 }; + const int WORDS_DOORBOT[3] = { 0x601098, 0x5FFF30, 0x5FEF70 }; + const int WORDS_LIFTBOT[3] = { 0x60C788, 0x60B620, 0x60A660 }; writeSentenceEntries("Sentences/Liftbot", SENTENCES_LIFTBOT[_version]); writeSentenceEntries("Sentences/MaitreD", SENTENCES_MAITRED[0][_version]); writeSentenceEntries("Sentences/MaitreD/1", SENTENCES_MAITRED[1][_version]); @@ -827,10 +842,12 @@ int main(int argc, char *argv[]) { } res.loadFromEXE(argv[1]); - if (inputFile.size() == ENGLISH_GOG_FILESIZE) - _version = ENGLISH_GOG; - else if (inputFile.size() == ENGLISH_ORIG_FILESIZE) - _version = ENGLISH_ORIG; + if (inputFile.size() == ENGLISH_10042C_FILESIZE) + _version = ENGLISH_10042C; + else if (inputFile.size() == ENGLISH_10042B_FILESIZE) + _version = ENGLISH_10042B; + else if (inputFile.size() == ENGLISH_10042_FILESIZE) + _version = ENGLISH_10042; else { printf("Unknown version of ST.exe specified"); exit(0); -- cgit v1.2.3 From 456ed176716432b8c54fae5ed252db07d1c71dd7 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Wed, 24 Aug 2016 21:19:37 -0400 Subject: DEVTOOLS: Add MissiveOMat message data to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 97 ++++++++++++++++++++++++++ 1 file changed, 97 insertions(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 9186c1ce20..a7dbe53e97 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -285,6 +285,84 @@ static const FrameRange BARBOT_FRAME_RANGES[60] = { { 202, 281 }, { 182, 202 }, { 165, 182 }, { 96, 165 }, { 0, 95 } }; +const char *const MISSIVEOMAT_MESSAGES[3] = { + "Welcome, Leovinus.\n" + "\n" + "This is your Missive-O-Mat.\n" + "\n" + "You have received 1827 Electric Missives.\n" + "\n" + "For your convenience I have deleted:\n" + " 453 things that people you don't know thought it would be " + "terribly witty to forward to you,\n" + " 63 Missives containing double or triple exclamation marks,\n" + " 846 Missives from mailing-lists you once thought might be quite " + "interesting and now can't figure out how to cancel,\n" + " 962 Chain Missives,\n" + " 1034 instructions on how to become a millionaire using butter,\n" + " 3 Yassaccan Death Threats (slightly down on last week which is" + " pleasing news),\n" + " and a Missive from your Mother which I have answered reassuringly.\n" + "\n" + "I have selected the following Missives for your particular attention. " + "You will not need to run Fib-Finder to see why. Something Is Up and I " + "suspect those two slippery urchins Brobostigon and Scraliontis are behind it.", + + "Hello Droot. I have evaluated your recent missives.\n" + "Contents break down as follows:\n" + "\n" + "Good news 49%\n" + "Bad news 48%\n" + "Indifferent news 4%\n" + "Petty mailings and Family Missives 5%\n" + "Special Offers from the Blerontin Sand Society 1% (note - there's" + " a rather pretty dune for hire on p4)\n" + "\n" + "In general terms you Thrive. You continue to Prosper. Your shares are" + " Secure. Your hair, as always, looks Good. Carpet 14 needs cleaning. \n" + "\n" + "I am pleased to report there have been no further comments about " + "foot odor.\n" + "\n" + "Recommend urgently you sell all fish paste shares as Market jittery.\n" + "\n" + "As your Great Scheme nears completion I have taken the liberty of" + " replying to all non-urgent Missives and list below only communic" + "ations with Manager Brobostigon and His Pain in the Ass Loftiness" + " Leovinus. \n" + "\n" + "Beware - Leovinus grows suspicious. Don't take your eye off B" + "robostigon. \n" + "\n" + "Weather for the Launch tomorrow is bright and sunny. Hazy clouds" + " will be turned on at eleven. I suggest the red suit with the st" + "reamers.\n" + "\n" + "All money transfers will be completed through alias accounts by m" + "oonsup.\n" + "\n" + "Eat well. Your fish levels are down and you may suffer indecisio" + "n flutters mid-morning.\n" + "\n" + "Here are your Missives...", + + "Hello Antar, this is your Missive-o-Mat.\n" + "Not that you need reminding but today is the Glorious Dawning of " + "a New Age in Luxury Space Travel.\n" + "\n" + "Generally my assessment of your position this morning is that you" + " are well, albeit not as rich as you would like to be. I hope yo" + "ur interesting collaboration with Mr Scraliontis will soon bear f" + "ruit. \n" + "\n" + "I trust your flatulence has eased during the night. Such a distr" + "essing condition for a man in your position.\n" + "\n" + "Most of your Missives are routine construction matters which I ha" + "ve dealt with and deleted. All Missives from Mr Scraliontis and " + "His Loftiness Leovinus are here." +}; + void NORETURN_PRE error(const char *s, ...) { printf("%s\n", s); exit(1); @@ -619,6 +697,24 @@ void writeBarbotFrameRanges() { dataOffset += size; } +void writeMissiveOMatMessages() { + outputFile.seek(dataOffset); + + for (int idx = 0; idx < 3; ++idx) + outputFile.writeString(MISSIVEOMAT_MESSAGES[idx]); + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("TEXT/MISSIVEOMAT/WELCOME", dataOffset, size); + dataOffset += size; + + static const int MESSAGES[3] = { 0x5A63C0, 0x5A5BA8, 0x5A4A18 }; + writeStringArray("TEXT/MISSIVEOMAT/MESSAGES", MESSAGES[_version], 58); + static const int FROM[3] = { 0x5A61F0, 0x5A59D8, 0x5A4BE8 }; + writeStringArray("TEXT/MISSIVEOMAT/FROM", FROM[_version], 58); + static const int TO[3] = { 0x5A62D8, 0x5A5AC0, 0x5A4B00 }; + writeStringArray("TEXT/MISSIVEOMAT/TO", TO[_version], 58); +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -789,6 +885,7 @@ void writeData() { writeAllUpdateStates(); writeAllScriptPreResponses(); writeBarbotFrameRanges(); + writeMissiveOMatMessages(); } void createScriptMap() { -- cgit v1.2.3 From 9de67538650b81610145bb47810ba2d9b641b3f1 Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Thu, 25 Aug 2016 18:35:50 -0400 Subject: DEVTOOLS: Add bedhead data to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 85 +++++++++++++++++++++++++- 1 file changed, 84 insertions(+), 1 deletion(-) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index a7dbe53e97..7171467bf4 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -285,7 +285,7 @@ static const FrameRange BARBOT_FRAME_RANGES[60] = { { 202, 281 }, { 182, 202 }, { 165, 182 }, { 96, 165 }, { 0, 95 } }; -const char *const MISSIVEOMAT_MESSAGES[3] = { +static const char *const MISSIVEOMAT_MESSAGES[3] = { "Welcome, Leovinus.\n" "\n" "This is your Missive-O-Mat.\n" @@ -363,6 +363,58 @@ const char *const MISSIVEOMAT_MESSAGES[3] = { "His Loftiness Leovinus are here." }; +struct BedheadEntry { + const char *_name1; + const char *_name2; + const char *_name3; + const char *_name4; + int _startFrame; + int _endFrame; +}; + +static const BedheadEntry ON_CLOSED[4] = { + { "Closed", "Closed", "Open", "Open", 0, 12 }, + { "Open", "Any", "Any", "RestingUTV", 0, 4 }, + { "Closed", "Open", "Any", "RestingV", 0, 6 }, + { "Closed", "Closed", "Closed", "RestingG", 0, 21 } +}; +static const BedheadEntry ON_RESTING_TV[2] = { + { "Any", "Closed", "Open", "Open", 6, 12 }, + { "Any", "Closed", "Closed", "RestingG", 6, 21 } +}; +static const BedheadEntry ON_RESTING_UV[2] = { + { "Any", "Any", "Open", "Open", 8, 12 }, + { "Any", "Any", "Closed", "RestingG", 8, 21 } +}; +static const BedheadEntry ON_CLOSED_WRONG[2] = { + { "Any", "Any", "Closed", "OpenWrong", 42, 56 }, + { "Any", "Any", "Open", "RestingDWrong", 42, 52 } +}; + +static const BedheadEntry OFF_OPEN[3] = { + { "Closed", "Closed", "Open", "Closed", 27, 41 }, + { "Any", "Open", "Any", "RestingUV", 27, 29 }, + { "Open", "Closed", "Any", "RestingTV", 27, 33 } +}; +static const BedheadEntry OFF_RESTING_UTV[1] = { + { "Any", "Any", "Any", "Closed", 36, 41 } +}; +static const BedheadEntry OFF_RESTING_V[1] = { + { "Closed", "Any", "Any", "Closed", 32, 41 } +}; +static const BedheadEntry OFF_RESTING_G[3] = { + { "Closed", "Closed", "Closed", "Closed", 21, 41 }, + { "Any", "Open", "Closed", "RestingUV", 21, 29 }, + { "Open", "Closed", "Closed", "RestingTV", 21, 33 } +}; +static const BedheadEntry OFF_OPEN_WRONG[1] = { + { "Any", "Any", "Any", "ClosedWrong", 56, 70 } +}; +static const BedheadEntry OFF_RESTING_D_WRONG[1] = { + { "Any", "Any", "Any", "ClosedWrong", 59, 70 } +}; + + void NORETURN_PRE error(const char *s, ...) { printf("%s\n", s); exit(1); @@ -715,6 +767,36 @@ void writeMissiveOMatMessages() { writeStringArray("TEXT/MISSIVEOMAT/TO", TO[_version], 58); } +void writeBedheadGroup(const BedheadEntry *data, int count) { + for (int idx = 0; idx < count; ++idx, ++data) { + outputFile.writeString(data->_name1); + outputFile.writeString(data->_name2); + outputFile.writeString(data->_name3); + outputFile.writeString(data->_name4); + outputFile.writeLong(data->_startFrame); + outputFile.writeLong(data->_endFrame); + } +} + +void writeBedheadData() { + outputFile.seek(dataOffset); + + writeBedheadGroup(ON_CLOSED, 4); + writeBedheadGroup(ON_RESTING_TV, 2); + writeBedheadGroup(ON_RESTING_UV, 2); + writeBedheadGroup(ON_CLOSED_WRONG, 2); + writeBedheadGroup(OFF_OPEN, 3); + writeBedheadGroup(OFF_RESTING_UTV, 1); + writeBedheadGroup(OFF_RESTING_V, 1); + writeBedheadGroup(OFF_RESTING_G, 3); + writeBedheadGroup(OFF_OPEN_WRONG, 1); + writeBedheadGroup(OFF_RESTING_D_WRONG, 1); + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("DATA/BEDHEAD", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -886,6 +968,7 @@ void writeData() { writeAllScriptPreResponses(); writeBarbotFrameRanges(); writeMissiveOMatMessages(); + writeBedheadData(); } void createScriptMap() { -- cgit v1.2.3 From 0fbc3b709d242a1ac82467973f56a8f84d9a465e Mon Sep 17 00:00:00 2001 From: Paul Gilbert Date: Fri, 26 Aug 2016 21:18:03 -0400 Subject: DEVTOOLS: Added data for CParrotLobbyLinkUpdator to create_titanic --- devtools/create_titanic/create_titanic_dat.cpp | 33 ++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'devtools/create_titanic/create_titanic_dat.cpp') diff --git a/devtools/create_titanic/create_titanic_dat.cpp b/devtools/create_titanic/create_titanic_dat.cpp index 7171467bf4..61e5de1149 100644 --- a/devtools/create_titanic/create_titanic_dat.cpp +++ b/devtools/create_titanic/create_titanic_dat.cpp @@ -797,6 +797,38 @@ void writeBedheadData() { dataOffset += size; } +void writeParrotLobbyLinkUpdaterEntries() { + static const int OFFSETS[3] = { 0x5A5B38, 0x5A5320, 0x5A4360 }; + static const int COUNTS[5] = { 7, 5, 6, 9, 1 }; + static const int SKIP[5] = { 36, 36, 40, 36, 0 }; + uint recordOffset = OFFSETS[_version], linkOffset; + byte vals[8]; + + outputFile.seek(dataOffset); + + for (int groupNum = 0; groupNum < 4; ++groupNum) { + for (int entryNum = 0; entryNum < COUNTS[groupNum]; + ++entryNum, recordOffset += 36) { + inputFile.seek(recordOffset - FILE_DIFF[_version]); + linkOffset = inputFile.readUint32LE(); + for (int idx = 0; idx < 8; ++idx) + vals[idx] = inputFile.readUint32LE(); + + // Write out the entry + inputFile.seek(linkOffset - FILE_DIFF[_version]); + outputFile.writeString(inputFile); + outputFile.write(vals, 8); + } + + // Skip space between groups + recordOffset += SKIP[groupNum]; + } + + uint size = outputFile.size() - dataOffset; + writeEntryHeader("DATA/PARROT_LOBBY_LINK_UPDATOR", dataOffset, size); + dataOffset += size; +} + void writeHeader() { // Write out magic string const char *MAGIC_STR = "SVTN"; @@ -969,6 +1001,7 @@ void writeData() { writeBarbotFrameRanges(); writeMissiveOMatMessages(); writeBedheadData(); + writeParrotLobbyLinkUpdaterEntries(); } void createScriptMap() { -- cgit v1.2.3