// Copyright (c) 2023 Dominic Masters // // This software is released under the MIT License. // https://opensource.org/licenses/MIT #pragma once #include "VNTextEventParser.hpp" namespace Dawn { struct VNChoice { std::vector texts; std::string value; }; struct VNChoiceEvent { std::vector titles; std::vector choices; std::string key; }; class VNChoiceParser : public XmlParser { protected: std::vector getRequiredAttributes() override; std::map getOptionalAttributes() override; int32_t onParse( Xml *node, std::map values, struct VNChoice *out, std::string *error ) override; }; class VNChoicesEventParser : public XmlParser { protected: std::vector getRequiredAttributes() override; std::map getOptionalAttributes() override; int32_t onParse( Xml *node, std::map values, struct VNChoiceEvent *out, std::string *error ) override; }; }