-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBoard.java
233 lines (198 loc) · 5.87 KB
/
Board.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
package AEIOU;
import java.awt.*;
import java.awt.event.*;
import java.util.LinkedHashSet;
import java.util.Random;
import java.util.Set;
import javax.swing.*;
public class Board extends JPanel implements ActionListener, KeyListener {
/**
*
*/
private static final long serialVersionUID = 1L;
// controls the delay between each tick
private final int DELAY = 15;
// size of the board
public static final int TILE_SIZE = 45;
public static final int ROWS = 17;
public static final int COLUMNS = 13;
// timer
private Timer timer;
// objects that appear on the game board
private Player player;
// controls how many bot on the board
private Bot[] bot = new Bot[12];
private int j;
private static int numbot = 12;
// controls how many obstructions on the board
private static int[] ramdomObSpwanX;
private static int[] ramdomObSpwanY;
private static Hole[] holes;
private static Rock[] rocks;
private static Tree[] trees;
public Board() {
// set the game board size
standBoard.modeSet();
setPreferredSize(new Dimension(TILE_SIZE * COLUMNS, TILE_SIZE * ROWS));
// set the game board background color
setBackground(new Color(255, 81, 28, 255));
int i;
// initialize the game state
player = new Player();
// bot
bot[0] = new Bot(player.sentPosition());
for (i = 1; i < numbot; i++) {
bot[i] = new Bot();
}
// obstructions
holes = new Hole[Hole.holeIndex];
rocks = new Rock[Rock.rockIndex];
trees = new Tree[Tree.treeIndex];
int sameTree = Tree.treeIndex;
// rocks
ramdomObSpwanX = spwan(Rock.rockIndex, 12);
ramdomObSpwanY = spwan(Rock.rockIndex, 13);
for (i = 0; i < Rock.rockIndex; i++) {
rocks[i] = new Rock(ramdomObSpwanX[i], ramdomObSpwanY[i]);
}
// trees
int start = 0;
while (true) {
ramdomObSpwanX = spwan(sameTree, 12);
ramdomObSpwanY = spwan(sameTree, 6);
for (i = start, j = 0; j < ramdomObSpwanX.length; i++, j++) {
if (standBoard.checkPosition[ramdomObSpwanY[j]][ramdomObSpwanX[j]] == 0) {
trees[i] = new Tree(ramdomObSpwanX[j], ramdomObSpwanY[j]);
sameTree--;
} else
i--;
}
if (sameTree == 0)
break;
else {
start = Tree.treeIndex - sameTree - 1;
}
}
// holes
ramdomObSpwanY = spwan(Hole.holeIndex, 9);
for (i = 0; i < Hole.holeIndex; i++) {
holes[i] = new Hole(ramdomObSpwanY[i]);
}
// this timer will call the actionPerformed() method every DELAY ms
timer = new Timer(DELAY, this);
timer.start();
}
private int[] spwan(int needNum, int maxRan) {
Random r = new Random();
// use LinkedHashSet to maintain insertion order
int[] spwanSent = new int[needNum];
int i = 0;
Set<Integer> spwanPoint = new LinkedHashSet<Integer>();
while (spwanPoint.size() < needNum) {
Integer next = r.nextInt(maxRan) + 1;
// adding to a set, this will automatically do a containment check
if (next > 2)
spwanPoint.add(next);
}
for (Integer s : spwanPoint) {
spwanSent[i++] = s;
}
return spwanSent; // sent array of int
}
@Override
public void actionPerformed(ActionEvent e) {
// this method is called by the timer every DELAY.
// update the state of game and animation before the graphics are redrawn.
// calling repaint() will trigger paintComponent() to run again,
// which will refresh/redraw the graphics.
repaint();
}
@Override
public void paintComponent(Graphics g) {
super.paintComponent(g);
// when calling g.drawImage() , use "this" for the ImageObserver
// draw graphics.
int i;
// Background
drawBackground(g);
// Player
player.draw(g, this);
// Bot
for (i = 0; i < numbot; i++) {
bot[i].draw(g, this);
}
// Obstructions
for (i = 0; i < Hole.holeIndex; i++) {
if (holes[i].getSpawn()) {
holes[i].draw(g, this);
}
}
for (i = 0; i < Rock.rockIndex; i++) {
if (rocks[i].getPos().y + 1 == player.getPos().y && rocks[i].getPos().x == player.getPos().x)
rocks[i].draw(g, this);
else if (rocks[i].getPos().x - 1 == player.getPos().x && rocks[i].getPos().y == player.getPos().y)
rocks[i].draw(g, this);
else if (rocks[i].getPos().x + 1 == player.getPos().x && rocks[i].getPos().y == player.getPos().y)
rocks[i].draw(g, this);
else if (rocks[i].getPos().y - 1 == player.getPos().y && rocks[i].getPos().x == player.getPos().x)
rocks[i].draw(g, this);
}
for (i = 0; i < Tree.treeIndex; i++) {
if (trees[i].getnowSpawn()) {
trees[i].draw(g, this);
} else if (trees[i].getPos().y + 3 == player.getPos().y) {
trees[i].draw(g, this);
}
}
// this smooths out animations
Toolkit.getDefaultToolkit().sync();
}
@Override
public void keyTyped(KeyEvent e) {
}
@Override
public void keyPressed(KeyEvent e) {
// react to key events
int i;
player.keyPressed(e);
for (i = 0; i < Hole.holeIndex; i++) {
if (!holes[i].getnowSpawn())
if (player.getPos().y == holes[i].getPos().y) {
holes[i].holeSet(player.getPos());
}
}
}
@Override
public void keyReleased(KeyEvent e) {
}
private void drawBackground(Graphics g) {
// draw a background
g.setColor(new Color(255, 217, 18, 255));
for (int row = 0; row < ROWS; row++) {
for (int col = 0; col < COLUMNS; col++) {
if ((row + col) % 2 == 1) {
if (row == ROWS - 1)
g.setColor(new Color(28, 105, 223, 255));
// draw a square tile at the current row/column position
// fillRect(int x, int y, int width, int height);
g.fillRect(col * TILE_SIZE, row * TILE_SIZE, TILE_SIZE, TILE_SIZE);
}
}
}
// bot Move but in condition of botMove in App
if (standBoard.botMove) {
for (int i = 0; i < numbot; i++) {
bot[i].runPosition();
}
standBoard.botMove = false;
}
// Check hidden state of player
if (player.getPos().y - 1 > -1)
if (standBoard.checkPosition[player.getPos().y - 1][player.getPos().x] == 1
|| standBoard.checkPosition[player.getPos().y - 1][player.getPos().x] == 5) {
standBoard.hide = true;
} else {
standBoard.hide = false;
}
}
}