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/Script.h"
18 #include "../common/Spell.h"
19 #include "../common/Stats.h"
20 #include "../common/TargetingMode.h"
21 #include "../graphics/ComplexAnimation.h"
22 #include "../graphics/Font.h"
23 #include "../graphics/Frame.h"
24 #include "../graphics/Gauge.h"
25 #include "../graphics/Menu.h"
26 #include "../graphics/SimpleAnimation.h"
27 #include "../graphics/Sprite.h"
31 #include <SDL_image.h>
34 using battle::Monster;
35 using battle::PartyLayout;
41 using common::TargetingMode;
42 using graphics::Animation;
43 using graphics::Color;
45 using graphics::Frame;
46 using graphics::Gauge;
47 using graphics::ComplexAnimation;
48 using graphics::SimpleAnimation;
49 using graphics::Sprite;
50 using geometry::Vector;
58 Interpreter::~Interpreter() {
59 for (std::map<string, SDL_Surface *>::const_iterator i(imageCache.begin()), end(imageCache.end()); i != end; ++i) {
60 SDL_FreeSurface(i->second);
65 const Interpreter::ParsedDefinition &Interpreter::GetDefinition(const string &identifier) {
66 std::map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(identifier));
67 if (i != parsedDefinitions.end()) {
69 } else if (source.IsDefined(identifier)) {
70 ReadDefinition(source.GetDefinition(identifier));
71 return parsedDefinitions.at(identifier);
73 throw Error("access to undefined object " + identifier);
78 void *Interpreter::GetObject(int typeId, const std::string &name) {
79 std::map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
80 if (i != parsedDefinitions.end()) {
81 const TypeDescription &requested(TypeDescription::Get(typeId));
82 const TypeDescription &actual(TypeDescription::Get(i->second.type));
83 if (requested.TypeId() == actual.TypeId()) {
84 return values[actual.TypeId()][i->second.id];
85 } else if (actual.IsSubtypeOf(requested)) {
86 char *sub(reinterpret_cast<char *>(values[actual.TypeId()][i->second.id]));
87 std::ptrdiff_t offset(actual.SupertypeOffset(requested));
90 throw Error("cannot cast " + actual.TypeName() + " to " + requested.TypeName());
93 throw Error("access to undefined object " + name);
98 void Interpreter::ReadSource() {
99 for (set<string>::const_iterator i(source.Exports().begin()), end(source.Exports().end()); i != end; ++i) {
100 ReadDefinition(source.GetDefinition(*i));
104 void Interpreter::ReadDefinition(const Definition &dfn) {
105 if (parsedDefinitions.find(dfn.Identifier()) != parsedDefinitions.end()) {
108 if (dfn.HasLiteralValue()) {
115 void Interpreter::ReadLiteral(const Definition &dfn) {
116 const string &typeName(dfn.GetLiteral()->IsArray() ? "Array" : dfn.GetLiteral()->GetTypeName());
117 int typeId(TypeDescription::GetTypeId(typeName));
118 int id(values[typeId].size());
119 const TypeDescription &td(TypeDescription::Get(typeId));
121 (dfn.GetLiteral()->GetType() == Literal::PATH
122 || dfn.GetLiteral()->GetType() == Literal::STRING)
123 ? dfn.GetLiteral()->GetString().size() : td.Size());
124 char *object(alloc.Alloc(size));
125 values[typeId].push_back(object);
126 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, id)));
127 if (dfn.GetLiteral()->GetType() == Literal::OBJECT) {
128 ReadObject(typeId, id, object, *dfn.GetLiteral()->GetProperties());
130 ReadLiteral(typeId, id, object, *dfn.GetLiteral());
134 void Interpreter::ReadLiteral(int typeId, int id, char *object, const Literal &literal) {
135 switch (literal.GetType()) {
136 case Literal::ARRAY_VALUES:
137 throw Error("named value arrays are not supported, sorry");
139 case Literal::ARRAY_PROPS:
140 throw Error("named property list arrays are not supported, sorry");
142 case Literal::BOOLEAN:
143 new (object) bool(literal.GetBoolean());
146 new (object) Color(literal.GetRed(), literal.GetGreen(), literal.GetBlue(), literal.GetAlpha());
148 case Literal::NUMBER:
149 new (object) int(literal.GetNumber());
152 std::memcpy(object, literal.GetString().c_str(), literal.GetString().size());
153 object[literal.GetString().size()] = '\0';
155 case Literal::SCRIPT:
157 ReadScript(literal.GetScript(), reinterpret_cast<Script *>(object));
159 case Literal::STRING:
160 std::memcpy(object, literal.GetString().c_str(), literal.GetString().size());
161 object[literal.GetString().size()] = '\0';
163 case Literal::VECTOR:
164 new (object) Vector<int>(literal.GetX(), literal.GetY());
166 case Literal::OBJECT:
167 throw Error("illogical branch: read literal object as non-object literal");
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(alloc.Alloc(td.Size()));
178 td.Construct(object);
179 int id(values[typeId].size());
180 values[typeId].push_back(object);
181 ReadObject(typeId, id, object, *v.GetLiteral().GetProperties());
184 int typeId(0), id(0);
185 switch (v.GetLiteral().GetType()) {
186 case Literal::ARRAY_VALUES:
187 throw Error("cannot copy value arrays, sorry");
189 case Literal::ARRAY_PROPS:
190 throw Error("cannot copy property list arrays, sorry");
192 case Literal::BOOLEAN:
194 typeId = TypeDescription::GetTypeId("Boolean");
195 id = values[typeId].size();
196 const TypeDescription &td(TypeDescription::Get(typeId));
197 char *object(alloc.Alloc(td.Size()));
198 values[typeId].push_back(new (object) bool(v.GetLiteral().GetBoolean()));
203 typeId = TypeDescription::GetTypeId("Color");
204 id = values[typeId].size();
205 const TypeDescription &td(TypeDescription::Get(typeId));
206 char *object(alloc.Alloc(td.Size()));
207 values[typeId].push_back(new (object) Color(v.GetLiteral().GetRed(), v.GetLiteral().GetGreen(), v.GetLiteral().GetBlue(), v.GetLiteral().GetAlpha()));
210 case Literal::NUMBER:
212 typeId = TypeDescription::GetTypeId("Number");
213 id = values[typeId].size();
214 const TypeDescription &td(TypeDescription::Get(typeId));
215 char *object(alloc.Alloc(td.Size()));
216 values[typeId].push_back(new (object) int(v.GetLiteral().GetNumber()));
221 typeId = TypeDescription::GetTypeId("Path");
222 id = values[typeId].size();
223 char *str(alloc.Alloc(v.GetLiteral().GetString().size() + 1));
224 std::memcpy(str, v.GetLiteral().GetString().c_str(), v.GetLiteral().GetString().size());
225 str[v.GetLiteral().GetString().size()] = '\0';
226 values[typeId].push_back(str);
229 case Literal::SCRIPT:
231 typeId = TypeDescription::GetTypeId("Script");
232 char *script(ReadScript(v.GetLiteral().GetScript()));
233 id = values[typeId].size();
234 values[typeId].push_back(script);
237 case Literal::STRING:
239 typeId = TypeDescription::GetTypeId("String");
240 id = values[typeId].size();
241 char *str(alloc.Alloc(v.GetLiteral().GetString().size() + 1));
242 std::memcpy(str, v.GetLiteral().GetString().c_str(), v.GetLiteral().GetString().size());
243 str[v.GetLiteral().GetString().size()] = '\0';
244 values[typeId].push_back(str);
247 case Literal::VECTOR:
249 typeId = TypeDescription::GetTypeId("Vector");
250 id = values[typeId].size();
251 const TypeDescription &td(TypeDescription::Get(typeId));
252 char *object(alloc.Alloc(td.Size()));
253 values[typeId].push_back(new (object) Vector<int>(v.GetLiteral().GetX(), v.GetLiteral().GetY()));
256 case Literal::OBJECT:
258 typeId = TypeDescription::GetTypeId(v.GetLiteral().GetTypeName());
259 const TypeDescription &td(TypeDescription::Get(typeId));
260 id = values[typeId].size();
261 char *object(alloc.Alloc(td.Size()));
262 td.Construct(object);
263 ReadObject(typeId, id, object, *v.GetLiteral().GetProperties());
267 return values[typeId][id];
270 ReadDefinition(source.GetDefinition(v.GetIdentifier()));
271 return GetObject(typeId, v.GetIdentifier());
276 void Interpreter::ReadObject(const Definition &dfn) {
277 int typeId(TypeDescription::GetTypeId(dfn.TypeName()));
278 const TypeDescription &td(TypeDescription::Get(typeId));
279 int id(values[typeId].size());
280 char *object(alloc.Alloc(td.Size()));
281 td.Construct(object);
282 values[typeId].push_back(object);
283 parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, typeId, id)));
284 ReadObject(typeId, id, object, *dfn.GetProperties());
288 void Interpreter::ReadObject(int typeId, int id, char *object, const PropertyList &props) {
289 const TypeDescription &td(TypeDescription::Get(typeId));
290 for (PropertyList::ConstIterator i(props.Begin()), end(props.End()); i != end; ++i) {
291 const FieldDescription &fd(td.GetField(i->first));
292 const TypeDescription &fieldType(TypeDescription::Get(fd.TypeId()));
293 if (CanLink(*i->second)) {
294 char *dest(object + fd.Offset());
295 if (fd.IsAggregate()) {
296 int arraySize(i->second->GetLiteral().ArraySize());
297 char *aggregate(alloc.Alloc(fieldType.Size() * arraySize));
298 char *iter(aggregate);
299 if (i->second->GetLiteral().GetType() == Literal::ARRAY_PROPS) {
300 const vector<PropertyList *> &list(i->second->GetLiteral().GetPropertyLists());
301 for (vector<PropertyList *>::const_iterator j(list.begin()), end(list.end()); j != end; ++j, iter += fieldType.Size()) {
302 fieldType.Construct(iter);
303 ReadObject(fieldType.TypeId(), -1, iter, **j);
306 const vector<Value *> &list(i->second->GetLiteral().GetValues());
307 for (vector<Value *>::const_iterator j(list.begin()), end(list.end()); j != end; ++j, iter += fieldType.Size()) {
308 fieldType.Construct(iter);
309 ReadLiteral(fieldType.TypeId(), -1, iter, (*j)->GetLiteral());
312 if (fd.IsReferenced()) {
313 std::memcpy(dest, &aggregate, sizeof(char *));
314 dest += sizeof(char *);
315 std::memcpy(dest, &arraySize, sizeof(int));
317 throw Error("aggregate type fields must be referenced");
319 } else if (i->second->IsLiteral() && !fd.IsReferenced()) {
321 if (i->second->GetLiteral().IsObject()) {
322 ReadObject(fd.TypeId(), -1, dest, *i->second->GetLiteral().GetProperties());
324 ReadLiteral(fd.TypeId(), -1, dest, i->second->GetLiteral());
327 char *src(reinterpret_cast<char *>(GetObject(fd.TypeId(), *i->second)));
328 if (fd.TypeId() == TypeDescription::GetTypeId("Image")) {
329 src = reinterpret_cast<char *>(GetImage(src));
331 if (fd.IsReferenced()) {
332 std::memcpy(dest, &src, sizeof(char *));
334 std::memcpy(dest, src, fieldType.Size());
338 Postpone(typeId, id, fd.Offset(), i->second->GetIdentifier(), fd.TypeId(), !fd.IsReferenced());
345 void Interpreter::ReadScript(const std::vector<ScriptToken *> &s, Script *script) {
346 std::map<string, int> labels;
348 for (vector<ScriptToken *>::const_iterator i(s.begin()), end(s.end()); i != end; ++i) {
349 if ((*i)->GetType() == ScriptToken::LABEL) {
350 if (labels.count((*i)->Label())) {
351 throw Error("duplicate label " + (*i)->Label());
353 labels[(*i)->Label()] = size;
355 } else if ((*i)->GetType() != ScriptToken::COMMAND) {
356 throw Error("unexpected script token");
358 size += sizeof(Script::Code);
359 const string &cmd((*i)->CommandName());
363 throw Error("unexpected script end after move");
365 const string ®((*i)->RegisterName());
366 if (reg.size() != 2) {
367 throw Error("invalid register name " + reg);
371 throw Error("unexpected script end after move");
373 if ((*i)->GetType() != ScriptToken::REGISTER) {
376 size += sizeof(void *);
382 size += sizeof(Vector<int>);
385 throw Error("unknown register " + reg);
388 } else if (cmd == "add") {
391 throw Error("unexpected script end after add");
393 const string ®((*i)->RegisterName());
394 if (reg.size() != 2) {
395 throw Error("invalid register name " + reg);
399 throw Error("unexpected script end after add");
401 if ((*i)->GetType() != ScriptToken::REGISTER) {
407 size += sizeof(Vector<int>);
410 throw Error("expected register after add " + reg);
413 } else if (cmd == "mod") {
416 throw Error("unexpected script end after mod");
420 throw Error("unexpected script end after mod");
422 if ((*i)->GetType() != ScriptToken::REGISTER) {
425 } else if (cmd == "rand") {
428 throw Error("unexpected script end after rand");
430 } else if (cmd == "cmp") {
433 throw Error("unexpected script end after cmp");
435 if ((*i)->GetType() != ScriptToken::REGISTER) {
440 throw Error("unexpected script end after cmp");
442 if ((*i)->GetType() != ScriptToken::REGISTER) {
445 } else if (cmd == "jmp") {
449 throw Error("unexpected script end after cmp");
451 } else if (cmd == "jeq") {
455 throw Error("unexpected script end after cmp");
457 } else if (cmd == "jne") {
461 throw Error("unexpected script end after cmp");
463 } else if (cmd == "jl") {
467 throw Error("unexpected script end after cmp");
469 } else if (cmd == "jle") {
473 throw Error("unexpected script end after cmp");
475 } else if (cmd == "jg") {
479 throw Error("unexpected script end after cmp");
481 } else if (cmd == "jge") {
485 throw Error("unexpected script end after cmp");
487 } else if (cmd == "sysc") {
490 throw Error("unknown command " + cmd);
494 char *text(alloc.Alloc(size));
496 for (vector<ScriptToken *>::const_iterator i(s.begin()), end(s.end()); i != end; ++i) {
497 if ((*i)->GetType() == ScriptToken::LABEL) {
500 if ((*i)->GetType() != ScriptToken::COMMAND) {
501 throw Error("unexpected script token");
503 const string &cmd((*i)->CommandName());
505 Script::Code &code(CreateScriptCode(Script::COMMAND_MOVE, text + cursor));
506 cursor += sizeof(Script::Code);
509 const string ®((*i)->RegisterName());
512 code.type = Script::TYPE_ADDRESS;
515 code.type = Script::TYPE_INTEGER;
518 code.type = Script::TYPE_VECTOR;
521 throw Error("invalid register " + reg);
523 int regnum(reg[1] - '0');
524 if (regnum < 0 || regnum > 6) {
525 throw Error("invalid register " + reg);
530 if ((*i)->GetType() == ScriptToken::REGISTER) {
531 string reg2((*i)->RegisterName());
532 if (reg[0] != reg2[0]) {
533 throw Error("mixed-type commands not allowed");
535 int reg2num(reg[1] - '0');
536 if (reg2num < 0 || reg2num > 6) {
537 throw Error("invalid register " + reg2);
543 case Script::TYPE_ADDRESS:
544 ReadScriptAddress(**i, text + cursor);
545 cursor += sizeof(void *);
547 case Script::TYPE_INTEGER:
548 ReadScriptInteger(**i, text + cursor);
549 cursor += sizeof(int);
551 case Script::TYPE_VECTOR:
552 ReadScriptVector(**i, text + cursor);
553 cursor += sizeof(Vector<int>);
557 } else if (cmd == "add") {
558 Script::Code &code(CreateScriptCode(Script::COMMAND_ADD, text + cursor));
559 cursor += sizeof(Script::Code);
562 const string ®((*i)->RegisterName());
565 code.type = Script::TYPE_INTEGER;
568 code.type = Script::TYPE_VECTOR;
571 throw Error("invalid register " + reg);
573 int regnum(reg[1] - '0');
574 if (regnum < 0 || regnum > 6) {
575 throw Error("invalid register " + reg);
580 if ((*i)->GetType() == ScriptToken::REGISTER) {
581 string reg2((*i)->RegisterName());
582 if (reg[0] != reg2[0]) {
583 throw Error("mixed-type commands not allowed");
585 int reg2num(reg[1] - '0');
586 if (reg2num < 0 || reg2num > 6) {
587 throw Error("invalid register name " + reg2);
593 case Script::TYPE_INTEGER:
594 ReadScriptInteger(**i, text + cursor);
595 cursor += sizeof(int);
597 case Script::TYPE_VECTOR:
598 ReadScriptVector(**i, text + cursor);
599 cursor += sizeof(Vector<int>);
603 } else if (cmd == "mod") {
604 Script::Code &code(CreateScriptCode(Script::COMMAND_MOD, text + cursor));
605 cursor += sizeof(Script::Code);
608 const string ®((*i)->RegisterName());
610 throw Error("invalid register " + reg);
612 code.type = Script::TYPE_INTEGER;
613 int regnum(reg[1] - '0');
614 if (regnum < 0 || regnum > 6) {
615 throw Error("invalid register " + reg);
620 if ((*i)->GetType() == ScriptToken::REGISTER) {
621 string reg2((*i)->RegisterName());
622 if (reg[0] != reg2[0]) {
623 throw Error("mixed-type commands not allowed");
625 int reg2num(reg[1] - '0');
626 if (reg2num < 0 || reg2num > 6) {
627 throw Error("invalid register name " + reg2);
632 ReadScriptInteger(**i, text + cursor);
633 cursor += sizeof(int);
635 } else if (cmd == "rand") {
636 Script::Code &code(CreateScriptCode(Script::COMMAND_RAND, text + cursor));
637 cursor += sizeof(Script::Code);
640 const string ®((*i)->RegisterName());
642 throw Error("invalid register " + reg);
644 code.type = Script::TYPE_INTEGER;
645 int regnum(reg[1] - '0');
646 if (regnum < 0 || regnum > 6) {
647 throw Error("invalid register " + reg);
650 } else if (cmd == "cmp") {
651 Script::Code &code(CreateScriptCode(Script::COMMAND_CMP, text + cursor));
652 cursor += sizeof(Script::Code);
655 const string ®((*i)->RegisterName());
657 throw Error("invalid register " + reg);
659 code.type = Script::TYPE_INTEGER;
660 int regnum(reg[1] - '0');
661 if (regnum < 0 || regnum > 6) {
662 throw Error("invalid register " + reg);
667 if ((*i)->GetType() == ScriptToken::REGISTER) {
668 string reg2((*i)->RegisterName());
669 if (reg[0] != reg2[0]) {
670 throw Error("mixed-type commands not allowed");
672 int reg2num(reg[1] - '0');
673 if (reg2num < 0 || reg2num > 6) {
674 throw Error("invalid register name " + reg2);
679 ReadScriptInteger(**i, text + cursor);
680 cursor += sizeof(int);
682 } else if (cmd == "jmp") {
683 Script::Code &code(CreateScriptCode(Script::COMMAND_JMP, text + cursor));
684 cursor += sizeof(Script::Code);
687 if (!labels.count((*i)->Identifier())) {
688 throw Error("use of undefined label " + (*i)->Identifier());
690 *reinterpret_cast<int *>(text + cursor) = labels[(*i)->Identifier()];
691 cursor += sizeof(int);
692 } else if (cmd == "jeq") {
693 Script::Code &code(CreateScriptCode(Script::COMMAND_JEQ, text + cursor));
694 cursor += sizeof(Script::Code);
697 if (!labels.count((*i)->Identifier())) {
698 throw Error("use of undefined label " + (*i)->Identifier());
700 *reinterpret_cast<int *>(text + cursor) = labels[(*i)->Identifier()];
701 cursor += sizeof(int);
702 } else if (cmd == "jne") {
703 Script::Code &code(CreateScriptCode(Script::COMMAND_JNE, text + cursor));
704 cursor += sizeof(Script::Code);
707 if (!labels.count((*i)->Identifier())) {
708 throw Error("use of undefined label " + (*i)->Identifier());
710 *reinterpret_cast<int *>(text + cursor) = labels[(*i)->Identifier()];
711 cursor += sizeof(int);
712 } else if (cmd == "jl") {
713 Script::Code &code(CreateScriptCode(Script::COMMAND_JL, text + cursor));
714 cursor += sizeof(Script::Code);
717 if (!labels.count((*i)->Identifier())) {
718 throw Error("use of undefined label " + (*i)->Identifier());
720 *reinterpret_cast<int *>(text + cursor) = labels[(*i)->Identifier()];
721 cursor += sizeof(int);
722 } else if (cmd == "jle") {
723 Script::Code &code(CreateScriptCode(Script::COMMAND_JLE, text + cursor));
724 cursor += sizeof(Script::Code);
727 if (!labels.count((*i)->Identifier())) {
728 throw Error("use of undefined label " + (*i)->Identifier());
730 *reinterpret_cast<int *>(text + cursor) = labels[(*i)->Identifier()];
731 cursor += sizeof(int);
732 } else if (cmd == "jg") {
733 Script::Code &code(CreateScriptCode(Script::COMMAND_JG, text + cursor));
734 cursor += sizeof(Script::Code);
737 if (!labels.count((*i)->Identifier())) {
738 throw Error("use of undefined label " + (*i)->Identifier());
740 *reinterpret_cast<int *>(text + cursor) = labels[(*i)->Identifier()];
741 cursor += sizeof(int);
742 } else if (cmd == "jge") {
743 Script::Code &code(CreateScriptCode(Script::COMMAND_JGE, text + cursor));
744 cursor += sizeof(Script::Code);
747 if (!labels.count((*i)->Identifier())) {
748 throw Error("use of undefined label " + (*i)->Identifier());
750 *reinterpret_cast<int *>(text + cursor) = labels[(*i)->Identifier()];
751 cursor += sizeof(int);
752 } else if (cmd == "sysc") {
753 Script::Code &code(CreateScriptCode(Script::COMMAND_SYSC, text + cursor));
754 cursor += sizeof(Script::Code);
757 throw Error("unknown command " + cmd);
762 script->textlen = size;
765 char *Interpreter::ReadScript(const vector<ScriptToken *> &s) {
766 char *mem(alloc.Alloc(sizeof(Script)));
768 Script *script(reinterpret_cast<Script *>(mem));
769 ReadScript(s, script);
773 Script::Code &Interpreter::CreateScriptCode(Script::Command c, char *dest) {
774 Script::Code &code(*reinterpret_cast<Script::Code *>(dest));
777 code.type = Script::TYPE_NONE;
783 void Interpreter::ReadScriptAddress(const ScriptToken &t, char *dest) {
784 if (t.GetType() != ScriptToken::IDENTIFIER) {
785 throw Error("expected identifier for address");
787 if (source.IsDefined(t.Identifier())) {
788 const ParsedDefinition &def(GetDefinition(t.Identifier()));
789 void *addr(GetObject(def.type, t.Identifier()));
790 *reinterpret_cast<void **>(dest) = addr;
792 throw Error("postponing values in scripts not implemented");
796 void Interpreter::ReadScriptInteger(const ScriptToken &t, char *dest) {
797 if (t.GetType() == ScriptToken::IDENTIFIER) {
798 if (source.IsDefined(t.Identifier())) {
799 void *num(GetObject(TypeDescription::GetTypeId("Number"), t.Identifier()));
800 *reinterpret_cast<int *>(dest) = *reinterpret_cast<int *>(num);
802 throw Error("postponing values in scripts not implemented");
804 } else if (t.GetType() == ScriptToken::LITERAL) {
805 *reinterpret_cast<int *>(dest) = t.GetLiteral()->GetNumber();
807 throw Error("expected identifier or integer literal");
811 void Interpreter::ReadScriptVector(const ScriptToken &t, char *dest) {
812 if (t.GetType() == ScriptToken::IDENTIFIER) {
813 if (source.IsDefined(t.Identifier())) {
814 void *vec(GetObject(TypeDescription::GetTypeId("Vector"), t.Identifier()));
815 *reinterpret_cast<Vector<int> *>(dest) = *reinterpret_cast<Vector<int> *>(vec);
817 throw Error("postponing values in scripts not implemented");
819 } else if (t.GetType() == ScriptToken::LITERAL) {
820 *reinterpret_cast<Vector<int> *>(dest) = Vector<int>(t.GetLiteral()->GetX(), t.GetLiteral()->GetY());
822 throw Error("expected identifier or vector literal");
827 SDL_Surface *Interpreter::GetImage(const string &path) {
828 std::map<string, SDL_Surface *>::const_iterator result(imageCache.find(path));
829 if (result != imageCache.end()) {
830 return result->second;
832 SDL_Surface *image(IMG_Load(path.c_str()));
833 imageCache.insert(make_pair(path, image));
839 bool Interpreter::CanLink(const Value &v) const {
840 return v.IsLiteral() || source.IsDefined(v.GetIdentifier());
843 void Interpreter::Postpone(int type, int id, std::ptrdiff_t offset, const std::string &identifier, int linkedType, bool inlined) {
844 char *str(alloc.Alloc(identifier.size() + 1));
845 std::memcpy(str, identifier.c_str(), identifier.size());
846 str[identifier.size()] = '\0';
847 postponedDefinitions.push_back(PostponedDefinition(type, id, offset, str, linkedType, inlined));
851 void Interpreter::CreateTypeDescriptions() {
853 TypeDescription &td(TypeDescription::Create(BOOLEAN_ID, "Boolean"));
854 td.SetDescription("Logical value which can be either true or false.");
855 td.SetSize(sizeof(bool));
858 TypeDescription &td(TypeDescription::Create(COLOR_ID, "Color"));
860 "A color in RGB format with an optional alpha channel.\n"
861 "Components range from 0 to 255.\n"
862 "Alpha defaults to 255 if omitted.");
863 td.SetSize(sizeof(Color));
866 TypeDescription &td(TypeDescription::Create(IMAGE_ID, "Image"));
867 td.SetDescription("Path to a PNG file with image data.");
868 td.SetSize(sizeof(SDL_Surface));
871 TypeDescription &td(TypeDescription::Create(NUMBER_ID, "Number"));
872 td.SetDescription("A signed integer.");
873 td.SetSize(sizeof(int));
876 TypeDescription &td(TypeDescription::Create(PATH_ID, "Path"));
877 td.SetDescription("A path in the filesystem which is interpreted relative to the source file's location.");
879 td.AddSupertype(STRING_ID, 0);
882 TypeDescription &td(TypeDescription::Create(SCRIPT_ID, "Script"));
883 td.SetDescription("Collection of commands that define a behaviour.");
884 td.SetSize(sizeof(Script));
887 TypeDescription &td(TypeDescription::Create(STRING_ID, "String"));
888 td.SetDescription("Some characters.");
892 TypeDescription &td(TypeDescription::Create(VECTOR_ID, "Vector"));
893 td.SetDescription("A pair of numbers usually describing a 2D translation or offset.");
894 td.SetSize(sizeof(Vector<int>));