Compare commits

...

5 Commits

Author SHA1 Message Date
zhe
23c795a2e7 shape 2021-11-12 17:32:14 +01:00
zhe
f3b15428e7 Flächen 2021-11-11 14:48:14 +01:00
zhe
936f6670e9 Merge remote-tracking branch 'origin/master'
# Conflicts:
#	out/production/Tetris/Tetris/Board$1.class
#	out/production/Tetris/Tetris/Board.class
2021-11-11 14:45:58 +01:00
zhe
124a4649b0 Merge remote-tracking branch 'origin/master' 2021-11-11 14:45:35 +01:00
zhe
2d3e3289f9 Größe 2021-11-11 14:32:42 +01:00
6 changed files with 29 additions and 7 deletions

1
.idea/.name generated Normal file
View File

@ -0,0 +1 @@
GamePanel.java

View File

@ -6,13 +6,21 @@ import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JPanel;
import javax.swing.Timer;
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() {
@ -29,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);
}
}
}

View File

@ -1,9 +1,9 @@
package Tetris;
import javax.swing.JFrame;
import javax.swing.JLabel;
public class GameGui {
public static final int width= 445, height =629;
public static final int width= 500, height =650;
private Board board;
private JFrame window;
@ -15,6 +15,7 @@ public class GameGui {
window.setVisible(true);
board = new Board();
window.add(board);
}
public static void main(String [] args)
{