Today was more dialogue tree stuff. Kinda just churning away at it at this point.

The next step for today was to start implementing checks to see whether the user is or is not allowed to see a certain dialogue, or allowed to choose a certain option, or fire a certain event.

I was trying to plan this all out, perhaps too much, so I decided to just keep it very simple for now and implement only the rudimentary checks.

Now that I have a skeleton in place which supports two functional checks, it means it’s easier for me to extend it even further.

The next piece of the puzzle is allowing the dialogue tree to fire off events.

I think these will be specialized events that exist only for the dialogue system. That way I’ll be able to separate getting an item via a dialogue from getting an item via a quest or getting an item via trade or et cetera.

No fun gifs today because I still haven’t moved on to presentation, but at least you get a screenshot of the updated dialogue tree graph – the new red line nodes are our checks.

This is just a few dialogue nodes and a few checks, and I’m hoping it’s becoming at least a little obvious why this has been on my mind a lot – even the most basic dialogue tree starts to get really complex really fast. The library I was using was good, but to make it work for my purposes was going to require so much modification that writing my own custom system just seems like a better idea. That way I can handle all of the complexities in my own way.