@rpg-engine/shared 0.2.47 → 0.2.48

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.
@@ -0,0 +1,3 @@
1
+ export declare const DATE_FORMAT_FULL = "MM-DD-YYYY HH:mm:ss";
2
+ export declare const DATE_FORMAT_SHORT = "MM-DD-YYYY";
3
+ //# sourceMappingURL=date.constants.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"date.constants.d.ts","sourceRoot":"","sources":["../../src/constants/date.constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,gBAAgB,wBAAwB,CAAC;AAEtD,eAAO,MAAM,iBAAiB,eAAe,CAAC"}
@@ -0,0 +1,6 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.DATE_FORMAT_SHORT = exports.DATE_FORMAT_FULL = void 0;
4
+ exports.DATE_FORMAT_FULL = "MM-DD-YYYY HH:mm:ss";
5
+ exports.DATE_FORMAT_SHORT = "MM-DD-YYYY";
6
+ //# sourceMappingURL=date.constants.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"date.constants.js","sourceRoot":"","sources":["../../src/constants/date.constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,gBAAgB,GAAG,qBAAqB,CAAC;AAEzC,QAAA,iBAAiB,GAAG,YAAY,CAAC"}
@@ -0,0 +1,7 @@
1
+ import { INPC } from "./npc.types";
2
+ interface INPCMetaData extends Omit<INPC, "_id"> {
3
+ key: string;
4
+ }
5
+ export declare const NPCMetaData: INPCMetaData[];
6
+ export {};
7
+ //# sourceMappingURL=npcMetadata.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"npcMetadata.types.d.ts","sourceRoot":"","sources":["../../src/types/npcMetadata.types.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,IAAI,EAAE,MAAM,aAAa,CAAC;AAEnC,UAAU,YAAa,SAAQ,IAAI,CAAC,IAAI,EAAE,KAAK,CAAC;IAC9C,GAAG,EAAE,MAAM,CAAC;CACb;AAED,eAAO,MAAM,WAAW,EAAE,YAAY,EAYrC,CAAC"}
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.NPCMetaData = void 0;
4
+ const GridHelper_1 = require("../libs/GridHelper");
5
+ const character_types_1 = require("./character.types");
6
+ const maps_types_1 = require("./maps.types");
7
+ exports.NPCMetaData = [
8
+ {
9
+ key: "alice",
10
+ name: "Alice",
11
+ x: (0, GridHelper_1.FromGridX)(22),
12
+ y: (0, GridHelper_1.FromGridY)(12),
13
+ direction: "down",
14
+ scene: "MainScene",
15
+ class: character_types_1.CharacterClass.Cleric,
16
+ gender: character_types_1.CharacterGender.Female,
17
+ layer: maps_types_1.MapLayers.Player,
18
+ },
19
+ ];
20
+ //# sourceMappingURL=npcMetadata.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"npcMetadata.types.js","sourceRoot":"","sources":["../../src/types/npcMetadata.types.ts"],"names":[],"mappings":";;;AAAA,mDAA0D;AAC1D,uDAAoE;AACpE,6CAAyC;AAO5B,QAAA,WAAW,GAAmB;IACzC;QACE,GAAG,EAAE,OAAO;QACZ,IAAI,EAAE,OAAO;QACb,CAAC,EAAE,IAAA,sBAAS,EAAC,EAAE,CAAC;QAChB,CAAC,EAAE,IAAA,sBAAS,EAAC,EAAE,CAAC;QAChB,SAAS,EAAE,MAAM;QACjB,KAAK,EAAE,WAAW;QAClB,KAAK,EAAE,gCAAc,CAAC,MAAM;QAC5B,MAAM,EAAE,iCAAe,CAAC,MAAM;QAC9B,KAAK,EAAE,sBAAS,CAAC,MAAM;KACxB;CACF,CAAC"}
@@ -0,0 +1,49 @@
1
+ import { IEntityBasicInfo } from "./entity.types";
2
+ export declare enum PlayerSocketEvents {
3
+ PlayerCreate = "PlayerCreate",
4
+ PlayerPositionUpdate = "PlayerPositionUpdate",
5
+ PlayerPositionUpdateConfirm = "PlayerPositionUpdateConfirm",
6
+ PlayerLogout = "PlayerLogout",
7
+ PlayerPrivateMessage = "PlayerPrivateMessage",
8
+ PlayerPing = "PlayerPing",
9
+ PlayerForceDisconnect = "PlayerForceDisconnect"
10
+ }
11
+ export interface IPlayerPing {
12
+ id: string;
13
+ }
14
+ export interface IPlayerPositionUpdateConfirm {
15
+ id: string;
16
+ direction: string;
17
+ isValid: boolean;
18
+ }
19
+ export declare type Events = PlayerSocketEvents;
20
+ export interface IConnectedPlayer {
21
+ id: string;
22
+ name: string;
23
+ x: number;
24
+ y: number;
25
+ channelId: string;
26
+ direction?: string;
27
+ isMoving?: boolean;
28
+ cameraCoordinates: ICameraCoordinates;
29
+ otherEntitiesInView: IEntitiesInView;
30
+ }
31
+ export interface IEntitiesInView {
32
+ [id: string]: IEntityBasicInfo;
33
+ }
34
+ export interface IConnectedPlayers {
35
+ [id: string]: IConnectedPlayer;
36
+ }
37
+ export interface PlayerLogoutPayload {
38
+ id: string;
39
+ }
40
+ export interface ICameraCoordinates {
41
+ x: number;
42
+ y: number;
43
+ width: number;
44
+ height: number;
45
+ }
46
+ export interface IPlayerForceDisconnect {
47
+ reason: string;
48
+ }
49
+ //# sourceMappingURL=player.types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"player.types.d.ts","sourceRoot":"","sources":["../../src/types/player.types.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,gBAAgB,EAAE,MAAM,gBAAgB,CAAC;AAGlD,oBAAY,kBAAkB;IAC5B,YAAY,iBAAiB;IAC7B,oBAAoB,yBAAyB;IAC7C,2BAA2B,gCAAgC;IAC3D,YAAY,iBAAiB;IAC7B,oBAAoB,yBAAyB;IAC7C,UAAU,eAAe;IACzB,qBAAqB,0BAA0B;CAChD;AAED,MAAM,WAAW,WAAW;IAE1B,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,4BAA4B;IAC3C,EAAE,EAAE,MAAM,CAAC;IACX,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,oBAAY,MAAM,GAAG,kBAAkB,CAAC;AAExC,MAAM,WAAW,gBAAgB;IAC/B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,iBAAiB,EAAE,kBAAkB,CAAC;IACtC,mBAAmB,EAAE,eAAe,CAAC;CACtC;AAED,MAAM,WAAW,eAAe;IAC9B,CAAC,EAAE,EAAE,MAAM,GAAG,gBAAgB,CAAC;CAChC;AAED,MAAM,WAAW,iBAAiB;IAChC,CAAC,EAAE,EAAE,MAAM,GAAG,gBAAgB,CAAC;CAChC;AAED,MAAM,WAAW,mBAAmB;IAClC,EAAE,EAAE,MAAM,CAAC;CACZ;AAED,MAAM,WAAW,kBAAkB;IACjC,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,sBAAsB;IACrC,MAAM,EAAE,MAAM,CAAC;CAChB"}
@@ -0,0 +1,14 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.PlayerSocketEvents = void 0;
4
+ var PlayerSocketEvents;
5
+ (function (PlayerSocketEvents) {
6
+ PlayerSocketEvents["PlayerCreate"] = "PlayerCreate";
7
+ PlayerSocketEvents["PlayerPositionUpdate"] = "PlayerPositionUpdate";
8
+ PlayerSocketEvents["PlayerPositionUpdateConfirm"] = "PlayerPositionUpdateConfirm";
9
+ PlayerSocketEvents["PlayerLogout"] = "PlayerLogout";
10
+ PlayerSocketEvents["PlayerPrivateMessage"] = "PlayerPrivateMessage";
11
+ PlayerSocketEvents["PlayerPing"] = "PlayerPing";
12
+ PlayerSocketEvents["PlayerForceDisconnect"] = "PlayerForceDisconnect";
13
+ })(PlayerSocketEvents = exports.PlayerSocketEvents || (exports.PlayerSocketEvents = {}));
14
+ //# sourceMappingURL=player.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"player.types.js","sourceRoot":"","sources":["../../src/types/player.types.ts"],"names":[],"mappings":";;;AAGA,IAAY,kBAQX;AARD,WAAY,kBAAkB;IAC5B,mDAA6B,CAAA;IAC7B,mEAA6C,CAAA;IAC7C,iFAA2D,CAAA;IAC3D,mDAA6B,CAAA;IAC7B,mEAA6C,CAAA;IAC7C,+CAAyB,CAAA;IACzB,qEAA+C,CAAA;AACjD,CAAC,EARW,kBAAkB,GAAlB,0BAAkB,KAAlB,0BAAkB,QAQ7B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rpg-engine/shared",
3
- "version": "0.2.47",
3
+ "version": "0.2.48",
4
4
  "description": "> TODO: description",
5
5
  "author": "Joao Paulo Furtado <joaopaulofurtado@live.com>",
6
6
  "homepage": "",