简体   繁体   English

Java如何制作可以通过单击按钮绘制的形状

[英]Java how to make a shape(s) that can be draw by clicking button

im creating a 2d world which has a player that is in a rectangle shape and what im trying to do is when the player press space button it draws a block depending on his direction the problem is it only sets for one block and plus it deletes it after repaiting now i know my mistake is in paint method. 我创建了一个二维世界,该世界的玩家为矩形,我要尝试做的是,当玩家按下空格键时,它会根据他的方向绘制一个方块,问题是只能设置一个方块,然后将其删除修复后,我知道我的错误在于涂漆方法。 what i wanna know how to make it draws the block everytime i press space without removing after repainting and can be set for multiple times i know i should use loop but i dont know exactly i should write it 我想知道如何使它在每次按下空间时都绘制块,而无需在重新绘制后将其删除,并且可以设置多次,我知道我应该使用循环,但是我不知道我该怎么写

private static final long serialVersionUID = -1401667790158007207L;
int playerx = 450;
int playery = 450;
int playerDirection = 0;      //north = 0, west = 1, south = 2, east = 3
boolean setBlock;

public platform(){
    super("2D game");

    JPanel panel = new JPanel();
    panel.setBackground(Color.white);

    addKeyListener(this);
    this.setContentPane(panel);
}

public void paint(Graphics g){
    super.paint(g);
    Graphics2D g2 = (Graphics2D)g;

    Rectangle player = new Rectangle(playerx, playery, 50, 50);
    g2.fill(player);

    if(setBlock){

        if(playerDirection == 0){

            g2.fillRect(playerx, playery - 50, 50, 50);
        }else if(playerDirection == 1){

            g2.fillRect(playerx + 50, playery, 50, 50);
        }else if(playerDirection == 2){

            g2.fillRect(playerx, playery + 50, 50, 50);
        }else if(playerDirection == 3){

            g2.fillRect(playerx - 50, playery, 50, 50);
        }

        setBlock = false;
    }
}

public void keyPressed(KeyEvent e) {

    if(e.getKeyCode() == KeyEvent.VK_UP){

        playerDirection = 0;
        playery -=50;
        repaint();
    }
    if(e.getKeyCode() == KeyEvent.VK_DOWN){

        playerDirection = 2;
        playery +=50;
        repaint();
    }
    if(e.getKeyCode() == KeyEvent.VK_RIGHT){

        playerDirection = 1;
        playerx += 50;
        repaint();
    }
    if(e.getKeyCode() == KeyEvent.VK_LEFT){

        playerDirection = 3;
        playerx -=50;
        repaint();
    }
    if(e.getKeyCode() == KeyEvent.VK_SPACE){

        setBlock = true;
    }
}

public void keyReleased(KeyEvent e) {


}

public void keyTyped(KeyEvent e) {


}

} }

You need to store your Blocks in a List. 您需要将块存储在列表中。 And add a new one when pressing Space Key. 然后按空格键添加一个新的。 Then you can easily draw all of them in a for loop. 然后,您可以轻松地将它们全部绘制在for循环中。 Also remove that setBlock boolean because it makes no sense. 还要删除该setBlock布尔值,因为它没有意义。

...
// introduce this class to hold a block
class Block{
    public int x;
    public int y;
    public Block(int _x, int _y){
        x = _x;
        y = _y;
    }
}
...
// boolean setBlock;  // remove this boolean
ArrayList<Block> blocks = new ArrayList<Block>();  // list of all blocks

public platform(){...}

public void paint(Graphics g){
    ...    
    // if(setBlock){  // remove this boolean

        if(playerDirection == 0){
            g2.fillRect(playerx, playery, 50, 50);
        }else if(playerDirection == 1){
            g2.fillRect(playerx, playery, 50, 50);
        }else if(playerDirection == 2){
            g2.fillRect(playerx, playery, 50, 50);
        }else if(playerDirection == 3){
            g2.fillRect(playerx, playery, 50, 50);
        }
        // draw the blocks
        for(Block b : blocks)
            g2.fillRect(b.x, b.y, 50, 50);

        // setBlock = false; // remove this boolean
    //}  // remove this boolean
}

public void keyPressed(KeyEvent e) {
    ...
    if(e.getKeyCode() == KeyEvent.VK_SPACE){
        // setBlock = true;  // remove this boolean
        // add a new block
        blocks.add(new Block(playerx, playery));
        repaint();
    }
}
...

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM