4 * Created on: Aug 26, 2012
8 #include "Interpreter.h"
10 #include "ParsedSource.h"
11 #include "../battle/Hero.h"
12 #include "../battle/Monster.h"
13 #include "../battle/PartyLayout.h"
14 #include "../battle/Resources.h"
15 #include "../common/Ikari.h"
16 #include "../common/Item.h"
17 #include "../common/Spell.h"
18 #include "../common/TargetingMode.h"
19 #include "../graphics/ComplexAnimation.h"
20 #include "../graphics/Font.h"
21 #include "../graphics/Frame.h"
22 #include "../graphics/Gauge.h"
23 #include "../graphics/Menu.h"
24 #include "../graphics/SimpleAnimation.h"
25 #include "../graphics/Sprite.h"
29 #include <SDL_image.h>
32 using battle::Monster;
33 using battle::PartyLayout;
38 using common::TargetingMode;
39 using graphics::Animation;
40 using graphics::Color;
42 using graphics::Frame;
43 using graphics::Gauge;
44 using graphics::ComplexAnimation;
45 using graphics::SimpleAnimation;
46 using graphics::Sprite;
47 using geometry::Vector;
56 Interpreter::~Interpreter() {
57 for (vector<PostponedDefinition>::const_iterator i(postponedDefinitions.begin()), end(postponedDefinitions.end()); i != end; ++i) {
60 for (map<string, SDL_Surface *>::const_iterator i(imageCache.begin()), end(imageCache.end()); i != end; ++i) {
61 SDL_FreeSurface(i->second);
63 // TODO: maybe need to reverse the array deletion check if most objects turn out to be arrays (of char)
64 for (map<int, vector<void *> >::const_iterator i(values.begin()), end(values.end()); i != end; ++i) {
65 for (vector<void *>::const_iterator j(i->second.begin()), end(i->second.end()); j != end; ++j) {
66 delete[] reinterpret_cast<char *>(*j);
72 void *Interpreter::GetObject(int typeId, const std::string &name) {
73 map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
74 if (i != parsedDefinitions.end()) {
75 const TypeDescription &requested(TypeDescription::Get(typeId));
76 const TypeDescription &actual(TypeDescription::Get(i->second.type));
77 if (requested.TypeId() == actual.TypeId()) {
78 return values[actual.TypeId()][i->second.id];
79 } else if (actual.IsSubtypeOf(requested)) {
80 char *sub(reinterpret_cast<char *>(values[actual.TypeId()][i->second.id]));
81 std::ptrdiff_t offset(actual.SupertypeOffset(requested));
84 throw Error("cannot cast " + actual.TypeName() + " to " + requested.TypeName());
87 throw Error("access to undefined object " + name);
92 void Interpreter::ReadSource() {
93 for (set<string>::const_iterator i(source.Exports().begin()), end(source.Exports().end()); i != end; ++i) {
94 ReadDefinition(source.GetDefinition(*i));
98 void Interpreter::ReadDefinition(const Definition &dfn) {
99 if (parsedDefinitions.find(dfn.Identifier()) != parsedDefinitions.end()) {
102 if (dfn.HasLiteralValue()) {
109 void Interpreter::ReadLiteral(const Definition &dfn) {
110 switch (dfn.GetLiteral()->GetType()) {
111 case Literal::ARRAY_VALUES:
112 throw Error("named value arrays are not supported, sorry");
114 case Literal::ARRAY_PROPS:
115 throw Error("named property list arrays are not supported, sorry");
117 case Literal::BOOLEAN:
119 int typeId(TypeDescription::GetTypeId("Boolean"));
120 values[typeId].push_back(new bool(dfn.GetLiteral()->GetBoolean()));
121 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, values[typeId].size() - 1)));
126 int typeId(TypeDescription::GetTypeId("Color"));
127 values[typeId].push_back(new Color(dfn.GetLiteral()->GetRed(), dfn.GetLiteral()->GetGreen(), dfn.GetLiteral()->GetBlue(), dfn.GetLiteral()->GetAlpha()));
128 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, values[typeId].size() - 1)));
131 case Literal::NUMBER:
133 int typeId(TypeDescription::GetTypeId("Number"));
134 values[typeId].push_back(new int(dfn.GetLiteral()->GetNumber()));
135 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, values[typeId].size() - 1)));
140 int typeId(TypeDescription::GetTypeId("Path"));
141 char *str(new char[dfn.GetLiteral()->GetString().size() + 1]);
142 std::memcpy(str, dfn.GetLiteral()->GetString().c_str(), dfn.GetLiteral()->GetString().size());
143 str[dfn.GetLiteral()->GetString().size()] = '\0';
144 values[typeId].push_back(str);
145 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, values[typeId].size() - 1)));
148 case Literal::STRING:
150 int typeId(TypeDescription::GetTypeId("String"));
151 char *str(new char[dfn.GetLiteral()->GetString().size() + 1]);
152 std::memcpy(str, dfn.GetLiteral()->GetString().c_str(), dfn.GetLiteral()->GetString().size());
153 str[dfn.GetLiteral()->GetString().size()] = '\0';
154 values[typeId].push_back(str);
155 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, values[typeId].size() - 1)));
158 case Literal::VECTOR:
160 int typeId(TypeDescription::GetTypeId("Vector"));
161 values[typeId].push_back(new Vector<int>(dfn.GetLiteral()->GetX(), dfn.GetLiteral()->GetY()));
162 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, values[typeId].size() - 1)));
165 case Literal::OBJECT:
172 void *Interpreter::GetObject(int typeId, const Value &v) {
174 if (v.GetLiteral().IsObject()) {
175 int typeId(TypeDescription::GetTypeId(v.GetLiteral().GetTypeName()));
176 const TypeDescription &td(TypeDescription::Get(typeId));
177 char *object(new char[td.Size()]);
178 int id(values[typeId].size());
179 values[typeId].push_back(object);
180 ReadObject(typeId, id, object, *v.GetLiteral().GetProperties());
183 int typeId(0), id(0);
184 switch (v.GetLiteral().GetType()) {
185 case Literal::ARRAY_VALUES:
186 throw Error("cannot copy value arrays, sorry");
188 case Literal::ARRAY_PROPS:
189 throw Error("cannot copy property list arrays, sorry");
191 case Literal::BOOLEAN:
193 typeId = TypeDescription::GetTypeId("Boolean");
194 id = values[typeId].size();
195 const TypeDescription &td(TypeDescription::Get(typeId));
196 char *object(new char[td.Size()]);
197 values[typeId].push_back(new (object) bool(v.GetLiteral().GetBoolean()));
202 typeId = TypeDescription::GetTypeId("Color");
203 id = values[typeId].size();
204 const TypeDescription &td(TypeDescription::Get(typeId));
205 char *object(new char[td.Size()]);
206 values[typeId].push_back(new (object) Color(v.GetLiteral().GetRed(), v.GetLiteral().GetGreen(), v.GetLiteral().GetBlue(), v.GetLiteral().GetAlpha()));
209 case Literal::NUMBER:
211 typeId = TypeDescription::GetTypeId("Number");
212 id = values[typeId].size();
213 const TypeDescription &td(TypeDescription::Get(typeId));
214 char *object(new char[td.Size()]);
215 values[typeId].push_back(new (object) int(v.GetLiteral().GetNumber()));
220 typeId = TypeDescription::GetTypeId("Path");
221 id = values[typeId].size();
222 char *str(new char[v.GetLiteral().GetString().size() + 1]);
223 std::memcpy(str, v.GetLiteral().GetString().c_str(), v.GetLiteral().GetString().size());
224 str[v.GetLiteral().GetString().size()] = '\0';
225 values[typeId].push_back(str);
228 case Literal::STRING:
230 typeId = TypeDescription::GetTypeId("String");
231 id = values[typeId].size();
232 char *str(new char[v.GetLiteral().GetString().size() + 1]);
233 std::memcpy(str, v.GetLiteral().GetString().c_str(), v.GetLiteral().GetString().size());
234 str[v.GetLiteral().GetString().size()] = '\0';
235 values[typeId].push_back(str);
238 case Literal::VECTOR:
240 typeId = TypeDescription::GetTypeId("Vector");
241 id = values[typeId].size();
242 const TypeDescription &td(TypeDescription::Get(typeId));
243 char *object(new char[td.Size()]);
244 values[typeId].push_back(new (object) Vector<int>(v.GetLiteral().GetX(), v.GetLiteral().GetY()));
247 case Literal::OBJECT:
249 typeId = TypeDescription::GetTypeId(v.GetLiteral().GetTypeName());
250 const TypeDescription &td(TypeDescription::Get(typeId));
251 id = values[typeId].size();
252 char *object(new char[td.Size()]);
253 ReadObject(typeId, id, object, *v.GetLiteral().GetProperties());
257 return values[typeId][id];
260 ReadDefinition(source.GetDefinition(v.GetIdentifier()));
261 return GetObject(typeId, v.GetIdentifier());
266 void Interpreter::ReadObject(const Definition &dfn) {
267 int typeId(TypeDescription::GetTypeId(dfn.TypeName()));
268 const TypeDescription &td(TypeDescription::Get(typeId));
269 int id(values[typeId].size());
270 char *object(new char[td.Size()]);
271 values[typeId].push_back(object);
272 ReadObject(typeId, id, object, *dfn.GetProperties());
273 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, id)));
277 void Interpreter::ReadObject(int typeId, int id, char *object, const PropertyList &props) {
278 const TypeDescription &td(TypeDescription::Get(typeId));
279 for (PropertyList::ConstIterator i(props.Begin()), end(props.End()); i != end; ++i) {
280 const FieldDescription &fd(td.GetField(i->first));
281 const TypeDescription &fieldType(TypeDescription::Get(fd.TypeId()));
282 if (CanLink(*i->second)) {
283 char *dest(object + fd.Offset());
284 if (fd.IsAggregate()) {
285 if (i->second->GetLiteral().GetType() != Literal::ARRAY_PROPS) {
286 throw Error("unsupported aggregate type");
288 int arraySize(i->second->GetLiteral().ArraySize());
289 char *aggregate(new char[fieldType.Size() * arraySize]);
290 char *iter(aggregate);
291 vector<PropertyList *> list(i->second->GetLiteral().GetPropertyLists());
292 for (vector<PropertyList *>::const_iterator j(list.begin()), end(list.end()); j != end; ++j, iter += fieldType.Size()) {
293 ReadObject(fieldType.TypeId(), -1, iter, **j);
295 if (fd.IsReferenced()) {
296 std::memcpy(dest, &aggregate, sizeof(char *));
297 dest += sizeof(char *);
298 std::memcpy(dest, &arraySize, sizeof(int));
300 throw Error("aggregate type fields must be referenced");
303 char *src(reinterpret_cast<char *>(GetObject(fd.TypeId(), *i->second)));
304 if (fd.IsReferenced()) {
305 std::memcpy(dest, &src, sizeof(char *));
307 std::memcpy(dest, src, fieldType.Size());
311 Postpone(typeId, id, fd.Offset(), i->second->GetIdentifier(), fd.TypeId());
317 bool Interpreter::CanLink(const Value &v) const {
318 return v.IsLiteral() || source.IsDefined(v.GetIdentifier());
321 void Interpreter::Postpone(int type, int id, std::ptrdiff_t offset, const std::string &identifier, int linkedType) {
322 char *str(new char[identifier.size() + 1]);
323 std::memcpy(str, identifier.c_str(), identifier.size());
324 str[identifier.size()] = '\0';
325 postponedDefinitions.push_back(PostponedDefinition(type, id, offset, str, linkedType));
329 void Interpreter::CreateTypeDescriptions() {
331 TypeDescription &td(TypeDescription::CreateOrGet("Boolean"));
332 td.SetSize(sizeof(bool));
335 TypeDescription &td(TypeDescription::CreateOrGet("Color"));
336 td.SetSize(sizeof(Color));
339 TypeDescription &td(TypeDescription::CreateOrGet("Image"));
340 td.SetSize(sizeof(SDL_Surface));
343 TypeDescription &td(TypeDescription::CreateOrGet("Number"));
344 td.SetSize(sizeof(int));
347 int stringId(TypeDescription::GetTypeId("String"));
348 TypeDescription &td(TypeDescription::CreateOrGet("Path"));
350 td.AddSupertype(stringId, 0);
353 TypeDescription &td(TypeDescription::CreateOrGet("String"));
357 TypeDescription &td(TypeDescription::CreateOrGet("Vector"));
358 td.SetSize(sizeof(Vector<int>));