shape
This commit is contained in:
parent
f3b15428e7
commit
23c795a2e7
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -12,8 +12,15 @@ public class Board extends JPanel
|
||||
public static final int BOARD_WIDTH=10;
|
||||
public static final int BOARD_HEIGHT=20;
|
||||
public static final int BLOCK_SIZE=30;
|
||||
|
||||
public static final int BOARDRIGHT_WIDTH=15;
|
||||
public static final int BOARDRIGHT_HEIGHT=5;
|
||||
private Timer loop;
|
||||
private Color[][] board = new Color[BOARD_WIDTH][BOARD_HEIGHT];
|
||||
private Color[] [] shape ={
|
||||
{Color.YELLOW,Color.YELLOW,Color.YELLOW},
|
||||
{null,Color.YELLOW,null}
|
||||
};
|
||||
|
||||
public Board() {
|
||||
loop = new Timer(500, new ActionListener() {
|
||||
@ -30,16 +37,28 @@ public class Board extends JPanel
|
||||
@Override
|
||||
protected void paintComponent(Graphics g) {
|
||||
super.paintComponent(g);
|
||||
g.fillRect(0,0,getWidth(),getHeight());
|
||||
g.fillRect(0, 0, getWidth(), getHeight());
|
||||
g.setColor(Color.DARK_GRAY);
|
||||
|
||||
for(int row= 0; row< BOARD_HEIGHT;row++)
|
||||
{
|
||||
//shape mit 2-Forschleife
|
||||
for(int i=0;i< shape.length;i++){
|
||||
for(int j = 0;j< shape[0].length;j++){
|
||||
if(shape[i][j] !=null){
|
||||
g.setColor(shape[i][j]);
|
||||
g.fillRect(i*BLOCK_SIZE,j*BLOCK_SIZE,BLOCK_SIZE,BLOCK_SIZE);
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
for (int row = 0; row < BOARD_HEIGHT+1; row++) {
|
||||
g.drawLine(0, BLOCK_SIZE * row, BLOCK_SIZE * BOARD_WIDTH, BLOCK_SIZE * row);
|
||||
}
|
||||
for(int col= 0; col< BOARD_WIDTH +1; col++)
|
||||
{
|
||||
for (int col = 0; col < BOARD_WIDTH+1; col++) {
|
||||
g.drawLine(col * BLOCK_SIZE, 0, col * BLOCK_SIZE, BLOCK_SIZE * BOARD_HEIGHT);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
@ -1,6 +1,6 @@
|
||||
package Tetris;
|
||||
|
||||
import javax.swing.JFrame;
|
||||
import javax.swing.JLabel;
|
||||
|
||||
public class GameGui {
|
||||
public static final int width= 500, height =650;
|
||||
@ -15,6 +15,7 @@ public class GameGui {
|
||||
window.setVisible(true);
|
||||
board = new Board();
|
||||
window.add(board);
|
||||
|
||||
}
|
||||
public static void main(String [] args)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user