-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patheditor.js
106 lines (87 loc) · 2.46 KB
/
editor.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
class Editor {
constructor(world, player) {
this.world = world;
this.player = player;
this.currentWall = null;
window.addEventListener('keydown', (e) => this._handleKeyDown(e));
window.addEventListener('click', (e) => this._handleClick(e));
}
_handleKeyDown(e) {
if ( e.key == 'Escape' ) {
this.player.toggleBirdsEyeView();
} else if ( e.key == 'c' ) {
this.world.spawnWall(this._round(this._invert(this.player.position)),
this._round(this._invert(this.player.orientation)));
} else {
if ( !this.currentWall ) return;
switch(e.key) {
// Moving the wall
case 'i':
this.currentWall.position[2] -= 10;
break;
case 'k':
this.currentWall.position[2] += 10;
break;
case 'j':
this.currentWall.position[0] -= 10;
break;
case 'l':
this.currentWall.position[0] += 10;
break;
case 'u':
this.currentWall.rotation[1] += 5;
break;
case 'o':
this.currentWall.rotation[1] -= 5;
break;
// Resizing the wall
case 't':
this.currentWall.height += 10;
this.currentWall.position[1] -= 5;
break;
case 'g':
this.currentWall.height -= 10;
this.currentWall.position[1] += 5;
break;
case 'f':
this.currentWall.width += 10;
break;
case 'h':
this.currentWall.width -= 10;
break;
// Cycle through textures
case 'm':
const texnr = this.currentWall.texture.substr(-1,1);
this.currentWall.texture = `wall${texnr % 9 + 1}`;
break;
// Print whole map as JSON to console
case 'p':
console.log(JSON.stringify(this.world.json(), null, 2));
break;
default:
return;
}
}
this.world.render();
}
_round(array) {
return array.map((v) => Math.round(v/10)*10);
}
_invert(array) {
return array.map((v) => -1*v);
}
_handleClick(e) {
if ( this.currentWall ) {
this.currentWall.highlight = false;
this.currentWall = null;
this.world.render();
}
const id = e.target.getAttribute('data-wall');
if ( !id ) return;
const wall = this.world.getWall(id);
if ( !wall ) return;
this.currentWall = wall;
wall.highlight = true;
this.world.render();
}
}