- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我用 Java 重新创建了游戏 2048,它确实有效(我没想到自己真的能做出这样“高级”的东西。)
当游戏中的瓷砖移动时,必须创建一个新的方 block /瓷砖/数字,因此代码通过随机选择 0 到 15 之间的数字来搜索可用位置(瓷砖已编号为 0 到 15(实际上它是一个具有 4 列和 4 行的多维数组))。选择一个随机点后,它会检查那里是否已经有一个正方形/方 block /数字,如果是,它会通过返回自身来调用此函数。因此,我现在也必须在没有被占用的情况下退回一些东西,所以我只是退回了一个我以后不用的号码。我做错了什么?
另外,为了开始一个新游戏,我现在基本上重置了 newGame(); 中的所有变量;功能。有没有办法重新启动应用程序或类似的东西?在网站上找不到任何内容。
我还想知道我是否遵守编程惯例,以及对我重新创建此练习的方法的一般评论。 (我知道这是否会占用您很多时间)。
代码:
import javafx.application.Application;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.Label;
import javafx.scene.layout.GridPane;
import javafx.scene.layout.VBox;
import javafx.stage.Stage;
public class Test2048 extends Application{
int score = 0;
Label scoreLabel = new Label("Score: 0");
Label statusLabel = new Label("");
int[][] cell;
Label[][] labels = new Label[4][4];
public static void main(String[] args) {launch(args);}
private void init(Stage primaryStage) {
primaryStage.setTitle("2048");
GridPane grid = new GridPane();
grid.setVgap(-10);
grid.setHgap(-10);
grid.setStyle("-fx-background-color: #BBADA0; -fx-background-radius: 30; -fx-max-width: 1; -fx-border-radius: 16; -fx-border-width: 10; -fx-border-color: #F4F4F4; ");
addLabels(grid);
newGame();
Button newGame = new Button("New Game");
newGame.setOnAction(e -> {
score = 0;
statusLabel.setText("");
newGame();
});
VBox layout = new VBox();
layout.getChildren().addAll(grid, scoreLabel, statusLabel, newGame);
Scene firstScene = new Scene(layout, 390, 450);
firstScene.setOnKeyPressed(e -> {
String arrow = e.getCode().toString();
switch(arrow){
case "RIGHT": move(0, 1, 2, 3, 4, 4, 4, 4); break;
case "DOWN": move(4, 4, 4, 4, 0, 1, 2, 3); break;
case "LEFT": move(3, 2, 1, 0, 4, 4, 4, 4); break;
case "UP": move(4, 4, 4, 4, 3, 2, 1, 0); break;
}
});
primaryStage.setScene(firstScene);
}
@Override
public void start(Stage primaryStage) throws Exception {
init(primaryStage);
primaryStage.show();
}
private void addLabels(GridPane grid) {
for (int x=0;x<4;x++){
for (int y=0;y<4;y++){
labels[x][y]=new Label();
grid.add(labels[x][y], x, y);
}
}
}
private void newGame(){
cell = new int[4][4];
newCell();
newCell();
updateScreen();
}
private void move(int ax, int bx, int cx, int dx, int ay, int by, int cy, int dy) {
boolean hor = false;
if (ax == 4){
hor = true;
}
Boolean hasMoved = false;
for (int i = 0; i <= 3; i++) {
int hasChanged;
if(hor){
ax = bx = cx = dx = i;
}else{
ay = by = cy = dy = i;
}
hasChanged = 4;
if (cell[cx][cy] != 0) {
if (cell[dx][dy] != 0) {
if (cell[cx][cy] == cell[dx][dy]) {
cell[cx][cy] = 0;
cell[dx][dy] *= 2;
score += cell[dx][dy];
hasChanged = 1;
hasMoved = true;
}
} else {
cell[dx][dy] = cell[cx][cy];
cell[cx][cy] = 0;
hasMoved = true;
}
}
if (cell[bx][by] != 0) {
if (cell[cx][cy] != 0) {
if (cell[bx][by] == cell[cx][cy]) {
cell[bx][by] = 0;
cell[cx][cy] *= 2;
score += cell[cx][cy];
hasChanged = 0;
hasMoved = true;
}
} else {
if (cell[dx][dy] != 0) {
if (cell[bx][by] == cell[dx][dy] && hasChanged != 1) {
cell[bx][by] = 0;
cell[dx][dy] *= 2;
score += cell[dx][dy];
hasChanged = 1;
hasMoved = true;
} else {
cell[cx][cy] = cell[bx][by];
cell[bx][by] = 0;
hasMoved = true;
}
} else {
cell[dx][dy] = cell[bx][by];
cell[bx][by] = 0;
hasMoved = true;
}
}
}
if (cell[ax][ay] != 0) {
if (cell[bx][by] != 0) {
if (cell[ax][ay] == cell[bx][by]) {
cell[ax][ay] = 0;
cell[bx][by] *= 2;
score += cell[bx][by];
hasMoved = true;
}
} else {
if (cell[cx][cy] != 0) {
if (cell[ax][ay] == cell[cx][cy] && hasChanged != 0) {
cell[ax][ay] = 0;
cell[cx][cy] *= 2;
score += cell[cx][cy];
hasMoved = true;
} else {
cell[bx][by] = cell[ax][ay];
cell[ax][ay] = 0;
hasMoved = true;
}
} else {
if (cell[dx][dy] != 0) {
if (cell[ax][ay] == cell[dx][dy] && hasChanged != 1) {
cell[ax][ay] = 0;
cell[dx][dy] *= 2;
score += cell[dx][dy];
hasMoved = true;
} else {
cell[cx][cy] = cell[ax][ay];
cell[ax][ay] = 0;
hasMoved = true;
}
} else {
cell[dx][dy] = cell[ax][ay];
cell[ax][ay] = 0;
hasMoved = true;
}
}
}
}
}
if(hasMoved) newCell();
checkStatus();
updateScreen();
}
private void checkStatus(){
long noSpace = 1;
boolean won = false;
for(int x=0;x<4;x++){
for(int y=0;y<4;y++){
noSpace *= cell[x][y];
if(cell[x][y] == 2048) won = true;
}
}
boolean alive = false;
if(noSpace != 0){
for(int x=0;x<3;x++) {
for(int y=0;y<4;y++) {
if (cell[x][y] == cell[x + 1][y]) {
alive = true;
}
}
}
for(int x=0;x<4;x++){
for(int y=0;y<3;y++){
if (cell[x][y] == cell[x][y+1]){
alive = true;
}
}
}
}else{
alive = true;
}
if (!alive){
statusLabel.setText("Game Over!");
} else if(won) {
statusLabel.setText("Won!");
}
}
private int newCell(){
int x = (int) (4 * Math.random());
int y = (int) (4 * Math.random());
if(cell[x][y] != 0){
return newCell();
} else {
cell[x][y] = twoOrFour();
return x; //I don't need this x anywhere, but I need to return newCell()
}
}
private int twoOrFour(){
double r = Math.random();
if(r < 0.125){
return 4;
}else{
return 2;
}
}
private void updateScreen() {
for(int x=0;x<4;x++){
for(int y=0;y<4;y++){
labels[x][y].setText(Integer.toString(cell[x][y]));
labels[x][y].setStyle(cellStyle(cell[x][y]));
}
}
scoreLabel.setText("Score: " + Integer.toString(score));
}
private String cellStyle(int cell) {
String style = "-fx-min-width: 100; -fx-background-radius: 20; -fx-font: bolder 30 'ClearSans'; -fx-min-height: 100; -fx-alignment: center; -fx-border-radius: 14; -fx-border-width: 10; -fx-border-color: #BBADA0; -fx-background-color: #";
switch(cell){
case 2: style+= "EEE4DA"; break;
case 4: style+= "ECE0C8"; break;
case 8: style+= "F2B179"; break;
case 16: style+= "F59563"; break;
case 32: style+= "F57C5F"; break;
case 64: style+= "F65D3B"; break;
case 128: style+= "EDCE71"; break;
case 256: style+= "EDCC61"; break;
case 512: style+= "ECC850"; break;
case 1024: style+= "EDC53F"; break;
case 2048: style+= "ECC400"; break;
case 0: style+= "CDC1B4"; break;
default: style+= "000000"; break;
}
style+= ";-fx-text-fill: #";
if(cell==2||cell==4){
style+= "776E65;";
}else if(cell==0){
style+= "CDC1B4;";
}else{
style+= "F9F6F2;";
}
return style;
}
}
最佳答案
正如@RyanJ 的评论,您只需使用 void
返回类型定义 newCell()
:
private void newCell() {
int x = (int)(Math.random() * 4);
int y = (int)(Math.random() * 4);
if (cell[x][y] != 0) {
newCell();
} else {
cell[x][y] = twoOrFour();
}
}
注意你可以用一个循环做同样的事情:
private void newCell() {
int x ;
int y ;
do {
x = (int)(Math.random() * 4);
y = (int)(Math.random() * 4);
} while (cell[x][y] != 0);
cell[x][y] = twoOrFour();
}
不过,这两种方法都不是特别好,因为找到空白空间可能需要任意长的时间。在递归版本中,情况更糟,因为您可能运气不好,递归运行得足够深,导致 StackOverflowException
。 (这不太可能发生,但如果你玩的时间足够长(让我们面对现实吧,这个游戏会让人上瘾),它总有一天会发生。)
这是一个更好的解决方案。创建一个空单元格列表(只是一个介于 0 和 15 之间的整数列表)。然后随机选择一个:
private void newCell() {
List<Integer> availableCells = new ArrayList<>();
for (int i = 0; i < 16; i++) {
int x = i / 4 ;
int y = i % 4 ;
if (cell[x][y] == 0) {
availableCells.add(i);
}
}
int nextCell = availableCells.get((int)(Math.random() * availableCells.size()));
cell[nextCell / 4][nextCell % 4] = twoOrFour();
}
关于java - 递归需要不必要的返回并重新启动应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29759446/
按照目前的情况,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
在编码时,我问了自己这个问题: 这样更快吗: if(false) return true; else return false; 比这个? if(false) return true; return
如何在逻辑条件下进行“返回”? 在这样的情况下这会很有用 checkConfig() || return false; var iNeedThis=doSomething() || return fa
这是我的正则表达式 demo 如问题所述: 如果第一个数字是 1 则返回 1 但如果是 145 则返回 145 但如果是 133 则返回 133 样本数据a: K'8134567 K'81345678
在代码高尔夫问答部分查看谜题和答案时,我遇到了 this solution返回 1 的最长和最晦涩的方法 引用答案, int foo(void) { return! 0; } int bar(
我想在下面返回 JSON。 { "name": "jackie" } postman 给我错误。说明 Unexpected 'n' 这里是 Spring Boot 的新手。 1日龄。有没有正确的方法来
只要“is”返回 True,“==”不应该返回 True 吗? In [101]: np.NAN is np.nan is np.NaN Out[101]: True In [102]: np.NAN
我需要获取所有在 6 号或 7 号房间或根本不在任何房间的学生的详细信息。如果他们在其他房间,简单地说,我不希望有那个记录。 我的架构是: students(roll_no, name,class,.
我有一个表单,我将它发送到 php 以通过 ajax 插入到 mysql 数据库中。一切顺利,php 返回 "true" 值,但在 ajax 中它显示 false 消息。 在这里你可以查看php代码:
我在 Kotlin 中遇到了一个非常奇怪的无法解释的值比较问题,以下代码打印 假 data class Foo ( val a: Byte ) fun main() { val NUM
请注意,这并非特定于 Protractor。问题在于 Angular 2 的内置 Testability service Protractor 碰巧使用。 Protractor 调用 Testabil
在调试窗口中,以下表达式均返回 1。 Application.WorksheetFunction.CountA(Cells(4 + (i - 1) * rows_per_record, 28) & "
我在本地使用 jsonplaceholder ( http://jsonplaceholder.typicode.com/)。我正在通过 extjs rest 代理测试我的 GET 和 POST 调用
这是 Postman 为成功调用我的页面而提供的(修改后的)代码段。 var client = new RestClient("http://sub.example.com/wp-json/wp/v2
这个问题在这里已经有了答案: What to do with mysqli problems? Errors like mysqli_fetch_array(): Argument #1 must
我想我对 C 命令行参数有点生疏。我查看了我的一些旧代码,但无论这个版本是什么,都会出现段错误。 运行方式是 ./foo -n num(其中 num 是用户在命令行中输入的数字) 但不知何故它不起作用
我已经编写了一个类来处理命名管道连接,如果我创建了一个实例,关闭它,然后尝试创建另一个实例,调用 CreateFile() 返回 INVALID_HANDLE_VALUE,并且 GetLastErro
即使 is_writable() 返回 true,我也无法写入文件。当然,该文件存在并且显然是可读的。这是代码: $file = "data"; echo file_get_contents($fil
下面代码中的变量 $response 为 NULL,尽管它应该是 SOAP 请求的值。 (潮汐列表)。当我调用 $client->__getLastResponse() 时,我从 SOAP 服务获得了
我一直在网上的不同论坛上搜索答案,但似乎没有与我的情况相符的... 我正在使用 Windows 7,VS2010。 我有一个使用定时器来调用任务栏刷新功能的应用程序。在该任务栏函数中包含对 LoadI
我是一名优秀的程序员,十分优秀!