@vworlds/vecs-phaser 1.0.25 → 1.0.27
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/{dist/components → components}/shapes.d.ts +9 -7
- package/{dist/components → components}/shapes.js +22 -22
- package/components/shapes.js.map +1 -0
- package/{dist/index.d.ts → index.d.ts} +4 -3
- package/{dist/index.js → index.js} +4 -2
- package/index.js.map +1 -0
- package/package.json +10 -22
- package/CHANGELOG.md +0 -12
- package/LICENSE +0 -21
- package/README.md +0 -9
- package/dist/components/shapes.js.map +0 -1
- package/dist/index.js.map +0 -1
- /package/{dist/components → components}/style.d.ts +0 -0
- /package/{dist/components → components}/style.js +0 -0
- /package/{dist/components → components}/style.js.map +0 -0
- /package/{dist/components → components}/text.d.ts +0 -0
- /package/{dist/components → components}/text.js +0 -0
- /package/{dist/components → components}/text.js.map +0 -0
- /package/{dist/components → components}/transform.d.ts +0 -0
- /package/{dist/components → components}/transform.js +0 -0
- /package/{dist/components → components}/transform.js.map +0 -0
|
@@ -15,22 +15,24 @@ export declare class Arc {
|
|
|
15
15
|
iterations: number;
|
|
16
16
|
}
|
|
17
17
|
/**
|
|
18
|
-
*
|
|
18
|
+
* Width and height of a sized shape, in meters. Shared by shapes whose geometry
|
|
19
|
+
* is the Phaser Size mixin (Ellipse, Rectangle) and applied via `setSize`.
|
|
19
20
|
*/
|
|
20
|
-
export declare class
|
|
21
|
+
export declare class Size {
|
|
21
22
|
/** Width in meters. */
|
|
22
23
|
width: number;
|
|
23
24
|
/** Height in meters. */
|
|
24
25
|
height: number;
|
|
25
26
|
}
|
|
26
27
|
/**
|
|
27
|
-
*
|
|
28
|
+
* Ellipse shape tag. Dimensions live on the shared {@link Size} component.
|
|
29
|
+
*/
|
|
30
|
+
export declare class Ellipse {
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* Rectangle shape tag. Dimensions live on the shared {@link Size} component.
|
|
28
34
|
*/
|
|
29
35
|
export declare class Rectangle {
|
|
30
|
-
/** Width in meters. */
|
|
31
|
-
width: number;
|
|
32
|
-
/** Height in meters. */
|
|
33
|
-
height: number;
|
|
34
36
|
}
|
|
35
37
|
/**
|
|
36
38
|
* Polygon shape. Points are alternating x,y pairs in meters,
|
|
@@ -7,7 +7,7 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
|
|
|
7
7
|
var __metadata = (this && this.__metadata) || function (k, v) {
|
|
8
8
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
9
9
|
};
|
|
10
|
-
import { type as wireType } from "@vworlds/vecs-wire";
|
|
10
|
+
import { type as wireType, tag as wireTag } from "@vworlds/vecs-wire";
|
|
11
11
|
/**
|
|
12
12
|
* Arc shape. All dimensions in meters; angles in radians (CCW+).
|
|
13
13
|
* The full unit circle default (endAngle = 2π) renders a complete circle.
|
|
@@ -47,9 +47,10 @@ __decorate([
|
|
|
47
47
|
__metadata("design:type", Object)
|
|
48
48
|
], Arc.prototype, "iterations", void 0);
|
|
49
49
|
/**
|
|
50
|
-
*
|
|
50
|
+
* Width and height of a sized shape, in meters. Shared by shapes whose geometry
|
|
51
|
+
* is the Phaser Size mixin (Ellipse, Rectangle) and applied via `setSize`.
|
|
51
52
|
*/
|
|
52
|
-
export class
|
|
53
|
+
export class Size {
|
|
53
54
|
constructor() {
|
|
54
55
|
/** Width in meters. */
|
|
55
56
|
this.width = 2;
|
|
@@ -60,30 +61,29 @@ export class Ellipse {
|
|
|
60
61
|
__decorate([
|
|
61
62
|
wireType("f32"),
|
|
62
63
|
__metadata("design:type", Object)
|
|
63
|
-
],
|
|
64
|
+
], Size.prototype, "width", void 0);
|
|
64
65
|
__decorate([
|
|
65
66
|
wireType("f32"),
|
|
66
67
|
__metadata("design:type", Object)
|
|
67
|
-
],
|
|
68
|
+
], Size.prototype, "height", void 0);
|
|
68
69
|
/**
|
|
69
|
-
*
|
|
70
|
+
* Ellipse shape tag. Dimensions live on the shared {@link Size} component.
|
|
70
71
|
*/
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
], Rectangle.prototype, "height", void 0);
|
|
72
|
+
let Ellipse = class Ellipse {
|
|
73
|
+
};
|
|
74
|
+
Ellipse = __decorate([
|
|
75
|
+
wireTag
|
|
76
|
+
], Ellipse);
|
|
77
|
+
export { Ellipse };
|
|
78
|
+
/**
|
|
79
|
+
* Rectangle shape tag. Dimensions live on the shared {@link Size} component.
|
|
80
|
+
*/
|
|
81
|
+
let Rectangle = class Rectangle {
|
|
82
|
+
};
|
|
83
|
+
Rectangle = __decorate([
|
|
84
|
+
wireTag
|
|
85
|
+
], Rectangle);
|
|
86
|
+
export { Rectangle };
|
|
87
87
|
/**
|
|
88
88
|
* Polygon shape. Points are alternating x,y pairs in meters,
|
|
89
89
|
* relative to the entity's Position.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"shapes.js","sourceRoot":"","sources":["../../src/components/shapes.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { Alpha, Depth, Position, Rotation, Scale } from "./components/transform.js";
|
|
2
2
|
export { FillStyle, StrokeStyle } from "./components/style.js";
|
|
3
|
-
export { Arc, Ellipse, Line, Polygon, Rectangle, Star, Triangle } from "./components/shapes.js";
|
|
3
|
+
export { Arc, Ellipse, Line, Polygon, Rectangle, Size, Star, Triangle, } from "./components/shapes.js";
|
|
4
4
|
export { Text, TextAlign } from "./components/text.js";
|
|
5
5
|
import { Alpha, Depth, Position, Rotation, Scale } from "./components/transform.js";
|
|
6
6
|
import { FillStyle, StrokeStyle } from "./components/style.js";
|
|
7
|
-
import { Arc, Ellipse, Line, Polygon, Rectangle, Star, Triangle } from "./components/shapes.js";
|
|
7
|
+
import { Arc, Ellipse, Line, Polygon, Rectangle, Size, Star, Triangle } from "./components/shapes.js";
|
|
8
8
|
import { Text } from "./components/text.js";
|
|
9
9
|
/**
|
|
10
10
|
* All components that participate in the network protocol, in registration order.
|
|
@@ -26,8 +26,9 @@ import { Text } from "./components/text.js";
|
|
|
26
26
|
* 13 Triangle
|
|
27
27
|
* 14 Star
|
|
28
28
|
* 15 Text
|
|
29
|
+
* 16 Size
|
|
29
30
|
*/
|
|
30
|
-
export declare const phaserNetworkComponents: readonly [typeof Position, typeof Rotation, typeof Scale, typeof Alpha, typeof Depth, typeof FillStyle, typeof StrokeStyle, typeof Arc, typeof Ellipse, typeof Rectangle, typeof Polygon, typeof Line, typeof Triangle, typeof Star, typeof Text];
|
|
31
|
+
export declare const phaserNetworkComponents: readonly [typeof Position, typeof Rotation, typeof Scale, typeof Alpha, typeof Depth, typeof FillStyle, typeof StrokeStyle, typeof Arc, typeof Ellipse, typeof Rectangle, typeof Polygon, typeof Line, typeof Triangle, typeof Star, typeof Text, typeof Size];
|
|
31
32
|
/**
|
|
32
33
|
* The subset of network components that represent renderable shapes.
|
|
33
34
|
* Exactly one of these should be present on each renderable entity.
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
export { Alpha, Depth, Position, Rotation, Scale } from "./components/transform.js";
|
|
2
2
|
export { FillStyle, StrokeStyle } from "./components/style.js";
|
|
3
|
-
export { Arc, Ellipse, Line, Polygon, Rectangle, Star, Triangle } from "./components/shapes.js";
|
|
3
|
+
export { Arc, Ellipse, Line, Polygon, Rectangle, Size, Star, Triangle, } from "./components/shapes.js";
|
|
4
4
|
export { Text, TextAlign } from "./components/text.js";
|
|
5
5
|
import { Alpha, Depth, Position, Rotation, Scale } from "./components/transform.js";
|
|
6
6
|
import { FillStyle, StrokeStyle } from "./components/style.js";
|
|
7
|
-
import { Arc, Ellipse, Line, Polygon, Rectangle, Star, Triangle } from "./components/shapes.js";
|
|
7
|
+
import { Arc, Ellipse, Line, Polygon, Rectangle, Size, Star, Triangle, } from "./components/shapes.js";
|
|
8
8
|
import { Text } from "./components/text.js";
|
|
9
9
|
/**
|
|
10
10
|
* All components that participate in the network protocol, in registration order.
|
|
@@ -26,6 +26,7 @@ import { Text } from "./components/text.js";
|
|
|
26
26
|
* 13 Triangle
|
|
27
27
|
* 14 Star
|
|
28
28
|
* 15 Text
|
|
29
|
+
* 16 Size
|
|
29
30
|
*/
|
|
30
31
|
export const phaserNetworkComponents = [
|
|
31
32
|
Position,
|
|
@@ -43,6 +44,7 @@ export const phaserNetworkComponents = [
|
|
|
43
44
|
Triangle,
|
|
44
45
|
Star,
|
|
45
46
|
Text,
|
|
47
|
+
Size,
|
|
46
48
|
];
|
|
47
49
|
/**
|
|
48
50
|
* The subset of network components that represent renderable shapes.
|
package/index.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EACL,GAAG,EACH,OAAO,EACP,IAAI,EACJ,OAAO,EACP,SAAS,EACT,IAAI,EACJ,IAAI,EACJ,QAAQ,GACT,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEvD,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EACL,GAAG,EACH,OAAO,EACP,IAAI,EACJ,OAAO,EACP,SAAS,EACT,IAAI,EACJ,IAAI,EACJ,QAAQ,GACT,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAC;AAE5C;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,QAAQ;IACR,QAAQ;IACR,KAAK;IACL,KAAK;IACL,KAAK;IACL,SAAS;IACT,WAAW;IACX,GAAG;IACH,OAAO;IACP,SAAS;IACT,OAAO;IACP,IAAI;IACJ,QAAQ;IACR,IAAI;IACJ,IAAI;IACJ,IAAI;CACwC,CAAC;AAE/C;;;;GAIG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC,GAAG;IACH,OAAO;IACP,SAAS;IACT,OAAO;IACP,IAAI;IACJ,QAAQ;IACR,IAAI;IACJ,IAAI;CACwC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,34 +1,22 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vworlds/vecs-phaser",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"private": false,
|
|
3
|
+
"version": "1.0.27",
|
|
5
4
|
"type": "module",
|
|
6
|
-
"main": "
|
|
7
|
-
"types": "
|
|
5
|
+
"main": "./index.js",
|
|
6
|
+
"types": "./index.d.ts",
|
|
8
7
|
"exports": {
|
|
9
8
|
".": {
|
|
10
|
-
"types": "./
|
|
11
|
-
"import": "./
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"import": "./index.js"
|
|
12
11
|
}
|
|
13
12
|
},
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"LICENSE",
|
|
18
|
-
"CHANGELOG.md"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "rimraf dist && tsc -p tsconfig.build.json",
|
|
22
|
-
"typecheck": "tsc --noEmit",
|
|
23
|
-
"lint": "eslint \"src/**/*.ts\" \"tests/**/*.ts\" --no-error-on-unmatched-pattern",
|
|
24
|
-
"test": "vitest run --passWithNoTests"
|
|
13
|
+
"repository": {
|
|
14
|
+
"type": "git",
|
|
15
|
+
"url": "git+https://github.com/vworlds/vecs.git"
|
|
25
16
|
},
|
|
26
17
|
"dependencies": {
|
|
27
|
-
"@vworlds/vecs": "1.0.
|
|
28
|
-
"@vworlds/vecs-wire": "1.0.
|
|
29
|
-
},
|
|
30
|
-
"publishConfig": {
|
|
31
|
-
"access": "public"
|
|
18
|
+
"@vworlds/vecs": "1.0.27",
|
|
19
|
+
"@vworlds/vecs-wire": "1.0.27"
|
|
32
20
|
},
|
|
33
21
|
"license": "MIT"
|
|
34
22
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
# Changelog
|
|
2
|
-
|
|
3
|
-
All notable changes to `@vworlds/vecs-phaser` will be documented in this file.
|
|
4
|
-
|
|
5
|
-
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
6
|
-
|
|
7
|
-
## [Unreleased]
|
|
8
|
-
|
|
9
|
-
### Added
|
|
10
|
-
|
|
11
|
-
- Added wire-serializable Phaser render components for transforms, styling, shapes, and text: `Position`, `Rotation`, `Scale`, `Alpha`, `Depth`, `FillStyle`, `StrokeStyle`, `Arc`, `Ellipse`, `Rectangle`, `Polygon`, `Line`, `Triangle`, `Star`, `Text`, and `TextAlign`.
|
|
12
|
-
- Added `phaserNetworkComponents` and `phaserRenderableComponents` protocol arrays to keep render component serialization and renderable exclusivity order stable.
|
package/LICENSE
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026 vworlds
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
package/README.md
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
# @vworlds/vecs-phaser
|
|
2
|
-
|
|
3
|
-
Data-only package providing wire-serializable Phaser render components (`Position`, `Arc`,
|
|
4
|
-
`Text`, …) and the `phaserNetworkComponents` protocol order. No `phaser` dependency.
|
|
5
|
-
|
|
6
|
-
Depends on `@vworlds/vecs` and `@vworlds/vecs-wire`.
|
|
7
|
-
|
|
8
|
-
See [`./architecture/README.md`](./architecture/README.md) for the full design and
|
|
9
|
-
[`./architecture/TICKETS.md`](./architecture/TICKETS.md) for the implementation plan.
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"shapes.js","sourceRoot":"","sources":["../../src/components/shapes.ts"],"names":[],"mappings":"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"}
|
package/dist/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAChG,OAAO,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,sBAAsB,CAAC;AAEvD,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE,QAAQ,EAAE,KAAK,EAAE,MAAM,2BAA2B,CAAC;AACpF,OAAO,EAAE,SAAS,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAC/D,OAAO,EAAE,GAAG,EAAE,OAAO,EAAE,IAAI,EAAE,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,QAAQ,EAAE,MAAM,wBAAwB,CAAC;AAChG,OAAO,EAAE,IAAI,EAAE,MAAM,sBAAsB,CAAC;AAE5C;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,CAAC,MAAM,uBAAuB,GAAG;IACrC,QAAQ;IACR,QAAQ;IACR,KAAK;IACL,KAAK;IACL,KAAK;IACL,SAAS;IACT,WAAW;IACX,GAAG;IACH,OAAO;IACP,SAAS;IACT,OAAO;IACP,IAAI;IACJ,QAAQ;IACR,IAAI;IACJ,IAAI;CACwC,CAAC;AAE/C;;;;GAIG;AACH,MAAM,CAAC,MAAM,0BAA0B,GAAG;IACxC,GAAG;IACH,OAAO;IACP,SAAS;IACT,OAAO;IACP,IAAI;IACJ,QAAQ;IACR,IAAI;IACJ,IAAI;CACwC,CAAC"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|