steine stapeln

This commit is contained in:
zhe 2021-12-13 13:18:15 +01:00
parent ce85efaf76
commit 58cd1d05f0
2 changed files with 77 additions and 43 deletions

View File

@ -6,6 +6,7 @@ import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.event.KeyEvent;
import java.awt.event.KeyListener;
import java.util.Random;
import javax.swing.JPanel;
import javax.swing.Timer;
@ -15,7 +16,7 @@ public class Board extends JPanel implements KeyListener
private static int FPS =60;
private static int delay =FPS/1000;
public static final int BOARD_WIDTH=11;
public static final int BOARD_WIDTH=10;
public static final int BOARD_HEIGHT=20;
public static final int BLOCK_SIZE=30;
@ -23,6 +24,7 @@ public class Board extends JPanel implements KeyListener
private Color[][] board = new Color[BOARD_HEIGHT][BOARD_WIDTH];
private Stein [] steine=new Stein[7];
private Stein currenStein;
private Random ran;
private Color[] colors ={Color.decode("#ff00bf"),Color.decode("#0000ff"),Color.decode("#00ff80"),Color.decode("#ff8000"),Color.decode("#ffb3b3"),
Color.decode("#8000ff"),Color.decode("#ff0040"),};
@ -30,13 +32,16 @@ private Color[] colors ={Color.decode("#ff00bf"),Color.decode("#0000ff"),Color.d
public Board() {
ran = new Random();
steine[0]= new Stein(new int[][]{
{1,1,1,1}
}, this,colors[0]);
steine[1]= new Stein(new int[][]{
{1,1,1},
{0,1,0}
}, this,colors[0]);
steine[1]= new Stein(new int[][]{
{1,1},
{1,1}
}, this,colors[1]);
steine[2]= new Stein(new int[][]{
{1,1,1},
@ -55,8 +60,7 @@ private Color[] colors ={Color.decode("#ff00bf"),Color.decode("#0000ff"),Color.d
{0,1,1}
}, this,colors[5]);
steine[6]= new Stein(new int[][]{
{1,1},
{1,1}
{1,1,1,1}
}, this,colors[6]);
currenStein= steine[0];
@ -81,7 +85,7 @@ private Color[] colors ={Color.decode("#ff00bf"),Color.decode("#0000ff"),Color.d
public void setCurrenStein() {
currenStein = steine[1];
currenStein = steine[ran.nextInt(steine.length)];
currenStein.reset();
}

View File

@ -24,6 +24,7 @@ public class Stein {
this.board = board;
this.color = color;
}
public void setX(int x) {
this.x = x;
}
@ -38,6 +39,7 @@ public class Stein {
collision = false;
}
public void update() {
if (collision) {
for (int row = 0; row < coords.length; row++) {
@ -50,27 +52,55 @@ public class Stein {
board.setCurrenStein();
return;
}
if(!(x + deltax + coords[0].length >11) && !(x + deltax<0))
{
boolean moveX=true;
if (!(x + deltax + coords[0].length > 11) && !(x + deltax < 0)) {
for (int row = 0; row < coords.length; row++) {
for (int col = 0; col < coords[row].length; col++) {
if(coords[row][col] !=0) {
if (board.getBoard()[y + row][x + deltax + col] != null) {
moveX = true;
}
}
}
}
if(moveX){
x += deltax;
}
}
deltax = 0;
if (System.currentTimeMillis() - beginTime > delayTime) {
if (!(y + 1+coords.length > BOARD_HEIGHT)) {
for (int row = 0; row < coords.length; row++) {
for (int col = 0; col < coords[row].length; col++) {
if (coords[row][col] != 0){
if (board.getBoard()[y +1 + row][x - deltax + col] != null) {
collision = true;
}
}
}
}
if (!collision) {
y++;
}
} else {
collision = true;
}
beginTime = System.currentTimeMillis();
}
}
public void render(Graphics g){
for(int row=0;row< coords.length;row++){
for(int col = 0;col< coords[0].length;col++){
if(coords[row][col] !=0){
g.setColor(Color.yellow);
g.setColor(color);
//
g.fillRect(col*BLOCK_SIZE+x*BLOCK_SIZE,row*BLOCK_SIZE+y*BLOCK_SIZE,BLOCK_SIZE,BLOCK_SIZE);
}