aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2016-05-30 22:35:45 -0400
committerPaul Gilbert2016-07-15 19:17:24 -0400
commitef3bd4e28609749b4ada71210dce079cd77dc2a4 (patch)
treede45cdfa664092ab55d219876b85f9025f9764bb
parentd84fb55a24e36b2d829b89534a166b802a4b1fd7 (diff)
downloadscummvm-rg350-ef3bd4e28609749b4ada71210dce079cd77dc2a4.tar.gz
scummvm-rg350-ef3bd4e28609749b4ada71210dce079cd77dc2a4.tar.bz2
scummvm-rg350-ef3bd4e28609749b4ada71210dce079cd77dc2a4.zip
DEVTOOLS: Adding Deskbot tags list
-rw-r--r--devtools/create_titanic/create_titanic_dat.cpp2
-rw-r--r--devtools/create_titanic/file.h2
-rw-r--r--devtools/create_titanic/module.mk1
-rw-r--r--devtools/create_titanic/script_tags.cpp191
-rw-r--r--devtools/create_titanic/script_tags.h32
5 files changed, 228 insertions, 0 deletions
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[]) {
diff --git a/devtools/create_titanic/file.h b/devtools/create_titanic/file.h
index e8d49600e8..4580e83b19 100644
--- a/devtools/create_titanic/file.h
+++ b/devtools/create_titanic/file.h
@@ -210,4 +210,6 @@ public:
}
+extern Common::File inputFile, outputFile;
+
#endif
diff --git a/devtools/create_titanic/module.mk b/devtools/create_titanic/module.mk
index 05a4130dad..f74f445c50 100644
--- a/devtools/create_titanic/module.mk
+++ b/devtools/create_titanic/module.mk
@@ -4,6 +4,7 @@ MODULE := devtools/create_titanic
MODULE_OBJS := \
create_titanic_dat.o \
hashmap.o \
+ script_tags.o \
str.o \
winexe.o \
winexe_pe.o
diff --git a/devtools/create_titanic/script_tags.cpp b/devtools/create_titanic/script_tags.cpp
new file mode 100644
index 0000000000..3ee94ab8e4
--- /dev/null
+++ b/devtools/create_titanic/script_tags.cpp
@@ -0,0 +1,191 @@
+/* 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 "file.h"
+#include "script_tags.h"
+
+static const int DESKBOT_TAGS[][5] = {
+ { MKTAG('P', 'K', 'U', 'P'), 240573, 0, 0, 0 },
+ { MKTAG('S', 'E', 'X', '1'), 240573, 0, 0, 0 },
+ { MKTAG('R', 'E', 'S', '1'), 240354, 0, 0, 0 },
+ { MKTAG('R', 'E', 'S', '2'), 240547, 0, 0, 0 },
+ { MKTAG('S', 'W', 'E', 'R'), 240578, 0, 0, 0 },
+ { MKTAG('B', 'Y', 'Z', 'A'), 241173, 0, 0, 0 },
+ { MKTAG('S', 'A', 'S', 'S'), 240986, 0, 0, 0 },
+ { MKTAG('S', 'H', 'M', 'S'), 240453, 0, 0, 0 },
+ { MKTAG('F', 'O', 'O', 'D'), 240849, 0, 0, 0 },
+ { MKTAG('J', 'F', 'O', 'D'), 240849, 0, 0, 0 },
+
+ { MKTAG('C', 'H', 'S', 'E'), 240849, 0, 0, 0 },
+ { MKTAG('A', 'C', 'T', 'R'), 240654, 0, 0, 0 },
+ { MKTAG('A', 'C', 'T', 'S'), 240655, 0, 0, 0 },
+ { MKTAG('M', 'U', 'S', 'I'), 240681, 240849, 0, 0 },
+ { MKTAG('S', 'A', 'N', 'G'), 240681, 240657, 0, 0 },
+ { MKTAG('S', 'O', 'A', 'P'), 240681, 0, 0, 0 },
+ { MKTAG('T', 'V', 'S', 'H'), 240681, 0, 0, 0 },
+ { MKTAG('A', 'R', 'T', 'I'), 240657, 0, 0, 0 },
+ { MKTAG('A', 'U', 'T', 'H'), 240657, 0, 0, 0 },
+ { MKTAG('C', 'O', 'M', 'D'), 240657, 240785, 0, 0 },
+
+ { MKTAG('C', 'O', 'O', 'K'), 240657, 0, 0, 0 },
+ { MKTAG('C', 'O', 'P', 'S'), 240657, 0, 0, 0 },
+ { MKTAG('H', 'E', 'R', 'O'), 240657, 0, 0, 0 },
+ { MKTAG('H', 'O', 'S', 'T'), 240657, 0, 0, 0 },
+ { MKTAG('P', 'T', 'I', 'C'), 240657, 0, 0, 0 },
+ { MKTAG('S', 'C', 'I', 'T'), 240657, 0, 0, 0 },
+ { MKTAG('E', 'A', 'R', 'T'), 240728, 0, 0, 0 },
+ { MKTAG('P', 'L', 'A', 'N'), 240728, 0, 0, 0 },
+ { MKTAG('F', 'I', 'L', 'M'), 240939, 0, 0, 0 },
+ { MKTAG('F', 'I', 'S', 'H'), 240437, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+
+ { MKTAG('H', 'H', 'G', 'Q'), 241065, 240453, 0, 0 },
+ { MKTAG('L', 'I', 'Q', 'D'), 241167, 0, 0, 0 },
+ { MKTAG('P', 'H', 'I', 'L'), 240607, 0, 0, 0 },
+ { MKTAG('S', 'I', 'C', 'K'), 241170, 0, 0, 0 },
+ { MKTAG('T', 'W', 'A', 'T'), 240975, 0, 0, 0 },
+ { MKTAG('H', 'A', 'H', 'A'), 240785, 0, 0, 0 },
+ { MKTAG('S', 'C', 'I', 'T'), 240968, 241617, 0, 0 },
+ { MKTAG('S', 'C', 'I', 'E'), 240967, 241616, 0, 0 },
+ { MKTAG('S', 'L', 'O', 'W'), 241614, 0, 0, 0 },
+ { MKTAG('T', 'H', 'A', 'T'), 240760, 241615, 0, 0 },
+
+ { MKTAG('T', 'D', 'U', 'P'), 241161, 241618, 0, 0 },
+ { MKTAG('T', 'I', 'T', 'A'), 241619, 0, 0, 0 },
+ { MKTAG('C', 'S', 'P', 'Y'), 241620, 0, 0, 0 },
+ { MKTAG('M', 'I', 'N', 'S'), 241621, 0, 0, 0 },
+ { MKTAG('M', 'C', 'P', 'Y'), 241622, 0, 0, 0 },
+ { MKTAG('D', 'N', 'C', 'E'), 241623, 0, 0, 0 },
+ { MKTAG('N', 'A', 'U', 'T'), 241624, 0, 0, 0 },
+ { MKTAG('A', 'D', 'V', 'T'), 240939, 241622, 0, 0 },
+ { MKTAG('A', 'N', 'S', 'W'), 240453, 0, 0, 0 },
+ { MKTAG('A', 'R', 'T', 'Y'), 240658, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 },
+ { MKTAG('x', 'x', 'x', 'x'), 0, 0, 0, 0 }
+};
+
+void writeScriptTags(const char *name, const int *tags, uint count) {
+ outputFile.seek(dataOffset);
+
+ for (int idx = 0; idx < count * 5; ++idx, ++tags)
+ outputFile.writeLong(*tags);
+
+ writeEntryHeader(name, dataOffset, count * 5 * 4);
+ dataOffset += count * 5 * 4;
+}
+
+void writeAllScriptTags() {
+ writeScriptTags("Tags/103", &DESKBOT_TAGS[0][0], 129);
+} \ No newline at end of file
diff --git a/devtools/create_titanic/script_tags.h b/devtools/create_titanic/script_tags.h
new file mode 100644
index 0000000000..86cd1e6aed
--- /dev/null
+++ b/devtools/create_titanic/script_tags.h
@@ -0,0 +1,32 @@
+/* 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.
+ *
+ */
+
+#ifndef COMMON_SCRIPT_TAGS_H
+#define COMMON_SCRIPT_TAGS_H
+
+#include "common/scummsys.h"
+
+extern void writeAllScriptTags();
+extern void writeEntryHeader(const char *name, uint offset, uint size);
+extern uint dataOffset;
+
+#endif