samengine 1.9.1 → 1.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (93) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +168 -0
  3. package/dist/config/buildconfig.d.ts +146 -0
  4. package/dist/config/buildconfig.js +115 -0
  5. package/dist/config/index.d.ts +9 -0
  6. package/dist/config/index.js +1 -0
  7. package/dist/core.d.ts +17 -0
  8. package/dist/core.js +24 -0
  9. package/dist/html.d.ts +29 -0
  10. package/dist/html.js +20 -0
  11. package/dist/input.d.ts +51 -0
  12. package/dist/input.js +44 -3
  13. package/dist/keys.d.ts +6 -0
  14. package/dist/keys.js +6 -2
  15. package/dist/logger.d.ts +8 -0
  16. package/dist/logger.js +8 -1
  17. package/dist/nonbrowser/getversion.d.ts +13 -0
  18. package/dist/nonbrowser/getversion.js +35 -0
  19. package/dist/nonbrowser/ghresolver.d.ts +1 -0
  20. package/dist/nonbrowser/ghresolver.js +7 -0
  21. package/dist/nonbrowser/index.d.ts +9 -0
  22. package/dist/nonbrowser/index.js +9 -0
  23. package/dist/nonbrowser/internal/buildhelper.d.ts +42 -0
  24. package/dist/nonbrowser/internal/buildhelper.js +144 -0
  25. package/dist/nonbrowser/internal/cli/argparser.d.ts +20 -0
  26. package/dist/nonbrowser/internal/cli/argparser.js +36 -0
  27. package/dist/nonbrowser/internal/cli/main.d.ts +13 -0
  28. package/dist/nonbrowser/internal/cli/main.js +262 -0
  29. package/dist/nonbrowser/internal/config.d.ts +9 -0
  30. package/dist/nonbrowser/internal/config.js +40 -0
  31. package/dist/nonbrowser/internal/exporthtml.d.ts +37 -0
  32. package/dist/nonbrowser/internal/exporthtml.js +622 -0
  33. package/dist/nonbrowser/internal/projcreator/downloadZip.d.ts +4 -0
  34. package/dist/nonbrowser/internal/projcreator/downloadZip.js +83 -0
  35. package/dist/nonbrowser/internal/projcreator/main.d.ts +1 -0
  36. package/dist/nonbrowser/internal/projcreator/main.js +81 -0
  37. package/dist/nonbrowser/utils.d.ts +8 -0
  38. package/dist/nonbrowser/utils.js +18 -0
  39. package/dist/physics/collision.d.ts +33 -0
  40. package/dist/physics/collision.js +27 -0
  41. package/dist/physics/physicsEngine.d.ts +18 -0
  42. package/dist/physics/physicsEngine.js +18 -0
  43. package/dist/physics/physicsObject.d.ts +20 -0
  44. package/dist/physics/physicsObject.js +20 -0
  45. package/dist/renderer.d.ts +78 -0
  46. package/dist/renderer.js +72 -9
  47. package/dist/samegui/index.d.ts +29 -0
  48. package/dist/samegui/index.js +26 -0
  49. package/dist/save.d.ts +12 -0
  50. package/dist/save.js +10 -0
  51. package/dist/sound/audioplayer.d.ts +39 -0
  52. package/dist/sound/audioplayer.js +39 -5
  53. package/dist/storage/index.d.ts +40 -2
  54. package/dist/storage/index.js +34 -3
  55. package/dist/text/index.d.ts +14 -0
  56. package/dist/text/index.js +58 -0
  57. package/dist/texture.d.ts +100 -0
  58. package/dist/texture.js +75 -41
  59. package/dist/types/button.d.ts +25 -0
  60. package/dist/types/button.js +22 -0
  61. package/dist/types/circle.d.ts +26 -0
  62. package/dist/types/circle.js +21 -7
  63. package/dist/types/color.d.ts +17 -0
  64. package/dist/types/color.js +11 -1
  65. package/dist/types/index.d.ts +1 -1
  66. package/dist/types/index.js +1 -1
  67. package/dist/types/rectangle.d.ts +29 -0
  68. package/dist/types/rectangle.js +23 -7
  69. package/dist/types/triangle.d.ts +23 -0
  70. package/dist/types/triangle.js +20 -6
  71. package/dist/types/vector2d.d.ts +42 -0
  72. package/dist/types/vector2d.js +39 -11
  73. package/dist/types/vector3d.d.ts +38 -0
  74. package/dist/types/vector3d.js +35 -11
  75. package/dist/utils/index.d.ts +11 -4
  76. package/dist/utils/index.js +11 -4
  77. package/dist/utils/logger/index.d.ts +24 -0
  78. package/dist/utils/logger/index.js +44 -0
  79. package/dist/utils/math.d.ts +18 -0
  80. package/dist/utils/math.js +18 -4
  81. package/package.json +36 -11
  82. package/dist/utils/csv/index.d.ts +0 -3
  83. package/dist/utils/csv/index.js +0 -2
  84. package/dist/utils/csv/parser.d.ts +0 -25
  85. package/dist/utils/csv/parser.js +0 -212
  86. package/dist/utils/csv/stringifier.d.ts +0 -30
  87. package/dist/utils/csv/stringifier.js +0 -130
  88. package/dist/utils/csv/types.d.ts +0 -63
  89. package/dist/utils/csv/types.js +0 -1
  90. package/dist/utils/jsonc-parser.d.ts +0 -4
  91. package/dist/utils/jsonc-parser.js +0 -166
  92. package/dist/utils/markdown.d.ts +0 -41
  93. package/dist/utils/markdown.js +0 -699
