#pragma once #include "olcPixelGameEngine.h" #include "olcUTIL_Geometry2D.h" #include using namespace olc; struct XMLTag{ std::string tag; std::map data; const std::string FormatTagData(std::maptiles); friend std::ostream& operator << (std::ostream& os, XMLTag& rhs); std::string str(); int GetInteger(std::string dataTag); float GetFloat(std::string dataTag); double GetDouble(std::string dataTag); bool GetBool(std::string dataTag); }; struct MapTag{ int width=0,height=0; int tilewidth=0,tileheight=0; bool optimized=false; //An optimized map will require us to flatten it out and use it as a single tile. vi2d playerSpawnLocation; vi2d MapSize; //The number of tiles in width and height of this map. vi2d TileSize; //How large in pixels the map's tiles are. MapTag(); MapTag(int width,int height,int tilewidth,int tileheight); friend std::ostream& operator << (std::ostream& os, MapTag& rhs); }; struct LayerTag{ XMLTag tag; std::vector> tiles; std::string str(); }; struct SpawnerTag{ XMLTag ObjectData; std::vectormonsters; bool upperLevel=false; std::string bossNameDisplay; std::string str(); friend std::ostream& operator << (std::ostream& os, SpawnerTag& rhs); }; struct Map{ MapTag MapData; Renderable*optimizedTile=nullptr; std::vector TilesetData; std::vector LayerData; std::map SpawnerData; //Spawn groups have IDs, mobs associate which spawner they are tied to via this ID. std::map>> ZoneData; std::string FormatLayerData(std::ostream& os, std::vectortiles); std::string FormatSpawnerData(std::ostream& os, std::maptiles); friend std::ostream& operator << (std::ostream& os, Map& rhs); friend std::ostream& operator << (std::ostream& os, std::vector& rhs); }; class TMXParser{ public: Map GetData(); private: Map parsedMapInfo; bool buildingSpawner=false; SpawnerTag obj; int prevSpawner; void ParseTag(std::string tag); int monsterPropertyTagCount=-1; XMLTag monsterTag; XMLTag spawnerLinkTag; std::vectoraccumulatedMonsterTags; bool infiniteMap=false; public: TMXParser(std::string file); }; typedef std::map>> ZoneData; #ifdef TMX_PARSER_SETUP #undef TMX_PARSER_SETUP extern bool _DEBUG_MAP_LOAD_INFO; const std::string XMLTag::FormatTagData(std::maptiles){ std::string displayStr=""; for (std::map::iterator it=data.begin();it!=data.end();it++) { displayStr+=" "+it->first+": "+it->second+"\n"; } return displayStr; } std::ostream& operator << (std::ostream& os, XMLTag& rhs){ os << rhs.tag <<"\n"<< rhs.FormatTagData(rhs.data) <<"\n"; return os; } std::ostream& operator << (std::ostream& os, MapTag& rhs){ os << "(width:"<tiles) { std::string displayStr; for (int i=0;itiles) { std::string displayStr; for (auto key:SpawnerData) { displayStr+=SpawnerData[key.first].str(); } return displayStr; } std::ostream& operator <<(std::ostream& os, std::vector& rhs) { for(XMLTag&tag:rhs){ os << tag<<"\n"; } return os; } std::ostream& operator <<(std::ostream& os, Map& rhs) { os << rhs.MapData <<"\n"<< rhs.TilesetData <<"\n"<< rhs.FormatLayerData(os,rhs.LayerData) <<"\n"<< rhs.FormatSpawnerData(os,rhs.SpawnerData)<<"\n"; return os; } Map TMXParser::GetData() { return parsedMapInfo; } void TMXParser::ParseTag(std::string tag) { auto ReadNextTag=[&](){ XMLTag newTag; //First character is a '<' so we discard it. tag.erase(0,1); tag.erase(tag.length()-1,1); //Erase the first and last characters in the tag. Now parse by spaces. std::stringstream s(tag); //Turn it into a string stream to now parse into individual whitespaces. std::string data; while (s.good()) { int quotationMarkCount=0; bool pastEquals=false; data=""; bool valid=false; while(s.good()){ int character=s.get(); if(character=='"'){ quotationMarkCount++; } if(character==' '&"ationMarkCount%2==0){ valid=true; break; } data+=character; if(pastEquals&"ationMarkCount%2==0){ valid=true; break; } if(character=='='&"ationMarkCount%2==0){ pastEquals=true; } } if(valid&&data.length()>0){ if (newTag.tag.length()==0) { //Tag's empty, so first line is the tag. newTag.tag=data; if(_DEBUG_MAP_LOAD_INFO)std::cout<<"Tag: "<>&zones=parsedMapInfo.ZoneData[newTag.data["type"]]; zones.push_back({{newTag.GetInteger("x"),newTag.GetInteger("y")},{newTag.GetInteger("width"),newTag.GetInteger("height")}}); } else { std::vector>zones; zones.push_back({{newTag.GetInteger("x"),newTag.GetInteger("y")},{newTag.GetInteger("width"),newTag.GetInteger("height")}}); parsedMapInfo.ZoneData[newTag.data["type"]]=zones; } }else if (newTag.tag=="object"&&newTag.data["type"]=="Monster") { //XMLTag monsterTag=ReadNextTag(); //XMLTag spawnerLinkTag=ReadNextTag(); //newTag.data["value"]=monsterTag.GetInteger("value"); //Value now contains which monster name this spawn represents. monsterTag=newTag; monsterPropertyTagCount=0; } else if (newTag.tag=="property"&&monsterPropertyTagCount==0) { monsterTag.data["value"]=newTag.data["value"]; monsterPropertyTagCount++; } else if (newTag.tag=="property"&&monsterPropertyTagCount==1) { spawnerLinkTag=newTag; monsterTag.data["spawnerLink"]=spawnerLinkTag.data["value"]; accumulatedMonsterTags.push_back(monsterTag); monsterPropertyTagCount=-1; } else { if(_DEBUG_MAP_LOAD_INFO)std::cout<<"Unsupported tag format! Ignoring."<<"\n"; } if(_DEBUG_MAP_LOAD_INFO)std::cout<<"\n"<<"=============\n"; } TMXParser::TMXParser(std::string file){ std::ifstream f(file,std::ios::in); std::string accumulator=""; while (f.good()&&!infiniteMap) { std::string data; f>>data; if (data.empty()) continue; if (accumulator.length()>0) { accumulator+=" "+data; //Check if it ends with '>' if (data[data.length()-1]=='>') { ParseTag(accumulator); accumulator=""; } } else if (data[0]=='<') { //Beginning of XML tag. accumulator=data; if(accumulator.length()>1&&accumulator.at(1)=='/'){ accumulator=""; //Restart because this is an end tag. } if(accumulator.length()>1&&accumulator.find('>')!=std::string::npos){ accumulator=""; //Restart because this tag has nothing in it! } } else { //Start reading in data for this layer. std::vectorrowData; while (data.find(",")!=std::string::npos) { std::string datapiece = data.substr(0,data.find(",")); data = data.substr(data.find(",")+1,std::string::npos); rowData.push_back(stoi(datapiece)); } if (data.length()) { rowData.push_back(stoi(data)); } parsedMapInfo.LayerData[parsedMapInfo.LayerData.size()-1].tiles.push_back(rowData); } } if(infiniteMap){ if(_DEBUG_MAP_LOAD_INFO)std::cout<<"Infinite map detected. Parsing stopped early."<>&zones=zoneData.second; for(geom2d::rect&zone:zones){ if(geom2d::overlaps(zone,geom2d::rect{{spawner.ObjectData.GetInteger("x"),spawner.ObjectData.GetInteger("y")},{spawner.ObjectData.GetInteger("width"),spawner.ObjectData.GetInteger("height")}})){ spawner.upperLevel=true; goto continueSpawnerLoop; } } } } continueSpawnerLoop: continue; } std::sort(parsedMapInfo.TilesetData.begin(),parsedMapInfo.TilesetData.end(),[](XMLTag&t1,XMLTag&t2){return t1.GetInteger("firstgid")