Is This Player Agency?
Dev log for Project Amethyst from 8/21/18 to 9/4/18
What have I been working on since the last update?
Continuing on from before, I spent the last two weeks finishing up my dialogue system. But before that, I finally figured out UI scaling. Just in case you didn’t know, I’ve started posting updates on my Twitter which can be accessed from the top right of the screen (or bottom right on mobile). In a cumbersome combination of DPI scaling and anchors, I got the UI to scale perfectly at last. Though it is built in 1080p, it can scale from 720p all the way up to full 4K.
Unfortunately I can't get a 4K screen shot since my display isn't large enough and Unreal's high resolution screenshot tool (which allows the engine to render out a capture at a higher res than your display) doesn't show the UI.
Anyway, after I fixed that I turned my focus back to the dialogue system. In a couple days I completed the last major piece of the system: branches. I tried doing it a few different ways, but I ended up with this:
Since this logic is all located on the UI widget, any blueprint that has access to the dialogue interface (or has a dialogue component) can send text and trigger a branch. This new addition tells the UI handler to bring up the yes/no box if it hits the end of a block of dialogue that was marked as ending with a branch, instead of bringing up the little arrow that indicates the end of a page. There's also some code not pictured that handles the communication of input from the player controller to the widget. I tried very hard to make this system as modular as possible, so that I won’t have to rewrite anything later when I get to adding item popups and other non-dialogue messages. I may end up making that stuff in a separate UI widget anyway, but I should be able to copy and paste most of the code.
What obstacles have I encountered?
These past weeks, other than overflow of the scaling stuff, I didn’t hit many major obstacles. The branch logic was far less complicated than the string parsing and page logic of the last update. To be honest, I didn’t put a ton of hours in these past two weeks which is why I only really completed the one thing. I should be getting back into full swing this week.
What's next?
The next thing I intend to tackle is one last change to the dialogue system that will cement it in “done for now” status. That change involves deprecating the public strings I currently use to define dialogue and moving everything to a (series of) data table(s). This was a suggestion from a previous teacher-turned-coworker who has written a similar branching system before. This will allow me to plug in identifying codes into the public variables on the NPCs rather than having to create a new child instance of the NPC class for every one that needs more than one dialogue block. That shouldn’t take more than a day and a half and after that I will move on to variations of the dialogue UI as that will also not take long.
After that is all said and done, I will probably start on the inventory system. This is something that I haven’t written from scratch before, thus I suspect the first few weeks will be mostly prototyping and iteration. I’ll do my best to describe what I’m doing in the next update but I likely won’t have anything concrete for a while.
Until then, thanks for reading! Be sure to watch my Twitter for small updates and showcases.