RPG-style talk.

I have develloped a system for an rpg-style conversation. It includes things like signs, talking to players, etc. It lets you
So, you find three symbols you are not using, in my case, I used '`' for separating text-blocks, '|' for your character's name, and '^' for the 'i' symbol. But you can make it anything you like.
This allows you to create a character who introduces himself, says hello, and then gives some advice, but the next time you talk to him, he just gives the advice.
Now for this to work, each actor needs a conversation to say. Here are some tips: For something you examine, like a bookshelf for example, you might want to have two animations: one where it is full of books and one where it is empty.
Rather than create two bookshelf actors, you can create one, and use two text-blocks:
Now, depending on the bookshelf's animation, it says a different thing. Now, for fairly common things, like signs, or people, you don't necesarily want five different actors, so here is a hint: use two, one a sign, and the other a text actor.
On the sign's create actor, set a variable, 'talkno' to any number. If you have three people to talk to, and then you want signs, make the sign's talkno 3. So each actor has a variable that can be got from talkno + cloneindex. So if you have five signs,
and three people, they will have variables as follows:Person.0: 0; Person.1: 1; Person.2: 2; Sign.0: 3; Sign.1: 4; Sign 2: 5; Sign 3: 6; Sign 4: 7.
Now create a text actor, and clone it seven times. Place each clone near the actor that will have the same value. So TalkText.4 should be placed near Sign.1. This will make it easier to find which text is which actor. The benefit of cloning text actors is that
you can go to the 'text' window and make it start out with any text you want. So each clone has a different text at startup. In the text's create actor, set the transparency to .99, so you don't see the text. Now on you can use the getclone2 function
to acsess a particular text. So on your event that reads the sign, you can put
and you need to remember his SpState variable, put all such actors at the beginning of your talkno list, before things like signs that always say the same thing. Now you need to go through an array and save the SpState of all relevant actors in the array.
Now I'm probably really boring you, and you're just thinking "Enough rambling on about it, tell it to me already!!
"
Well the concept behind it is:
Then it waits for a key down event when it checks the position of the text relative to the number of lines and either
It came from (eg. a sign that can only be read from the bottom or a person who turns to face you). You can use this same actor for any other things you want to use.
Now, we need to write the talk function. First we add the string to array function in global code. I have modified this to return the number of lines read.
add this in a section called 'text functions' or something. In a new section in global code, add
This just created a global variable that will be your array of strings for the text box to read. For the next bit to work, you need two actors: TextBoxBacking, which is the box that displays.
Give it two animations: 'TextBacking', which is your standard backing animation and 'i', which contains the 'i' icon. This actor should be parented to 'View Center', if you have one, or 'view'.
Now you need another Actor, TextBox, which is a text actor parented to TextBoxBacking. Put four lines of text in it to check the space it comes to and position it on TextBoxBacking. Position TextBoxBacking so it is just below the view, so it covers the same width,
and is exactly it's height below the bottom of the view.
Now you need a few variables
Go to your TextBox actor.
On create actor, disable key down events.
On Activation Event, you need to display the text:
Now add a keydown event with the key you want, this does essentially the same thing, but checks to decide whether to end the text, and does a different four lines:
Now, using the tips described above, you can just use the talk function.
Remember, if you want to display the 'i' symbol, put ^ at the beginning of a text-block. Put ` between text blocks. Put | when you want your character's name.
If you need help with this, or if I have forgotten anything, just ask.
- easily have multiple text-blocks
- easily insert your character's name (where the user can set it)
- display an icon when it is an examination or anything else you want (eg. it can display an 'i' symbol if it is just you examining something, as opposed to someone talking.
So, you find three symbols you are not using, in my case, I used '`' for separating text-blocks, '|' for your character's name, and '^' for the 'i' symbol. But you can make it anything you like.
This allows you to create a character who introduces himself, says hello, and then gives some advice, but the next time you talk to him, he just gives the advice.
- Code: Select all
talk("Hello, |, my name is Fred. How are you?\nDid you know that if you destroy an enemy,\nhe will sometimes drop an item?`Did you know that if you destroy an enemy,\nhe will sometimes drop an item?", SpState);
SpState = 1;
Now for this to work, each actor needs a conversation to say. Here are some tips: For something you examine, like a bookshelf for example, you might want to have two animations: one where it is full of books and one where it is empty.
Rather than create two bookshelf actors, you can create one, and use two text-blocks:
- Code: Select all
talk("^ It is a bookshelf, but there is nothing\n on it.`^ It is a bookshelf full of books.", animindex);
Now, depending on the bookshelf's animation, it says a different thing. Now, for fairly common things, like signs, or people, you don't necesarily want five different actors, so here is a hint: use two, one a sign, and the other a text actor.
On the sign's create actor, set a variable, 'talkno' to any number. If you have three people to talk to, and then you want signs, make the sign's talkno 3. So each actor has a variable that can be got from talkno + cloneindex. So if you have five signs,
and three people, they will have variables as follows:Person.0: 0; Person.1: 1; Person.2: 2; Sign.0: 3; Sign.1: 4; Sign 2: 5; Sign 3: 6; Sign 4: 7.
Now create a text actor, and clone it seven times. Place each clone near the actor that will have the same value. So TalkText.4 should be placed near Sign.1. This will make it easier to find which text is which actor. The benefit of cloning text actors is that
you can go to the 'text' window and make it start out with any text you want. So each clone has a different text at startup. In the text's create actor, set the transparency to .99, so you don't see the text. Now on you can use the getclone2 function
to acsess a particular text. So on your event that reads the sign, you can put
- Code: Select all
talk(getclone2("TalkText", talkno + cloneindex)->text, 0);
and you need to remember his SpState variable, put all such actors at the beginning of your talkno list, before things like signs that always say the same thing. Now you need to go through an array and save the SpState of all relevant actors in the array.
Now I'm probably really boring you, and you're just thinking "Enough rambling on about it, tell it to me already!!