@@ -1,5 +1,12 @@
1
1
  // HTML Overlay
2
2
  import { hash } from "../utils/index.js";
3
+ /**
4
+ * Tiny immediate-mode HTML overlay for debug tools and simple in-game menus.
5
+ *
6
+ * Call `begin()` before emitting UI for the frame, then call `button`, `text`,
7
+ * and `checkbox` in a stable order, and finally call `end()`. Elements are
8
+ * backed by real DOM nodes but identified by hashed labels or explicit ids.
9
+ */
3
10
  export class HtmlUI {
4
11
  constructor() {
5
12
  this.elements = new Map();
@@ -22,9 +29,15 @@ export class HtmlUI {
22
29
  this.panel.style.borderRadius = "6px";
23
30
  this.root.appendChild(this.panel);
24
31
  }
32
+ /**
33
+ * Starts a new UI frame and records which controls are used this frame.
34
+ */
25
35
  begin() {
26
36
  this.frameIds = [];
27
37
  }
38
+ /**
39
+ * Ends the UI frame and clears one-frame button click states.
40
+ */
28
41
  end() {
29
42
  // reset clicks AFTER frame
30
43
  for (const id of this.frameIds) {
@@ -49,6 +62,11 @@ export class HtmlUI {
49
62
  }
50
63
  return e.el;
51
64
  }
65
+ /**
66
+ * Creates or updates a button.
67
+ *
68
+ * @returns `true` during the frame after the DOM button was clicked.
69
+ */
52
70
  button(label, idOverride) {
53
71
  const id = hash(idOverride ?? label);
54
72
  this.frameIds.push(id);
@@ -60,6 +78,9 @@ export class HtmlUI {
60
78
  };
61
79
  return this.clicked.get(id) === true;
62
80
  }
81
+ /**
82
+ * Creates or updates a text label in the overlay panel.
83
+ */
63
84
  text(label, idOverride) {
64
85
  const id = hash(idOverride ?? label);
65
86
  this.frameIds.push(id);
@@ -73,6 +94,11 @@ export class HtmlUI {
73
94
  }
74
95
  e.el.textContent = label;
75
96
  }
97
+ /**
98
+ * Creates or updates a checkbox and returns its current value.
99
+ *
100
+ * `defaultValue` is only used the first time the checkbox id appears.
101
+ */
76
102
  checkbox(label, defaultValue, idOverride) {
77
103
  const id = hash(idOverride ?? label);
78
104
  this.frameIds.push(id);
package/dist/save.d.ts CHANGED
@@ -1,24 +1,36 @@
1
1
  /**
2
+ * Old save data shape used by the legacy save helpers.
3
+ *
2
4
  * @deprecated Use samengine/storage instead
3
5
  */
4
6
  export type SaveData = Record<string, any>;
5
7
  /**
8
+ * localStorage key used by the legacy save helpers.
9
+ *
6
10
  * @deprecated Use samengine/storage instead
7
11
  */
8
12
  export declare let SAVE_KEY: string;
9
13
  /**
14
+ * Stores save data as JSON under `SAVE_KEY`.
15
+ *
10
16
  * @deprecated Use samengine/storage instead
11
17
  */
12
18
  export declare function saveGame(data: SaveData): void;
13
19
  /**
20
+ * Loads and parses JSON save data from `SAVE_KEY`.
21
+ *
14
22
  * @deprecated Use samengine/storage instead
15
23
  */
16
24
  export declare function loadGame(): SaveData | null;
17
25
  /**
26
+ * Removes the current save entry from localStorage.
27
+ *
18
28
  * @deprecated Use samengine/storage instead
19
29
  */
20
30
  export declare function clearSave(): void;
21
31
  /**
32
+ * Downloads the current save data as `savegame.json`.
33
+ *
22
34
  * @deprecated Use samengine/storage instead
23
35
  */
24
36
  export declare function exportSave(): void;
package/dist/save.js CHANGED
@@ -1,9 +1,13 @@
1
1
  // Please rename the SaveKey
2
2
  /**
3
+ * localStorage key used by the legacy save helpers.
4
+ *
3
5
  * @deprecated Use samengine/storage instead
4
6
  */
5
7
  export let SAVE_KEY = "my_game_save";
6
8
  /**
9
+ * Stores save data as JSON under `SAVE_KEY`.
10
+ *
7
11
  * @deprecated Use samengine/storage instead
8
12
  */
9
13
  export function saveGame(data) {
@@ -17,6 +21,8 @@ export function saveGame(data) {
17
21
  }
18
22
  }
19
23
  /**
24
+ * Loads and parses JSON save data from `SAVE_KEY`.
25
+ *
20
26
  * @deprecated Use samengine/storage instead
21
27
  */
22
28
  export function loadGame() {
@@ -32,6 +38,8 @@ export function loadGame() {
32
38
  }
33
39
  }
34
40
  /**
41
+ * Removes the current save entry from localStorage.
42
+ *
35
43
  * @deprecated Use samengine/storage instead
36
44
  */
37
45
  export function clearSave() {
@@ -39,6 +47,8 @@ export function clearSave() {
39
47
  console.log("Save cleared!");
40
48
  }
41
49
  /**
50
+ * Downloads the current save data as `savegame.json`.
51
+ *
42
52
  * @deprecated Use samengine/storage instead
43
53
  */
44
54
  export function exportSave() {
@@ -1,17 +1,56 @@
1
+ /**
2
+ * Web Audio based sound manager for short effects and looping music.
3
+ *
4
+ * Sounds are decoded once and cached by URL. In normal builds, audio files are
5
+ * loaded with `fetch(url)`. Single-file exports can provide `window.__loadResource`
6
+ * to resolve embedded resources before falling back to normal fetch.
7
+ */
1
8
  export declare class SoundSystem {
2
9
  private ctx;
3
10
  private bufferCache;
4
11
  private activeSources;
5
12
  private masterGain;
13
+ /**
14
+ * Creates or reuses an `AudioContext` and connects a master gain node.
15
+ *
16
+ * Browsers often require user interaction before audio can play. If playback
17
+ * is blocked or suspended, call `resume()` from a click/key handler.
18
+ */
6
19
  constructor();
20
+ /**
21
+ * Loads, decodes, and caches an audio file.
22
+ *
23
+ * @param url Audio URL or embedded resource key.
24
+ * @returns Decoded `AudioBuffer`.
25
+ */
7
26
  load(url: string): Promise<AudioBuffer>;
27
+ /**
28
+ * Plays an audio file and returns the active source node.
29
+ *
30
+ * @param url Audio URL or embedded resource key.
31
+ * @param options Per-playback settings such as volume, loop, and speed.
32
+ */
8
33
  play(url: string, options?: {
9
34
  volume?: number;
10
35
  loop?: boolean;
11
36
  playbackRate?: number;
12
37
  }): Promise<AudioBufferSourceNode>;
38
+ /**
39
+ * Stops every source started through this `SoundSystem`.
40
+ */
13
41
  stopAll(): void;
42
+ /**
43
+ * Sets the master volume for all current and future sounds.
44
+ *
45
+ * `1` is full volume, `0` is silent. Values above `1` amplify.
46
+ */
14
47
  setVolume(v: number): void;
48
+ /**
49
+ * Resumes the underlying `AudioContext` if the browser suspended it.
50
+ */
15
51
  resume(): Promise<void>;
52
+ /**
53
+ * Suspends the underlying `AudioContext` without clearing loaded buffers.
54
+ */
16
55
  pause(): Promise<void>;
17
56
  }
@@ -1,4 +1,17 @@
1
+ /**
2
+ * Web Audio based sound manager for short effects and looping music.
3
+ *
4
+ * Sounds are decoded once and cached by URL. In normal builds, audio files are
5
+ * loaded with `fetch(url)`. Single-file exports can provide `window.__loadResource`
6
+ * to resolve embedded resources before falling back to normal fetch.
7
+ */
1
8
  export class SoundSystem {
9
+ /**
10
+ * Creates or reuses an `AudioContext` and connects a master gain node.
11
+ *
12
+ * Browsers often require user interaction before audio can play. If playback
13
+ * is blocked or suspended, call `resume()` from a click/key handler.
14
+ */
2
15
  constructor() {
3
16
  this.bufferCache = new Map();
4
17
  this.activeSources = new Set();
@@ -8,7 +21,12 @@ export class SoundSystem {
8
21
  this.masterGain.gain.value = 1;
9
22
  this.masterGain.connect(this.ctx.destination);
10
23
  }
11
- // ================= LOAD =================
24
+ /**
25
+ * Loads, decodes, and caches an audio file.
26
+ *
27
+ * @param url Audio URL or embedded resource key.
28
+ * @returns Decoded `AudioBuffer`.
29
+ */
12
30
  async load(url) {
13
31
  if (this.bufferCache.has(url)) {
14
32
  return this.bufferCache.get(url);
@@ -38,7 +56,12 @@ export class SoundSystem {
38
56
  this.bufferCache.set(url, buffer);
39
57
  return buffer;
40
58
  }
41
- // ================= PLAY =================
59
+ /**
60
+ * Plays an audio file and returns the active source node.
61
+ *
62
+ * @param url Audio URL or embedded resource key.
63
+ * @param options Per-playback settings such as volume, loop, and speed.
64
+ */
42
65
  async play(url, options = {}) {
43
66
  const buffer = await this.load(url);
44
67
  const source = this.ctx.createBufferSource();
@@ -56,7 +79,9 @@ export class SoundSystem {
56
79
  };
57
80
  return source;
58
81
  }
59
- // ================= STOP =================
82
+ /**
83
+ * Stops every source started through this `SoundSystem`.
84
+ */
60
85
  stopAll() {
61
86
  for (const s of this.activeSources) {
62
87
  try {
@@ -66,16 +91,25 @@ export class SoundSystem {
66
91
  }
67
92
  this.activeSources.clear();
68
93
  }
69
- // ================= GLOBAL VOLUME =================
94
+ /**
95
+ * Sets the master volume for all current and future sounds.
96
+ *
97
+ * `1` is full volume, `0` is silent. Values above `1` amplify.
98
+ */
70
99
  setVolume(v) {
71
100
  this.masterGain.gain.value = v;
72
101
  }
73
- // ================= CONTEXT CONTROL =================
102
+ /**
103
+ * Resumes the underlying `AudioContext` if the browser suspended it.
104
+ */
74
105
  async resume() {
75
106
  if (this.ctx.state === "suspended") {
76
107
  await this.ctx.resume();
77
108
  }
78
109
  }
110
+ /**
111
+ * Suspends the underlying `AudioContext` without clearing loaded buffers.
112
+ */
79
113
  async pause() {
80
114
  if (this.ctx.state === "running") {
81
115
  await this.ctx.suspend();
@@ -1,19 +1,57 @@
1
+ /**
2
+ * Wrapper shape for values that may receive expiration metadata in the future.
3
+ *
4
+ * The current `StorageLib` methods store raw values directly, so this type is
5
+ * mainly useful when callers want to manage their own `expiresAt` convention.
6
+ */
1
7
  export type StoredValue<T> = {
2
8
  value: T;
3
9
  expiresAt?: number;
4
10
  };
11
+ /**
12
+ * Small typed wrapper around `localStorage`.
13
+ *
14
+ * Values are serialized with `JSON.stringify` and read with `JSON.parse`. If a
15
+ * value cannot be parsed, `get` returns `null` instead of throwing.
16
+ */
5
17
  export declare class StorageLib {
18
+ /**
19
+ * Stores a JSON-serializable value under a key.
20
+ */
6
21
  static set<T>(key: string, value: T): void;
22
+ /**
23
+ * Reads and parses a value from localStorage.
24
+ *
25
+ * @returns The parsed value or `null` when the key is missing or invalid JSON.
26
+ */
7
27
  static get<T>(key: string): T | null;
28
+ /**
29
+ * Removes a single key from localStorage.
30
+ */
8
31
  static remove(key: string): void;
32
+ /**
33
+ * Clears the complete browser localStorage for the current origin.
34
+ *
35
+ * Be careful: this affects all keys on the same domain, not only samengine
36
+ * keys.
37
+ */
9
38
  static clear(): void;
39
+ /**
40
+ * Checks whether a key exists in localStorage.
41
+ */
10
42
  static has(key: string): boolean;
11
43
  /**
12
- * Gesamten Storage als JSON exportieren
44
+ * Exports the complete localStorage content as a JSON string.
45
+ *
46
+ * Existing JSON values are parsed back into objects; non-JSON values are kept
47
+ * as strings.
13
48
  */
14
49
  static exportToJson(pretty?: boolean): string;
15
50
  /**
16
- * JSON in den Storage importieren
51
+ * Imports a JSON object into localStorage.
52
+ *
53
+ * @param json JSON object string, usually created by `exportToJson`.
54
+ * @param overwrite If false, existing keys are preserved.
17
55
  */
18
56
  static importFromJson(json: string, overwrite?: boolean): void;
19
57
  }
@@ -1,8 +1,21 @@
1
- // Store Data in the Browser
1
+ /**
2
+ * Small typed wrapper around `localStorage`.
3
+ *
4
+ * Values are serialized with `JSON.stringify` and read with `JSON.parse`. If a
5
+ * value cannot be parsed, `get` returns `null` instead of throwing.
6
+ */
2
7
  export class StorageLib {
8
+ /**
9
+ * Stores a JSON-serializable value under a key.
10
+ */
3
11
  static set(key, value) {
4
12
  localStorage.setItem(key, JSON.stringify(value));
5
13
  }
14
+ /**
15
+ * Reads and parses a value from localStorage.
16
+ *
17
+ * @returns The parsed value or `null` when the key is missing or invalid JSON.
18
+ */
6
19
  static get(key) {
7
20
  const item = localStorage.getItem(key);
8
21
  if (!item) {
@@ -15,17 +28,32 @@ export class StorageLib {
15
28
  return null;
16
29
  }
17
30
  }
31
+ /**
32
+ * Removes a single key from localStorage.
33
+ */
18
34
  static remove(key) {
19
35
  localStorage.removeItem(key);
20
36
  }
37
+ /**
38
+ * Clears the complete browser localStorage for the current origin.
39
+ *
40
+ * Be careful: this affects all keys on the same domain, not only samengine
41
+ * keys.
42
+ */
21
43
  static clear() {
22
44
  localStorage.clear();
23
45
  }
46
+ /**
47
+ * Checks whether a key exists in localStorage.
48
+ */
24
49
  static has(key) {
25
50
  return localStorage.getItem(key) !== null;
26
51
  }
27
52
  /**
28
- * Gesamten Storage als JSON exportieren
53
+ * Exports the complete localStorage content as a JSON string.
54
+ *
55
+ * Existing JSON values are parsed back into objects; non-JSON values are kept
56
+ * as strings.
29
57
  */
30
58
  static exportToJson(pretty = true) {
31
59
  const data = {};
@@ -44,7 +72,10 @@ export class StorageLib {
44
72
  return JSON.stringify(data, null, pretty ? 2 : 0);
45
73
  }
46
74
  /**
47
- * JSON in den Storage importieren
75
+ * Imports a JSON object into localStorage.
76
+ *
77
+ * @param json JSON object string, usually created by `exportToJson`.
78
+ * @param overwrite If false, existing keys are preserved.
48
79
  */
49
80
  static importFromJson(json, overwrite = true) {
50
81
  const data = JSON.parse(json);
@@ -0,0 +1,14 @@
1
+ import { type Rect } from "../types/index.js";
2
+ /**
3
+ * For Text Input: Use canvasinput-ts
4
+ */
5
+ export interface TextStyle {
6
+ color: string;
7
+ font: string;
8
+ size: number;
9
+ }
10
+ /**
11
+ * Rendert Text innerhalb eines Rechtecks mit automatischem Umbruch.
12
+ * Lange Wörter werden ebenfalls umgebrochen.
13
+ */
14
+ export declare function renderTextBox(ctx: CanvasRenderingContext2D, rect: Rect, text: string, style: TextStyle, padding?: number): void;
@@ -0,0 +1,58 @@
1
+ /**
2
+ * Rendert Text innerhalb eines Rechtecks mit automatischem Umbruch.
3
+ * Lange Wörter werden ebenfalls umgebrochen.
4
+ */
5
+ export function renderTextBox(ctx, rect, text, style, padding = 4) {
6
+ ctx.fillStyle = style.color;
7
+ ctx.font = `${style.size}px ${style.font}`;
8
+ ctx.textBaseline = "top";
9
+ const maxWidth = rect.width - padding * 2;
10
+ const lineHeight = style.size * 1.2;
11
+ let y = rect.y + padding;
12
+ const paragraphs = text.split("\n");
13
+ for (const paragraph of paragraphs) {
14
+ let line = "";
15
+ const words = paragraph.split(" ");
16
+ for (let word of words) {
17
+ // Wort zu lang → innerhalb des Wortes umbrechen
18
+ while (ctx.measureText(word).width > maxWidth) {
19
+ let chunk = "";
20
+ for (const char of word) {
21
+ const test = chunk + char;
22
+ if (ctx.measureText(test).width > maxWidth) {
23
+ break;
24
+ }
25
+ chunk = test;
26
+ }
27
+ // Höhenbegrenzung
28
+ if (y + lineHeight > rect.y + rect.height) {
29
+ return;
30
+ }
31
+ ctx.fillText(chunk, rect.x + padding, y);
32
+ y += lineHeight;
33
+ word = word.substring(chunk.length);
34
+ }
35
+ const testLine = line.length > 0
36
+ ? `${line} ${word}`
37
+ : word;
38
+ if (ctx.measureText(testLine).width > maxWidth) {
39
+ if (y + lineHeight > rect.y + rect.height) {
40
+ return;
41
+ }
42
+ ctx.fillText(line, rect.x + padding, y);
43
+ y += lineHeight;
44
+ line = word;
45
+ }
46
+ else {
47
+ line = testLine;
48
+ }
49
+ }
50
+ if (line.length > 0) {
51
+ if (y + lineHeight > rect.y + rect.height) {
52
+ return;
53
+ }
54
+ ctx.fillText(line, rect.x + padding, y);
55
+ y += lineHeight;
56
+ }
57
+ }
58
+ }
package/dist/texture.d.ts CHANGED
@@ -1,37 +1,137 @@
1
1
  import { Rect } from "./types/rectangle.js";
2
+ /**
3
+ * Loaded texture image.
4
+ *
5
+ * `undefined` means the texture was not loaded or the cache key does not exist.
6
+ */
2
7
  export type Texture = HTMLImageElement | undefined;
8
+ /**
9
+ * Optional drawing settings used by texture, atlas, and animation rendering.
10
+ */
3
11
  export type DrawOptions = {
12
+ /** Target width before `scale` is applied. Defaults to source width. */
4
13
  width?: number;
14
+ /** Target height before `scale` is applied. Defaults to source height. */
5
15
  height?: number;
16
+ /** Rotation in radians around the rendered image center. */
6
17
  rotation?: number;
18
+ /** Mirrors the image horizontally around its center. */
7
19
  flipX?: boolean;
20
+ /** Mirrors the image vertically around its center. */
8
21
  flipY?: boolean;
22
+ /** Multiplies the final rendered width and height. */
9
23
  scale?: number;
10
24
  };
25
+ /**
26
+ * Loads an image and stores it in the texture cache.
27
+ *
28
+ * Normal builds load from `/resources/${src}`. Single-file exports can provide
29
+ * embedded resources through `window.__resources`; if a matching key exists,
30
+ * that data URL is used instead. The cache key always remains the original
31
+ * `src` string, so `getTexture(src)` works the same in both modes.
32
+ *
33
+ * @param src Resource path relative to the resources folder.
34
+ * @returns Promise resolving to the loaded `HTMLImageElement`.
35
+ */
11
36
  export declare function loadTextureAsync(src: string): Promise<HTMLImageElement>;
37
+ /**
38
+ * Reads a texture from the cache.
39
+ *
40
+ * This does not start loading by itself. Call `loadTextureAsync` first or handle
41
+ * the `undefined` result.
42
+ */
12
43
  export declare function getTexture(src: string): Texture;
44
+ /**
45
+ * Draws a texture to the canvas.
46
+ *
47
+ * The image is drawn around its center for rotation and flipping, but `x` and
48
+ * `y` still describe the top-left target position. If the texture is missing,
49
+ * a magenta fallback rectangle is drawn to make missing assets visible.
50
+ */
13
51
  export declare function drawTexture(ctx: CanvasRenderingContext2D, texture: Texture, x: number, y: number, options?: DrawOptions): void;
52
+ /**
53
+ * A spritesheet image plus named frame rectangles inside that image.
54
+ */
14
55
  export type TextureAtlas = {
56
+ /** Spritesheet image. */
15
57
  image: HTMLImageElement;
58
+ /** Named source rectangles inside `image`. */
16
59
  frames: Record<string, Rect>;
17
60
  };
61
+ /**
62
+ * Loads a texture atlas image and its JSON frame data.
63
+ *
64
+ * The JSON file is fetched from the resources folder and must contain a
65
+ * `frames` object with frame names mapped to rectangles:
66
+ *
67
+ * ```json
68
+ * {
69
+ * "frames": {
70
+ * "player_idle_0": { "x": 0, "y": 0, "width": 32, "height": 32 }
71
+ * }
72
+ * }
73
+ * ```
74
+ */
18
75
  export declare function loadAtlas(imageSrc: string, dataSrc: string): Promise<TextureAtlas>;
76
+ /**
77
+ * Draws one named frame from a texture atlas.
78
+ *
79
+ * Missing frame names are logged through `dlog` and skipped.
80
+ */
19
81
  export declare function drawAtlasFrame(ctx: CanvasRenderingContext2D, atlas: TextureAtlas, frameName: string, x: number, y: number, options?: DrawOptions): void;
82
+ /**
83
+ * Keeps track of time and current frame for a named-frame animation.
84
+ *
85
+ * The player only stores animation state. It does not draw anything by itself;
86
+ * call `drawAnimation` after `update(dt)` to render the current atlas frame.
87
+ */
20
88
  export declare class AnimationPlayer {
21
89
  animation: Animation;
22
90
  private time;
23
91
  private currentFrameIndex;
24
92
  private finished;
93
+ /**
94
+ * Creates a player for the given animation definition.
95
+ */
25
96
  constructor(animation: Animation);
97
+ /**
98
+ * Advances the animation by `deltaTime` seconds.
99
+ *
100
+ * Looping animations wrap back to the first frame. Non-looping animations
101
+ * stop on their final frame and then report `isFinished() === true`.
102
+ */
26
103
  update(deltaTime: number): void;
104
+ /**
105
+ * Returns the frame name that should currently be rendered from the atlas.
106
+ */
27
107
  getCurrentFrame(): string;
108
+ /**
109
+ * Restarts the animation from the first frame.
110
+ */
28
111
  reset(): void;
112
+ /**
113
+ * Returns whether a non-looping animation reached its final frame.
114
+ */
29
115
  isFinished(): boolean;
30
116
  }
117
+ /**
118
+ * Animation definition based on named frames inside a `TextureAtlas`.
119
+ */
31
120
  export type Animation = {
121
+ /** Frame names in playback order. */
32
122
  frames: string[];
123
+ /** Playback speed in frames per second. */
33
124
  fps: number;
125
+ /** Whether playback should wrap to the first frame. Defaults to false-like. */
34
126
  loop?: boolean;
35
127
  };
128
+ /**
129
+ * Draws the current frame of an `AnimationPlayer`.
130
+ */
36
131
  export declare function drawAnimation(ctx: CanvasRenderingContext2D, atlas: TextureAtlas, player: AnimationPlayer, x: number, y: number, options?: DrawOptions): void;
132
+ /**
133
+ * Helper for side-view sprites.
134
+ *
135
+ * Returns `true` when a negative direction should flip a sprite horizontally.
136
+ */
37
137
  export declare function getFlipFromDirection(dir: number): boolean;