Since the EOS editor can sometimes be quite cumbersome due to the lack of quality of life features I've started experimenting with writing a parser (similar to RenPy) that can convert text files like these:
Code: Select all
image
say custom 10 skip "This is a test"
timer secret 5
prompt someVariable
notification_create notification_id "NotificationTitle"
audio audio_id "some.mp3"
Code: Select all
{
"image": {
"locator": ""
}
},
{
"say": {
"label": "<p>This is a test</p>",
"mode": "custom",
"duration": "10s",
"allowSkip": true
}
},
{
"timer": {
"duration": "5s",
"style": "secret"
}
},
{
"prompt": {
"variable": "someVariable"
}
},
{
"notification.create": {
"title": "NotificationTitle",
"id": "notification_id"
}
},
{
"audio.play": {
"locator": "file:some.mp3",
"id": "audio_id"
}
}
Obviously, this is a very very simple example and the parser has to be a lot more sophisticated than that but before spending too much time on it I was wondering if this is something that creators are actually interested in?
I appreciate your feedback!


