-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulation.js
765 lines (667 loc) · 25.8 KB
/
simulation.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
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
// from https://stackoverflow.com/a/7120353/5736269
Array.prototype.randomElement = function (random) {
return this[Math.floor(random.next * this.length)]
}
class Random {
constructor(seed) {
if(isNaN(seed)) {
// catch strings
seed = undefined;
}
this.seed = seed || 100;
}
// from https://stackoverflow.com/a/19303725/5736269
get next() {
var x = Math.sin(this.seed++) * 10000;
return x - Math.floor(x);
}
}
class Vector {
constructor(x,y) {
this.x = x;
this.y = y;
}
get length() {
return Math.sqrt(this.x * this.x + this.y * this.y);
}
get normalised() {
let l = this.length;
return l !== 0 ? this.multiplied(1/l) : this;
}
get clone() {
return new Vector(this.x,this.y);
}
multiplied(f) {
this.x *= f;
this.y *= f;
return this;
}
added(other) {
this.x += other.x;
this.y += other.y;
return this;
}
substracted(other) {
this.x -= other.x;
this.y -= other.y;
return this;
}
distance(other) {
let x1 = this.x;
let y1 = this.y;
let x2 = other.x;
let y2 = other.y;
return Math.sqrt((x1-x2)*(x1-x2) + (y1-y2)*(y1-y2));
}
scaled(f) {
return this.normalised.multiplied(f);
}
equals(other) {
return this.x === other.x && this.y === other.y;
}
toString() {
return "(" + this.x + "|" + this.y + ")";
}
}
class Coordinate {
constructor(x,y) {
this.x = x;
this.y = y;
}
equals(other) {
return this.x === other.x && this.y === other.y;
}
toString() {
return "[" + this.x + "|" + this.y + "]";
}
}
class Dimensions {
constructor(width, height) {
this.width = width;
this.height = height;
}
}
class Renderer {
update(delta) {}
}
class StaticRenderer extends Renderer {
constructor(dot, stage, image) {
super();
this.dot = dot;
this.stage = stage;
this.alive = true;
//https://banner2.kisspng.com/20180330/uwe/kisspng-pixel-art-sprite-rocks-5abdc79bb57505.6129861015223868437433.jpg
this.image = PIXI.Sprite.fromImage(image, true);
let w = 90; // constants bad :^(
let h = 65;
this.image.width = w;
this.image.height = h;
this.image.x = dot.position.x - w/2;
this.image.y = dot.position.y - h/2;
stage.addChild(this.image);
}
}
class DotRenderer extends Renderer {
constructor(dot, stage, radius, hexcol) {
super();
let outcol = (hexcol & 0xfefefe) >> 1;
this.dot = dot;
this.stage = stage;
this.alive = true;
this.circle = new PIXI.Graphics();
// outline
this.circle.beginFill(outcol);
this.circle.drawCircle(0,0,radius+1);
this.circle.endFill();
// dot
this.circle.beginFill(hexcol);
this.circle.drawCircle(0, 0, radius);
this.circle.endFill();
// shine
this.circle.beginFill(0xffffff,0.1);
this.circle.drawCircle(0, 0, radius-2);
this.circle.endFill();
// path
this.lines = [];
this.fadingLines = [];
this.line = new PIXI.Graphics();
let current = dot.position;
for(let i = 0; i < this.dot.path.length; i++) {
let next = this.dot.path[i];
let line = new PIXI.Graphics();
line.lineStyle(2,hexcol).moveTo(current.x, current.y);
line.lineTo(next.x,next.y);
current = next;
stage.addChild(line);
this.lines.push(line);
}
stage.addChild(this.circle);
dot.listeners.add(this);
}
onReachedCheckpoint() {
this.fadingLines.push(this.lines.shift());
}
update(stage) {
if(this.alive) {
this.circle.x = this.dot.position.x;
this.circle.y = this.dot.position.y;
for(let i = 0; i < this.fadingLines.length; i++) {
this.fadingLines[i].alpha -= DotRenderer.fadeDelta;
}
}
}
destroy() {
if(this.alive) {
this.stage.removeChild(this.circle);
this.stage.removeChild(this.line);
for(let i = 0; i < this.fadingLines.length; i++) {
this.stage.removeChild(this.fadingLines[i]);
}
this.dot.listeners.delete(this);
this.dot = null;
this.circle = null;
this.alive = false;
}
}
onDie(dot) {
this.destroy();
}
}
DotRenderer.fadeDelta = 0.04;
class CellRenderer extends Renderer {
constructor(cell, stage, dim) {
super();
this.cell = cell;
this.stage = stage;
this.dimensions = dim;
this.rect = new PIXI.Graphics();
this.rect.lineStyle(1,this.goodcol);
this.rect.drawRect(this.cell.coordinate.x * dim.width, this.cell.coordinate.y * dim.height, dim.width, dim.height);
stage.addChild(this.rect);
this.marked = false;
}
get goodcol() { return 0x094D5D; }
get badcol() { return 0xFF0000; }
mark() {
if(!this.marked) {
return;
let dim = this.dimensions;
this.rect.lineStyle(2,this.badcol);
this.rect.beginFill(this.badcol);
this.rect.drawRect(this.cell.coordinate.x * dim.width, this.cell.coordinate.y * dim.height, dim.width, dim.height);
this.marked = true;
}
}
onCollision(payload) {
let c = payload.cell;
if(c.coordinate.equals(this.cell.coordinate)) {
this.mark();
}
}
}
class EventEmitter {
constructor() {
this.listeners = new Set();
}
notify(event, payload) {
for(let l of this.listeners) {
let f = l[event];
if(f) {
f.bind(l)(payload);
}
}
}
}
class Actor extends EventEmitter {
constructor(game, pos, speed, path) {
super();
this.id = Actor.nextId++;
this.game = game;
this.pos = pos;
this.speed = speed;
this.path = path || [];
this.alive = true;
}
destroy() {
if(this.alive === true) {
this.game.despawn(this.id);
this.game = null;
this.pos = null;
this.speed = null;
this.alive = false;
this.notify("onDie", this);
}
}
set position(np) {
this.pos.x = np.x;
this.pos.y = np.y;
}
get position() {
return this.pos;
}
moveTowards(pos) {
let delta = new Vector(pos.x - this.pos.x, pos.y - this.pos.y)
this.position.added(delta.scaled(Math.min(delta.length, this.speed)));
}
estimateTime(src, dst) {
return Math.ceil(src.distance(dst)/this.speed);
}
update(delta) {
if(this.path.length === 0) {
// reached destination
this.destroy();
} else if(this.path[0].equals(this.position)) {
// reached checkpoint
let v = this.path.shift();
this.notify("onReachedCheckpoint", {"dot": this, "checkpoint": v});
// FIXME: remove for waiting!
//this.update(0); // call again to not waste a cycle
} else {
// move to next checkpoint
this.moveTowards(this.path[0]);
}
}
}
Actor.nextId = 0;
class StaticObject extends Actor {
constructor(game, pos) {
super(game, pos, 0, []);
}
update(delta) {}
}
class AStar {
constructor(grid) {
this.openlist = [];
this.closedlist = [];
this.grid = grid;
}
// Checks, whether a Cell is already in the open list.
// If so, it returns the corresponding AStarNode from the
// open list. If not, it returns NULL.
// Cell -> Maybe(AStarNode)
inOpenList(c) {
let i = this._indexOf(this.openlist, c, (x,y) => x.equals(y.element));
return i > -1 ? this.openlist[i] : null;
}
// Looks for the index of an element x in a list xs.
// f is a comparator, where the first parameter is always
// x and the second is each element of xs.
// [a] -> b -> (b -> a -> bool) -> int
_indexOf(xs, x, f) {
let i = 0;
while(i < xs.length && !f(x,xs[i])) {
i++;
}
return i < xs.length ? i : -1;
}
// Checks, whether a Cell is in the closed list.
// Cell -> bool
inClosedList(c) {
return this._indexOf(this.closedlist, c
//,([xe,xt],[ye,yt]) => xt === yt && xe.equals(ye)) > -1;
,([xe,xt],[ye,yt]) => xe.equals(ye)) > -1;
}
// Puts an AStarNode into the open list, ordered by
// its g value.
// AStarNode -> Unit
enqueue(n) {
let i = 0;
while(i < this.openlist.length && this.openlist[i].g < n.g) {
i++;
}
this.openlist.splice(i,0,n);
}
// Re-enqueues an AStarNode by removing it and inserting it again.
// This is used to keep the list ordered after updating a g value.
// AStarNode -> Unit
requeue(n) {
let i = this._indexOf(this.openlist, n
,(x,y) => x.element.equals(y.element));
if(i > -1) {
this.openlist.splice(i,1);
}
this.enqueue(n);
}
// Reconstructs a path from an AStarNode
// by following the predecessors.
// AStarNode -> [Vector]
reconstructPath(n) {
let path = [];
while(n !== null) {
path.unshift(n.element.center);
n = n.predecessor;
}
return path;
}
fixPath(p) {
let known = {};
for(let i = 0; i < p.length; i++) {
let n = p[i];
if(n in known) {
for(let j = known[n]; j < i; j++) {
p[j] = n;
}
}
known[n] = i;
}
}
// Vector -> Vector -> int -> [Vector]
findPath(srcV, dstV, it, actor) {
let src = this.grid.posToCell(srcV);
let dst = this.grid.posToCell(dstV);
this.openlist = [new AStarNode(src,0,it,null)];
do {
let current = this.openlist.shift(); // ordered by g value
if(current.element.equals(dst)) {
return this.reconstructPath(current);
}
// FIXME: this prevents the "waiting"
this.closedlist.push([current.element,it]);
this.expand(current, dst, actor);
} while(this.openlist.length > 0);
return [];
}
// AStarNode -> Cell -> Actor -> Unit
expand(current, dst, actor) {
// waiting costs more than moving
let c = (c,n) => c.coordinate.equals(n.coordinate) ? 2 : 1;
let h = n => Math.abs(dst.coordinate.x - n.coordinate.x + dst.coordinate.y - n.coordinate.y);
let ns = this.neighbours(current,actor);
for(let i = 0; i < ns.length; i++) {
let [n,est] = ns[i];
if(this.inClosedList([n,est])) {
continue;
}
// opportunity to use est in c()?
let tmpg = current.g + c(current.element, n);
let former = this.inOpenList(n);
if(former !== null && tmpg >= former.g) {
continue;
}
let f = tmpg + h(n);
let newtime = current.time + est;
if(former !== null) {
former.g = f;
former.time = newtime;
former.predecessor = current;
this.requeue(former);
} else {
this.enqueue(new AStarNode(n, f, newtime, current));
}
}
}
// Here, Cells are their own neighbours to siginify waiting.
// AStarNode -> Actor -> [Cell]
neighbours(current, actor) {
let n = current.element;
let it = current.time;
let ns = [];
for(let i = -1; i < 2; i++) {
for(let j = -1; j < 2; j++) {
let c = this.grid.get(n.coordinate.x + i
, n.coordinate.y + j);
if(c !== undefined) {
let est = actor.estimateTime(n.center,c.center); // estimate to get from one center to another
let pstart = Math.floor(it + est * 0.5);
let pend = Math.ceil(it + est * 1.5);
if( (i != 0 || j != 0) // not center
&& (i == 0 || j == 0) // no diagonals
&& c.freeRange(pstart,pend) // filter out occupied cells already
//&& !this.inClosedList(c)
) {
ns.push([c,est,pstart,pend]);
}
}
}
}
// append self as own neighbour to enable WAIT-operations
ns.push([n,1,it+0,it+7]);
return ns;
}
}
class AStarNode {
constructor(el, g, time, predecessor) {
this.element = el;
this.g = g;
this.time = time;
this.predecessor = predecessor;
}
}
class Grid {
constructor(size, cellsize) {
this.cellsize = cellsize;
this.cells = [];
for(let x = 0; x < size.width; x++) {
let inner = [];
for(let y = 0; y < size.height; y++) {
inner.push(new Cell(new Coordinate(x,y), this));
}
this.cells.push(inner);
}
}
get width() {
return this.cells.length;
}
get height() {
return this.cells[0].length;
}
get(x,y) {
return this.inBounds(x,y) ? this.cells[x][y] : undefined;
}
set(x,y,v) {
this.cells[x][y] = v;
}
inBounds(x,y) {
return 0 <= x && x < this.width
&& 0 <= y && y < this.height;
}
// Vector -> Cell
posToCell(v) {
let x = Math.floor(v.x/this.cellsize.width);
let y = Math.floor(v.y/this.cellsize.height);
return this.get(x,y);
}
map(f) {
for(let i = 0; i < this.width; i++) {
for(let j = 0; j < this.height; j++) {
f(this.get(i,j));
}
}
}
}
class Cell {
constructor(coord, grid, dim, statobj) {
this.coordinate = coord;
this.grid = grid;
this.reservations = {};
this.staticObject = statobj;
}
get size() {
return this.grid.cellsize;
}
get center() {
return new Vector(
this.coordinate.x * this.size.width + this.size.width / 2
,this.coordinate.y * this.size.height + this.size.height / 2 );
}
equals(other) {
return this.coordinate.equals(other.coordinate);
}
book(actor, iteration) {
/*if(!(iteration in this.reservations)) {
this.reservations[iteration] = new Set();
}
this.reservations[iteration].add(actor);
*/
// ^ to allow more than one actor per timestep and cell
if(iteration in this.reservations) {
// throw "Cell is already booked.";
}
this.reservations[iteration] = actor;
}
bookRange(actor, from, to) {
let i = from;
while(i <= to) {
this.book(actor, i);
i++;
}
}
free(iteration) {
return !this.staticObject && !(iteration in this.reservations);
}
freeRange(from, to) {
if(this.staticObject) return false;
let i = from;
while(i <= to && !(i in this.reservations)) {
i++;
}
return i > to;
}
cleanUpBookings(before) {
for(let i in this.reservations) {
if(i < before) {
delete this.reservations[i];
}
}
}
}
class Game extends EventEmitter {
constructor(canvas, width, height, random) {
super();
this.canvas = canvas;
let cellsize = new Dimensions(this.stageWidth/width, this.stageHeight/height);
this.grid = new Grid(new Dimensions(width, height), cellsize);
this.actorRadius = Math.min(this.cellWidth,this.cellHeight)/4;
this.actors = {};
this.accu = 0;
this.iteration = 0;
this.random = random;
this.grid.map(c => {
let cr = new CellRenderer(c, this.context, cellsize);
this.listeners.add(cr);
});
}
get stageWidth() { return this.canvas._options.width; }
get stageHeight() { return this.canvas._options.height; }
get context() { return this.canvas.stage; }
findPath(src, dst, actor) {
return new AStar(this.grid).findPath(src, dst, this.iteration, actor);
}
randomCol() {
let vs = [0,1,2,3,4,5,6,7,8,9,"A","B","C","D","E","F"];
let hex = "0x";
for(let i = 0; i < 6; i++) {
hex += vs.randomElement(this.random);
}
return hex;
}
randomInt(max) {
return Math.floor(this.random.next * Math.floor(max));
}
randomPos() {
return new Vector(this.randomInt(this.stageWidth)
, this.randomInt(this.stageHeight));
}
addDot(d) {
this.actors[d.id] = [d, new DotRenderer(d, this.context, 5, this.randomCol())];
}
addStatic(s) {
this.actors[s.id] = [s, new StaticRenderer(s, this.context, "rock.png")];
}
// Coordinate -> Coordinate -> int
manhattenDistance(src, dst) {
return Math.abs(src.x - dst.x + src.y - dst.y);
}
spawnNavigatedDot() {
let src;
// find a cell that is currently not occupied
do {
src = this.grid.posToCell(this.randomPos());
} while(!src.freeRange(this.iteration-100,this.iteration+100));
src = src.center;
let dst = this.grid.posToCell(this.randomPos()).center;
let actor = new Actor(this, src, 2, []);
let path = this.findPath(src,dst,actor);
actor.path = path;
let i = 0;
let then = this.iteration - 1;
let current = src;
let next = src;
while(i < path.length) {
current = next;
next = path[i++];
let est = actor.estimateTime(current,next);
let pstart = Math.floor(then + est * 0.5);
let pend = Math.ceil(then + est * 1.5);
then += est + 1;
//this.grid.posToCell(next).book(actor, then);
this.grid.posToCell(next).bookRange(actor, pstart, pend);
let c = this.grid.posToCell(next);
}
this.addDot(actor);
actor.listeners.add(this);
return actor;
}
onReachedCheckpoint(payload) {
let a = payload.dot;
let c = this.grid.posToCell(payload.checkpoint);
if(!(this.iteration in c.reservations) || c.reservations[this.iteration].id != a.id) {
//throw "unexpected actor";
}
}
spawnRandomDot() {
let pos = this.randomPos();
let path = [];
for(let i = 0; i < 4; i++) {
path.push(this.randomPos());
}
let actor = new Actor(this, pos, 2, path);
this.addDot(actor);
return actor;
}
spawnStaticObjectAt(x,y) {
let cell = this.grid.get(x,y);
let so = new StaticObject(this, cell.center);
cell.staticObject = so;
this.addStatic(so)
return so;
}
despawn(aid) {
delete this.actors[aid];
}
update(delta) {
this.iteration++;
this.accu += delta;
if(this.accu >= 50) {
//this.spawnRandomDot();
this.spawnNavigatedDot();
this.accu = 0;
}
// clean up the bookings every once in a while
if(this.iteration%100 == 0) {
//this.grid.map(c => c.cleanUpBookings(this.iteration));
}
let occupied = {};
for(let i in this.actors) {
let [ac,r] = this.actors[i];
ac.update(delta);
r.update(delta);
if(ac.alive) {
let p = this.grid.posToCell(ac.position);
let k = p.coordinate.toString();
if(ac.constructor.name !== "StaticObject") {
if(k in occupied) {
this.notify("onCollision",
{
"game": this,
"colliders": [occupied[k], ac],
"cell": p
});
} else {
occupied[k] = ac;
}
}
}
}
}
}