-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpart6.js
473 lines (380 loc) · 11.1 KB
/
part6.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
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
class ECS
{
static componentsByIndex = [] //gets replaced.
static entityArcheTypes = {} //gets replaced.
static systems = [] //gets replaced.
static processComponents()
{
for (let system of ECS.systems)
{
for (let e = 0; e < ENTITIES_COUNT; e++)
{
if (ECS.systemDependenciesMetByEntity(system, e))
{
system.update(e);
}
}
}
}
static systemDependenciesMetByEntity(system, e)
{
let depsMet = true; //assume true until proven false
for (let c of system.componentDependencies)
{
depsMet = depsMet && ECS.componentsByIndex[c].array[e].isActive;
}
return depsMet;
}
// Populate component data arrays unconditionally for all entities (object instances).
// In C we could skip this loop, just malloc() array-of-struct correctly and be done.
static populateComponentArrays()
{
//define the object (structure) of each element of the entity-component table.
for (let c = 0; c < ECS.componentsByIndex.length; c++)
{
let component = ECS.componentsByIndex[c];
let prototype_ = component.prototype;
let array = component.array;
for (let e = 0; e < ENTITIES_COUNT; e++)
{
array[e] = structuredClone(prototype_);
}
}
}
// Initialise conditionally depending on each entity's given archetype.
static initialiseComponentArrays(entitiesRawData)
{
for (let e = 0; e < ENTITIES_COUNT; e++)
{
let entityArcheTypeIndex = entitiesRawData[e].archeType;
let entityArcheType = ECS.entityArcheTypes[entityArcheTypeIndex];
for (let c of entityArcheType)//.componentDeps)
{
let component = ECS.componentsByIndex[c];
component.init(component.array[e], entitiesRawData[e][c]);
component.array[e].isActive = true;
}
}
}
static setUpComponents(componentTypesByIndex)
{
for (let componentType of componentTypesByIndex)
{
const component = {init: componentType.init, prototype: componentType.prototype, array: new Array(ENTITIES_COUNT)};
ECS.componentsByIndex.push(component);
}
}
}
//--- Constants ---//
const canvas = document.getElementsByTagName('canvas')[0];
const context = canvas.getContext('2d');
const colors = ["red", "green", "blue", "cyan", "magenta", "yellow"];
const TANKS_COUNT = 4;
const BULLETS_COUNT = TANKS_COUNT; //one bullet per tank
const ENTITIES_COUNT = TANKS_COUNT + BULLETS_COUNT;
//treat the first indices as the tanks, and the last indices as their bullets, in the same order.
const GAP_BETWEEN_TANKS = canvas.width / TANKS_COUNT;
const BULLET_RADIUS = 3;
const TURRET_ANGLE_MIN = 0;
const TURRET_ANGLE_MAX = 2 * Math.PI;
const TURRET_RELOADTIME_MIN = 10;
const TURRET_RELOADTIME_MAX = 30;
const TURRET_GUNPOWER_MIN = 7;
const TURRET_GUNPOWER_MAX = 20;
const TRACK_SPEED_MIN = 1;
const TRACK_SPEED_MAX = 5;
const HULL_WIDTH = 28;
const HULL_HEIGHT = 34;
//--- General purpose functions ---//
let turn = 0;
function gameLoop()
{
console.log("Processing turn", turn, "...");
context.fillStyle = "white";
context.clearRect(0, 0, canvas.width, canvas.height);
context.fillRect (0, 0, canvas.width, canvas.height);
ECS.processComponents(); //call our ECS to process everything.
turn++;
}
function lerp(min, max, t)
{
let diff = max - min;
return min + diff * t;
}
function funcNull(component, data) {} //"null pattern"
//--- Component (proto)types and initialisers ---//
const transform =
{
prototype:
{
isActive: false,
x: 0,
y: 0,
},
init: function(transform, data)
{
if (data)
{
for (let prop in data)
{
transform[prop] = data[prop];
}
}
else
{
//nothing, leave as is
}
}
};
const motion =
{
prototype:
{
isActive: false,
dx: 0,
dy: 0,
},
init: funcNull
};
const hull =
{
prototype:
{
isActive: false,
health: 0
},
init: funcNull
};
const payload =
{
prototype:
{
isActive: false,
damage: 0
},
init: funcNull
};
const turret =
{
prototype:
{
isActive: false,
angle: 0, //in radians
reloadTime: 0, //time it always takes this tank to reload
reloadCountdown: 0, //time until current reload completes
gunPower: 0
},
init: function (turret, data)
{
if (data)
{
for (let prop in data)
{
turret[prop] = data[prop];
}
}
else
{
turret.angle = parseInt( lerp(TURRET_ANGLE_MIN, TURRET_ANGLE_MAX, Math.random()) );
turret.angleDelta = (Math.random() - 0.5) / 5; //range: -0.1 .. +0.1 radians
turret.reloadTime = parseInt( lerp(TURRET_RELOADTIME_MIN, TURRET_RELOADTIME_MAX, Math.random()) );
turret.reloadCountdown = turret.reloadTime;
turret.gunPower = parseInt( lerp(TURRET_GUNPOWER_MIN, TURRET_GUNPOWER_MAX, Math.random()) );
}
}
};
const track =
{
prototype:
{
isActive: false,
speed: 0
},
init: function(track, data)
{
if (data)
{
for (let prop in data)
{
track[prop] = data[prop];
}
}
else
{
track.speed = parseInt( lerp(TRACK_SPEED_MIN, TRACK_SPEED_MAX, Math.random()) );
}
}
};
//--- Systems functions (only) ---//
function updateMotionFromTracks(e)
{
let trackLefts = ECS.componentsByIndex[COMPONENT.TRACK_LEFT ].array;
let trackRights = ECS.componentsByIndex[COMPONENT.TRACK_RIGHT].array;
let motions = ECS.componentsByIndex[COMPONENT.MOTION].array;
let tankMotion = motions[e];
tankMotion.dy = trackLefts[e].speed + trackRights[e].speed;
}
function updateTurret(e)
{
let turrets = ECS.componentsByIndex[COMPONENT.TURRET].array;
let turret = turrets[e];
turret.angle += turret.angleDelta;
turret.reloadCountdown--;
//shoot if we can
if (turret.reloadCountdown == 0)
{
let transforms = ECS.componentsByIndex[COMPONENT.TRANSFORM].array;
let tankTransform = transforms[e];
let motions = ECS.componentsByIndex[COMPONENT.MOTION].array;
let tankMotion = motions[e];
//spawn new bullet
console.log(e, 'says bang!');
let bulletTransform = transforms[TANKS_COUNT+e];
let bulletMotion = motions [TANKS_COUNT+e];
bulletTransform.x = tankTransform.x;
bulletTransform.y = tankTransform.y;
//normalised muzzle velocity (vec length = 1.0, i.e. on unit circle)
let muzzleDx = -Math.sin(turret.angle);
let muzzleDy = Math.cos(turret.angle);
//muzzle velocity with multiplier applied
muzzleDx *= turret.gunPower;
muzzleDy *= turret.gunPower;
//final bullet velocity = tank velocity + muzzle velocity
//"muzzle velocity" is the speed of a bullet as it leaves the gun barrel, relative to the barrel.
bulletMotion.dx = tankMotion.dx + muzzleDx;
bulletMotion.dy = tankMotion.dy + muzzleDy;
bulletTransform.isActive = true;
bulletMotion .isActive = true;
turret.reloadCountdown = turret.reloadTime;
}
}
function updateTransform(e)
{
let transforms = ECS.componentsByIndex[COMPONENT.TRANSFORM].array;
let transform = transforms[e];
let motions = ECS.componentsByIndex[COMPONENT.MOTION].array;
let motion = motions[e];
transform.x += motion.dx;
transform.y += motion.dy;
}
function renderHull(e)
{
let transforms = ECS.componentsByIndex[COMPONENT.TRANSFORM].array;
let transform = transforms[e];
context.fillStyle = colors[(e % TANKS_COUNT) % colors.length]; //loop the color index
context.save(); //before translation
context.translate(transform.x, transform.y);
//draw line from start to current position.
context.fillRect( 0, 0,
1, -transform.y);
//draw hull at current position.
context.fillRect( -HULL_WIDTH/2, -HULL_HEIGHT/2, //start drawing here
HULL_WIDTH, HULL_HEIGHT); //draw this far from start
context.restore(); //undo translation
}
function renderTurret(e)
{
let transforms = ECS.componentsByIndex[COMPONENT.TRANSFORM].array;
let transform = transforms[e];
let turrets = ECS.componentsByIndex[COMPONENT.TURRET].array;
let turret = turrets[e];
context.fillStyle = colors[(e % TANKS_COUNT) % colors.length]; //loop the color index
context.save(); //before translation
context.translate(transform.x, transform.y);
context.save(); //before rotation
context.rotate(turret.angle);
context.beginPath();
context.arc(0,0, HULL_WIDTH/2, 0, 2 * Math.PI); //turret
context.rect( -HULL_WIDTH/8, HULL_WIDTH/2,
HULL_WIDTH/4, HULL_WIDTH/2); //gunbarrel
context.closePath();
context.stroke();
context.fill();
context.restore(); //undo rotation
context.restore(); //undo translation
}
function renderBullet(e)
{
let transforms = ECS.componentsByIndex[COMPONENT.TRANSFORM].array;
let transform = transforms[e];
context.fillStyle = colors[(e % TANKS_COUNT) % colors.length]; //loop the color index
context.save();
context.translate(transform.x, transform.y);
context.beginPath();
context.arc(0,0, BULLET_RADIUS, 0, 2 * Math.PI); //turret
context.closePath();
context.fill();
context.restore();
}
//--- Components ---//
//must be specified in desired order of processing!
const COMPONENT =
{
TRANSFORM: 0,
MOTION: 1,
TURRET: 2,
TRACK_LEFT: 3,
TRACK_RIGHT: 4,
HULL: 5,
PAYLOAD: 6,
};
//...must have the same order as...
const componentTypesByIndex =
[
transform,
motion,
turret,
track,
track,
hull,
payload
];
ECS.setUpComponents(componentTypesByIndex);
//--- Archetypes ---//
const ARCHETYPE =
{
NONE: 0,
TANK: 1,
BULLET: 2,
};
ECS.entityArcheTypes =
{
[ARCHETYPE.TANK ] : [COMPONENT.TRANSFORM, COMPONENT.MOTION, COMPONENT.TURRET,
COMPONENT.TRACK_LEFT, COMPONENT.TRACK_RIGHT, COMPONENT.HULL],
[ARCHETYPE.BULLET] : [COMPONENT.TRANSFORM, COMPONENT.MOTION, COMPONENT.PAYLOAD],
};
//--- Systems (funtions + their dependencies) ---//
//Systems are listed in the order in which they will run.
ECS.systems =
[
//render systems
{update: renderHull , componentDependencies: [COMPONENT.TRANSFORM, COMPONENT.HULL]},
{update: renderTurret , componentDependencies: [COMPONENT.TRANSFORM, COMPONENT.TURRET]},
{update: renderBullet , componentDependencies: [COMPONENT.TRANSFORM, COMPONENT.PAYLOAD]},
//simulate (game logic) systems
{update: updateMotionFromTracks, componentDependencies: [COMPONENT.MOTION, COMPONENT.TRACK_LEFT, COMPONENT.TRACK_RIGHT]},
{update: updateTransform, componentDependencies: [COMPONENT.TRANSFORM, COMPONENT.MOTION]},
{update: updateTurret , componentDependencies: [COMPONENT.TRANSFORM, COMPONENT.MOTION, COMPONENT.TURRET]},
];
//--- Prepped / loaded entity data ---//
//TODO we could also just populate this procedurally by range.
// it really doesn't matter as this represents arbitrary, loaded user or save data.
// can hold loaded or generated data for all tanks, could be loaded JSON.
const entitiesRawData =
[
//TANKS
{ archeType: ARCHETYPE.TANK, [COMPONENT.TRANSFORM]: {x: 64, y: 0} },
{ archeType: ARCHETYPE.TANK, [COMPONENT.TRANSFORM]: {x: 192, y: 0} },
{ archeType: ARCHETYPE.TANK, [COMPONENT.TRANSFORM]: {x: 320, y: 0} },
{ archeType: ARCHETYPE.TANK, [COMPONENT.TRANSFORM]: {x: 448, y: 0} },
//BULLETS
{ archeType: ARCHETYPE.BULLET, [COMPONENT.TRANSFORM]: {x: 0, y: 0} },
{ archeType: ARCHETYPE.BULLET, [COMPONENT.TRANSFORM]: {x: 0, y: 0} },
{ archeType: ARCHETYPE.BULLET, [COMPONENT.TRANSFORM]: {x: 0, y: 0} },
{ archeType: ARCHETYPE.BULLET, [COMPONENT.TRANSFORM]: {x: 0, y: 0} },
];
//--- Kick off processing ---//
ECS.populateComponentArrays();
ECS.initialiseComponentArrays(entitiesRawData);
ECS.processComponents(); //to ensure initial render.
document.addEventListener('keyup', event => { if (event.code === 'Space') gameLoop(); })