Java - 更改使用 Graphics2D 创建的一些正方形的颜色

Java - Change the color of some squares created with Graphics2D

我只想创建一个 100 x 100 正方形的简单游戏,每个正方形有 5 个像素。

我创建了一个 class:

public class Draw extends JComponent{
    private List<Graphics2D> recList = new ArrayList<Graphics2D>();
    public void paint(Graphics g) {
        //THIS TO SET (0,0) PANEL START AT BOTTOM LEFT
        Graphics2D g2 = (Graphics2D)g;
        AffineTransform at = g2.getTransform();
        at.translate(0, getHeight());
        at.scale(1, -1);
        g2.setTransform(at);

        //THIS TO DRAW ALL THE SQUARES
        for (int i = 0;i<100;i++){
            for (int j=0;j<100;j++){
                g2.setColor(Color.red);
                g2.drawRect(5*i, 5*j, 5, 5);
                recList.add(g2); //Store each square to the list to change the color
            }
        }
    }
}

那我就直接拖到netbeans的设计windows上,方块就画好了,好看...

不过我好像走错了一步。第一次我想使用它们的位置从列表中获取特定方块,但是 Graphic2d 没有任何方法来获取位置(x 和 y)或更改颜色。

不知道有没有其他方法可以实现? PS: 还有一点,我可以将每个方块的位置设置为中心吗?

您可以创建自己的 Tile class,它存储 xywidthheight 等信息和 color。每个 Tile 对象也可以负责绘制自身:

class Tile {
    private int x, y, width, height;
    private Color color;

    public Tile(int x, int y, int width, int height, Color color) {
        this.x = x;
        this.y = y;
        this.width = width;
        this.height = height;
        this.color = color;
    }

    public void paint(Graphics g) {
        g.setColor(color);
        g.fillRect(x, y, width, height);
    }
}

预先创建图块:

List<Tile> tiles = ...;

void createTiles() {
    for(int x = 0; x < 100; x++) {
        for(int y = 0; y < 100; y++) {
            Color color = ...; //choose color
            int size = 5;
            int tileX = x * size;
            int tileY = y * size;
            tiles.add(new Tile(tileX, tileY, size, size, color));
        }
    }
}

然后在 paint 方法中将图形对象传递给它们进行渲染:

void paint(Graphics g) {
    tiles.forEach(tile -> tile.paint(g));
}