]> git.localhorst.tv Git - l2e.git/blobdiff - src/loader/Interpreter.cpp
moved menu prototypes to test.l2s
[l2e.git] / src / loader / Interpreter.cpp
index 7c26aaafded4ae6ad86929521e1bc5ebc9fe3e26..372a114b8fb26fd83d63493b26099bbc6eef0c85 100644 (file)
@@ -19,6 +19,7 @@
 #include "../graphics/Font.h"
 #include "../graphics/Frame.h"
 #include "../graphics/Gauge.h"
+#include "../graphics/Menu.h"
 #include "../graphics/SimpleAnimation.h"
 #include "../graphics/Sprite.h"
 
@@ -35,6 +36,7 @@ using common::Item;
 using common::Spell;
 using common::TargetingMode;
 using graphics::Animation;
+using graphics::Color;
 using graphics::Font;
 using graphics::Frame;
 using graphics::Gauge;
@@ -75,6 +77,9 @@ Interpreter::~Interpreter() {
        for (vector<Item *>::const_iterator i(items.begin()), end(items.end()); i != end; ++i) {
                delete *i;
        }
+       for (vector<graphics::MenuProperties *>::const_iterator i(menuProperties.begin()), end(menuProperties.end()); i != end; ++i) {
+               delete *i;
+       }
        for (vector<Monster *>::const_iterator i(monsters.begin()), end(monsters.end()); i != end; ++i) {
                delete *i;
        }
@@ -127,6 +132,19 @@ bool Interpreter::GetBoolean(const std::string &name) const {
        }
 }
 
+const Color &Interpreter::GetColor(const std::string &name) const {
+       map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
+       if (i != parsedDefinitions.end()) {
+               if (i->second.type == COLOR) {
+                       return colors[i->second.index];
+               } else {
+                       throw Error("cannot cast " + i->second.dfn->TypeName() + " to Color");
+               }
+       } else {
+               throw Error("access to undefined Color " + name);
+       }
+}
+
 Font *Interpreter::GetFont(const std::string &name) {
        map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
        if (i != parsedDefinitions.end()) {
@@ -205,6 +223,19 @@ Item *Interpreter::GetItem(const std::string &name) {
        }
 }
 
+graphics::MenuProperties *Interpreter::GetMenuProperties(const std::string &name) {
+       map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
+       if (i != parsedDefinitions.end()) {
+               if (i->second.type == MENU_PROPERTIES) {
+                       return menuProperties[i->second.index];
+               } else {
+                       throw Error("cannot cast " + i->second.dfn->TypeName() + " to MenuProperties");
+               }
+       } else {
+               throw Error("access to undefined MenuProperties " + name);
+       }
+}
+
 Monster *Interpreter::GetMonster(const std::string &name) {
        map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
        if (i != parsedDefinitions.end()) {
@@ -244,6 +275,19 @@ PartyLayout *Interpreter::GetPartyLayout(const std::string &name) {
        }
 }
 
+const char *Interpreter::GetPath(const std::string &name) const {
+       map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
+       if (i != parsedDefinitions.end()) {
+               if (i->second.type == PATH) {
+                       return strings[i->second.index];
+               } else {
+                       throw Error("cannot cast " + i->second.dfn->TypeName() + " to Path");
+               }
+       } else {
+               throw Error("access to undefined Path " + name);
+       }
+}
+
 Spell *Interpreter::GetSpell(const std::string &name) {
        map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
        if (i != parsedDefinitions.end()) {
@@ -273,7 +317,8 @@ Sprite *Interpreter::GetSprite(const std::string &name) {
 const char *Interpreter::GetString(const std::string &name) const {
        map<string, ParsedDefinition>::const_iterator i(parsedDefinitions.find(name));
        if (i != parsedDefinitions.end()) {
-               if (i->second.type == STRING) {
+               // TODO: enable path to string casting some time
+               if (i->second.type == STRING /* || i->second.type == PATH */) {
                        return strings[i->second.index];
                } else {
                        throw Error("cannot cast " + i->second.dfn->TypeName() + " to String");
@@ -342,12 +387,22 @@ void Interpreter::ReadLiteral(const Definition &dfn) {
                        parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, BOOLEAN, booleans.size() - 1)));
                        break;
                case Literal::COLOR:
-                       throw Error("unhandled literal: color");
+                       colors.push_back(Color(dfn.GetLiteral()->GetRed(), dfn.GetLiteral()->GetGreen(), dfn.GetLiteral()->GetBlue(), dfn.GetLiteral()->GetAlpha()));
+                       parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, COLOR, colors.size() - 1)));
                        break;
                case Literal::NUMBER:
                        numbers.push_back(dfn.GetLiteral()->GetNumber());
                        parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, NUMBER, numbers.size() - 1)));
                        break;
+               case Literal::PATH:
+                       {
+                               char *str(new char[dfn.GetLiteral()->GetString().size() + 1]);
+                               std::memcpy(str, dfn.GetLiteral()->GetString().c_str(), dfn.GetLiteral()->GetString().size());
+                               str[dfn.GetLiteral()->GetString().size()] = '\0';
+                               strings.push_back(str);
+                       }
+                       parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, PATH, strings.size() - 1)));
+                       break;
                case Literal::STRING:
                        {
                                char *str(new char[dfn.GetLiteral()->GetString().size() + 1]);
@@ -395,6 +450,15 @@ bool Interpreter::GetBoolean(const Value &v) {
        }
 }
 
