2

亲爱的stackoverflow的好人

我的一群朋友正在尝试用 Java 制作关卡编辑器。

我们有一个 Jpanel 而不是 Jframe,我们正试图从保存为字符串的文件路径中将小图像放到 Jpanel 上。最后,我们想要一个您可以直接放入的图像列表。到目前为止,我们已经尝试了一些方法,但都没有成功。

我们可以加载图像,但是我们无法让这些图像实际显示,解决上述问题的最佳方法是什么?

以下是我们目前所拥有的样本。

EnemyPlacementGrid = new JPanel();
EnemyPlacementGrid.addMouseListener(new MouseAdapter() {
    //@Override
    public int mouseX;
    public int mouseY;
    public void mouseClicked(MouseEvent arg0) { //what happens when you click in the EnemyPlacementGrid
        System.out.println("Correct Area for placement");
        mouseX = arg0.getX();
        mouseY = arg0.getY();
        //System.out.println("X:" + mouseX + ", Y:" + mouseY );
        Enemy newEnemy = workingEnemy.cloneSelf();
        newEnemy.setLocation(mouseX, mouseY);
        System.out.println("newEnemy object: " + newEnemy);
        System.out.println(newEnemy.weaponList);
        currentWave.addEnemy(newEnemy);
        System.out.print(currentLevel);
    }
});

非常感谢任何和所有帮助。

更新:

到目前为止,我已经出现了一张图片,但是我无法更新该图片。注意以下代码:

public void run() {
                try {
                     BufferedImage img = ImageIO.read(new File(IMG_PATH));
                     ImageIcon icon = new ImageIcon(img);
                     WaveScreen frame = new WaveScreen();

                     JPanel panel = (JPanel)frame.getContentPane();  
                     JLabel label = new JLabel();  
                     label.setIcon(new ImageIcon("images/map_on.png"));// your image here  
                     panel.add(label);  


                    frame.setVisible(true);
                    panel.add(label);
                    panel.repaint(); 

                } catch (Exception e) {
                    e.printStackTrace();
                } 

更新,从评论中尝试的方法:

Graphics2D g = null;
                        Graphics2D g2 = (Graphics2D)g;
                        Image imageVariable = new ImageIcon("images/map_on.png").getImage();
                       g.drawImage(imageVariable, mouseX, mouseY, null);
4

2 回答 2

2

好吧,我会说尝试使用图形,这意味着您需要覆盖绘制方法;我建议您将 mouseX 和 mouseY 作为全局变量...</p>

// creating global image variable for use later
Image imageVariable = new ImageIcon("image path").getImage();

public void paintComponent(Graphics g) {
   // here you could either create a Graphics2D object
   // Graphics2D g2 = (Graphics2D)g;
   // or you could use the g parameter as it is, doesn't matter.
   // use the global variable for the image to be drawn onto the screen
   // use the global value of the mouseX and mouseY for where you click the mouse
   // to place the image, and this should be it 
   g.drawImage(imageVariable, mouseX, mouseY, null);
}

希望这可以帮助!

于 2013-08-11T00:56:42.917 回答
2

如果游戏很简单,user2277872 的解决方案将起作用,您可以使用 java 中的 graphics2D。但是,如果您计划开发更复杂的游戏(大量交互、大量纹理),那么用于 2D 图形的默认 Java 框架将被证明太慢。

如果您计划开发这样的游戏,我强烈建议您学习 OpenGL 或使用现有的图形框架,例如

JMonkeyEngine ( http://jmonkeyengine.com/ ) 或 Slick ( http://slick.cokeandcode.com/index.php )

更多信息:我应该使用什么来显示游戏图形?

于 2013-08-11T01:09:59.497 回答