-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsprite-editor.js
58 lines (49 loc) · 1.42 KB
/
sprite-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
// Phosphor - a browser-based microcomputer
// Copyright (c) 2017-2018 Marc Lepage
'use strict';
const Ui = require('./ui.js');
const floor = Math.floor;
const BG = 21;
const UI = 42;
module.exports = class CodeEditor {
async main(...args) {
const P = this.P;
// TEMP
for (let i = 0; i < 1024; ++i) {
P.poke(0x10000+i, i%64);
}
new Ui(
this,
new Ui.Background(BG),
new Ui.Grid(16, 16, 128, 128, 16, 16, // canvas
'outline', 0,
'draw', (x, y, w, h, i, j) => {
P.box(x, y, w, h, P.peek(0x10000+i*8+j));
}
),
new Ui.Grid(152, 64, 80, 80, 8, 8, // sheet
'outline', 0,
'draw', (x, y, w, h, i, j) => { P.box(x, y, w, h, (i+2*j+3*x+5*y)%64); }
),
new Ui.Grid(152, 16, 80, 20, 5, 5, // color picker
'outline', 0,
'draw', (x, y, w, h, i, j) => {
P.box(x, y, w, h, floor(j/4)*16+i*4+(j%4));
if (i == 3 && j == 15) {
P.box(171, 16, 1, 20, 0);
P.box(191, 16, 1, 20, 0);
P.box(211, 16, 1, 20, 0);
}
},
'pointerdown', (x, y, i, j) => {
console.log(x, y, i, j);
},
),
new Ui.Grid(0, 8, 16, 144, 16, 16, // tools
'draw', (x, y, w, h, i, j) => { P.box(x+4, y+4, w-8, h-8, (i+2*j+3*x+5*y)%64); }
),
new Ui.Rect(0, 0, 240, 8, UI),
new Ui.Rect(0, 152, 240, 8, UI),
);
}
};