+Color Interpreter::GetColor(const Value &v) {
+       if (v.IsLiteral()) {
+               return Color(v.GetLiteral().GetRed(), v.GetLiteral().GetGreen(), v.GetLiteral().GetBlue(), v.GetLiteral().GetAlpha());
+       } else {
+               ReadDefinition(source.GetDefinition(v.GetIdentifier()));
+               return GetColor(v.GetIdentifier());
+       }
+}
+
 Font *Interpreter::GetFont(const Value &v) {
        if (v.IsLiteral()) {
                Font *f(new Font);
@@ -451,10 +515,16 @@ Ikari *Interpreter::GetIkari(const Value &v) {
 }
 
 SDL_Surface *Interpreter::GetImage(const Value &v) {
-       const char *file(GetString(v));
-       SDL_Surface *image(IMG_Load(file));
-       images.push_back(image);
-       return image;
+       string path(GetPath(v));
+       map<string, SDL_Surface *>::const_iterator i(imageCache.find(path));
+       if (i == imageCache.end()) {
+               SDL_Surface *image(IMG_Load(path.c_str()));
+               images.push_back(image);
+               imageCache.insert(make_pair(path, image));
+               return image;
+       } else {
+               return i->second;
+       }
 }
 
 Item *Interpreter::GetItem(const Value &v) {
@@ -468,6 +538,28 @@ Item *Interpreter::GetItem(const Value &v) {
        }
 }
 
+graphics::MenuProperties *Interpreter::GetMenuProperties(const Value &v) {
+       if (v.IsLiteral()) {
+               graphics::MenuProperties *m(new graphics::MenuProperties);
+               ReadMenuProperties(*m, *v.GetLiteral().GetProperties());
+               return m;
+       } else {
+               ReadDefinition(source.GetDefinition(v.GetIdentifier()));
+               return GetMenuProperties(v.GetIdentifier());
+       }
+}
+
+Monster *Interpreter::GetMonster(const Value &v) {
+       if (v.IsLiteral()) {
+               Monster *m(new Monster);
+               ReadMonster(*m, *v.GetLiteral().GetProperties());
+               return m;
+       } else {
+               ReadDefinition(source.GetDefinition(v.GetIdentifier()));
+               return GetMonster(v.GetIdentifier());
+       }
+}
+
 int Interpreter::GetNumber(const Value &v) {
        if (v.IsLiteral()) {
                return v.GetLiteral().GetNumber();
@@ -488,6 +580,15 @@ PartyLayout *Interpreter::GetPartyLayout(const Value &v) {
        }
 }
 
+const char *Interpreter::GetPath(const Value &v) {
+       if (v.IsLiteral()) {
+               return v.GetLiteral().GetString().c_str();
+       } else {
+               ReadDefinition(source.GetDefinition(v.GetIdentifier()));
+               return GetPath(v.GetIdentifier());
+       }
+}
+
 const PropertyList *Interpreter::GetPropertyList(const Value &v) {
        if (v.IsLiteral()) {
                return v.GetLiteral().GetProperties();
@@ -607,6 +708,12 @@ void Interpreter::ReadObject(const Definition &dfn) {
                items.push_back(item);
                ReadItem(*item, *dfn.GetProperties());
                parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, ITEM, index)));
+       } else if (dfn.TypeName() == "MenuProperties") {
+               graphics::MenuProperties *mprops(new graphics::MenuProperties);
+               int index(menuProperties.size());
+               menuProperties.push_back(mprops);
+               ReadMenuProperties(*mprops, *dfn.GetProperties());
+               parsedDefinitions.insert(make_pair(dfn.Identifier(), ParsedDefinition(&dfn, MENU_PROPERTIES, index)));
        } else if (dfn.TypeName() == "Monster") {
                Monster *monster(new Monster);
                int index(monsters.size());
@@ -814,6 +921,40 @@ void Interpreter::ReadHero(Hero &h, const PropertyList &props) {
        }
 }
 
+void Interpreter::ReadMenuProperties(graphics::MenuProperties &mprops, const PropertyList &props) {
+       for (PropertyList::ConstIterator i(props.Begin()), end(props.End()); i != end; ++i) {
+               if (i->first == "font") {
+                       mprops.font = GetFont(*i->second);
+               } else if (i->first == "disabledFont") {
+                       mprops.disabledFont = GetFont(*i->second);
+               } else if (i->first == "cursor") {
+                       mprops.cursor = GetSprite(*i->second);
+               } else if (i->first == "charsPerEntry") {
+                       mprops.charsPerEntry = GetNumber(*i->second);
+               } else if (i->first == "rows") {
+                       mprops.rows = GetNumber(*i->second);
+               } else if (i->first == "rowGap") {
+                       mprops.rowGap = GetNumber(*i->second);
+               } else if (i->first == "iconSpace") {
+                       mprops.iconSpace = GetNumber(*i->second);
+               } else if (i->first == "cols") {
+                       mprops.cols = GetNumber(*i->second);
+               } else if (i->first == "colGap") {
+                       mprops.colGap = GetNumber(*i->second);
+               } else if (i->first == "delimiter") {
+                       mprops.delimiter = *GetString(*i->second);
+               } else if (i->first == "charsPerNumber") {
+                       mprops.charsPerNumber = GetNumber(*i->second);
+               } else if (i->first == "charsPerAdditionalText") {
+                       mprops.charsPerAdditionalText = GetNumber(*i->second);
+               } else if (i->first == "additionalTextGap") {
+                       mprops.additionalTextGap = GetNumber(*i->second);
+               } else {
+                       throw Error("unknown MenuProperties property: " + i->first);
+               }
+       }
+}
+
 void Interpreter::ReadMonster(Monster &m, const PropertyList &props) {
        for (PropertyList::ConstIterator i(props.Begin()), end(props.End()); i != end; ++i) {
                if (i->first == "name") {