-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraycast.js
343 lines (289 loc) · 10.8 KB
/
raycast.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
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
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
const TILE_SIZE = 64;
const MAP_NUM_ROWS = 11;
const MAP_NUM_COLS = 15;
const WINDOW_WIDTH = MAP_NUM_COLS * TILE_SIZE;
const WINDOW_HEIGHT = MAP_NUM_ROWS * TILE_SIZE;
const FOV_ANGLE = 60 * (Math.PI / 180);
const WALL_STRIP_WIDTH = 10;
const NUM_RAYS = WINDOW_WIDTH / WALL_STRIP_WIDTH;
const MINIMAP_SCALE_FACTOR = 0.2;
class Map {
constructor() {
this.grid = [
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1],
[1, 0, 0, 1, 1, 0, 0, 0, 0, 1, 1, 1, 0, 0, 1],
[1, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 1, 0, 1],
[1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1],
[1, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1],
[1, 0, 1, 1, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1],
[1, 0, 1, 1, 0, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1],
[1, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1],
[1, 0, 1, 0, 0, 1, 1, 0, 0, 1, 1, 1, 0, 0, 1],
[1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1],
[1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1]
];
}
hasWallAt(x, y) {
if (x < 0 || x > WINDOW_WIDTH || y < 0 || y > WINDOW_HEIGHT) {
return true;
}
var mapGridIndexX = Math.floor(x / TILE_SIZE);
var mapGridIndexY = Math.floor(y / TILE_SIZE);
return this.grid[mapGridIndexY][mapGridIndexX] != 0;
}
render() {
for (var i = 0; i < MAP_NUM_ROWS; i++) {
for (var j = 0; j < MAP_NUM_COLS; j++) {
var tileX = j * TILE_SIZE;
var tileY = i * TILE_SIZE;
var tileColor = this.grid[i][j] == 1 ? "#222" : "#fff";
stroke("#222");
fill(tileColor);
rect(
MINIMAP_SCALE_FACTOR * tileX,
MINIMAP_SCALE_FACTOR * tileY,
MINIMAP_SCALE_FACTOR * TILE_SIZE,
MINIMAP_SCALE_FACTOR * TILE_SIZE
);
}
}
}
}
class Player {
constructor() {
this.x = WINDOW_WIDTH / 2;
this.y = WINDOW_HEIGHT / 7;
this.radius = 4;
this.turnDirection = 0; // -1 if left, +1 if right
this.walkDirection = 0; // -1 if back, +1 if front
this.rotationAngle = Math.PI / 2;
this.moveSpeed = 4.0;
this.rotationSpeed = 3 * (Math.PI / 180);
}
update() {
this.rotationAngle += this.turnDirection * this.rotationSpeed;
var moveStep = this.walkDirection * this.moveSpeed;
var newPlayerX = this.x + Math.cos(this.rotationAngle) * moveStep;
var newPlayerY = this.y + Math.sin(this.rotationAngle) * moveStep;
if (!grid.hasWallAt(newPlayerX, newPlayerY)) {
this.x = newPlayerX;
this.y = newPlayerY;
}
}
render() {
noStroke();
fill("blue");
circle(
MINIMAP_SCALE_FACTOR * this.x,
MINIMAP_SCALE_FACTOR * this.y,
MINIMAP_SCALE_FACTOR * this.radius
);
stroke("blue");
line(
MINIMAP_SCALE_FACTOR * this.x,
MINIMAP_SCALE_FACTOR * this.y,
MINIMAP_SCALE_FACTOR * (this.x + Math.cos(this.rotationAngle) * 30),
MINIMAP_SCALE_FACTOR * (this.y + Math.sin(this.rotationAngle) * 30)
);
}
}
class Ray {
constructor(rayAngle) {
this.rayAngle = normalizeAngle(rayAngle);
this.wallHitX = 0;
this.wallHitY = 0;
this.distance = 0;
this.wasHitVertical = false;
this.isRayFacingDown = this.rayAngle > 0 && this.rayAngle < Math.PI;
this.isRayFacingUp = !this.isRayFacingDown;
this.isRayFacingRight = this.rayAngle < 0.5 * Math.PI || this.rayAngle > 1.5 * Math.PI;
this.isRayFacingLeft = !this.isRayFacingRight;
}
cast(columnId) {
var xintercept, yintercept;
var xstep, ystep;
///////////////////////////////////////////
// HORIZONTAL RAY-GRID INTERSECTION CODE
///////////////////////////////////////////
var foundHorzWallHit = false;
var horzWallHitX = 0;
var horzWallHitY = 0;
// Find the y-coordinate of the closest horizontal grid intersenction
yintercept = Math.floor(player.y / TILE_SIZE) * TILE_SIZE;
yintercept += this.isRayFacingDown ? TILE_SIZE : 0;
// Find the x-coordinate of the closest horizontal grid intersection
xintercept = player.x + (yintercept - player.y) / Math.tan(this.rayAngle);
// Calculate the increment xstep and ystep
ystep = TILE_SIZE;
ystep *= this.isRayFacingUp ? -1 : 1;
xstep = TILE_SIZE / Math.tan(this.rayAngle);
xstep *= (this.isRayFacingLeft && xstep > 0) ? -1 : 1;
xstep *= (this.isRayFacingRight && xstep < 0) ? -1 : 1;
var nextHorzTouchX = xintercept;
var nextHorzTouchY = yintercept;
if (this.isRayFacingUp)
nextHorzTouchY--;
// Increment xstep and ystep until we find a wall
while (nextHorzTouchX >= 0 && nextHorzTouchX <= WINDOW_WIDTH && nextHorzTouchY >= 0 && nextHorzTouchY <= WINDOW_HEIGHT) {
if (grid.hasWallAt(nextHorzTouchX, nextHorzTouchY)) {
foundHorzWallHit = true;
horzWallHitX = nextHorzTouchX;
horzWallHitY = nextHorzTouchY;
break;
} else {
nextHorzTouchX += xstep;
nextHorzTouchY += ystep;
}
}
///////////////////////////////////////////
// VERTICAL RAY-GRID INTERSECTION CODE
///////////////////////////////////////////
var foundVertWallHit = false;
var vertWallHitX = 0;
var vertWallHitY = 0;
// Find the x-coordinate of the closest vertical grid intersenction
xintercept = Math.floor(player.x / TILE_SIZE) * TILE_SIZE;
xintercept += this.isRayFacingRight ? TILE_SIZE : 0;
// Find the y-coordinate of the closest vertical grid intersection
yintercept = player.y + (xintercept - player.x) * Math.tan(this.rayAngle);
// Calculate the increment xstep and ystep
xstep = TILE_SIZE;
xstep *= this.isRayFacingLeft ? -1 : 1;
ystep = TILE_SIZE * Math.tan(this.rayAngle);
ystep *= (this.isRayFacingUp && ystep > 0) ? -1 : 1;
ystep *= (this.isRayFacingDown && ystep < 0) ? -1 : 1;
var nextVertTouchX = xintercept;
var nextVertTouchY = yintercept;
if (this.isRayFacingLeft)
nextVertTouchX--;
// Increment xstep and ystep until we find a wall
while (nextVertTouchX >= 0 && nextVertTouchX <= WINDOW_WIDTH && nextVertTouchY >= 0 && nextVertTouchY <= WINDOW_HEIGHT) {
if (grid.hasWallAt(nextVertTouchX, nextVertTouchY)) {
foundVertWallHit = true;
vertWallHitX = nextVertTouchX;
vertWallHitY = nextVertTouchY;
break;
} else {
nextVertTouchX += xstep;
nextVertTouchY += ystep;
}
}
// Calculate both horizontal and vertical distances and choose the smallest value
var horzHitDistance = (foundHorzWallHit) ?
distanceBetweenPoints(player.x, player.y, horzWallHitX, horzWallHitY) :
Number.MAX_VALUE;
var vertHitDistance = (foundVertWallHit) ?
distanceBetweenPoints(player.x, player.y, vertWallHitX, vertWallHitY) :
Number.MAX_VALUE;
// only store the smallest of the distances
this.wallHitX = (horzHitDistance < vertHitDistance) ? horzWallHitX : vertWallHitX;
this.wallHitY = (horzHitDistance < vertHitDistance) ? horzWallHitY : vertWallHitY;
this.distance = (horzHitDistance < vertHitDistance) ? horzHitDistance : vertHitDistance;
this.wasHitVertical = (vertHitDistance < horzHitDistance);
}
render() {
stroke("rgba(255, 0, 0, 1.0)");
line(
MINIMAP_SCALE_FACTOR * player.x,
MINIMAP_SCALE_FACTOR * player.y,
MINIMAP_SCALE_FACTOR * this.wallHitX,
MINIMAP_SCALE_FACTOR * this.wallHitY
);
}
}
var grid = new Map();
var player = new Player();
var rays = [];
function normalizeAngle(angle) {
angle = angle % (2 * Math.PI);
if (angle < 0) {
angle = (2 * Math.PI) + angle;
}
return angle;
}
function keyPressed() {
if (keyCode == UP_ARROW) {
player.walkDirection = +1;
} else if (keyCode == DOWN_ARROW) {
player.walkDirection = -1;
} else if (keyCode == RIGHT_ARROW) {
player.turnDirection = +1;
} else if (keyCode == LEFT_ARROW) {
player.turnDirection = -1;
}
}
function keyReleased() {
if (keyCode == UP_ARROW) {
player.walkDirection = 0;
} else if (keyCode == DOWN_ARROW) {
player.walkDirection = 0;
} else if (keyCode == RIGHT_ARROW) {
player.turnDirection = 0;
} else if (keyCode == LEFT_ARROW) {
player.turnDirection = 0;
}
}
function castAllRays() {
var columnId = 0;
// start first ray subtracting half of the FOV
var rayAngle = player.rotationAngle - (FOV_ANGLE / 2);
rays = [];
// loop all columns casting the rays
for (var i = 0; i < NUM_RAYS; i++) {
var ray = new Ray(rayAngle);
ray.cast(columnId);
rays.push(ray);
rayAngle += FOV_ANGLE / NUM_RAYS;
columnId++;
}
}
function render3DProjectedWalls() {
// loop every ray in the array of rays
for (var i = 0; i < NUM_RAYS; i++) {
var ray = rays[i];
// get the perpendicular distance to the wall to fix fishbowl distortion
var correctWallDistance = ray.distance * Math.cos(ray.rayAngle - player.rotationAngle);
// calculate the distance to the projection plane
var distanceProjectionPlane = (WINDOW_WIDTH / 2) / Math.tan(FOV_ANGLE / 2);
// projected wall height
var wallStripHeight = (TILE_SIZE / correctWallDistance) * distanceProjectionPlane;
// compute the transparency based on the wall distance
var alpha = 170 / correctWallDistance;
// render a rectangle with the calculated wall height
fill("rgba(255, 255, 255, " + alpha + ")");
noStroke();
rect(
i * WALL_STRIP_WIDTH,
(WINDOW_HEIGHT / 2) - (wallStripHeight / 2),
WALL_STRIP_WIDTH,
wallStripHeight
);
}
}
function normalizeAngle(angle) {
angle = angle % (2 * Math.PI);
if (angle < 0) {
angle = (2 * Math.PI) + angle;
}
return angle;
}
function distanceBetweenPoints(x1, y1, x2, y2) {
return Math.sqrt((x2 - x1) * (x2 - x1) + (y2 - y1) * (y2 - y1));
}
function setup() {
createCanvas(WINDOW_WIDTH, WINDOW_HEIGHT);
}
function update() {
player.update();
castAllRays();
}
function draw() {
clear("#111");
update();
render3DProjectedWalls();
grid.render();
for (ray of rays) {
ray.render();
}
player.render();
}