Added IF Event Parsing
This commit is contained in:
@ -10,7 +10,6 @@ namespace Dawn {
|
|||||||
class VNDummyEvent : public VNEvent {
|
class VNDummyEvent : public VNEvent {
|
||||||
protected:
|
protected:
|
||||||
void onStart() override {
|
void onStart() override {
|
||||||
std::cout << "Dummy VN Event" << std::endl;
|
|
||||||
this->next();
|
this->next();
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
@ -34,7 +34,7 @@ void VNEvent::next() {
|
|||||||
|
|
||||||
this->end();
|
this->end();
|
||||||
auto next = this->getNextEvent();
|
auto next = this->getNextEvent();
|
||||||
this->manager->currentEvent = next;
|
this->parent->currentEvent = next;
|
||||||
if(next != nullptr) next->start(this->parent, this);
|
if(next != nullptr) next->start(this->parent, this);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -7,22 +7,29 @@
|
|||||||
#include "VNEvent.hpp"
|
#include "VNEvent.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
class VNIfEvent : public VNEvent {
|
class VNIfEvent :
|
||||||
|
public VNEvent,
|
||||||
|
public IVNEventParent
|
||||||
|
{
|
||||||
public:
|
public:
|
||||||
std::string key;
|
std::string key;
|
||||||
std::string value;
|
std::string value;
|
||||||
VNEvent *ifTrue = nullptr;
|
VNEvent *ifTrue = nullptr;
|
||||||
|
VNEvent *ifEnd = nullptr;
|
||||||
VNEvent * getNextEvent() override {
|
|
||||||
if(this->manager.getFlag(key) == value) {
|
|
||||||
return ifTrue;
|
|
||||||
}
|
|
||||||
return VNEvent::getNextEvent();
|
|
||||||
}
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
void onStart() override {
|
void onStart() override {
|
||||||
|
assertNotNull(ifTrue);
|
||||||
|
assertNotNull(ifEnd);
|
||||||
|
|
||||||
|
if(this->manager->getFlag(key) == value) {
|
||||||
|
useEvent([&]{
|
||||||
|
if(ifEnd->getNextEvent() == nullptr) this->next();
|
||||||
|
}, ifEnd->eventFinished);
|
||||||
|
ifTrue->start(this, nullptr);
|
||||||
|
} else {
|
||||||
this->next();
|
this->next();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
};
|
||||||
}
|
}
|
@ -103,6 +103,40 @@ void VNSceneGen::test(
|
|||||||
line(&afterLines, eventName + "->value = \"" + event->choiceSet.value + "\";", "");
|
line(&afterLines, eventName + "->value = \"" + event->choiceSet.value + "\";", "");
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case VN_SCENE_EVENT_TYPE_IF: {
|
||||||
|
initType = "VNIfEvent";
|
||||||
|
toInclude = "games/vn/events/VNIfEvent.hpp";
|
||||||
|
line(&afterLines, eventName + "->key = \"" + event->ifEvent.key + "\";", "");
|
||||||
|
line(&afterLines, eventName + "->value = \"" + event->ifEvent.value + "\";", "");
|
||||||
|
|
||||||
|
std::string ifPrevious = "";
|
||||||
|
std::string ifFirst = "";
|
||||||
|
auto itIf = event->ifEvent.events.events.begin();
|
||||||
|
while(itIf != event->ifEvent.events.events.end()) {
|
||||||
|
std::string ifEventName = "ifEvent" + std::to_string((*eventIndex)++);
|
||||||
|
VNSceneGen::test(
|
||||||
|
ifEventName,
|
||||||
|
&(*itIf),
|
||||||
|
eventIndex,
|
||||||
|
&afterLines,
|
||||||
|
includes
|
||||||
|
);
|
||||||
|
if(!ifPrevious.empty()) line(&afterLines, ifPrevious + "->then(" + ifEventName + ");", "");
|
||||||
|
ifPrevious = ifEventName;
|
||||||
|
if(ifFirst == "") ifFirst = ifEventName;
|
||||||
|
++itIf;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(ifFirst == "" || ifPrevious == "") {
|
||||||
|
std::cout << "If event must have at least one event" << std::endl;
|
||||||
|
assertUnreachable();
|
||||||
|
}
|
||||||
|
|
||||||
|
line(&afterLines, eventName + "->ifTrue = " + ifFirst + ";", "");
|
||||||
|
line(&afterLines, eventName + "->ifEnd = " + ifPrevious + ";", "");
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
default:
|
default:
|
||||||
std::cout << "Unknown event type: " << event->type << std::endl;
|
std::cout << "Unknown event type: " << event->type << std::endl;
|
||||||
assertUnreachable();
|
assertUnreachable();
|
||||||
|
@ -16,4 +16,5 @@ target_sources(vnscenetool
|
|||||||
VNGoToMarkerEventParser.cpp
|
VNGoToMarkerEventParser.cpp
|
||||||
VNChoiceEventParser.cpp
|
VNChoiceEventParser.cpp
|
||||||
VNChoiceSetEventParser.cpp
|
VNChoiceSetEventParser.cpp
|
||||||
|
VNIfEventParser.cpp
|
||||||
)
|
)
|
30
src/dawntools/vnscenetool/events/VNIfEventParser.cpp
Normal file
30
src/dawntools/vnscenetool/events/VNIfEventParser.cpp
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#include "VNIfEventParser.hpp"
|
||||||
|
#include "VNSceneEventsParser.hpp"
|
||||||
|
|
||||||
|
using namespace Dawn;
|
||||||
|
|
||||||
|
std::vector<std::string> VNIfEventParser::getRequiredAttributes() {
|
||||||
|
return { "key", "value" };
|
||||||
|
}
|
||||||
|
|
||||||
|
std::map<std::string, std::string> VNIfEventParser::getOptionalAttributes() {
|
||||||
|
return {};
|
||||||
|
}
|
||||||
|
|
||||||
|
int32_t VNIfEventParser::onParse(
|
||||||
|
Xml *node,
|
||||||
|
std::map<std::string, std::string> values,
|
||||||
|
struct VNIfEvent *out,
|
||||||
|
std::string *error
|
||||||
|
) {
|
||||||
|
//Get the key and value
|
||||||
|
out->key = values["key"];
|
||||||
|
out->value = values["value"];
|
||||||
|
|
||||||
|
return (VNSceneEventsParser()).parse(node, &out->events, error);
|
||||||
|
}
|
23
src/dawntools/vnscenetool/events/VNIfEventParser.hpp
Normal file
23
src/dawntools/vnscenetool/events/VNIfEventParser.hpp
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
// Copyright (c) 2023 Dominic Masters
|
||||||
|
//
|
||||||
|
// This software is released under the MIT License.
|
||||||
|
// https://opensource.org/licenses/MIT
|
||||||
|
|
||||||
|
#pragma once
|
||||||
|
#include "util/XmlParser.hpp"
|
||||||
|
|
||||||
|
namespace Dawn {
|
||||||
|
struct VNIfEvent;
|
||||||
|
|
||||||
|
class VNIfEventParser : public XmlParser<struct VNIfEvent> {
|
||||||
|
protected:
|
||||||
|
std::vector<std::string> getRequiredAttributes() override;
|
||||||
|
std::map<std::string, std::string> getOptionalAttributes() override;
|
||||||
|
int32_t onParse(
|
||||||
|
Xml *node,
|
||||||
|
std::map<std::string, std::string> values,
|
||||||
|
struct VNIfEvent *out,
|
||||||
|
std::string *error
|
||||||
|
) override;
|
||||||
|
};
|
||||||
|
}
|
@ -75,6 +75,11 @@ int32_t VNSceneEventsParser::onParse(
|
|||||||
ret = (VNChoiceSetEventParser()).parse(child, &event.choiceSet, error);
|
ret = (VNChoiceSetEventParser()).parse(child, &event.choiceSet, error);
|
||||||
if(ret != 0) return ret;
|
if(ret != 0) return ret;
|
||||||
|
|
||||||
|
} else if(child->node == "if") {
|
||||||
|
event.type = VN_SCENE_EVENT_TYPE_IF;
|
||||||
|
ret = (VNIfEventParser()).parse(child, &event.ifEvent, error);
|
||||||
|
if(ret != 0) return ret;
|
||||||
|
|
||||||
} else {
|
} else {
|
||||||
*error = "Unknown child node '" + child->node + "'";
|
*error = "Unknown child node '" + child->node + "'";
|
||||||
return -1;
|
return -1;
|
||||||
|
@ -13,6 +13,7 @@
|
|||||||
#include "VNGoToMarkerEventParser.hpp"
|
#include "VNGoToMarkerEventParser.hpp"
|
||||||
#include "VNChoiceEventParser.hpp"
|
#include "VNChoiceEventParser.hpp"
|
||||||
#include "VNChoiceSetEventParser.hpp"
|
#include "VNChoiceSetEventParser.hpp"
|
||||||
|
#include "VNIfEventParser.hpp"
|
||||||
|
|
||||||
namespace Dawn {
|
namespace Dawn {
|
||||||
struct VNSceneEvent;
|
struct VNSceneEvent;
|
||||||
@ -30,13 +31,20 @@ namespace Dawn {
|
|||||||
VN_SCENE_EVENT_TYPE_MARKER,
|
VN_SCENE_EVENT_TYPE_MARKER,
|
||||||
VN_SCENE_EVENT_TYPE_GOTO_MARKER,
|
VN_SCENE_EVENT_TYPE_GOTO_MARKER,
|
||||||
VN_SCENE_EVENT_TYPE_CHOICES,
|
VN_SCENE_EVENT_TYPE_CHOICES,
|
||||||
VN_SCENE_EVENT_TYPE_CHOICE_SET
|
VN_SCENE_EVENT_TYPE_CHOICE_SET,
|
||||||
|
VN_SCENE_EVENT_TYPE_IF
|
||||||
};
|
};
|
||||||
|
|
||||||
struct VNParallelEvent {
|
struct VNParallelEvent {
|
||||||
struct VNSceneEventList events;
|
struct VNSceneEventList events;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
struct VNIfEvent {
|
||||||
|
std::string key;
|
||||||
|
std::string value;
|
||||||
|
struct VNSceneEventList events;
|
||||||
|
};
|
||||||
|
|
||||||
struct VNSceneEvent {
|
struct VNSceneEvent {
|
||||||
enum VNSceneEventType type;
|
enum VNSceneEventType type;
|
||||||
|
|
||||||
@ -49,6 +57,7 @@ namespace Dawn {
|
|||||||
struct VNGoToMarkerEvent gotoMarker;
|
struct VNGoToMarkerEvent gotoMarker;
|
||||||
struct VNChoiceEvent choices;
|
struct VNChoiceEvent choices;
|
||||||
struct VNChoiceSetEvent choiceSet;
|
struct VNChoiceSetEvent choiceSet;
|
||||||
|
struct VNIfEvent ifEvent;
|
||||||
};
|
};
|
||||||
|
|
||||||
class VNSceneEventsParser : public XmlParser<struct VNSceneEventList> {
|
class VNSceneEventsParser : public XmlParser<struct VNSceneEventList> {
|
||||||
|
Reference in New Issue
Block a user