🎉 Celebrating 25 Years of GameDev.net! 🎉

Not many can claim 25 years on the Internet! Join us in celebrating this milestone. Learn more about our history, and thank you for being a part of our community!

How to program dialogue for a game?

Started by
11 comments, last by Alberth 4 months, 2 weeks ago

I'm working on a prototype that will have an NPC give dialogue for the player to read and since this is the first time handling dialogue I would like some advice on the programming side of handling dialogue.

Advertisement

You mean you want to display text in a box on the screen?

-- Tom Sloper -- sloperama.com

Make a list of questions with possible answers, and for each answer the next question you want to ask.

Have a variable that tracks the currently displayed question. When the user answers, update the variable to the next question.

@Tom Sloper

That and programming a dialogue box

@Alberth

The dialogue will be used to tell a story like how most fantasy games have someone explain your purpose in the game. But your advice will help if I plan to do that

@Alberth

My apologies I meant role-playing games in my first reply

It depends a lot on the depth and complexity you want the dialogue system to be based on.

I have actually thought on the matter quite a bit and I don't know yet if I want it the way recent AAA titles have been going at.

Most games just have minor branching properties and have dialogues pop based on game stage and similiar factors. So basically you always get a small branching dialogue based on game events. But there are other ways to produce similiar dialogue systems, like some of those used in text based adventures.

I have a json containing the nodes of the dialog. It is quite complex because each node can have conditions (like, is Quest Q active, unassigned, completed? is attribute A greater or lesser than value X?). The conditions determine if the node is displayed or no. Each node points to answers in case of an NPC line, or to next NPC line, in case of player answers. The big problem for me is writing an editor that simplifies the task of creating/editing the json files.

Did you consider writing a text file with lines of text in a convenient form and parse that?

Eg

invite_walk
condition: quest0=completed, attrA > 7
tell: It is good weather today, care for a walk in the garden?
answer: No, not really I am busy -> end
answer: Hmm, maybe, I was looking for a bar -> invite_bar
answer: Yes please, I'd be delighed -> go_for_walk

With python (or any other language for that matter), you can read the lines of the file, and check text of them.

In my example, first line is the name of the node Other lines have a special word in front like “answer:” so you can recognize them. For each type of line you can decode what the text contains. For the “answer” line, you should look for a “→” sequence, which is after the text to show, and before the name of the next node

For a conditions, you first split on commas, then you have texts of the form “word OP word”, where OP is “=”, “>”, etc.

Editable with any text editor, and text-processing to understand the lines isn't terribly complicated.

@Alberth That sounds good, but may be quite a bit more complex once you want to localise to other languages, depending on how easily you want your localisation work to be. I would rather put all that into compiled code, though, because then you can directly invoke stuff as a result of choosing an option, and it allows you to have more control over dynamically generated dialogues or something. Although even then (or especially then :D), localisation will be a pain.

I would simply have a dialogue class, which has a command to generate a list of options (another class), and then there's a callback on each option that gets triggered when you have selected one (such as on_chosen and on_not_chosen or something, if you have different options which also trigger behaviours if you do not chose them). Not that you have to over-OOP it, but it's a good conceptualisation, I think. Each chosen option can then transform the dialogue into the next phase, either statically or dynamically. The dialogue itself should also contain some kind of context as to which things it's referring to (such as the player and a specific NPC, maybe also some other object of interested that the dialogue is about, etc.). Basically each option needs display() string, on_chosen(Dialogue &), and optionally on_not_chosen(Dialogue &), which modify or destroy the dialogue or affect things referenced by the dialogue. A rejected option can also lead to the creation of another option in the next stage of the dialogue.

Anyway, just brainstorming, not sure what exactly you want to do, anyway. If your requirement is just clicking A until the dialog displayed all its text, obviously, you would not need something like this. But I'm assuming you want the player to make choices and that the dialogue actually affects things.

Walk with God.

This topic is closed to new replies.

Advertisement