aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_npc_script.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/titanic/true_talk/tt_npc_script.cpp')
-rw-r--r--engines/titanic/true_talk/tt_npc_script.cpp240
1 files changed, 240 insertions, 0 deletions
diff --git a/engines/titanic/true_talk/tt_npc_script.cpp b/engines/titanic/true_talk/tt_npc_script.cpp
new file mode 100644
index 0000000000..dfe8ac0ada
--- /dev/null
+++ b/engines/titanic/true_talk/tt_npc_script.cpp
@@ -0,0 +1,240 @@
+/* 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.
+ *
+ */
+
+#include "common/textconsole.h"
+#include "titanic/true_talk/tt_npc_script.h"
+#include "titanic/true_talk/true_talk_manager.h"
+
+namespace Titanic {
+
+TTNpcScriptBase::TTNpcScriptBase(int charId, const char *charClass, int v2,
+ const char *charName, int v3, int val2, int v4, int v5, int v6, int v7) :
+ TTScriptBase(0, charClass, v2, charName, v3, v4, v5, v6, v7),
+ _charId(charId), _field54(0), _val2(val2) {
+}
+
+/*------------------------------------------------------------------------*/
+
+TTNpcScript::TTNpcScript(int charId, const char *charClass, int v2,
+ const char *charName, int v3, int val2, int v4, int v5, int v6, int v7) :
+ TTNpcScriptBase(charId, charClass, v2, charName, v3, val2, v4, v5, v6, v7),
+ _subPtr(nullptr), _field60(0), _field64(0), _field68(0),
+ _field6C(0), _field70(0), _field74(0), _field78(0),
+ _field7C(0), _field80(0) {
+ CTrueTalkManager::_v2 = 0;
+ Common::fill(&_array[0], &_array[147], 0);
+
+ if (!CTrueTalkManager::_v10) {
+ Common::fill(&CTrueTalkManager::_v11[0], &CTrueTalkManager::_v11[41], 0);
+ CTrueTalkManager::_v10 = true;
+ }
+
+ resetFlags();
+}
+
+void TTNpcScript::resetFlags() {
+ Common::fill(&_array[26], &_array[146], 0);
+}
+
+void TTNpcScript::randomizeFlags() {
+ warning("TODO");
+}
+
+void TTNpcScript::proc4(int v) {
+ warning("TODO");
+}
+
+int TTNpcScript::proc6() const {
+ return 1;
+}
+
+void TTNpcScript::proc7(int v1, int v2) {
+ warning("TODO");
+}
+
+int TTNpcScript::proc8() const {
+ return 0;
+}
+
+int TTNpcScript::proc9() const {
+ return 2;
+}
+
+int TTNpcScript::proc10() const {
+ return 2;
+}
+
+int TTNpcScript::proc11() const {
+ return 2;
+}
+
+int TTNpcScript::proc12() const {
+ return 1;
+}
+
+bool TTNpcScript::proc13() const {
+ warning("TODO");
+ return true;
+}
+
+void TTNpcScript::proc14(int v) {
+ warning("TODO");
+}
+
+int TTNpcScript::proc15() const {
+ return 0;
+}
+
+bool TTNpcScript::proc16() const {
+ return true;
+}
+
+bool TTNpcScript::proc17() const {
+ return true;
+}
+
+bool TTNpcScript::proc18() const {
+ return true;
+}
+
+void TTNpcScript::proc19(int v) {
+ warning("TODO");
+}
+
+void TTNpcScript::proc20(int v) {
+ warning("TODO");
+}
+
+int TTNpcScript::proc21(int v) {
+ return v;
+}
+
+int TTNpcScript::proc22() const {
+ return 0;
+}
+
+int TTNpcScript::proc23() const {
+ return 0;
+}
+
+int TTNpcScript::proc25() const {
+ return 0;
+}
+
+void TTNpcScript::proc26() {
+}
+
+void TTNpcScript::save(SimpleFile *file) {
+ file->writeNumber(charId());
+ saveBody(file);
+
+ file->writeNumber(4);
+ file->writeNumber(_field70);
+ file->writeNumber(_field74);
+ file->writeNumber(_field78);
+ file->writeNumber(_field7C);
+
+ file->writeNumber(10);
+ for (int idx = 0; idx < 10; ++idx)
+ file->writeNumber(_array[idx]);
+}
+
+void TTNpcScript::load(SimpleFile *file) {
+ loadBody(file);
+
+ int count = file->readNumber();
+ _field70 = file->readNumber();
+ _field74 = file->readNumber();
+ _field78 = file->readNumber();
+ _field7C = file->readNumber();
+
+ for (int idx = count; idx > 4; --idx)
+ file->readNumber();
+
+ count = file->readNumber();
+ for (int idx = 0; idx < count; ++idx) {
+ int v = file->readNumber();
+ if (idx < 10)
+ _array[idx] = v;
+ }
+}
+
+void TTNpcScript::saveBody(SimpleFile *file) {
+ int v = proc31();
+ file->writeNumber(v);
+
+ if (v > 0 && _subPtr) {
+ warning("TODO");
+ }
+}
+
+void TTNpcScript::loadBody(SimpleFile *file) {
+ int count = file->readNumber();
+ preLoad();
+
+ for (int index = 0; index < count; index += 2) {
+ int v = file->readNumber();
+
+ if (_subPtr) {
+ error("TODO - %d", v);
+ }
+ }
+}
+
+int TTNpcScript::proc31() {
+ warning("TODO");
+ return 0;
+}
+
+void TTNpcScript::proc32() {
+ warning("TODO");
+}
+
+void TTNpcScript::proc33(int v1, int v2) {
+ warning("TODO");
+}
+
+int TTNpcScript::proc34() {
+ warning("TODO");
+ return 0;
+}
+
+int TTNpcScript::getDialLevel(uint dialNum, bool flag) {
+ warning("TODO");
+ return 0;
+}
+
+int TTNpcScript::proc36() const {
+ return 0;
+}
+
+int TTNpcScript::proc37() const {
+ return 0;
+}
+
+void TTNpcScript::preLoad() {
+ if (_subPtr) {
+ error("TODO");
+ }
+}
+
+} // End of namespace Titanic