mirror of
https://github.com/jmarshall23/CnC_Remastered_Collection.git
synced 2026-08-12 08:00:55 +02:00
99 lines
3.1 KiB
C++
99 lines
3.1 KiB
C++
// UNITXML.CPP
|
|
//
|
|
|
|
|
|
#include "FUNCTION.H"
|
|
#include "tinyxml2.h"
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
int64_t generateHashValue(const char* fname, const int size);
|
|
|
|
struct UnitsTileRule_t {
|
|
std::string name;
|
|
int64_t hash;
|
|
int shape;
|
|
std::vector<std::string> frames;
|
|
};
|
|
|
|
struct UnitsXMLInfo_t {
|
|
std::vector<UnitsTileRule_t> tiles;
|
|
};
|
|
|
|
UnitsXMLInfo_t unitsXmlRules;
|
|
|
|
const char* Units_FindHDTexture(const char* shapeFileName, int shapeNum, int frameNum) {
|
|
char tmpFileName[2048];
|
|
strcpy(tmpFileName, shapeFileName);
|
|
COM_SetExtension(tmpFileName, strlen(tmpFileName), "");
|
|
int64_t hash = generateHashValue(tmpFileName, strlen(tmpFileName));
|
|
for (int i = 0; i < unitsXmlRules.tiles.size(); i++) {
|
|
if (unitsXmlRules.tiles[i].hash == hash && unitsXmlRules.tiles[i].shape == shapeNum) {
|
|
static char hdTexturePath[2048];
|
|
if (unitsXmlRules.tiles[i].frames.size() == 0)
|
|
return NULL;
|
|
|
|
sprintf(hdTexturePath, "DATA/ART/TEXTURES/SRGB/RED_ALERT/UNITS/%s", unitsXmlRules.tiles[i].frames[frameNum].c_str());
|
|
return &hdTexturePath[0];
|
|
}
|
|
}
|
|
return NULL;
|
|
}
|
|
|
|
int Units_GetNumFramesForTile(const char* shapeFileName, int shapeNum) {
|
|
char tmpFileName[2048];
|
|
strcpy(tmpFileName, shapeFileName);
|
|
COM_SetExtension(tmpFileName, strlen(tmpFileName), "");
|
|
int64_t hash = generateHashValue(tmpFileName, strlen(tmpFileName));
|
|
for (int i = 0; i < unitsXmlRules.tiles.size(); i++) {
|
|
if (unitsXmlRules.tiles[i].hash == hash && unitsXmlRules.tiles[i].shape == shapeNum) {
|
|
return unitsXmlRules.tiles[i].frames.size();
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void Units_ParseTile(tinyxml2::XMLNode* tile, UnitsTileRule_t& tileRule) {
|
|
tinyxml2::XMLNode* KeyNode = tile->FirstChildElement("Key");
|
|
tinyxml2::XMLNode* NameNode = KeyNode->FirstChildElement("Name");
|
|
tinyxml2::XMLNode* ShapeNode = KeyNode->FirstChildElement("Shape");
|
|
tinyxml2::XMLNode* ValueNode = tile->FirstChildElement("Value");
|
|
tinyxml2::XMLNode* FramesNode = ValueNode->FirstChildElement("Frames");
|
|
tinyxml2::XMLNode* FrameNode = FramesNode->FirstChildElement("Frame");
|
|
|
|
tileRule.name = NameNode->FirstChild()->ToText()->Value();
|
|
tileRule.hash = generateHashValue(tileRule.name.c_str(), tileRule.name.size());
|
|
tileRule.shape = atoi(ShapeNode->FirstChild()->ToText()->Value());
|
|
|
|
while (FrameNode != NULL) {
|
|
if (FrameNode->FirstChild() != NULL) {
|
|
tileRule.frames.push_back(FrameNode->FirstChild()->ToText()->Value());
|
|
}
|
|
FrameNode = FrameNode->NextSiblingElement("Frame");
|
|
}
|
|
}
|
|
|
|
void Units_LoadRuleXML(const char* path, UnitsXMLInfo_t& info) {
|
|
tinyxml2::XMLDocument doc;
|
|
doc.LoadFile(path);
|
|
|
|
tinyxml2::XMLElement* root = doc.FirstChildElement();
|
|
if (root == NULL)
|
|
return;
|
|
|
|
tinyxml2::XMLNode* tilesetTypeClassNode = root->FirstChild();
|
|
|
|
tinyxml2::XMLNode* tilesParent = tilesetTypeClassNode->FirstChildElement("Tiles");
|
|
tinyxml2::XMLNode* tile = tilesParent->FirstChildElement("Tile");
|
|
while (tile != NULL) {
|
|
UnitsTileRule_t tileRule;
|
|
Units_ParseTile(tile, tileRule);
|
|
info.tiles.push_back(tileRule);
|
|
tile = tile->NextSiblingElement("Tile");
|
|
}
|
|
}
|
|
|
|
void Units_LoadRules(void) {
|
|
Units_LoadRuleXML("data/xml/tilesets/RA_UNITS.XML", unitsXmlRules);
|
|
} |