Spaces:
Running
Running
File size: 1,852 Bytes
4ee4376 |
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 |
import calculatePathBetweenCells from '../../utils/calculatePathBetweenCells';
import * as CONST from '../../constants';
export default class roads {
scene;
direction;
active = false;
start = { x: 0, y: 0 };
end = { x: 0, y: 0 };
cells = [];
tile = {
'ns': 29,
'ew': 30,
};
constructor (options) {
this.scene = options.scene;
}
// y = 0 north
// y = 127 south
// x = 0 west
// x = 127 east
calculateDirection () {
let sx = this.start.x;
let sy = this.start.y;
let ex = this.end.x;
let ey = this.end.y;
if (sx == ex && sy != ey) this.direction = 'ns';
if (sx != ex && sy == ey) this.direction = 'ew';
}
onPointerDown (pointer, gameObject) {
this.active = true;
this.cells = [];
if (gameObject[0])
this.start = { x: gameObject[0].cell.x, y: gameObject[0].cell.y };
}
onPointerUp () {
this.active = false;
this.cells.forEach((cell) => {
cell.clearHighlight();
});
this.calculateDirection();
if (this.cells.length > 0)
this.cells.forEach((cell) => {
cell.tiles.set(CONST.T_ROAD, this.tile[this.direction]);
cell.tiles[CONST.T_ROAD].create();
});
}
onPointerMove () {
return;
}
onPointerOver (pointer, gameObject) {
if (!this.active) return;
if (gameObject[0])
this.end = { x: gameObject[0].cell.x, y: gameObject[0].cell.y };
let list = calculatePathBetweenCells(this.start, this.end);
for (let i = 0; i < list.length; i++)
this.cells.push(this.scene.city.map.cells?.[list[i].x]?.[list[i].y]);
this.cells.forEach((cell) => {
cell.highlight();
});
}
onPointerOut () {
if (!this.active) return;
this.cells.forEach((cell) => {
cell.clearHighlight();
});
this.cells = [];
return;
}
} |