簡體   English   中英

如何將actionEvents傳遞給另一個類?

[英]How do I pass actionEvents to another class?

基本上,我想在這里完成的是一個Gamebook模擬器應用程序,到目前為止,我已經使用NetBeans構建了所有JFrame,因為它具有友好的方法。

這是我的問題,這是我的“書”類,它講述故事並為玩家提供他可能選擇繼續前進的可能選擇。 它還會生成游戲主屏幕,並將所有值傳遞給它,例如jText(歷史記錄)和jLabels(例如玩家姓名,life ...)。

package estrutura;

public class LivroTeste extends Livro {

        public LivroTeste(Jogador jogador) {
            super(null, null);
        }

    public void iniciarHistoria(Jogador jogador) {

                T_Jogo jogo = new T_Jogo(jogador);
                jogo.setVisible(true);

                System.out.println("NOME DO PUTO: " + jogador.getNome());

        Encontro i = new Encontro("Você está no fluxo e avista o José no grau, "
                + "você sabe o que ele quer?");
                jogo.printEncontro(i.getDescricao());

        i.addEscolhas("Ele quer pau, pau, pau, pau, ele quer pau...");
        i.addEscolhas("O Zé quer upar!");
                i.addEscolhas("Ele quer Shirlar!");
                i.addEscolhas("Nenhuma das anteriores.");

                jogo.add0(i.getEscolhas().get(0));
                jogo.add1(i.getEscolhas().get(1));
                jogo.add2(i.getEscolhas().get(2));
                jogo.add3(i.getEscolhas().get(3));

                System.out.println("CHEGOU AQUI!");

    }

    public void floresta1(Jogador jogador) {
        Encontro f1 = new Encontro(jogador.getNome() + " segue pela floresta...");
    }

    public void rio1(Jogador jogador) {
        Encontro r1 = new Encontro("Você avista o rio e começa a caminhar pela margem...");
    }
}

T_Jogo()是一個jFrame類型的類,正在運行我在LivroJogo內部初始化的主屏幕:

package estrutura;

import java.awt.Dimension;
import java.awt.Toolkit;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JOptionPane;

public class T_Jogo extends javax.swing.JFrame implements ActionListener {

    /**
     * Creates new form T_Jogo
     */
    public T_Jogo() {
        initComponents();

        this.setResizable(false);
        Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
        this.setLocation(dim.width/2-this.getSize().width/2, dim.height/2-this.getSize().height/2);
    }

