- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个程序从欢迎屏幕中获取 2 个玩家的名字,然后它应该在骰子游戏中使用它们,但它们似乎并没有持续存在。
当我运行程序时,我得到这样的输出
after welcome button click player1 = 4
after welcome button click player2 = 3
player1 = null
player2 = null
我想成为这样的人
after welcome button click player1 = 4
after welcome button click player2 = 3
player1 = 4
player2 = 3
这里是相关代码
Game.java
package DiceGame;
import javafx.application.Application;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.scene.Parent;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.scene.image.Image;
import javafx.scene.image.ImageView;
import javafx.scene.media.AudioClip;
import javafx.scene.media.Media;
import javafx.scene.media.MediaPlayer;
import javafx.stage.Stage;
import java.io.File;
import java.net.URISyntaxException;
import java.net.URL;
public class Game extends Application {
Parent root, welcomeScreen;
Stage app = new Stage();
Stage welcome = new Stage();
Player player1 = new Player();
Player player2 = new Player();
private boolean player1Turn = true;
@FXML
private TextField player1Name;
@FXML
private TextField player2Name;
@FXML
private Button closeButton;
@FXML
private Button rollButton;
public static void main(String[] args) {
launch(args);
}
@Override
public void start(Stage primaryStage) throws Exception {
// Load game board
root = FXMLLoader.load(getClass().getResource("Game.fxml"));
// Load the welcome screen
welcomeScreen = FXMLLoader.load(getClass().getResource("WelcomeScreen.fxml"));
// Set the game board on the window
app.setScene(new Scene(root, 742, 338));
app.show();
// Set the welcome screen to the window, display above the game board
welcome.setScene(new Scene(welcomeScreen, 600, 400));
welcome.show();
}
private Player getPlayer1() {
return this.player1;
}
private Player getPlayer2() {
return this.player2;
}
@FXML
private void closeWelcomeScreen() {
// Get the stage that the button is attached to it
this.player1.setName(player1Name.getText());
this.player2.setName(player2Name.getText());
System.out.println("after welcome button click player1 = " + player1.getName());
System.out.println("after welcome button click player2 = " + player2.getName());
Stage stage = (Stage) closeButton.getScene().getWindow();
// Close the welcome screen
stage.hide();
}
@FXML
private void doRoll() {
// Perform turn
// Update text for button
System.out.println("player1 = " + player1.getName());
System.out.println("player2 = " + player2.getName());
}
}
欢迎屏幕.fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.control.TextArea?>
<?import javafx.scene.control.TextField?>
<?import javafx.scene.layout.AnchorPane?>
<?import javafx.scene.text.Font?>
<AnchorPane maxHeight="-Infinity" maxWidth="-Infinity" minHeight="-Infinity" minWidth="-Infinity" prefHeight="400.0" prefWidth="600.0" xmlns="http://javafx.com/javafx/8.0.121" xmlns:fx="http://javafx.com/fxml/1" fx:controller="DiceGame.Game">
<children>
<Label layoutX="201.0" prefHeight="73.0" prefWidth="244.0" text="Dice Game">
<font>
<Font size="41.0" />
</font>
</Label>
<TextArea layoutX="1.0" layoutY="64.0" prefHeight="250.0" prefWidth="600.0" text="Welcome to my dice game! The rules are simple • You will play a computer • You will take turns rolling dice, until one, or both, players score over 21 points • The points are as follows a) If a pair is rolled, the sum of the pair will be added to the score b) If all 3 dice have the same values, 18 will be added to the score c) Otherwise 1 point will be added tot he score " />
<TextField fx:id="player1Name" layoutX="150.0" layoutY="325.0" prefHeight="15.0" prefWidth="75.0" />
<Label layoutX="50.0" layoutY="325.0" text="Player 1 Name: ">
<padding>
<Insets top="3.0" />
</padding>
</Label>
<Label layoutX="275.0" layoutY="325.0" text="Player 2 Name: ">
<padding>
<Insets top="3.0" />
</padding>
</Label>
<TextField fx:id="player2Name" layoutX="375.0" layoutY="325.0" prefHeight="15.0" prefWidth="75.0" />
<Button fx:id="closeButton" layoutX="278.0" layoutY="361.0" mnemonicParsing="false" onAction="#closeWelcomeScreen" text="Close" />
</children>
</AnchorPane>
游戏.fxml
<?xml version="1.0" encoding="UTF-8"?>
<?import javafx.geometry.Insets?>
<?import javafx.scene.control.Button?>
<?import javafx.scene.control.Label?>
<?import javafx.scene.image.Image?>
<?import javafx.scene.image.ImageView?>
<?import javafx.scene.layout.BorderPane?>
<?import javafx.scene.layout.ColumnConstraints?>
<?import javafx.scene.layout.GridPane?>
<?import javafx.scene.layout.HBox?>
<?import javafx.scene.layout.RowConstraints?>
<BorderPane prefHeight="700.0" prefWidth="700.0" xmlns="http://javafx.com/javafx/8.0.121" xmlns:fx="http://javafx.com/fxml/1" fx:controller="DiceGame.Game">
<top>
<HBox prefHeight="100.0" prefWidth="200.0">
<children>
<Label fx:id="player1ScoreLabel" text="Player Score: 0">
<padding>
<Insets bottom="15.0" left="10.0" right="10.0" top="10.0" />
</padding></Label>
<Label fx:id="player2ScoreLabel" text="Computer Score: 0">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding></Label>
<Label fx:id="leadLabel" text="Both players tied">
<padding>
<Insets bottom="10.0" left="10.0" right="10.0" top="10.0" />
</padding>
</Label>
</children>
</HBox>
</top>
<bottom>
<Button fx:id="rollButton" mnemonicParsing="false" onAction="#doRoll" text="Click for your turn" BorderPane.alignment="CENTER" />
</bottom>
<center>
</center>
<center>
<GridPane BorderPane.alignment="CENTER">
<columnConstraints>
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
<ColumnConstraints hgrow="SOMETIMES" minWidth="10.0" prefWidth="100.0" />
</columnConstraints>
<rowConstraints>
<RowConstraints minHeight="10.0" prefHeight="30.0" vgrow="SOMETIMES" />
</rowConstraints>
<children>
<ImageView fx:id="firstDie" fitHeight="150.0" fitWidth="200.0" pickOnBounds="true" preserveRatio="true">
<image>
<Image url="@side_1.png" />
</image>
<GridPane.margin>
<Insets left="45.0" />
</GridPane.margin></ImageView>
<ImageView fx:id="secondDie" fitHeight="150.0" fitWidth="200.0" pickOnBounds="true" preserveRatio="true" GridPane.columnIndex="1">
<image>
<Image url="@side_1.png" />
</image>
<GridPane.margin>
<Insets left="45.0" />
</GridPane.margin></ImageView>
<ImageView fx:id="thirdDie" fitHeight="150.0" fitWidth="200.0" pickOnBounds="true" preserveRatio="true" GridPane.columnIndex="2">
<image>
<Image url="@side_1.png" />
</image>
<GridPane.margin>
<Insets left="45.0" />
</GridPane.margin></ImageView>
</children>
</GridPane>
</center>
</BorderPane>
我怎样才能得到想要的结果?
谢谢约翰
最佳答案
您代码中的问题是每个 fxml 都有其专用的 Controller 实例(即使您使用相同的类)。因此,您在 WelcomeScreen Controller 实例中设置详细信息并期望在 Game Controller 实例中获取它们。
首先,我建议为每个 fxml 设置专用的 Controller 类。此外,最好不要将 Application 类用作 Controller 类。在您的情况下,您可以将玩家名称保存在应用程序类中,并可以从不同的 Controller 访问它们。
另一种快速而奇怪的方法是将您的播放器声明为静态的;)(绝对不推荐)
关于java - 单击按钮后变量不持久,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53528281/
我是Hibernate的新手。当我保存特定实体时,它将从现有实体中重写数据。 我将ID用作自动生成,如下所示: @Id @GeneratedValue(strategy=GenerationType.
我正在尝试以连续模式使用CouchDB更改通知API,所以我想发送此消息 _changes?feed = continuous?include_docs = true作为GET请求到达我的CouchD
我有 XMPP 服务器(openfire)和一堆客户端(spark),分为几个组(部门)。我正在寻找能够将它们留在 session 室中的能力。我的意思是 Skype 具有的类似功能;当用户关闭带有群
我发布这个问题是为了看看我是否正确理解 Azure Functions 中的并行性,特别是 Durable Functions。 最近使用 az cli 在 Azure Functions 中添加了设
我在 Dev Env 上有一个 AKS 集群,上面运行着一些容器。我还启用了 Azure Log Analytics。但我可以看到正在运行的当前容器的日志,而不是已被终止或停止的旧容器的日志。 我想知
在 Akka 中,当一个 actor 在处理消息时死亡(在 onReceive(...) { ... } 内),该消息就会丢失。有没有办法保证无损?有一种配置 Akka 在将消息发送到 onRecei
我试图让 selectOneMany 取得有限的成功。 我有以下数据库模型 User email Text verkey Text Maybe verified Bool password T
我需要使用持久性(Yesod)从键列表中获取实体列表 假设我有一个 Model 及其相应的 ModelId。我身边有: keys :: [ModelId] 我需要得到 models :: [Model
我有一个使用 GWT、请求工厂和地点/Activity 构建的网络应用程序。我很好奇我使用的历史 token 是否持久。该任务基本上就是让 URL 定义我的网络应用程序的确切位置(读作“文件/文件夹结
我正在寻找一种 jQuery 方法来在刷新页面时使页面元素持久保留在用户屏幕上。当我刷新页面并且丢失 jQuery 页面中的内容时,它会发生变化。 我需要页面持久。如何刷新页面并保持元素不刷新(持久)
当我尝试使用 gcc 编译带有 -fopenmp 标志的 C 代码时,我已经持续收到此错误超过 6 小时了。 错误:控制谓词无效 for ( int i = 0; i #include #ifde
我有带有验证注释的实体,例如@NotNull。我不知道如何防止容器管理的事务在批量持久操作中出现 ConstraintViolationException 的情况下回滚,例如: public void
这是我的代码: http://jsfiddle.net/KCb5z/8/embedded/result/ http://jsfiddle.net/KCb5z/8/ $(function () {
我正在与服务器通信,理想情况下,我希望输入流和输出流始终处于运行状态。我收到未经请求的响应,因此我必须始终准备好接收输入流上的数据。 在我进一步深入之前,我应该说我建立的任何连接都必须能够支持 SSL
我正在寻找一种正确扩展 Azure Functions 的方法,但遇到了问题。 我有一组 IoT 设备,通过 HTTP 向 Azure 发送数据(为此,有一组自动扩展的 Azure Functions
1.临时态(瞬时态) 不存在于session中,也不存在于数据库中的数据,被称为临时态。 比如:刚刚使用new关键字创建出的对象。 2.持久态 存在于session中,事务还未提交,提交之后
我在 Kohana v2 中使用数据库 session 驱动程序。为了使 session 持久化,Kohana 创建了一个 token cookie。这个 cookie 使用了我想的 cookie 配
有谁知道是否有办法使用 PyWinrm 打开一个持久的 PowerShell session ,该 session 保持状态并且可以多次调用?我正在尝试执行以下操作: #!/bin/python im
在运行的Elasticsearch集群中,配置文件中的index.number_of_replicas设置为1。 我可以通过运行以下命令在运行的集群上将其更新为2 # curl -XPUT "http
我在“这么长的帖子必须意味着大量的代码和配置”部分下一对一地使用指南代码。 http://blog.springsource.com/2006/08/07/using-jpa-in-spring-wi
我是一名优秀的程序员,十分优秀!