0

所以这里有一些代码开始。我首先创建了一个名为 Bullet 的类。这是应该加载图像的位置。

package gameLibrary;

import java.awt.*;
import javax.swing.ImageIcon;

public class Bullet {

    int x,y;
    Image img;
    boolean visible;

    public Bullet(int startX, int startY) {
        x = startX;
        y = startY;

        ImageIcon newBullet = new ImageIcon("/resources/bullet.png");
        img = newBullet.getImage();
        System.out.println("constructor Bullet is called");
        visible = true;
    }
    public void move(){
        x = x + 1;
        if(x > 854){
            System.out.println("Bullet is moving at X = " + x);
            visible = false;  
        }
    }
    public int getX(){
        return x;
    }
    public int getY() {
        return y;
    }
    public boolean getVisible(){
        return visible;
    }
    public Image getImage(){
        return img;
    }
}

当按下空格键时,它会调用一个名为 fire() 的方法,其中一个 new Bullet(X, Y); 被调用,然后将其存储在 ArrayList 中。

public void fire(){
    if(ammo > 0) {
        Bullet z = new Bullet(left + 60, y + 70);
        bullets.add(z);
        ammo--;
    }
}
public static ArrayList getBullets(){
    return bullets;
}

此代码在屏幕上移动项目符号。

ArrayList bullets = Character.getBullets();
for(int i = 0; i < bullets.size(); i++){
    Bullet m = (Bullet) bullets.get(i);
    if(m.getVisible() == true){
        m.move();
    }if(m.getVisible() == false) {
        bullets.remove(i);
    }
}

最后是 print 方法的代码。

ArrayList bullets = Character.getBullets();
for(int i = 0; i < bullets.size(); i++){
    Bullet m = (Bullet) bullets.get(0);
    g2d.drawImage(m.getImage(),m.getX(),m.getY(), null);
}

我找不到哪里出错了。据我所知,子弹的功能都是正常的,它只是在屏幕上打印图像,非常感谢任何建议。

4

2 回答 2

1

通常资源是用 Class.getResource 加载的

ImageIcon newBullet = new ImageIcon(Bullet.class.getResource("resources/bullet.png"));

当然,资源文件夹应该与您的 Bullet 类在同一个包中(即在同一个文件夹中)。无论您的游戏是否在 jar 中,该代码都应该始终有效。

于 2013-10-09T00:17:01.270 回答
0

我认为您的资源路径格式不正确。

 ImageIcon icon = new ImageIcon("gameLibrary.resources.bullet.png");

如果这不起作用,请尝试使用此代码获取您的 png 路径:

import java.io.File;  

public class GetPath  
{  
  public static void main(String[] args)  
  {  
    System.out.println("The user directory: " + System.getProperty("user.dir"));  
    File fubar = new File("Fubar.txt");  
    System.out.println("Where Java thinks file is located: " + fubar.getAbsolutePath());  
  }  
}

告诉我会发生什么。

于 2013-10-08T22:42:47.073 回答