|
|
@ -7,106 +7,121 @@ using namespace olc; |
|
|
|
struct XMLTag{ |
|
|
|
struct XMLTag{ |
|
|
|
std::string tag; |
|
|
|
std::string tag; |
|
|
|
std::map<std::string,std::string> data; |
|
|
|
std::map<std::string,std::string> data; |
|
|
|
const std::string FormatTagData(std::map<std::string,std::string>tiles) { |
|
|
|
const std::string FormatTagData(std::map<std::string,std::string>tiles); |
|
|
|
|
|
|
|
friend std::ostream& operator << (std::ostream& os, XMLTag& rhs); |
|
|
|
|
|
|
|
int GetInteger(std::string dataTag); |
|
|
|
|
|
|
|
double GetDouble(std::string dataTag); |
|
|
|
|
|
|
|
bool GetBool(std::string dataTag); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct LayerTag{ |
|
|
|
|
|
|
|
XMLTag tag; |
|
|
|
|
|
|
|
std::vector<std::vector<int>> tiles; |
|
|
|
|
|
|
|
std::string str(); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct SpawnerTag{ |
|
|
|
|
|
|
|
XMLTag ObjectData; |
|
|
|
|
|
|
|
std::vector<XMLTag>properties; |
|
|
|
|
|
|
|
std::string str(); |
|
|
|
|
|
|
|
friend std::ostream& operator << (std::ostream& os, SpawnerTag& rhs); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct Map{ |
|
|
|
|
|
|
|
XMLTag MapData; |
|
|
|
|
|
|
|
XMLTag TilesetData; |
|
|
|
|
|
|
|
std::vector<LayerTag> LayerData; |
|
|
|
|
|
|
|
std::vector<SpawnerTag> SpawnerData; |
|
|
|
|
|
|
|
std::string FormatLayerData(std::ostream& os, std::vector<LayerTag>tiles); |
|
|
|
|
|
|
|
std::string FormatSpawnerData(std::ostream& os, std::vector<SpawnerTag>tiles); |
|
|
|
|
|
|
|
friend std::ostream& operator << (std::ostream& os, Map& rhs); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class TMXParser{ |
|
|
|
|
|
|
|
public: |
|
|
|
|
|
|
|
Map GetData(); |
|
|
|
|
|
|
|
private: |
|
|
|
|
|
|
|
Map parsedMapInfo; |
|
|
|
|
|
|
|
bool buildingSpawner=false; |
|
|
|
|
|
|
|
SpawnerTag obj; |
|
|
|
|
|
|
|
void ParseTag(std::string tag); |
|
|
|
|
|
|
|
public: |
|
|
|
|
|
|
|
TMXParser(std::string file); |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef TMX_PARSER_SETUP |
|
|
|
|
|
|
|
#undef TMX_PARSER_SETUP |
|
|
|
|
|
|
|
const std::string XMLTag::FormatTagData(std::map<std::string,std::string>tiles){ |
|
|
|
std::string displayStr=""; |
|
|
|
std::string displayStr=""; |
|
|
|
for (std::map<std::string,std::string>::iterator it=data.begin();it!=data.end();it++) { |
|
|
|
for (std::map<std::string,std::string>::iterator it=data.begin();it!=data.end();it++) { |
|
|
|
displayStr+=" "+it->first+": "+it->second+"\n"; |
|
|
|
displayStr+=" "+it->first+": "+it->second+"\n"; |
|
|
|
} |
|
|
|
} |
|
|
|
return displayStr; |
|
|
|
return displayStr; |
|
|
|
} |
|
|
|
} |
|
|
|
friend std::ostream& operator << (std::ostream& os, XMLTag& rhs) {
|
|
|
|
std::ostream& operator << (std::ostream& os, XMLTag& rhs){
|
|
|
|
os <<
|
|
|
|
os <<
|
|
|
|
rhs.tag <<"\n"<<
|
|
|
|
rhs.tag <<"\n"<<
|
|
|
|
rhs.FormatTagData(rhs.data) <<"\n"; |
|
|
|
rhs.FormatTagData(rhs.data) <<"\n"; |
|
|
|
|
|
|
|
|
|
|
|
return os; } |
|
|
|
return os; |
|
|
|
|
|
|
|
} |
|
|
|
int GetInteger(std::string dataTag) { |
|
|
|
int XMLTag::GetInteger(std::string dataTag) { |
|
|
|
return std::stoi(data[dataTag]); |
|
|
|
return std::stoi(data[dataTag]); |
|
|
|
} |
|
|
|
} |
|
|
|
double GetDouble(std::string dataTag) { |
|
|
|
double XMLTag::GetDouble(std::string dataTag) { |
|
|
|
return std::stod(data[dataTag]); |
|
|
|
return std::stod(data[dataTag]); |
|
|
|
} |
|
|
|
} |
|
|
|
bool GetBool(std::string dataTag) { |
|
|
|
bool XMLTag::GetBool(std::string dataTag) { |
|
|
|
if (data[dataTag]=="0") { |
|
|
|
if (data[dataTag]=="0") { |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
struct LayerTag{ |
|
|
|
std::string LayerTag::str() { |
|
|
|
XMLTag tag; |
|
|
|
|
|
|
|
std::vector<std::vector<int>> tiles; |
|
|
|
|
|
|
|
std::string str() { |
|
|
|
|
|
|
|
std::string displayStr=tag.tag+"\n"+tag.FormatTagData(tag.data); |
|
|
|
std::string displayStr=tag.tag+"\n"+tag.FormatTagData(tag.data); |
|
|
|
displayStr+=" DATA ("+std::to_string(tiles[0].size())+"x"+std::to_string(tiles.size())+")\n"; |
|
|
|
displayStr+=" DATA ("+std::to_string(tiles[0].size())+"x"+std::to_string(tiles.size())+")\n"; |
|
|
|
return displayStr; |
|
|
|
return displayStr; |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
std::string SpawnerTag::str() { |
|
|
|
|
|
|
|
|
|
|
|
struct SpawnerTag{ |
|
|
|
|
|
|
|
XMLTag ObjectData; |
|
|
|
|
|
|
|
std::vector<XMLTag>properties; |
|
|
|
|
|
|
|
std::string str() { |
|
|
|
|
|
|
|
std::string displayStr=ObjectData.tag+"\n"+ObjectData.FormatTagData(ObjectData.data); |
|
|
|
std::string displayStr=ObjectData.tag+"\n"+ObjectData.FormatTagData(ObjectData.data); |
|
|
|
for(XMLTag tag:properties){ |
|
|
|
for(XMLTag tag:properties){ |
|
|
|
displayStr+=" ("+tag.FormatTagData(tag.data)+")\n"; |
|
|
|
displayStr+=" ("+tag.FormatTagData(tag.data)+")\n"; |
|
|
|
} |
|
|
|
} |
|
|
|
return displayStr; |
|
|
|
return displayStr; |
|
|
|
} |
|
|
|
} |
|
|
|
friend std::ostream& operator << (std::ostream& os, SpawnerTag& rhs) {
|
|
|
|
std::ostream& operator << (std::ostream& os, SpawnerTag& rhs) {
|
|
|
|
os << rhs.str()<<"\n"; |
|
|
|
os << rhs.str()<<"\n"; |
|
|
|
|
|
|
|
return os; |
|
|
|
return os; } |
|
|
|
} |
|
|
|
}; |
|
|
|
std::string Map::FormatLayerData(std::ostream& os, std::vector<LayerTag>tiles) { |
|
|
|
|
|
|
|
|
|
|
|
struct Map{ |
|
|
|
|
|
|
|
XMLTag MapData; |
|
|
|
|
|
|
|
XMLTag TilesetData; |
|
|
|
|
|
|
|
std::vector<LayerTag> LayerData; |
|
|
|
|
|
|
|
std::vector<SpawnerTag> SpawnerData; |
|
|
|
|
|
|
|
std::string FormatLayerData(std::ostream& os, std::vector<LayerTag>tiles) { |
|
|
|
|
|
|
|
std::string displayStr; |
|
|
|
std::string displayStr; |
|
|
|
for (int i=0;i<LayerData.size();i++) { |
|
|
|
for (int i=0;i<LayerData.size();i++) { |
|
|
|
displayStr+=LayerData[i].str(); |
|
|
|
displayStr+=LayerData[i].str(); |
|
|
|
} |
|
|
|
} |
|
|
|
return displayStr; |
|
|
|
return displayStr; |
|
|
|
} |
|
|
|
} |
|
|
|
std::string FormatSpawnerData(std::ostream& os, std::vector<SpawnerTag>tiles) { |
|
|
|
std::string Map::FormatSpawnerData(std::ostream& os, std::vector<SpawnerTag>tiles) { |
|
|
|
std::string displayStr; |
|
|
|
std::string displayStr; |
|
|
|
for (int i=0;i<SpawnerData.size();i++) { |
|
|
|
for (int i=0;i<SpawnerData.size();i++) { |
|
|
|
displayStr+=SpawnerData[i].str(); |
|
|
|
displayStr+=SpawnerData[i].str(); |
|
|
|
} |
|
|
|
} |
|
|
|
return displayStr; |
|
|
|
return displayStr; |
|
|
|
} |
|
|
|
} |
|
|
|
friend std::ostream& operator << (std::ostream& os, Map& rhs) {
|
|
|
|
std::ostream& operator <<(std::ostream& os, Map& rhs) {
|
|
|
|
os <<
|
|
|
|
os <<
|
|
|
|
rhs.MapData <<"\n"<<
|
|
|
|
rhs.MapData <<"\n"<<
|
|
|
|
rhs.TilesetData <<"\n"<<
|
|
|
|
rhs.TilesetData <<"\n"<<
|
|
|
|
rhs.FormatLayerData(os,rhs.LayerData) <<"\n"<< |
|
|
|
rhs.FormatLayerData(os,rhs.LayerData) <<"\n"<< |
|
|
|
rhs.FormatSpawnerData(os,rhs.SpawnerData)<<"\n"; |
|
|
|
rhs.FormatSpawnerData(os,rhs.SpawnerData)<<"\n"; |
|
|
|
|
|
|
|
|
|
|
|
return os; } |
|
|
|
return os; |
|
|
|
}; |
|
|
|
} |
|
|
|
|
|
|
|
Map TMXParser::GetData() { |
|
|
|
class TMXParser{ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map GetData() { |
|
|
|
|
|
|
|
return parsedMapInfo; |
|
|
|
return parsedMapInfo; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
void TMXParser::ParseTag(std::string tag) { |
|
|
|
private: |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Map parsedMapInfo; |
|
|
|
|
|
|
|
bool buildingSpawner=false; |
|
|
|
|
|
|
|
SpawnerTag obj; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ParseTag(std::string tag) { |
|
|
|
|
|
|
|
XMLTag newTag; |
|
|
|
XMLTag newTag; |
|
|
|
//First character is a '<' so we discard it.
|
|
|
|
//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.
|
|
|
|
tag.erase(0,1); tag.erase(tag.length()-1,1); //Erase the first and last characters in the tag. Now parse by spaces.
|
|
|
@ -156,39 +171,37 @@ private: |
|
|
|
if (newTag.tag=="map") { |
|
|
|
if (newTag.tag=="map") { |
|
|
|
parsedMapInfo.MapData=newTag; |
|
|
|
parsedMapInfo.MapData=newTag; |
|
|
|
} else
|
|
|
|
} else
|
|
|
|
if (newTag.tag=="tileset") { |
|
|
|
if (newTag.tag=="tileset") { |
|
|
|
parsedMapInfo.TilesetData=newTag; |
|
|
|
parsedMapInfo.TilesetData=newTag; |
|
|
|
} else
|
|
|
|
} else
|
|
|
|
if (newTag.tag=="layer") { |
|
|
|
if (newTag.tag=="layer") { |
|
|
|
LayerTag l = {newTag}; |
|
|
|
LayerTag l = {newTag}; |
|
|
|
parsedMapInfo.LayerData.push_back(l); |
|
|
|
parsedMapInfo.LayerData.push_back(l); |
|
|
|
} else
|
|
|
|
} else
|
|
|
|
if (newTag.tag=="object") { |
|
|
|
if (newTag.tag=="object"&&newTag.data["type"]=="SpawnGroup") { |
|
|
|
if(buildingSpawner){ |
|
|
|
if(buildingSpawner){ |
|
|
|
parsedMapInfo.SpawnerData.push_back(obj); |
|
|
|
parsedMapInfo.SpawnerData.push_back(obj); |
|
|
|
} |
|
|
|
} |
|
|
|
buildingSpawner=true; |
|
|
|
buildingSpawner=true; |
|
|
|
obj={newTag}; |
|
|
|
obj={newTag}; |
|
|
|
goto spawnerResetSkip; |
|
|
|
goto spawnerResetSkip; |
|
|
|
} else
|
|
|
|
} else
|
|
|
|
if (newTag.tag=="property"&&buildingSpawner) { |
|
|
|
if (newTag.tag=="property"&&buildingSpawner) { |
|
|
|
if(newTag.data["propertytype"]=="MonsterName"){ |
|
|
|
if(newTag.data["propertytype"]=="MonsterName"){ |
|
|
|
obj.properties.push_back(newTag); |
|
|
|
obj.properties.push_back(newTag); |
|
|
|
} |
|
|
|
} |
|
|
|
goto spawnerResetSkip; |
|
|
|
goto spawnerResetSkip; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
std::cout<<"Unsupported tag format! Ignoring."<<"\n"; |
|
|
|
std::cout<<"Unsupported tag format! Ignoring."<<"\n"; |
|
|
|
} |
|
|
|
} |
|
|
|
if(buildingSpawner){ |
|
|
|
if(buildingSpawner){ |
|
|
|
parsedMapInfo.SpawnerData.push_back(obj); |
|
|
|
parsedMapInfo.SpawnerData.push_back(obj); |
|
|
|
} |
|
|
|
} |
|
|
|
buildingSpawner=false; |
|
|
|
buildingSpawner=false; |
|
|
|
spawnerResetSkip: |
|
|
|
spawnerResetSkip: |
|
|
|
std::cout<<"\n"<<"=============\n"; |
|
|
|
std::cout<<"\n"<<"=============\n"; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
TMXParser::TMXParser(std::string file){ |
|
|
|
public: |
|
|
|
|
|
|
|
TMXParser(std::string file){ |
|
|
|
|
|
|
|
std::ifstream f(file,std::ios::in); |
|
|
|
std::ifstream f(file,std::ios::in); |
|
|
|
|
|
|
|
|
|
|
|
std::string accumulator=""; |
|
|
|
std::string accumulator=""; |
|
|
@ -236,4 +249,4 @@ public: |
|
|
|
|
|
|
|
|
|
|
|
std::cout<<"Parsed Map Data:\n"<<parsedMapInfo<<"\n"; |
|
|
|
std::cout<<"Parsed Map Data:\n"<<parsedMapInfo<<"\n"; |
|
|
|
} |
|
|
|
} |
|
|
|
}; |
|
|
|
#endif |