gpt4 book ai didi

java - 如何编写一个循环遍历我的 if 语句的循环?

转载 作者:行者123 更新时间:2023-11-30 06:56:31 27 4
gpt4 key购买 nike

我目前正在制作一款农场游戏,您可以在其中使用花盆种植植物。我拥有的每个花盆都应该是可点击的,并且应该提供在其中播种的选项。到目前为止,我想出了一个非最佳的方法来实现它。我想知道是否可以使用循环以更少的代码行巧妙地循环遍历每个语句。

这是我当前代码的样子:

if (HUD.pots == 1) {
// First pot 230, 502, 40, 50. Every new pot adds 50 to X
if (mouseOver(mx, my, 230, 502, 40, 50)) {
AudioPlayer.getSound("menu_sound").play();
Game.gameState = STATE.Game;
return;
}
} else if(HUD.pots == 2) {
if (mouseOver(mx, my, 230, 502, 40, 50)) {
AudioPlayer.getSound("menu_sound").play();
Game.gameState = STATE.Game;
return;
} else if (mouseOver(mx, my, 280, 502, 40, 50)) {
AudioPlayer.getSound("menu_sound").play();
Game.gameState = STATE.Game;
return;
}
} else if (HUD.pots == 3) {
if (mouseOver(mx, my, 230, 502, 40, 50)) {
AudioPlayer.getSound("menu_sound").play();
Game.gameState = STATE.Game;
return;
} else if (mouseOver(mx, my, 280, 502, 40, 50)) {
AudioPlayer.getSound("menu_sound").play();
Game.gameState = STATE.Game;
return;
} else if (mouseOver(mx, my, 330, 502, 40, 50)) {
AudioPlayer.getSound("menu_sound").play();
Game.gameState = STATE.Game;
return;
}
}

当我最终向游戏中添加更多底池时(这是我打算做的),我将需要很多行来遍历所有底池。

对于另一种情况,我有一个类似的问题:如何让它在每次购买新锅时都生成 x + 50?代码:

// Buy Pot 
if (mouseOver(mx, my, 220, 140, 40, 20)) {
AudioPlayer.getSound("menu_sound").play();
if (HUD.money >= UpgradePrices.potPrice) {
HUD.money -= UpgradePrices.potPrice;
HUD.pots += 1;
if (HUD.pots == 1) {
handler.addObject(new Pot((int)230, (int)502, ID.Pot, handler));
} else if (HUD.pots == 2) {
handler.addObject(new Pot((int)280, (int)502, ID.Pot, handler));
} else if (HUD.pots == 3) {
handler.addObject(new Pot((int)330, (int)502, ID.Pot, handler));
}

Game.gameState = STATE.Upgrades;
return;

最佳答案

看看这是不是你想要的:

for(int x=0; x<HUD.pots; x++){
if(mouseOver(mx, my, 230+(x*50), 502, 40, 50)){
AudioPlayer.getSound("menu_sound").play();
Game.gameState = STATE.Game;
return;
}
}

这将替换所有 if 语句的长系列。然而,在我看来你在这里硬编码了很多东西..

关于java - 如何编写一个循环遍历我的 if 语句的循环?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34307479/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com