gpt4 book ai didi

java - 尝试获取对象的 y 坐标时无法解决 NullPointerException

转载 作者:行者123 更新时间:2023-12-02 05:54:18 25 4
gpt4 key购买 nike

我正在制作一款太空入侵者类型的游戏,目前正在尝试实现碰撞检测,以便如果射击击中目标,则目标将从框架中移除。但我在下面的标记行处遇到了空指针异常(我也会发布异常跟踪)。问题是因为我没有正确设置拍摄对象的 y 坐标吗?我尝试修复此问题,但没有任何反应,尽管我可能没有以正确的方式完成它。

这是两个相关的类(class),如果需要的话我可以发布更多:

public class GamePanel extends JPanel {

Launcher launcher1;
Background bground1;
public static Shot shot;
public int shotCounter;
public int rCount;
public int cCount;
Timer timer;
Timer eTimer;
Timer rTimer;
Timer cTimer;
Russia russia;
China china;
public ArrayList<Object> enemies;


public GamePanel() throws IOException {
super();
enemies = new ArrayList<>();
this.shotCounter = 0;
launcher1 = new Launcher();
bground1 = new Background();
timer = new Timer(10, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
componentMove(3);
repaint();
}
});
rTimer = new Timer(10, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
componentMove(1);
repaint();
}
});
cTimer = new Timer(10, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
componentMove(2);
repaint();
}
});
eTimer = new Timer(10, new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
addEnemy();
eTimer.setDelay(7000);
repaint();
}
});
eTimer.start();
}//end constructor

@Override
protected void paintComponent(Graphics g) {
super.paintComponent(g);
g.drawImage(bground1.background, 0, 0, getWidth(), getHeight(), null);
g.drawImage(launcher1.baldEagleImage, launcher1.getLxCoord(), launcher1.lyCoord, null);//paint the launcher
if (rCount == 1) {
g.drawImage(russia.image, russia.getXCoord(), russia.getYCoord(), null);
rTimer.start();
}
if (cCount == 1) {
g.drawImage(china.image, china.getXCoord(), china.getYCoord(), null);
cTimer.start();
}
if (shotCounter == 1) {
g.drawImage(shot.mcDShotImage, shot.staticXLauncherCoord, shot.getSyCoord(), null);
timer.start();
}
}//end paintComponent method

public void move(GamePanel gamePanel) {
launcher1.moveX();
repaint();
}//end move method

public void componentMove(int c) {
if (c == 1) {
do {
russia.move();
} while (!collisionDetected(russia));
} else if (c == 2) {
do {
china.move();
} while (!collisionDetected(china));
} else if (c == 3) {
shot.moveY();
}
}

public boolean collisionDetected(Entity object) {
// Create variables to hold temporary values to check for ball colision
int oTempX = object.getXCoord();
int oTempY = object.getYCoord();
int oTempW = object.getImageWidth();
int oTempH = object.getImageHeight();
int sTempX = shot.staticXLauncherCoord;
int sTempY = shot.getSyCoord(); // THIS IS THE EXCEPTION
int sTempH = shot.mcDShotImage.getHeight();
int sTempW = shot.mcDShotImage.getWidth();
double xDiff = Math.pow((oTempX - sTempX), 2);
double yDiff = Math.pow((oTempY - sTempY), 2);
double hSum = Math.pow(oTempH + sTempH, 2);
double wSum = Math.pow(oTempW + sTempW, 2);
if (shotCounter == 1) {
if ((xDiff + yDiff) <= hSum) {//use the ball heights to check if two balls intersect
if ((xDiff + yDiff) <= wSum) {//use the ball widths to check if two balls intersect
enemies.remove(this);
repaint();
return true;
} else {
return false;
}
} else {
return false;
}
} else {
return false;
}
}

public void addShot() {
try {
shot = new Shot();
shotCounter = 1;
repaint();
} catch (IOException ex) {
}
}

public void addEnemy() {
int enemy = (int) (Math.round(Math.random()));
if (enemy == 0) {
try {
enemies.add(russia = new Russia());
rCount = 1;
repaint();
} catch (IOException ex) {
}
} else {
try {
enemies.add(china = new China());
cCount = 1;
repaint();
} catch (IOException ex) {
}
}
}

}//end GamePanel class


public class Shot {

public int syCoord;
public int sRise = 1;
public BufferedImage mcDShotImage;
GamePanel gPanel;
public static int staticXLauncherCoord;

public Shot() throws IOException {
staticXLauncherCoord = Launcher.getLxCoord() + 10;
syCoord = 381;
mcDShotImage = ImageIO.read(new File("mcdonaldsarchesshot.jpg"));
}//end constructor

public void moveY() {
do {
syCoord -= sRise;
setSyCoord(syCoord);
} while (syCoord <= 1);
}//end moveY method

public void setSyCoord(int syCoord) {
this.syCoord = syCoord;
}

public int getSyCoord() {
return syCoord;
}

}//end Shot class

这是异常打印输出:

Exception in thread "AWT-EventQueue-0" java.lang.NullPointerException
at GamePanel.collisionDetected(GamePanel.java:125)
at GamePanel.componentMove(GamePanel.java:112)
at GamePanel$3.actionPerformed(GamePanel.java:65)
at javax.swing.Timer.fireActionPerformed(Timer.java:312)
at javax.swing.Timer$DoPostEvent.run(Timer.java:244)
at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:251)
at java.awt.EventQueue.dispatchEventImpl(EventQueue.java:733)
at java.awt.EventQueue.access$200(EventQueue.java:103)
at java.awt.EventQueue$3.run(EventQueue.java:694)
at java.awt.EventQueue$3.run(EventQueue.java:692)
at java.security.AccessController.doPrivileged(Native Method)
at java.security.ProtectionDomain$1.doIntersectionPrivilege(ProtectionDomain.java:76)
at java.awt.EventQueue.dispatchEvent(EventQueue.java:703)
at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:242)
at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:161)
at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:150)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:138)
at java.awt.EventDispatchThread.run(EventDispatchThread.java:91)

最佳答案

您在何处/何时调用 addShot?这是初始化 shot 时显示的唯一逻辑(通过 shot = new Shot())。

从您的堆栈跟踪来看,似乎 actionPerformed 调用了 componentMove ,后者又调用了 collisionDetected,但这些都没有调用 addShot 因此您的公共(public)静态 shot 从未初始化并且为 null(因此是异常(exception))。

请注意,访问 shot 的公共(public)静态 staticXLauncherCoord 不是问题,因为它是静态的并且不绑定(bind)到 Shot 的实例。

关于java - 尝试获取对象的 y 坐标时无法解决 NullPointerException,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23252714/

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