Sunset old XML child system
This commit is contained in:
@ -33,6 +33,9 @@ namespace Dawn {
|
|||||||
protected:
|
protected:
|
||||||
static bool_t isWhitespace(char_t c);
|
static bool_t isWhitespace(char_t c);
|
||||||
|
|
||||||
|
// @deprecated
|
||||||
|
std::vector<Xml*> children;
|
||||||
|
|
||||||
public:
|
public:
|
||||||
static Xml load(std::string data);
|
static Xml load(std::string data);
|
||||||
static void load(Xml *xml, std::string data, size_t *j);
|
static void load(Xml *xml, std::string data, size_t *j);
|
||||||
@ -43,9 +46,6 @@ namespace Dawn {
|
|||||||
std::string textContent;
|
std::string textContent;
|
||||||
std::map<std::string, std::string> attributes;
|
std::map<std::string, std::string> attributes;
|
||||||
std::vector<struct XmlNode> childNodes;
|
std::vector<struct XmlNode> childNodes;
|
||||||
|
|
||||||
// @deprecated
|
|
||||||
std::vector<Xml*> children;
|
|
||||||
|
|
||||||
std::vector<Xml*> getChildrenOfType(std::string type);
|
std::vector<Xml*> getChildrenOfType(std::string type);
|
||||||
Xml * getFirstChildOfType(std::string type);
|
Xml * getFirstChildOfType(std::string type);
|
||||||
|
@ -56,10 +56,15 @@ int32_t SceneItemParser::onParse(
|
|||||||
|
|
||||||
struct SceneItemDependency dep;
|
struct SceneItemDependency dep;
|
||||||
|
|
||||||
auto itChildren = node->children.begin();
|
auto itChildren = node->childNodes.begin();
|
||||||
while(itChildren != node->children.end()) {
|
while(itChildren != node->childNodes.end()) {
|
||||||
|
if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
// Parse child nodes, they may be components or not
|
// Parse child nodes, they may be components or not
|
||||||
auto c = *itChildren;
|
auto c = itChildren->child;
|
||||||
|
|
||||||
if(c->node == "child" || c->node == "item") {
|
if(c->node == "child" || c->node == "item") {
|
||||||
struct SceneItem child;
|
struct SceneItem child;
|
||||||
|
@ -32,9 +32,14 @@ int32_t SceneParser::onParse(
|
|||||||
struct SceneItemDependency dep;
|
struct SceneItemDependency dep;
|
||||||
|
|
||||||
//Parse the children
|
//Parse the children
|
||||||
auto itChildren = node->children.begin();
|
auto itChildren = node->childNodes.begin();
|
||||||
while(itChildren != node->children.end()) {
|
while(itChildren != node->childNodes.end()) {
|
||||||
Xml *child = *itChildren;
|
if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Xml *child = itChildren->child;
|
||||||
|
|
||||||
if(child->node == "asset") {
|
if(child->node == "asset") {
|
||||||
struct SceneAsset asset;
|
struct SceneAsset asset;
|
||||||
|
@ -29,9 +29,14 @@ int32_t VNSceneParser::onParse(
|
|||||||
if(ret != 0) return ret;
|
if(ret != 0) return ret;
|
||||||
|
|
||||||
// Now pass the VN Events
|
// Now pass the VN Events
|
||||||
auto itChildren = node->children.begin();
|
auto itChildren = node->childNodes.begin();
|
||||||
while(itChildren != node->children.end()) {
|
while(itChildren != node->childNodes.end()) {
|
||||||
Xml *child = *itChildren;
|
if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Xml *child = itChildren->child;
|
||||||
if(child->node != "events") {
|
if(child->node != "events") {
|
||||||
++itChildren;
|
++itChildren;
|
||||||
continue;
|
continue;
|
||||||
|
@ -22,9 +22,14 @@ int32_t VNChoiceParser::onParse(
|
|||||||
std::string *error
|
std::string *error
|
||||||
) {
|
) {
|
||||||
int32_t ret;
|
int32_t ret;
|
||||||
auto itChildren = node->children.begin();
|
auto itChildren = node->childNodes.begin();
|
||||||
while(itChildren != node->children.end()) {
|
while(itChildren != node->childNodes.end()) {
|
||||||
Xml *child = *itChildren;
|
if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Xml *child = itChildren->child;
|
||||||
|
|
||||||
// Parse strings
|
// Parse strings
|
||||||
if(child->node == "string") {
|
if(child->node == "string") {
|
||||||
@ -61,16 +66,26 @@ int32_t VNChoicesEventParser::onParse(
|
|||||||
std::string *error
|
std::string *error
|
||||||
) {
|
) {
|
||||||
int32_t ret;
|
int32_t ret;
|
||||||
auto itChildren = node->children.begin();
|
auto itChildren = node->childNodes.begin();
|
||||||
while(itChildren != node->children.end()) {
|
while(itChildren != node->childNodes.end()) {
|
||||||
Xml *child = *itChildren;
|
if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Xml *child = itChildren->child;
|
||||||
|
|
||||||
// Parse strings
|
// Parse strings
|
||||||
if(child->node == "title") {
|
if(child->node == "title") {
|
||||||
auto itChildren2 = child->children.begin();
|
auto itChildren2 = child->childNodes.begin();
|
||||||
while(itChildren2 != child->children.end()) {
|
while(itChildren2 != child->childNodes.end()) {
|
||||||
|
if(itChildren2->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren2;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
VNText text;
|
VNText text;
|
||||||
ret = (VNTextParser()).parse(*itChildren2, &text, error);
|
ret = (VNTextParser()).parse(itChildren2->child, &text, error);
|
||||||
if(ret != 0) return ret;
|
if(ret != 0) return ret;
|
||||||
out->titles.push_back(text);
|
out->titles.push_back(text);
|
||||||
++itChildren2;
|
++itChildren2;
|
||||||
|
@ -24,9 +24,14 @@ int32_t VNSceneEventsParser::onParse(
|
|||||||
) {
|
) {
|
||||||
int32_t ret;
|
int32_t ret;
|
||||||
|
|
||||||
auto itChildren = node->children.begin();
|
auto itChildren = node->childNodes.begin();
|
||||||
while(itChildren != node->children.end()) {
|
while(itChildren != node->childNodes.end()) {
|
||||||
Xml *child = *itChildren;
|
if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Xml *child = itChildren->child;
|
||||||
struct VNSceneEvent event;
|
struct VNSceneEvent event;
|
||||||
|
|
||||||
// Parse event(s)
|
// Parse event(s)
|
||||||
|
@ -47,9 +47,14 @@ int32_t VNTextEventParser::onParse(
|
|||||||
std::string *error
|
std::string *error
|
||||||
) {
|
) {
|
||||||
int32_t ret;
|
int32_t ret;
|
||||||
auto itChildren = node->children.begin();
|
auto itChildren = node->childNodes.begin();
|
||||||
while(itChildren != node->children.end()) {
|
while(itChildren != node->childNodes.end()) {
|
||||||
Xml *child = *itChildren;
|
if(itChildren->nodeType != XML_NODE_TYPE_ELEMENT) {
|
||||||
|
++itChildren;
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
Xml *child = itChildren->child;
|
||||||
|
|
||||||
// Parse strings
|
// Parse strings
|
||||||
if(child->node == "string") {
|
if(child->node == "string") {
|
||||||
|
Reference in New Issue
Block a user