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
|
// import { canvas } from "./consts";
import { canvas, ctx, alphabet } from "./consts";
import Drawable from "./Drawable";
import { Background } from "./drawables/Background";
import { Selector } from "./drawables/Selector";
import { keys } from "./Events";
import { IMGS } from "./Images";
import { getPlace, getStorage, Score, setStorage } from "./Storage";
export default class Highscore extends Drawable {
width = canvas.width
height = canvas.height
show = false;
imgPixels: ImageData | null = null;
selector = new Selector(12, 37);
_bx = 12
_by = 37
moving = false;
dx = 32;
dy = 26;
name = [' ', ' ', ' '];
lastTimestamp = 0;
place: string[] | null = null;
score = 0
constructor() {
super(0, 0)
}
drawHg(bg: Background, s: number) {
if (this.imgPixels == null) {
const imgPixels = bg.getImageData();
for (let y = 0; y < imgPixels.height; y++) {
for (let x = 0; x < imgPixels.width; x++) {
const i = (y * 4) * imgPixels.width + x * 4;
const avg = (imgPixels.data[i] + imgPixels.data[i + 1] + imgPixels.data[i + 2]) / 3;
imgPixels.data[i] = avg;
imgPixels.data[i + 1] = avg;
imgPixels.data[i + 2] = avg;
}
}
this.imgPixels = imgPixels;
}
this.score = s
ctx.putImageData(this.imgPixels, 0, 24, 0, 0, this.imgPixels.width, this.imgPixels.height);
this.selector.draw()
let x = 17, y = 40;
for (const char of alphabet) {
ctx.drawImage(IMGS.font.white[char], x, y)
x += this.dx;
if (x > 275) {
x = 17;
y += this.dy;
}
}
while (x < 275) { ctx.drawImage(IMGS.font.yellow['-'], x, y); x += this.dx / 2; }
x = 17;
y += this.dy;
if (this.place == null) this.place = getPlace(this.score).split('');
const botTxt = [...this.place, ' ', ...this.score.toString().padStart(7, '0').split(''), ' ', ...this.name, ' ', '0', '1'];
for (let char of botTxt) {
try {
ctx.drawImage(IMGS.font.yellow[char], x, y);
} catch (e) {
debugger
}
x += this.dx / 2;
}
}
move(): boolean {
if (!this.moving) {
if (+keys.right ^ +keys.left) {
keys.right ? this.bx = this.selector.x + this.dx : this.bx = this.selector.x - this.dx
} else {
this.bx = this.selector.x
}
if (+keys.up ^ +keys.down) {
keys.down ? this.by = this.selector.y + this.dy : this.by = this.selector.y - this.dy
} else {
this.by = this.selector.y
}
if (keys.fire && Date.now() - this.lastTimestamp > 300) {
let [x, y] = [this.selector.x, this.selector.y]
x = Math.floor(x / this.dx)
y = Math.floor(y / this.dy) - 1
const char = alphabet[x + y * 9];
if (char === "rv") {
for (let i = this.name.length - 1; i >= 0; i--) {
if (this.name[i] !== " ") { this.name[i] = ' '; break }
}
}
else if (char === "ed") {
console.log(this.score, this.name, this.place);
if (this.place == null) throw Error("Place is null");
const place = this.place[0] === 't' ? 1 :parseInt(this.place[0])
if (place < 7) {
const score = { name: this.name, score: this.score.toString(), world: "01" } as Score;
const ns = getStorage()
ns.splice(place - 1, 0, score);
ns.length = 6;
setStorage(ns);
}
}
else if (this.name.filter(a => a !== ' ').length === 3) this.name[2] = char;
else {
for (let i = 0; i < this.name.length; i++) {
if (this.name[i] === " ") { this.name[i] = char; break; }
}
}
this.lastTimestamp = Date.now()
}
}
if (this.selector.x !== this.bx || this.selector.y !== this.by) {
this.moving = true;
if (this.selector.x < this.bx) this.selector.x += 2;
if (this.selector.x > this.bx) this.selector.x -= 2;
if (this.selector.y < this.by) this.selector.y += 2;
if (this.selector.y > this.by) this.selector.y -= 2;
return true;
}
this.moving = false
return true;
}
get bx() { return this._bx }
get by() { return this._by }
set bx(val) {
if (val < 12)
this._bx = 12
else if (val > 12 + this.dx * 8)
this._bx = 12 + this.dx * 8
else
this._bx = val
// if (val > 10 && val < 17 + this.dx * 8)
// this._bx = val
// else
// this._bx = 12;
}
set by(val) {
if (val < 37)
this._by = 37
else if (val > 37 + this.dy * 3)
this._by = 37 + this.dy * 3
else
this._by = val
// if (val > 30 && val < 40 + this.dy * 3)
// this._by = val
// else
// this._by = 37;
}
}
|