Well the concept behind it is:
- look at the string, and find the correct text-block start position, relative to the inputted integer.
- copy the string from the previously found position, up to the next '`' or the end of the string.
- check if the first character of this is a '^' and if so set an animation appropriately.
- go continue through the string copying the 'PNAM' string if the character is a '|', or otherwise copying the character.
- pause the game.
- convert the final string to an array of lines.
- send an activation event to the text actor that will display the text.
Then it waits for a key down event when it checks the position of the text relative to the number of lines and either
- hides itself and unpauses the game.
- moves down two lines.
It came from (eg. a sign that can only be read from the bottom or a person who turns to face you). You can use this same actor for any other things you want to use.
Now, we need to write the talk function. First we add the string to array function in global code. I have modified this to return the number of lines read.
- Code: Select all
int str_to_array(char *str, char array[50][1000])
{
int i;
int line = 0;
char *start = str;
nlines = 0;
for(i = 0; i < 50; i ++)
{
strcpy(array[i], "");
}
while(*str)
{
if(*str == '\n')
{
//End of line found
//Copy to array
*str = 0;
strcpy(array[line], start);
*str = '\n';
//Go to next string
start = str + 1;
line++;
}
str++;
}
//Copy last string
strcpy(array[line], start);
return line + 1;
}
add this in a section called 'text functions' or something. In a new section in global code, add
- Code: Select all
char speech[50][1000];
This just created a global variable that will be your array of strings for the text box to read. For the next bit to work, you need two actors: TextBoxBacking, which is the box that displays.
Give it two animations: 'TextBacking', which is your standard backing animation and 'i', which contains the 'i' icon. This actor should be parented to 'View Center', if you have one, or 'view'.
Now you need another Actor, TextBox, which is a text actor parented to TextBoxBacking. Put four lines of text in it to check the space it comes to and position it on TextBoxBacking. Position TextBoxBacking so it is just below the view, so it covers the same width,
and is exactly it's height below the bottom of the view.
Now you need a few variables
- nlines should be global integer.
- PNAM should be a global string. fill it with the name of your character, or the name the player inputs.
- speechno, or talkno, is an actor integer as mentioned above.
- SpState is an actor integer, for use to determine what text to say, or for any other special state; different actors use it differently.
- spstr is an actor string, for when an actor needs a special string, usually the clonename of another actor.
- speech is the text array you created above
- Code: Select all
void talk(char *str1, int wt)
{
int charst = 0;
int i, j;
char strar[4000];
char talkstr[4000];
char addchar[2];
char finstr[4000];
//find the wt text segment
strcpy(strar, str1);
for (i = 0; i < wt; i ++)
{
for(j = charst; j < strlen(strar); j ++)
{
if (strar[j] == '`')
{
charst = j + 1;
}
}
}
strcpy(talkstr, "");
//put it into talkstr
for (i = charst; i < strlen(strar) && strar[i] != '`'; i ++)
{
talkstr[i - charst] = strar[i];
}
//set text box to default
ChangeAnimation("TextBoxBacking", "TextBacking", FORWARD);
strcpy(finstr, "");
for(i = 0; i < strlen(talkstr); i ++)
{
//if ^, change to information anim
if (i == 0 && talkstr[i] == '^')
{
ChangeAnimation("TextBoxBacking", "i", FORWARD);
}
//add to finstr
else if (talkstr[i] != '|')
{
addchar[0] = talkstr[i];
strcat(finstr, addchar);
}
//add PNAM into finstr
else
{
strcat(finstr, PNAM);
}
}
//pause game: put any script you need to pause the game here
GlobalSpeed = 0;
EventDisable("PlayerBase", EVENTALL);
//convert finstr to an array of lines with returned number of lines
nlines = str_to_array(finstr, speech);
//tell textbox to activate with text
SendActivationEvent("TextBox");
strcpy(TextBox.spstr, clonename);
}
Go to your TextBox actor.
On create actor, disable key down events.
On Activation Event, you need to display the text:
- Code: Select all
char addstr[256];
int i;
SpState = 0;
strcpy(text, "");
for(i = 0; i < 4 && i <= nlines; i ++)
{
sprintf(addstr, "%s\n", speech[i]);
strcat(text, addstr);
}
TextBoxBacking.y += (view.height - TextBoxBacking.height / 2) - TextBoxBacking.yscreen;
EventEnable("Event Actor", EVENTKEYDOWN);
Now add a keydown event with the key you want, this does essentially the same thing, but checks to decide whether to end the text, and does a different four lines:
- Code: Select all
char addstr[256];
int i;
SpState += 2;
if (SpState > nlines - 2)
{
TextBoxBacking.y += (view.height + TextBoxBacking.height / 2) - TextBoxBacking.yscreen;
//unpause game, use any unpause script you want
GlobalSpeed = 1;
EventEnable("PlayerBase", EVENTALL);
EventDisable("Event Actor", EVENTKEYDOWN);
SendActivationEvent(spstr);
}
else
{
strcpy(text, "");
for(i = 0; i < 4 && i < nlines; i ++)
{
sprintf(addstr, "%s\n", speech[i + SpState]);
strcat(text, addstr);
}
}
Now, using the tips described above, you can just use the talk function.
Remember, if you want to display the 'i' symbol, put ^ at the beginning of a text-block. Put ` between text blocks. Put | when you want your character's name.
If you need help with this, or if I have forgotten anything, just ask.