Updating prologue

This commit is contained in:
2023-07-05 07:16:50 -07:00
parent 6de9e3a67f
commit 623b243287

View File

@ -84,11 +84,12 @@ void VNSceneGen::test(
case VN_SCENE_EVENT_TYPE_CHOICES: { case VN_SCENE_EVENT_TYPE_CHOICES: {
initType = "VNChoiceEvent"; initType = "VNChoiceEvent";
toInclude = "games/vn/events/VNChoiceEvent.hpp"; toInclude = "games/vn/events/VNChoiceEvent.hpp";
line(&afterLines, eventName + "->key = \"" + event->choices.key+ "\";", ""); line(&afterLines, eventName + "->key = \"" + event->choices.key+ "\";", "");
line(&afterLines, eventName + "->text = \"" + event->choices.titles.begin()->text + "\";", ""); line(&afterLines, eventName + "->text = " + event->choices.titles.begin()->text + ";", "");
auto itChoices = event->choices.choices.begin(); auto itChoices = event->choices.choices.begin();
while(itChoices != event->choices.choices.end()) { while(itChoices != event->choices.choices.end()) {
line(&afterLines, eventName + "->choices[\"" + itChoices->value + "\"] = \"" + itChoices->texts.begin()->text + "\";", ""); line(&afterLines, eventName + "->choices[\"" + itChoices->value + "\"] = " + itChoices->texts.begin()->text + ";", "");
++itChoices; ++itChoices;
} }
break; break;