aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_sentence.h
diff options
context:
space:
mode:
authorPaul Gilbert2016-05-17 17:54:59 -0400
committerPaul Gilbert2016-07-15 19:12:48 -0400
commit5da19b674d3b9d24517a266e369728f3b5c2957a (patch)
tree3338ac43d34ea6d6c1236d31846b2d468cee0120 /engines/titanic/true_talk/tt_sentence.h
parentaead3a0083edd7ac5e1f748f422ee25695676a4a (diff)
downloadscummvm-rg350-5da19b674d3b9d24517a266e369728f3b5c2957a.tar.gz
scummvm-rg350-5da19b674d3b9d24517a266e369728f3b5c2957a.tar.bz2
scummvm-rg350-5da19b674d3b9d24517a266e369728f3b5c2957a.zip
TITANIC: Changed TTinput to TTsentence to match original
Diffstat (limited to 'engines/titanic/true_talk/tt_sentence.h')
-rw-r--r--engines/titanic/true_talk/tt_sentence.h80
1 files changed, 80 insertions, 0 deletions
diff --git a/engines/titanic/true_talk/tt_sentence.h b/engines/titanic/true_talk/tt_sentence.h
new file mode 100644
index 0000000000..94d7bfc8d9
--- /dev/null
+++ b/engines/titanic/true_talk/tt_sentence.h
@@ -0,0 +1,80 @@
+/* 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 TITANIC_TT_SENTENCE_H
+#define TITANIC_TT_SENTENCE_H
+
+#include "titanic/true_talk/tt_npc_script.h"
+#include "titanic/true_talk/tt_room_script.h"
+#include "titanic/true_talk/tt_string.h"
+
+namespace Titanic {
+
+class CScriptHandler;
+
+class TTsentenceSubBase {
+public:
+ int _field0;
+ int _field4;
+ int _field8;
+ int _fieldC;
+ int _field10;
+ int _field14;
+ int _field18;
+ int _field1C;
+ int _field20;
+ int _field24;
+public:
+ TTsentenceSubBase();
+};
+
+class TTsentenceSub : public TTsentenceSubBase {
+public:
+};
+
+class TTsentence {
+private:
+ CScriptHandler *_owner;
+ TTsentenceSub _sub;
+ int _field2C;
+ int _inputCtr;
+ int _field34;
+ int _field38;
+ int _field4C;
+ TTroomScript *_roomScript;
+ TTnpcScript *_npcScript;
+ int _field58;
+ int _field5C;
+ int _status;
+public:
+ TTstring _initialLine;
+ TTstring _normalizedLine;
+public:
+ TTsentence(int inputCtr, const TTstring &line, CScriptHandler *owner,
+ TTroomScript *roomScript, TTnpcScript *npcScript);
+
+ void set38(int v);
+};
+
+} // End of namespace Titanic
+
+#endif /* TITANIC_TT_SENTENCE_H */