-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
72 lines (64 loc) · 1.82 KB
/
index.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
'use strict';
const fs = require('fs');
const Canvas = require('canvas');
const Image = Canvas.Image;
const canvasMap = new Map();
const memoizedCanvasContext = (width, height) => {
const id = `${width},${height}`;
if (canvasMap.has(id)) {
return canvasMap.get(id);
}
const canvas = Canvas.createCanvas(width, height);
const context = canvas.getContext('2d');
const result = { canvas, context };
canvasMap.set(id, result);
return result;
};
const getPixels = (fileName) => {
return new Promise((resolve, reject) => {
fs.readFile(fileName, (error, buffer) => {
if (error) {
reject(error);
}
const image = new Image();
image.src = buffer;
const { width, height } = image;
const { context } = memoizedCanvasContext(width, height);
context.drawImage(
image, 0, 0, width, height
);
const pixels = context.getImageData(0, 0, image.width, image.height);
resolve(pixels);
});
});
};
// https://tibiamaps.io/guides/minimap-file-format#pathfinding-data
const UNEXPLORED = { r: 0xFF, g: 0x00, b: 0xFF };
const NON_WALKABLE = { r: 0xFF, g: 0xFF, b: 0x00 };
const countWalkablePixels = (pixels) => {
const data = pixels.data;
let totalWalkableTiles = 0;
for (let offset = 0; offset < data.length; offset += 4) {
const r = data[offset];
const g = data[offset + 1];
const b = data[offset + 2];
// Discard alpha channel data; it’s always 0xFF anyway.
//const a = data[offset + 3];
if (
(r == UNEXPLORED.r && b == UNEXPLORED.b && g == UNEXPLORED.g) ||
(r == NON_WALKABLE.r && b == NON_WALKABLE.b && g == NON_WALKABLE.g)
) {
continue;
}
++totalWalkableTiles;
}
return totalWalkableTiles;
};
const countWalkableTiles = async (fileName) => {
const pixels = await getPixels(fileName);
const count = countWalkablePixels(pixels);
return count;
};
module.exports = {
countWalkableTiles
};