-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcursor.ts
71 lines (62 loc) · 2.12 KB
/
cursor.ts
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
/// <reference path="./tool.ts" />
class Cursor extends Tool {
static readonly id = "cursor";
static readonly displayName = "Map Cursor";
static readonly help = "Displays the current map coordinates.";
static readonly hotkey = "q";
constructor(
viewport: HTMLDivElement,
map: HeroMap,
toolPanel: HTMLDivElement,
) {
super(viewport, map, toolPanel);
this._onMove = this._onMove.bind(this);
}
public activate(): void {
super.activate();
this._viewport.addEventListener(
"mousemove", this._onMove, { passive: true });
}
public deactivate(): void {
super.deactivate();
this._viewport.removeEventListener("mousemove", this._onMove);
}
protected _setUpToolPanel(): void {
super._setUpToolPanel();
// Dynamic elements
const x = Object.assign(document.createElement("span"), {
id: "tool-cursor_x",
});
const y = Object.assign(document.createElement("span"), {
id: "tool-cursor_y",
});
// Static elements
const frag = document.createDocumentFragment();
frag.appendChild(document.createTextNode("X:"));
frag.appendChild(x);
frag.appendChild(document.createTextNode(" Y:"));
frag.appendChild(y);
this._toolPanel.appendChild(frag);
// Set style
Object.assign(this._toolPanel.style, {
display: "grid",
gridTemplateColumns: "1fr 3fr",
minWidth: "120px",
fontFamily: "Consolas, monospace",
fontSize: "18px",
justifyItems: "right",
});
this._updateToolPanel({ x: 0, y: 0 });
}
private _updateToolPanel(target: Readonly<Point>): void {
const x = document.getElementById("tool-cursor_x");
if (x)
x.textContent = target.x.toFixed(2);
const y = document.getElementById("tool-cursor_y");
if (y)
y.textContent = target.y.toFixed(2);
}
private _onMove(event: MouseEvent): void {
this._updateToolPanel(this._map.screenToMap(event));
}
}