-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgrid.js
202 lines (157 loc) · 3.99 KB
/
grid.js
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
var id = -1;
//wall cases
var CROSS_RD = -1;//no wall
var LEFT_ONLY = 0;
var TOP_ONLY = 1;
var RIGHT_ONLY = 2;
var BOTTOM_ONLY = 3;
var LEFT_RIGHT = 4;
var LEFT_TOP = 5;
var LEFT_BOTTOM = 6;
var RIGHT_TOP = 7;
var RIGHT_BOTTOM = 8;
var TOP_BOTTOM = 9;
var BOTTOM_LEFT_TOP = 10;
var LEFT_TOP_RIGHT = 11;
var TOP_RIGHT_BOTTOM = 12;
var RIGHT_BOTTOM_LEFT = 13;
var EMPTY_GRID = 14;
var CLOSED_GRID = 15;
function Grid (xCord, yCord, gridType, beanType) {
this.x = xCord;
this.y = yCord;
this.gridType = gridType===undefined? EMPTY_GRID : gridType;
this.beanType = beanType;
}
Grid.prototype.getRow = function() {
return getRowIndex(this.y);
};
Grid.prototype.getCol = function() {
return getColIndex(this.x);
};
Grid.prototype.hasBean = true;
Grid.prototype.toString = function() {
return "Grid ("+this.x+","+this.y+") - Grid Type: " + this.gridType;
};
Grid.prototype.draw = function() {
ctx.fillStyle = BG_COLOR;
ctx.fillRect(this.x, this.y, GRID_WIDTH, GRID_HEIGHT);
var gridType = this.gridType ;
if(gridType === undefined || gridType === EMPTY_GRID){
this.drawBean();
return;
}
switch(gridType){
case LEFT_ONLY:
this.addLeftEdge();
break;
case RIGHT_ONLY:
this.addRightEdge();
break;
case TOP_ONLY:
this.addTopEdge();
break;
case BOTTOM_ONLY:
this.addBottomEdge();
break;
case LEFT_RIGHT:
this.addLeftEdge();
this.addRightEdge();
break;
case LEFT_TOP:
this.addLeftEdge();
this.addTopEdge();
break;
case LEFT_BOTTOM:
this.addLeftEdge();
this.addBottomEdge();
break;
case RIGHT_TOP:
this.addRightEdge();
this.addTopEdge();
break;
case RIGHT_BOTTOM:
this.addRightEdge();
this.addBottomEdge();
break;
case TOP_BOTTOM:
this.addTopEdge();
this.addBottomEdge();
break;
case CROSS_RD:
this.makeCrossRoad();
break;
case LEFT_TOP_RIGHT:
this.addLeftEdge();
this.addTopEdge();
this.addRightEdge();
break;
case TOP_RIGHT_BOTTOM:
this.addTopEdge();
this.addRightEdge();
this.addBottomEdge();
break;
case RIGHT_BOTTOM_LEFT:
this.addRightEdge();
this.addBottomEdge();
this.addLeftEdge();
break;
case BOTTOM_LEFT_TOP:
this.addBottomEdge();
this.addLeftEdge();
this.addTopEdge();
break;
case CLOSED_GRID:
this.addLeftEdge();
this.addTopEdge();
this.addBottomEdge();
this.addRightEdge();
break;
default:
break;
}
this.drawBean();
};
Grid.prototype.addLeftEdge = function() {
ctx.fillStyle = BORDER_COLOR;
ctx.fillRect(this.x, this.y, WALL_WIDTH, GRID_HEIGHT);
};
Grid.prototype.addRightEdge = function() {
ctx.fillStyle = BORDER_COLOR;
ctx.fillRect(this.x+GRID_WIDTH - WALL_WIDTH , this.y, WALL_WIDTH , GRID_HEIGHT);
};
Grid.prototype.addTopEdge = function() {
ctx.fillStyle = BORDER_COLOR;
ctx.fillRect(this.x, this.y, GRID_WIDTH, WALL_WIDTH);
};
Grid.prototype.addBottomEdge = function() {
ctx.fillStyle = BORDER_COLOR;
ctx.fillRect(this.x, this.y + GRID_HEIGHT - WALL_WIDTH, GRID_WIDTH, WALL_WIDTH);
};
Grid.prototype.makeCrossRoad = function() {
ctx.fillStyle = BORDER_COLOR;
ctx.fillRect(this.x, this.y, WALL_WIDTH, WALL_WIDTH);
ctx.fillRect(this.x + GRID_WIDTH - WALL_WIDTH, this.y, WALL_WIDTH, WALL_WIDTH);
ctx.fillRect(this.x, this.y + GRID_HEIGHT - WALL_WIDTH, WALL_WIDTH, WALL_WIDTH);
ctx.fillRect(this.x + GRID_WIDTH - WALL_WIDTH, this.y + GRID_HEIGHT - WALL_WIDTH, WALL_WIDTH, WALL_WIDTH);
};
//draw a bean at the center of this grid
Grid.prototype.drawBean = function() {
var beanType = this.beanType;
var centerX = this.x + GRID_WIDTH/2;
var centerY = this.y + GRID_HEIGHT/2;
ctx.fillStyle = BEAN_COLOR;
if(beanType === undefined){
return;
}
if(beanType === NORMAL_BEAN){
circle(ctx, centerX, centerY, NORMAL_BEAN_RADIUS);
}
else if(beanType === POWER_BEAN){
circle(ctx, centerX, centerY, POWER_BEAN_RADIUS);
}
else{
//unkwon bean type
return;
}
};