-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathruntime.ts
More file actions
599 lines (521 loc) · 15.4 KB
/
runtime.ts
File metadata and controls
599 lines (521 loc) · 15.4 KB
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
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
import { characterDefs } from "./character-defs.js";
import type {
Image,
FnContext,
CharDef,
OpInfo,
ArgDef,
} from "./functions/helpers.js";
import {
createSolidImage,
createPlaceholderImage,
getOldImage,
UPLOAD_CHAR,
UPLOAD_COUNT,
isIndexedUpload,
isInvalidUpload,
isAnyUpload,
getUploadIndex,
getUploadChar,
getInvalidUploadChar,
IntType,
ColorType,
IndexType,
ChoiceType,
} from "./functions/helpers.js";
interface UploadedImageRef {
type: "uploaded";
index: number; // This is now the upload character index (0-255), not positional
}
interface ParsedSolidColor {
type: "solid";
identifier: string;
color: string;
}
interface ParsedUploadedImage {
type: "uploaded-image";
identifier: string;
uploadIndex: number; // The upload character index (0-255)
}
interface ParsedFunction {
type: "function";
identifier: string;
fnDef: CharDef;
args: (number | string | UploadedImageRef)[];
}
type ParsedOp = ParsedSolidColor | ParsedUploadedImage | ParsedFunction;
class LRUCache<K, V> {
private cache = new Map<K, V>();
private maxSize: number;
constructor(maxSize: number = 100) {
this.maxSize = maxSize;
}
get(key: K): V | undefined {
const value = this.cache.get(key);
if (value !== undefined) {
this.cache.delete(key);
this.cache.set(key, value);
}
return value;
}
set(key: K, value: V): void {
if (this.cache.has(key)) {
this.cache.delete(key);
}
this.cache.set(key, value);
if (this.cache.size > this.maxSize) {
const firstKey = this.cache.keys().next().value;
if (firstKey !== undefined) {
this.cache.delete(firstKey);
}
}
}
clear(): void {
this.cache.clear();
}
}
// Uploaded images are now stored by their character index (0-255), not positionally
// This allows copy/paste to preserve image identity
const uploadedImages: Map<number, { blob: Blob; hash: string | null }> =
new Map();
const uploadedImagesCache: Map<number, Image> = new Map();
let uploadedCacheWidth = 0;
let uploadedCacheHeight = 0;
let nextUploadIndex = 0; // Track next available index
export function clearUploadedImages(): void {
uploadedImages.clear();
uploadedImagesCache.clear();
uploadedCacheWidth = 0;
uploadedCacheHeight = 0;
nextUploadIndex = 0;
}
// Add a new uploaded image and return its assigned index
export function addUploadedImage(
blob: Blob,
hash: string | null = null,
): number {
const index = nextUploadIndex++;
if (index >= UPLOAD_COUNT) {
throw new Error(`Maximum upload count (${UPLOAD_COUNT}) exceeded`);
}
uploadedImages.set(index, { blob, hash });
imageCache.clear();
return index;
}
// Set an uploaded image at a specific index (used for URL loading and paste remapping)
export function setUploadedImage(
index: number,
blob: Blob,
hash: string | null = null,
): void {
if (index < 0 || index >= UPLOAD_COUNT) {
throw new Error(`Upload index ${index} out of range [0, ${UPLOAD_COUNT})`);
}
uploadedImages.set(index, { blob, hash });
uploadedImagesCache.delete(index);
if (index >= nextUploadIndex) {
nextUploadIndex = index + 1;
}
imageCache.clear();
}
// Get the hash for an uploaded image (for URL serialization)
export function getUploadedImageHash(index: number): string | null {
return uploadedImages.get(index)?.hash ?? null;
}
// Get all upload indices that are currently in use
export function getUsedUploadIndices(): number[] {
return Array.from(uploadedImages.keys()).sort((a, b) => a - b);
}
// Find the next available upload index
export function getNextAvailableIndex(): number {
for (let i = 0; i < UPLOAD_COUNT; i++) {
if (!uploadedImages.has(i)) {
return i;
}
}
throw new Error(`Maximum upload count (${UPLOAD_COUNT}) exceeded`);
}
// Check if an upload index has an associated image
export function hasUploadedImage(index: number): boolean {
return uploadedImages.has(index);
}
// Get the blob for an uploaded image (for thumbnail generation)
export function getUploadedBlob(index: number): Blob | null {
return uploadedImages.get(index)?.blob ?? null;
}
export function getUploadedImageCount(): number {
return uploadedImages.size;
}
function loadBlobToImage(
blob: Blob,
width: number,
height: number,
): Promise<Image> {
return new Promise((resolve) => {
const img = new window.Image();
img.onload = () => {
const tempCanvas = document.createElement("canvas");
tempCanvas.width = width;
tempCanvas.height = height;
const tempCtx = tempCanvas.getContext("2d")!;
tempCtx.drawImage(img, 0, 0, width, height);
const imageData = tempCtx.getImageData(0, 0, width, height);
URL.revokeObjectURL(img.src);
resolve({
width,
height,
data: new Uint8ClampedArray(imageData.data),
});
};
img.onerror = () => {
URL.revokeObjectURL(img.src);
resolve(createPlaceholderImage(width, height));
};
img.src = URL.createObjectURL(blob);
});
}
export async function preloadUploadedImages(
width: number,
height: number,
): Promise<void> {
if (uploadedCacheWidth === width && uploadedCacheHeight === height) {
let allCached = true;
for (const index of uploadedImages.keys()) {
if (!uploadedImagesCache.has(index)) {
allCached = false;
break;
}
}
if (allCached) return;
}
if (uploadedCacheWidth !== width || uploadedCacheHeight !== height) {
uploadedImagesCache.clear();
uploadedCacheWidth = width;
uploadedCacheHeight = height;
}
const targetWidth = width;
const targetHeight = height;
const promises = Array.from(uploadedImages.entries()).map(
async ([index, source]) => {
if (!uploadedImagesCache.has(index)) {
const loadedImage = await loadBlobToImage(source.blob, targetWidth, targetHeight);
// Verify dimensions haven't changed during async load before caching
if (uploadedCacheWidth === targetWidth && uploadedCacheHeight === targetHeight) {
uploadedImagesCache.set(index, loadedImage);
}
}
},
);
await Promise.all(promises);
}
export function getUploadedImage(
index: number,
width: number,
height: number,
): Image {
if (!uploadedImages.has(index)) {
return createPlaceholderImage(width, height);
}
const cached = uploadedImagesCache.get(index);
if (
cached &&
uploadedCacheWidth === width &&
uploadedCacheHeight === height
) {
return cached;
}
return createPlaceholderImage(width, height);
}
// Count indexed uploads in a program string
export function getUploadCount(program: string): number {
const chars = [...program];
return chars.filter((c) => isIndexedUpload(c)).length;
}
// Get all upload indices used in a program string
export function getUploadIndicesInProgram(program: string): number[] {
const indices: number[] = [];
for (const char of program) {
const idx = getUploadIndex(char);
if (idx !== null) {
indices.push(idx);
}
}
return indices;
}
interface ParseResult {
ops: ParsedOp[];
invalidUploadIndices: Set<number>; // Upload character indices (0-255) in invalid positions
}
// Check if a character is a valid program character
function isValidProgramChar(char: string): boolean {
const code = char.codePointAt(0)!;
const isAscii = code > 32 && code < 127;
const isIdxUpload = isIndexedUpload(char);
const isInvUpload = isInvalidUpload(char);
const isUnassigned = char === UPLOAD_CHAR;
return isAscii || isIdxUpload || isInvUpload || isUnassigned;
}
function parseProgram(program: string): ParseResult {
const chars = [...program].filter(isValidProgramChar);
if (chars.length === 0) {
return { ops: [], invalidUploadIndices: new Set() };
}
const ops: ParsedOp[] = [];
const invalidUploadIndices = new Set<number>();
const firstChar = chars[0];
const firstUploadIdx = getUploadIndex(firstChar);
if (firstUploadIdx !== null) {
ops.push({
type: "uploaded-image",
identifier: firstChar,
uploadIndex: firstUploadIdx,
});
} else if (firstChar === UPLOAD_CHAR) {
ops.push({
type: "solid",
identifier: firstChar,
color: "#000000",
});
} else {
const firstDef = characterDefs[firstChar];
const firstColor = firstDef ? firstDef.color : "#000000";
ops.push({
type: "solid",
identifier: firstChar,
color: firstColor,
});
}
let i = 1;
while (i < chars.length) {
const char = chars[i];
const uploadIdx = getUploadIndex(char);
if (uploadIdx !== null || char === UPLOAD_CHAR) {
if (uploadIdx !== null) {
invalidUploadIndices.add(uploadIdx);
}
i++;
continue;
}
const def = characterDefs[char];
if (!def) {
i++;
continue;
}
const args: (number | string | UploadedImageRef)[] = [];
let argsConsumed = 0;
for (let argIdx = 0; argIdx < def.args.length; argIdx++) {
const argDef = def.args[argIdx];
const argType = argDef.type;
let nextCharIdx = i + 1 + argsConsumed;
while (nextCharIdx < chars.length) {
const nextChar = chars[nextCharIdx];
const nextUploadIdx = getUploadIndex(nextChar);
const isUpload = nextUploadIdx !== null || nextChar === UPLOAD_CHAR;
if (isUpload && !(argType instanceof IndexType)) {
if (nextUploadIdx !== null) {
invalidUploadIndices.add(nextUploadIdx);
}
argsConsumed++;
nextCharIdx = i + 1 + argsConsumed;
} else {
break;
}
}
if (nextCharIdx < chars.length) {
const argChar = chars[nextCharIdx];
const argUploadIdx = getUploadIndex(argChar);
if (argUploadIdx !== null) {
args.push({ type: "uploaded", index: argUploadIdx });
argsConsumed++;
} else if (argChar === UPLOAD_CHAR) {
if (
argType instanceof IntType ||
argType instanceof IndexType ||
argType instanceof ChoiceType
) {
args.push(def.number);
} else {
args.push(def.color);
}
argsConsumed++;
} else {
const charDef = characterDefs[argChar];
if (charDef) {
if (
argType instanceof IntType ||
argType instanceof IndexType ||
argType instanceof ChoiceType
) {
args.push(charDef.number);
} else {
args.push(charDef.color);
}
argsConsumed++;
} else {
if (
argType instanceof IntType ||
argType instanceof IndexType ||
argType instanceof ChoiceType
) {
args.push(def.number);
} else {
args.push(def.color);
}
}
}
} else {
if (
argType instanceof IntType ||
argType instanceof IndexType ||
argType instanceof ChoiceType
) {
args.push(def.number);
} else {
args.push(def.color);
}
}
}
const endIndex = i + 1 + argsConsumed;
const identifier = chars.slice(0, endIndex).join("");
ops.push({
type: "function",
identifier,
fnDef: def,
args,
});
i += 1 + argsConsumed;
}
return { ops, invalidUploadIndices };
}
const imageCache = new LRUCache<string, Image>(100);
let lastWidth = 0;
let lastHeight = 0;
let lastUploadCount = 0;
export async function runProgram(
program: string,
width: number,
height: number,
): Promise<Image[]> {
const currentUploadCount = uploadedImages.size;
if (
width !== lastWidth ||
height !== lastHeight ||
currentUploadCount !== lastUploadCount
) {
imageCache.clear();
lastWidth = width;
lastHeight = height;
lastUploadCount = currentUploadCount;
}
const { ops } = parseProgram(program);
if (ops.length === 0) {
return [createSolidImage(width, height, "#000000")];
}
const images: Image[] = [createSolidImage(width, height, "#000000")];
const opInfos: OpInfo[] = [{ identifier: "", type: "solid" }];
for (let opIdx = 0; opIdx < ops.length; opIdx++) {
const op = ops[opIdx];
const cached = imageCache.get(op.identifier);
if (cached) {
images.push(cached);
opInfos.push({
identifier: op.identifier,
type: op.type,
});
continue;
}
let result: Image;
if (op.type === "solid") {
result = createSolidImage(width, height, op.color);
} else if (op.type === "uploaded-image") {
result = getUploadedImage(op.uploadIndex, width, height);
} else {
const ctx: FnContext = {
width,
height,
images: [...images],
currentIndex: images.length,
opInfos: [...opInfos],
};
const resolvedArgs = op.args.map((arg, idx) => {
const argDef = op.fnDef.args[idx];
const argType = argDef.type;
if (argType instanceof IndexType) {
if (typeof arg === "object" && arg.type === "uploaded") {
return getUploadedImage(arg.index, width, height);
} else if (typeof arg === "number") {
return getOldImage(ctx, arg);
}
} else if (argType instanceof ChoiceType) {
if (typeof arg === "number") {
const choiceIndex = (arg - 1) % argType.choices.length;
return argType.choices[choiceIndex];
}
}
return arg;
});
const fnResult = op.fnDef.fn(ctx, ...resolvedArgs);
result = fnResult instanceof Promise ? await fnResult : fnResult;
}
images.push(result);
opInfos.push({
identifier: op.identifier,
type: op.type,
});
imageCache.set(op.identifier, result);
}
return images;
}
export async function getFinalImage(
program: string,
width: number,
height: number,
): Promise<Image> {
const images = await runProgram(program, width, height);
return images[images.length - 1];
}
export function getParsedOperations(program: string): ParsedOp[] {
return parseProgram(program).ops;
}
export function getInvalidUploadIndices(program: string): Set<number> {
return parseProgram(program).invalidUploadIndices;
}
export function getExpectedNextType(
program: string,
): "function" | "int" | "color" | "index" | "initial" {
if (!program || program.length === 0) {
return "initial";
}
const { ops } = parseProgram(program);
if (ops.length === 0) {
return "initial";
}
const lastOp = ops[ops.length - 1];
if (lastOp.type === "solid" || lastOp.type === "uploaded-image") {
return "function";
}
if (lastOp.type === "function") {
const def = lastOp.fnDef;
const prevIdentifier = ops.length > 1 ? ops[ops.length - 2].identifier : "";
const currentOpChars = [
...lastOp.identifier.substring(prevIdentifier.length),
];
const argsProvided = currentOpChars.length - 1;
if (argsProvided < def.args.length) {
const argType = def.args[argsProvided].type;
if (argType instanceof IntType) return "int";
if (argType instanceof ColorType) return "color";
if (argType instanceof IndexType) return "index";
if (argType instanceof ChoiceType) return "int";
}
return "function";
}
return "function";
}
export function getExpectedTypeAtPosition(
program: string,
cursorPosition: number,
): "function" | "int" | "color" | "index" | "initial" {
const beforeCursor = program.substring(0, cursorPosition);
return getExpectedNextType(beforeCursor);
}