简体   繁体   中英

I'm trying to make a text based GUI game in Java. How do I make the message boxes update to show the next outcomes?

I added more prompts now and the message boxes should say different things but they are stuck at "You go forward and hit a wall" and "You are now facing the opposite direction" They don't change when they should and the third option that I added isn't showing up. Again, here's my code:

package game;

import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.*;

public class game extends JFrame implements ActionListener {

JLabel prompt;
JTextField name;
JTextField name1;
JButton click;
JButton click1;
String storeName;
String storeName1;
JButton click2;


public game(){

    setLayout(null);
    setSize(300,250);
    setTitle("Text Adventure");
    setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    prompt = new JLabel("You find yourself in a tunnel.");
    click = new JButton("Go forward!");
    click1 = new JButton("Turn around!");
    click2 = new JButton();
    name = new JTextField();
    name1 = new JTextField();
    prompt.setBounds(60,30,1300,30);
    click.setBounds(50,130,100,30);
    click.addActionListener(this);
    click1.setBounds(150,130,125,30);
    click1.addActionListener(this);
    click2.setBounds(125,160,125,30);
    click2.addActionListener(this);
    add(click);
    add(click1);
    add(name);
    add(name1);
    add(prompt);


}

public void actionPerformed(ActionEvent e) {

    if(e.getSource() == click) {

        JOptionPane.showMessageDialog(null, "You go forward and hit a wall.");
    }
    {
    if(e.getSource() == click1) {

        JOptionPane.showMessageDialog(null, "You are now facing the opposite direction.");
        prompt.setText("What would you like to do now?");
        click.setText("Go forward!");
        click1.setText("Turn on light.");

    }
    }
}

public void actionPerformed1(ActionEvent e) {

    if(e.getSource() == click) {

        JOptionPane.showMessageDialog(null, "You walk down the tunnel until you hit an intersection.");
        prompt.setText("Which way would you like to go?");
        click.setText("Left!");
        click1.setText("Right!");
        add(click2);
        click2.setText("Keep going!");
    }

    if(e.getSource() == click1) {

    }
}

public static void main(String args[]){

    game s = new game();
    s.setVisible(true);
    }
}

In your actionPerformed function, use

prompt.setText(" new prompt");

to set the prompt to another prompt.

You might also change the options with:

click.setText(" new click command");
click1.setText(" new click1 command");

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM