- Home /
Unity UI: Text Adventure
I have made a game that has two panels, one with a textbox and one with an input field. Then i have this script that makes the thing you write in the input field being displayed in the textbox. Here it is:
using UnityEngine;
using System.Collections;
using UnityEngine.UI;
using System;
public class TextInput : MonoBehaviour
{
InputField input;
InputField.SubmitEvent se;
public Text output;
void Start()
{
input = gameObject.GetComponent<InputField>();
se = new InputField.SubmitEvent();
se.AddListener(SubmitInput);
input.onEndEdit = se;
}
private void SubmitInput(string whatyoutype)
{
string currentText = output.text;
string newText = currentText + "\n" + ">" + whatyoutype;
output.text = newText;
input.text = "";
input.ActivateInputField();
string west = currentText + "\n" + ">" + "To the west is a forest";
string north = currentText + "\n" + ">" + "To the north is a road";
if (whatyoutype == "West")
{
output.text = west;
}
}
}
As you can see, if you write "West" in the input field, the output in the textbox would be a string called west, that displays the text "To the west is a forest".
My Question is this: How could you do it so that if the string is west (in other words if you have written "West") and you then write "North" the string would become north (the one that displays the words "To the north is a road") but ONLY if the string had already been west, in other words you can only access north if west already had been used?
Answer by KuR5 · Jun 06, 2016 at 10:08 AM
bool isWestUsed=false;
private void SubmitInput(string whatyoutype)
{
.....
if (whatyoutype == "West")
{
output.text = west;
isWestUsed = true;
}
else if(whatyoutype == "North" && isWestUsed)
{
output.text = north;
}
}
Answer by Spider_newgent · Jun 06, 2016 at 10:24 AM
Hi.
I would write a class called "Node," for each location in the game and have a link to other nodes for each direction, (north, east, south & west). Then in your game you store the current node the player is at. When the player types "west" the game follows the link to the west node of the current node.
Have a look at some text adventure tutorials or for a simple, free, visual example which will help you get started check out a program called Twine.
Hope that helps.
@Spider_newgent how would you write such a code or class?
Your answer
Follow this Question
Related Questions
Remove the & at the end of concatenated string 0 Answers
Ui text to string ? 1 Answer
Change alpha color of specific letter in a Text UI with C# 2 Answers
How to measure the width of a string? 0 Answers
Text UI is not being assigned 2 Answers