    public T_Jogo(Jogador jogador) {
        initComponents();

        //Centraliza janela e desabilita botão maximizar
        this.setResizable(false);
        Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
        this.setLocation(dim.width/2-this.getSize().width/2, dim.height/2-this.getSize().height/2);

        jTextArea1.setEditable(false);
        jTextArea1.setLineWrap(true);

        jButton1.addActionListener(this);
        jButton2.addActionListener(this);
        jButton3.addActionListener(this);
        jButton4.addActionListener(this);

        jLabel1.setText(jogador.getNome());
        jLabel5.setText(Integer.toString(jogador.getVida()));
        jLabel6.setText(Integer.toString(jogador.getAtaque()));
        jLabel7.setText(Integer.toString(jogador.getPericia()));
    }
    .
    .
    .
     public void actionPerformed(ActionEvent e) {
        if(e.getSource() == jButton1) 
            JOptionPane.showMessageDialog(this, "Botão 1");

        else if(e.getSource() == jButton2)
            JOptionPane.showMessageDialog(this, "Botão 2");

        else if(e.getSource() == jButton3)
            JOptionPane.showMessageDialog(this, "Botão 3");

        else if(e.getSource() == jButton4)
            JOptionPane.showMessageDialog(this, "Botão 4");
    }
    public void printEncontro(String texto) {
        jTextArea1.setText(texto);
    } 
    public void add0(String texto) {
        opcao1.setText(texto);
    }
    public void add1(String texto) {
        opcao2.setText(texto);
    } 
    public void add2(String texto) {
        opcao3.setText(texto);
    }
    public void add3(String texto) {
        opcao4.setText(texto);
    }
    /**
     * @param args the command line arguments
     */
    public static void main(String args[]) {
        /* Set the Nimbus look and feel */
        //<editor-fold defaultstate="collapsed" desc=" Look and feel setting code (optional) ">
        /* If Nimbus (introduced in Java SE 6) is not available, stay with the default look and feel.
         * For details see http://download.oracle.com/javase/tutorial/uiswing/lookandfeel/plaf.html 
         */
        try {
            for (javax.swing.UIManager.LookAndFeelInfo info : javax.swing.UIManager.getInstalledLookAndFeels()) {
                if ("Nimbus".equals(info.getName())) {
                    javax.swing.UIManager.setLookAndFeel(info.getClassName());
                    break;
                }
            }
        } catch (ClassNotFoundException ex) {
            java.util.logging.Logger.getLogger(T_Jogo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (InstantiationException ex) {
            java.util.logging.Logger.getLogger(T_Jogo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (IllegalAccessException ex) {
            java.util.logging.Logger.getLogger(T_Jogo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        } catch (javax.swing.UnsupportedLookAndFeelException ex) {
            java.util.logging.Logger.getLogger(T_Jogo.class.getName()).log(java.util.logging.Level.SEVERE, null, ex);
        }
        //</editor-fold>

        /* Create and display the form */
        java.awt.EventQueue.invokeLater(new Runnable() {
            public void run() {
                new T_Jogo().setVisible(true);
            }
        });
    }

由於我的窗口是由NetBeans生成的,而button方法都是私有的,我無法更改,因此嘗試捕獲玩家按哪個jButton(游戲選擇)時遇到了麻煩。 我需要能夠確定從LivroTeste類內部按下了哪一個,因為它將控制游戲流程並根據玩家的選擇刷新所有文本,歷史記錄和選擇。 誰能指導我實現這一目標的最佳方法是什么? 提前致謝。

步驟1:修改LivroTeste ,使其實現ActionListener

步驟2:修改T_Jogo ,如下所示:

(a)在T_Jogo創建一個實例變量, T_Jogo所示:

  private LivroTeste livroTeste;

(b)修改構造函數T_Jogo(Jogador jogador)以接受另一個參數,以使其變為:

  public T_Jogo(Jogador jogador, LivroTeste livroTeste) {
    this.livroTeste = livroTeste;
    initComponents();

    //Centraliza janela e desabilita botão maximizar
    this.setResizable(false);
    Dimension dim = Toolkit.getDefaultToolkit().getScreenSize();
    this.setLocation(dim.width/2-this.getSize().width/2, dim.height/2-this.getSize().height/2);

    jTextArea1.setEditable(false);
    jTextArea1.setLineWrap(true);

    jButton1.setActionCommand("jButton1");
    jButton1.addActionListener(livroTeste);

    jButton2.setActionCommand("jButton2");
    jButton2.addActionListener(livroTeste);

    jButton3.setActionCommand("jButton3");
    jButton3.addActionListener(livroTeste);

    jButton4.setActionCommand("jButton4");
    jButton4.addActionListener(livroTeste); 

    jLabel1.setText(jogador.getNome());
    jLabel5.setText(Integer.toString(jogador.getVida()));
    jLabel6.setText(Integer.toString(jogador.getAtaque()));
    jLabel7.setText(Integer.toString(jogador.getPericia()));
}

步驟3:在LivroTeste.iniciarHistoria() ,創建T_Jogo的實例,如下所示:

T_Jogo jogo = new T_Jogo(jogador, this);   
jogo.setVisible(true);

步驟4:現在,在LivroTeste.actionPerformed()您將知道已按以下方式按下了哪一個:

 public void actionPerformed(ActionEvent e) {
    String str = e.getActionCommand();
    if(str.equals("jButton1")){
       JOptionPane.showMessageDialog(null, "Botão 1");
    }
  } 

希望這可以幫助。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM