aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/true_talk/tt_word.cpp
blob: 3d0aae5f67b40898510500df045ae2dbd867c250 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
/* 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 "titanic/true_talk/tt_word.h"

namespace Titanic {

TTWord::TTWord(TTString &str, int mode, int val2) : _string(str),
		_wordMode(mode), _field1C(val2), _fieldC(0), _field10(0),
		_field20(0), _field24(0), _field28(0) {
	_status = str.getStatus() == SS_VALID ? SS_VALID : SS_5;
}

int TTWord::readSyn(SimpleFile *file) {
	return 0;
}

int TTWord::load(SimpleFile *file, int mode) {
	CString str1, str2;
	int val;

	if (file->scanf("%d %s %s", &val, &str1, &str2)) {
		_string = TTString(str1);
		_field1C = val;
		_field20 = readNumber(str2.c_str());
		_wordMode = mode;
		return 0;
	} else {
		return 3;
	}
}

uint TTWord::readNumber(const char *str) {
	uint numValue = *str;
	if (*str == '0') {
		numValue = MKTAG('Z', 'Z', 'Z', '[');
	} else {
		++str;
		for (int idx = 0; idx < 3; ++idx, ++str)
			numValue = (numValue << 8) + *str;
	}

	return numValue;
}

/*------------------------------------------------------------------------*/

TTWord1::TTWord1(TTString &str, int val1, int val2, int val3) :
		TTWord(str, val1, val2), _field2C(val3) {
}

/*------------------------------------------------------------------------*/

TTWord2::TTWord2(TTString &str, int val1, int val2, int val3, int val4) :
		TTWord1(str, val1, val2, val3), _field30(val4) {
}

int TTWord2::load(SimpleFile *file) {
	int val;

	if (TTWord::load(file, 1) && file->scanf("%d", &val)) {
		_field30 = val;
		return 0;
	} else {
		return 8;
	}
}

/*------------------------------------------------------------------------*/

TTWord3::TTWord3(TTString &str, int val1, int val2, int val3, int val4, int val5, int val6) :
		TTWord1(str, val1, val2, val4), _field34(val3), _field30(val5), _field3C(val6),
		_field38(0) {
}

int TTWord3::load(SimpleFile *file) {
	CString str;
	int val1, val2;

	if (!TTWord::load(file, 2) && file->scanf("%d %d %d", &str, &val1, &val2)) {
		_field34 = readNumber(str.c_str());
		_field30 = val1;
		_field3C = val2;
		return 0;
	} else {
		return 3;
	}
}

/*------------------------------------------------------------------------*/

TTWord4::TTWord4(TTString &str, int val1, int val2, int val3, int val4) :
		TTWord1(str, val1, val2, val3) {
	if (val4 >= 0 && val4 <= 9) {
		_field30 = val4;
	} else {
		_field30 = 0;
		_status = SS_5;
	}
}

int TTWord4::load(SimpleFile *file) {
	int val;

	if (TTWord::load(file, 1) && file->scanf("%d", &val)) {
		_field30 = val;
		return 0;
	} else {
		return 8;
	}
}

/*------------------------------------------------------------------------*/

TTWord5::TTWord5(TTString &str, int val1, int val2, int val3, int val4) :
	TTWord1(str, val1, val2, val3), _field30(val4) {
}

int TTWord5::load(SimpleFile *file) {
	int val;

	if (TTWord::load(file, 1) && file->scanf("%d", &val)) {
		if (val >= 0 && val <= 12) {
			_field30 = val;
			return 0;
		} else {
			return 5;
		}
	} else {
		return 8;
	}
}

} // End of namespace Titanic