@wwawing/engine 3.12.9 → 3.12.11

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.
package/lib/wwa_main.d.ts CHANGED
@@ -96,7 +96,7 @@ export declare class WWA {
96
96
  private audioExtension;
97
97
  userDevice: UserDevice;
98
98
  private soundLoadedCheckTimer;
99
- private _startTime;
99
+ private _playTimeCalculator;
100
100
  private _dumpElement;
101
101
  constructor(mapFileName: string, urlgateEnabled: boolean, titleImgName: string, classicModeEnabled: boolean, itemEffectEnabled: boolean, useGoToWWA: boolean, audioDirectory: string, disallowLoadOldSave: boolean, dumpElm: HTMLElement, userVarNamesFile: string | null, canDisplayUserVars: boolean, enableVirtualPad?: boolean, virtualpadControllerElm?: HTMLElement);
102
102
  private convertUserVariableNameListToArray;
@@ -307,7 +307,6 @@ export declare class WWA {
307
307
  private compareUserVar;
308
308
  setPlayerSpeedIndex(speedIndex: number): void;
309
309
  setUserVarPlayTime(num: number): void;
310
- private setNowPlayTime;
311
310
  hideStatus(no: number, isHide: boolean): void;
312
311
  varMap(triggerPartsPos: Coord, xstr: string, ystr: string, partsID: number, targetPartsType: PartsType): void;
313
312
  setItemboxBackgroundPosition(pos: {
@@ -322,7 +321,6 @@ export declare class WWA {
322
321
  private _checkSaveDataCompatibility;
323
322
  isVisibleStatus(statusKind: StatusKind): boolean;
324
323
  private _changeStatusVisibility;
325
- private _updateVarDumpInformationArea;
326
324
  shouldApplyGameOver({ isCalledByMacro }: {
327
325
  isCalledByMacro: boolean;
328
326
  }): boolean;
@@ -149,7 +149,6 @@ export declare class Player extends PartsObject {
149
149
  readyToUseItem(itemPos: number): void;
150
150
  isReadyToUseItem(): boolean;
151
151
  getDrawingCenterPosition(): Coord;
152
- getPlayTimeText(): string;
153
152
  mainFrameCount(): void;
154
153
  getFrameCount(): number;
155
154
  setFrameCount(count: number): number;
@@ -0,0 +1,8 @@
1
+ export declare class PlayTimeCalculator {
2
+ private lastCalculatedTimeUnixMs;
3
+ private lastCalculatedPlayTimeMs;
4
+ constructor(baseTimeMs?: number);
5
+ calculateTimeMs(): number;
6
+ calculatePlayTimeFormat(): string;
7
+ static formatPlayTimeText(timeSec: number): string;
8
+ }
@@ -0,0 +1,8 @@
1
+ import * as NamedUserVariable from "./named-user-variable/api";
2
+ import * as NumberedUserVariable from "./numbered-user-variable/api";
3
+ export { NamedUserVariable, NumberedUserVariable };
4
+ export declare function updateAllVariables({ dumpElement, namedUserVar, userVar }: {
5
+ dumpElement: HTMLElement;
6
+ namedUserVar?: Map<string, string | number | boolean>;
7
+ userVar?: (string | number | boolean)[];
8
+ }): void;
@@ -0,0 +1,9 @@
1
+ import * as UserVariableListSection from "./user-variable/user-variable-list-section";
2
+ export * as Api from "./api";
3
+ export * as UserVariableCard from "./user-variable/user-variable-card";
4
+ export * as UserVariableLabel from "./user-variable/user-variable-label";
5
+ export * as UserVariableList from "./user-variable/user-variable-list";
6
+ export * as NumberedUserVariable from "./numbered-user-variable";
7
+ export { UserVariableListSection };
8
+ export declare const CLASS_NAME = "wwa-vardump-wrapper";
9
+ export declare function setup(dumpElmQuery: string): HTMLElement | null;
@@ -0,0 +1 @@
1
+ export declare function updateValues(dumpElement: HTMLElement | undefined | null, userVar: Map<string, number | string | boolean>): void;
@@ -0,0 +1 @@
1
+ export * as Api from "./api";
@@ -0,0 +1,3 @@
1
+ export declare function updateValues(dumpElement: HTMLElement | undefined | null, userVar: (number | string | boolean)[]): void;
2
+ export declare function updateLabels(dumpElement: HTMLElement | undefined | null, userVarNameList: string[]): void;
3
+ export declare function updateInformation(dumpElement: HTMLElement | undefined | null, content: string, isError?: boolean): void;
@@ -0,0 +1 @@
1
+ export * as Api from "./api";
@@ -0,0 +1,11 @@
1
+ export type Kind = "numbered" | "named";
2
+ export interface Props {
3
+ index: number | string;
4
+ value?: number | string | boolean;
5
+ }
6
+ export declare const CLASS_NAME = "user-variable-card";
7
+ export declare function createElement({ index, value }: Props): HTMLElement;
8
+ export declare function setupLabel(element: HTMLElement, labelElement: HTMLElement): void;
9
+ export declare function setValue(element: HTMLElement, value?: number | string | boolean): void;
10
+ export declare function clearValue(element: HTMLElement): void;
11
+ export declare function getLabelElement(element: HTMLElement): HTMLElement | null;
@@ -0,0 +1,3 @@
1
+ export declare const CLASS_NAME = "user-variable-label";
2
+ export declare function createElement(): HTMLElement;
3
+ export declare function setText(element: HTMLElement, text: string): void;
@@ -0,0 +1,14 @@
1
+ import * as UserVariableCard from "../user-variable-card";
2
+ export declare const CLASS_NAME = "user-variable-list";
3
+ export interface Props {
4
+ kind: UserVariableCard.Kind;
5
+ }
6
+ export declare function createElement({ kind }: Props): HTMLElement;
7
+ export declare function createListItemElement({ index, value, }: {
8
+ index: number | string;
9
+ value?: number | string | boolean;
10
+ }): HTMLLIElement;
11
+ export declare function appendNewListItemElement(element: HTMLElement, { index, value }: {
12
+ index: number | string;
13
+ value: number | string | boolean;
14
+ }): void;
@@ -0,0 +1,13 @@
1
+ import * as Information from "./information";
2
+ export { Information };
3
+ export interface Props {
4
+ heading: {
5
+ text: string;
6
+ };
7
+ contentVisibilityToggleButton: {
8
+ onClick?: (ev: MouseEvent) => any;
9
+ };
10
+ information?: Record<never, never>;
11
+ }
12
+ export declare function createElement({ heading, contentVisibilityToggleButton, information, }: Props): HTMLElement;
13
+ export declare function setContentVisibilityToggleButtonText(element: HTMLElement, active: boolean): void;
@@ -0,0 +1,3 @@
1
+ export declare const CLASS_NAME = "information";
2
+ export declare function createElemnt(): HTMLParagraphElement;
3
+ export declare function updateText(element: HTMLElement, text: string, isError?: boolean): void;
@@ -0,0 +1,8 @@
1
+ import * as Header from "./header";
2
+ import type * as UserVariableCard from "../user-variable-card";
3
+ export declare const CLASS_NAME = "user-variable-list-section";
4
+ export { Header };
5
+ export interface Props {
6
+ kind: UserVariableCard.Kind;
7
+ }
8
+ export declare function createElement({ kind }: Props): HTMLElement;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wwawing/engine",
3
- "version": "3.12.9",
3
+ "version": "3.12.11",
4
4
  "description": "World Wide Adventure: an RPG Engine.",
5
5
  "main": "./lib/wwa.js",
6
6
  "files": [
@@ -48,14 +48,14 @@
48
48
  "@types/pug": "^2.0.6",
49
49
  "@types/terser-webpack-plugin": "^5.2.0",
50
50
  "@types/webpack": "^5.28.0",
51
- "@wwawing/assets": "^3.12.9",
52
- "@wwawing/common-interface": "^3.12.9",
53
- "@wwawing/debug-server": "^3.12.9",
54
- "@wwawing/event-emitter": "^3.12.9",
55
- "@wwawing/loader": "^3.12.9",
56
- "@wwawing/page-generator": "^3.12.9",
57
- "@wwawing/styles": "^3.12.9",
58
- "@wwawing/virtual-pad": "^3.12.9",
51
+ "@wwawing/assets": "^3.12.11",
52
+ "@wwawing/common-interface": "^3.12.11",
53
+ "@wwawing/debug-server": "^3.12.11",
54
+ "@wwawing/event-emitter": "^3.12.11",
55
+ "@wwawing/loader": "^3.12.11",
56
+ "@wwawing/page-generator": "^3.12.11",
57
+ "@wwawing/styles": "^3.12.11",
58
+ "@wwawing/virtual-pad": "^3.12.11",
59
59
  "crypto-js": "^4.1.1",
60
60
  "jest": "^29.5.0",
61
61
  "jest-cli": "^29.5.0",
@@ -78,5 +78,5 @@
78
78
  "node": ">=18",
79
79
  "npm": ">=8"
80
80
  },
81
- "gitHead": "03bc25e096f8d44aebc8666d918cb5f73ce329fc"
81
+ "gitHead": "9cd59237d23c90c4d6c1a9eed2c5eae337948941"
82
82
  }