-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.js
480 lines (421 loc) · 12.2 KB
/
main.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
var collums = 200;//x
imageEl = document.getElementById('image');
var floorId
var floorName
var clickedNode = {x:null, y:null}
var makingLine = false
var lineOnX = null
var shiftDown = false
var cur_choice = 0// 0: null, 1: wall, 2: place, 3: stairs, 4: elevator
var types = [
{
"type": null,
"color": "black",
"walkable": true,
"change": function(e) {
e.style.backgroundColor = this.color
e.style.opacity = 0.2
},
"extra": function() {
return null
},
"text": function(extra){
return null
}
},
{
"type": "wall",
"color": "red",
"walkable": false,
"change": function(e) {
e.style.backgroundColor = this.color
e.style.opacity = 0.6
},
"extra": function() {
return null
},
"text": function(extra){
return null
}
},
{
"type": "place",
"color": 'yellow',
"walkable": true,
"change": function(e) {
e.style.backgroundColor = this.color
e.style.opacity = 0.6
},
"extra": function() {
return {
place: prompt("Place name:"),
id: Number(prompt("Entry id: "))
}
},
"text": function(extra) {
return extra.place + " (" + extra.id + ")"
}
},
{
"type": "stairs",
"color": "green",
"walkable": true,
"change": function(e) {
e.style.backgroundColor = this.color
e.style.opacity = 0.6
},
"extra": function() {
return {
id: prompt("Entry id: "),
level: prompt("Entry level: ")
}
},
"text": function(extra) {
return extra.id
}
},
{
"type": "elevator",
"color": "greenyellow",
"walkable": true,
"change": function(e) {
e.style.backgroundColor = this.color
e.style.opacity = 0.6
},
"extra": function() {
return {
id: prompt("Entry id: "),
level: prompt("Entry level: ")
}
},
"text": function(extra) {
return extra.id
}
},
{
"type": "door",
"color": "LimeGreen",
"walkable": true,
"change": function(e) {
e.style.backgroundColor = this.color
e.style.opacity = 0.6
},
"extra": function() {
return {
id: prompt("Entry id: "),
level: prompt("Entry side(1,0): ")
}
},
"text": function(extra) {
return extra.id
}
}
]
imgInp.onchange = evt => {
const [file] = imgInp.files
if (file) {
imageEl.src = URL.createObjectURL(file)
}
}
var btn = document.getElementById(
"btn").onclick = function() {
setImage()
}
document.addEventListener("keydown", (event) => {
if (event.key<=6 && event.key>=1) {
cur_choice = event.key - 1
document.getElementById('choice').innerHTML = types[cur_choice].type + "(" + event.key + ")"
}
});
var mouseDown
function logButtons(e) {
if (e.buttons==1){
mouseDown = 1
} else {
mouseDown = 0
}
}
document.addEventListener('mouseup', logButtons);
document.addEventListener('mousedown', logButtons);
document.addEventListener("keydown", (event) => {
if (event.isComposing || event.keyCode === 229) {
return;
}
if(event.keyCode==16){
shiftDown = true
}
});
document.addEventListener("keyup", (event) => {
if (event.isComposing || event.keyCode === 229) {
return;
}
if(event.keyCode==16){
makingLine = false
clickedNode = {x:null, y:null}
shiftDown = false
}
});
function cordToId(x, y){
return x + ',' + y
}
function idToCord(id){
return id.split(',');
}
function clickNode(e)
{
cord = idToCord(e.id)
var x = cord[0]
var y = cord[1]
if(shiftDown)
{
if(!makingLine)
{
if(clickedNode.x == null)
{
clickedNode.x = x
clickedNode.y = y
}else
{
lineOnX = true
if(clickedNode.y!=y)
{
lineOnX = false
}
makingLine = true
}
}
if(lineOnX)
{
y = clickedNode.y
} else
{
x = clickedNode.x
}
}
console.log(x)
e = document.getElementById(cordToId(x, y))
types[cur_choice].change(e);
nodes[x][y].type = types[cur_choice].type;
nodes[x][y].extra = types[cur_choice].extra()
nodes[x][y].walkable = types[cur_choice].walkable;
e.innerHTML = types[cur_choice].text(nodes[x][y].extra)
}
fileInp.onchange = evt => {
const [file] = fileInp.files
if (file) {
var reader = new FileReader();
reader.readAsText(file, "UTF-8");
reader.onload = function(e) {
JSONdata = e.target.result
loadMapData = JSON.parse(JSONdata)
loadData()
}
}
}
function loadData(){
floorId = loadMapData.id
floorName = loadMapData.name
grid = loadMapData.grid
nodeSize = loadMapData.nodeSize
rows = loadMapData.rows//y
collums = loadMapData.collums
console.log(imageEl.clientWidth)
console.log(nodeSize)
resetBoard()
nodes = new Array()
for (let i = 0; i < collums; i++) { //we creat a list with all the nodes
nodes[i] = new Array()
for (let j =0; j < rows; j++) {
nodes[i][j] = {
x: i,
y: j,
walkable: true,
type: null,
extra: null
}
if(grid[j][i]==0)
{
e = document.getElementById(cordToId(i, j))
nodes[i][j].walkable = true
types[1].change(e);
nodes[i][j].type = types[1].type;
nodes[i][j].walkable = types[1].walkable;
}
}
}
for(i in loadMapData.places)
{
x = loadMapData.places[i].cords.x
y = loadMapData.places[i].cords.y
e = document.getElementById(cordToId(x, y))
types[2].change(e);
nodes[x][y].type = types[2].type;
nodes[x][y].extra = {
place: loadMapData.places[i].name,
}
nodes[x][y].walkable = types[2].walkable;
e.innerHTML = loadMapData.places[i].name
}
for(i in loadMapData.entries)
{
x = loadMapData.entries[i].cords.x
y = loadMapData.entries[i].cords.y
e = document.getElementById(cordToId(x, y))
atype = 4
console.log(loadMapData.entries.type)
if(loadMapData.entries[i].type == "stairs")
{
atype = 3
} else if (loadMapData.entries[i].type == "door")
{
atype = 5
}
types[atype].change(e);
nodes[x][y].type = types[atype].type;
nodes[x][y].extra = {
id: loadMapData.entries[i].id,
level: loadMapData.entries[i].level
}
nodes[x][y].walkable = types[atype].walkable;
e.innerHTML = loadMapData.entries[i].id
}
}
function setImage(){
collums = document.getElementById("squareSize").value
imageRatio = imageEl.clientHeight/image.clientWidth;
nodeSize = imageEl.clientWidth/collums
rows = collums*imageRatio;//y
console.log(imageEl.clientWidth)
console.log(nodeSize)
nodes = new Array()
for (let i = 0; i < collums; i++) { //we creat a list with all the nodes
nodes[i] = new Array()
for (let j =0; j < rows; j++) {
nodes[i][j] = {
x: i,
y: j,
walkable: true,
type: null,
extra: null
}
}
}
resetBoard()
}
function resetBoard()
{
//Append the nodes at the DOM
var div = document.getElementById('nodes');
var child = div.lastElementChild;
while (child) {
div.removeChild(child);
child = div.lastElementChild;
}
//loop through the nodes list
for (let i = 0; i < rows; i++) {
let divRow = document.createElement("DIV") //create the row(div with class: 'container')
divRow.className = 'row' //add a class
for (let j =0; j < collums; j++) {
let divCollume = document.createElement("DIV") //create the collum(div with id: 'y,x' and class: 'node')
divCollume.id = cordToId(j, i); //add id
divCollume.className = 'node' //add a class
divCollume.style.width = nodeSize + 'px'; //set size
divCollume.style.height = nodeSize + 'px';
divCollume.addEventListener('mouseenter', (e) => {if(mouseDown==1 && (cur_choice==0 || cur_choice==1)) {clickNode(e.target)}})
divCollume.addEventListener('mousedown', (e) => {clickNode(e.target)})
divRow.appendChild(divCollume)
}
div.appendChild(divRow);
}
}
function ForemData(nodes) {
if (!(document.getElementById("check").checked))
{
floorId = document.getElementById("fileId").value
floorName = document.getElementById("textInp").value
}
jsonData = {
"name": floorName,
"id": floorId,
"res": {
"width": imageEl.clientWidth,
"height": imageEl.clientHeight
},
"collums": collums,
"rows": rows,
"nodeSize": nodeSize,
"grid": null,
"places": null,
"entries": null
}
grid = new Array();
places = new Array();
placescount = 0;
entries = new Array();
entriescount = 0;
for (let i = 0; i < rows; i++){
grid[i] = new Array()
for (let j =0; j < collums; j++){
if (nodes[j][i].walkable) {
grid[i][j] = 1;
} else {
grid[i][j] = 0;
}
if (nodes[j][i].type == "place") {
places[placescount] = {
"name": nodes[j][i].extra.place,
"id": nodes[j][i].extra.id,
"cords": {
"y": nodes[j][i].y,
"x": nodes[j][i].x
}
};
placescount++
}
if (nodes[j][i].type == "elevator" || nodes[j][i].type == "stairs" || nodes[j][i].type == "door") {
console.log(j)
entries[entriescount] = {
"code": nodes[j][i].extra.id + "_" + nodes[j][i].extra.level + "_" + floorId,
"type": nodes[j][i].type,
"id": nodes[j][i].extra.id,
"level": nodes[j][i].extra.level,
"cords": {
"y": nodes[j][i].y,
"x": nodes[j][i].x
}
}
entriescount++
}
}
}
entriesDist(entries, grid);
jsonData.grid = grid;
jsonData.places = places;
jsonData.entries = entries;
return jsonData;
}
function exportToJsonFile() {
json = ForemData(nodes);
let dataStr = JSON.stringify(json);
let dataUri = 'data:application/json;charset=utf-8,'+ encodeURIComponent(dataStr);
let exportFileDefaultName = json.id+'.json';
let linkElement = document.createElement('a');
linkElement.setAttribute('href', dataUri);
linkElement.setAttribute('download', exportFileDefaultName);
linkElement.click();
}
function entriesDist(entries, grid) {
for (let i = 0; i < entries.length; i++){
entries[i].costs = new Array();
n = 0;
for (let j = 0; j < entries.length; j++){
if (!(i==j)) {
entries[i].costs[n] = {
"id" : entries[j].id,
"cost" : findCost(grid, entries[i].cords.x, entries[i].cords.y, entries[j].cords.x, entries[j].cords.y)
}
n++;
}
}
}
}