@sharpee/if-services 0.9.60-beta → 0.9.62-beta
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/package.json +16 -8
- package/dist/text-service.d.ts +0 -137
- package/dist/text-service.d.ts.map +0 -1
- package/dist/text-service.js +0 -10
- package/dist/text-service.js.map +0 -1
- /package/{dist → dist-npm}/index.d.ts +0 -0
- /package/{dist → dist-npm}/index.d.ts.map +0 -0
- /package/{dist → dist-npm}/index.js +0 -0
- /package/{dist → dist-npm}/index.js.map +0 -0
- /package/{dist → dist-npm}/perception-service.d.ts +0 -0
- /package/{dist → dist-npm}/perception-service.d.ts.map +0 -0
- /package/{dist → dist-npm}/perception-service.js +0 -0
- /package/{dist → dist-npm}/perception-service.js.map +0 -0
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sharpee/if-services",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.62-beta",
|
|
4
4
|
"description": "Runtime service interfaces for Sharpee Interactive Fiction Platform",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
5
|
+
"main": "dist-npm/index.js",
|
|
6
|
+
"types": "dist-npm/index.d.ts",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@sharpee/
|
|
9
|
-
"@sharpee/
|
|
10
|
-
"@sharpee/if-domain": "0.9.
|
|
8
|
+
"@sharpee/core": "0.9.62-beta",
|
|
9
|
+
"@sharpee/world-model": "0.9.62-beta",
|
|
10
|
+
"@sharpee/if-domain": "0.9.62-beta"
|
|
11
11
|
},
|
|
12
12
|
"devDependencies": {
|
|
13
13
|
"@types/node": "^20.11.19",
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"typescript": "^5.3.3"
|
|
16
16
|
},
|
|
17
17
|
"files": [
|
|
18
|
-
"dist"
|
|
18
|
+
"dist-npm"
|
|
19
19
|
],
|
|
20
20
|
"keywords": [
|
|
21
21
|
"sharpee",
|
|
@@ -29,9 +29,17 @@
|
|
|
29
29
|
"publishConfig": {
|
|
30
30
|
"access": "public"
|
|
31
31
|
},
|
|
32
|
+
"exports": {
|
|
33
|
+
".": {
|
|
34
|
+
"types": "./dist-npm/index.d.ts",
|
|
35
|
+
"import": "./dist-npm/index.js",
|
|
36
|
+
"require": "./dist-npm/index.js"
|
|
37
|
+
}
|
|
38
|
+
},
|
|
32
39
|
"scripts": {
|
|
33
40
|
"build": "tsc",
|
|
34
41
|
"clean": "rimraf dist",
|
|
35
|
-
"test": "jest"
|
|
42
|
+
"test": "jest",
|
|
43
|
+
"build:npm": "tsc --outDir dist-npm"
|
|
36
44
|
}
|
|
37
45
|
}
|
package/dist/text-service.d.ts
DELETED
|
@@ -1,137 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Text service interface for Interactive Fiction
|
|
3
|
-
*
|
|
4
|
-
* Text services are responsible for generating output after each turn.
|
|
5
|
-
* They have access to the game context and can query events, entities,
|
|
6
|
-
* and spatial relationships to build appropriate output.
|
|
7
|
-
*/
|
|
8
|
-
import type { ISemanticEvent } from '@sharpee/core';
|
|
9
|
-
import type { LanguageProvider } from '@sharpee/if-domain';
|
|
10
|
-
import type { WorldModel, IFEntity } from '@sharpee/world-model';
|
|
11
|
-
/**
|
|
12
|
-
* Game context provided to text service
|
|
13
|
-
*/
|
|
14
|
-
export interface TextServiceContext {
|
|
15
|
-
/**
|
|
16
|
-
* Current turn number
|
|
17
|
-
*/
|
|
18
|
-
currentTurn: number;
|
|
19
|
-
/**
|
|
20
|
-
* Get events for the current turn
|
|
21
|
-
*/
|
|
22
|
-
getCurrentTurnEvents(): ISemanticEvent[];
|
|
23
|
-
/**
|
|
24
|
-
* Get events by type for the current turn
|
|
25
|
-
*/
|
|
26
|
-
getEventsByType(type: string): ISemanticEvent[];
|
|
27
|
-
/**
|
|
28
|
-
* Get all events (full history)
|
|
29
|
-
*/
|
|
30
|
-
getAllEvents(): ISemanticEvent[];
|
|
31
|
-
/**
|
|
32
|
-
* Access to world model for entity queries
|
|
33
|
-
*/
|
|
34
|
-
world: WorldModel;
|
|
35
|
-
/**
|
|
36
|
-
* Get the player entity
|
|
37
|
-
*/
|
|
38
|
-
getPlayer(): IFEntity;
|
|
39
|
-
/**
|
|
40
|
-
* Get entities in a location
|
|
41
|
-
*/
|
|
42
|
-
getContents(locationId: string): IFEntity[];
|
|
43
|
-
/**
|
|
44
|
-
* Get location of an entity
|
|
45
|
-
*/
|
|
46
|
-
getLocation(entityId: string): string | null;
|
|
47
|
-
/**
|
|
48
|
-
* Get platform events for the current turn (optional)
|
|
49
|
-
* These are debug/system events from parser, world model, etc.
|
|
50
|
-
*/
|
|
51
|
-
getPlatformEvents?(): ISemanticEvent[];
|
|
52
|
-
}
|
|
53
|
-
/**
|
|
54
|
-
* Output format for different client types
|
|
55
|
-
*/
|
|
56
|
-
export type TextOutput = string | TextOutputJSON | TextOutputChanneled;
|
|
57
|
-
/**
|
|
58
|
-
* JSON output for web/rich clients
|
|
59
|
-
*/
|
|
60
|
-
export interface TextOutputJSON {
|
|
61
|
-
type: 'json';
|
|
62
|
-
main: string;
|
|
63
|
-
metadata?: {
|
|
64
|
-
turn: number;
|
|
65
|
-
location?: string;
|
|
66
|
-
score?: number;
|
|
67
|
-
moves?: number;
|
|
68
|
-
};
|
|
69
|
-
sections?: {
|
|
70
|
-
room?: string;
|
|
71
|
-
inventory?: string[];
|
|
72
|
-
exits?: string[];
|
|
73
|
-
objects?: string[];
|
|
74
|
-
};
|
|
75
|
-
styling?: {
|
|
76
|
-
roomName?: string;
|
|
77
|
-
important?: string[];
|
|
78
|
-
};
|
|
79
|
-
}
|
|
80
|
-
/**
|
|
81
|
-
* Multi-channel output
|
|
82
|
-
*/
|
|
83
|
-
export interface TextOutputChanneled {
|
|
84
|
-
type: 'channeled';
|
|
85
|
-
channels: Map<string, string>;
|
|
86
|
-
}
|
|
87
|
-
/**
|
|
88
|
-
* Text service interface
|
|
89
|
-
*/
|
|
90
|
-
export interface TextService {
|
|
91
|
-
/**
|
|
92
|
-
* Initialize with context
|
|
93
|
-
*/
|
|
94
|
-
initialize(context: TextServiceContext): void;
|
|
95
|
-
/**
|
|
96
|
-
* Process the current turn and generate output
|
|
97
|
-
* @returns The formatted output
|
|
98
|
-
*/
|
|
99
|
-
processTurn(): TextOutput;
|
|
100
|
-
/**
|
|
101
|
-
* Set the language provider for template resolution
|
|
102
|
-
* @param provider The language provider
|
|
103
|
-
*/
|
|
104
|
-
setLanguageProvider(provider: LanguageProvider): void;
|
|
105
|
-
/**
|
|
106
|
-
* Get the current language provider
|
|
107
|
-
* @returns The language provider or null if not set
|
|
108
|
-
*/
|
|
109
|
-
getLanguageProvider(): LanguageProvider | null;
|
|
110
|
-
/**
|
|
111
|
-
* Set output format preference
|
|
112
|
-
* @param format The desired output format
|
|
113
|
-
*/
|
|
114
|
-
setOutputFormat?(format: 'text' | 'json' | 'channeled'): void;
|
|
115
|
-
}
|
|
116
|
-
/**
|
|
117
|
-
* Text service configuration
|
|
118
|
-
*/
|
|
119
|
-
export interface TextServiceConfig {
|
|
120
|
-
/**
|
|
121
|
-
* Output format (defaults to 'text')
|
|
122
|
-
*/
|
|
123
|
-
outputFormat?: 'text' | 'json' | 'channeled';
|
|
124
|
-
/**
|
|
125
|
-
* Whether to include debug information in output
|
|
126
|
-
*/
|
|
127
|
-
debug?: boolean;
|
|
128
|
-
/**
|
|
129
|
-
* Custom event processors by event type
|
|
130
|
-
*/
|
|
131
|
-
processors?: Record<string, (event: ISemanticEvent, context: TextServiceContext) => string | null>;
|
|
132
|
-
/**
|
|
133
|
-
* Channels to use for channeled output
|
|
134
|
-
*/
|
|
135
|
-
channels?: string[];
|
|
136
|
-
}
|
|
137
|
-
//# sourceMappingURL=text-service.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"text-service.d.ts","sourceRoot":"","sources":["../src/text-service.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AACpD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,KAAK,EAAE,UAAU,EAAE,QAAQ,EAAE,MAAM,sBAAsB,CAAC;AAEjE;;GAEG;AACH,MAAM,WAAW,kBAAkB;IACjC;;OAEG;IACH,WAAW,EAAE,MAAM,CAAC;IAEpB;;OAEG;IACH,oBAAoB,IAAI,cAAc,EAAE,CAAC;IAEzC;;OAEG;IACH,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,cAAc,EAAE,CAAC;IAEhD;;OAEG;IACH,YAAY,IAAI,cAAc,EAAE,CAAC;IAEjC;;OAEG;IACH,KAAK,EAAE,UAAU,CAAC;IAElB;;OAEG;IACH,SAAS,IAAI,QAAQ,CAAC;IAEtB;;OAEG;IACH,WAAW,CAAC,UAAU,EAAE,MAAM,GAAG,QAAQ,EAAE,CAAC;IAE5C;;OAEG;IACH,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,MAAM,GAAG,IAAI,CAAC;IAE7C;;;OAGG;IACH,iBAAiB,CAAC,IAAI,cAAc,EAAE,CAAC;CACxC;AAED;;GAEG;AACH,MAAM,MAAM,UAAU,GAClB,MAAM,GACN,cAAc,GACd,mBAAmB,CAAC;AAExB;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,CAAC,EAAE;QACT,IAAI,EAAE,MAAM,CAAC;QACb,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;KAChB,CAAC;IACF,QAAQ,CAAC,EAAE;QACT,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;QACrB,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;QACjB,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;KACpB,CAAC;IACF,OAAO,CAAC,EAAE;QACR,QAAQ,CAAC,EAAE,MAAM,CAAC;QAClB,SAAS,CAAC,EAAE,MAAM,EAAE,CAAC;KACtB,CAAC;CACH;AAED;;GAEG;AACH,MAAM,WAAW,mBAAmB;IAClC,IAAI,EAAE,WAAW,CAAC;IAClB,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC/B;AAED;;GAEG;AACH,MAAM,WAAW,WAAW;IAC1B;;OAEG;IACH,UAAU,CAAC,OAAO,EAAE,kBAAkB,GAAG,IAAI,CAAC;IAE9C;;;OAGG;IACH,WAAW,IAAI,UAAU,CAAC;IAE1B;;;OAGG;IACH,mBAAmB,CAAC,QAAQ,EAAE,gBAAgB,GAAG,IAAI,CAAC;IAEtD;;;OAGG;IACH,mBAAmB,IAAI,gBAAgB,GAAG,IAAI,CAAC;IAE/C;;;OAGG;IACH,eAAe,CAAC,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,GAAG,WAAW,GAAG,IAAI,CAAC;CAC/D;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB;IAChC;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,GAAG,MAAM,GAAG,WAAW,CAAC;IAE7C;;OAEG;IACH,KAAK,CAAC,EAAE,OAAO,CAAC;IAEhB;;OAEG;IACH,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,cAAc,EAAE,OAAO,EAAE,kBAAkB,KAAK,MAAM,GAAG,IAAI,CAAC,CAAC;IAEnG;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;CACrB"}
|
package/dist/text-service.js
DELETED
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
/**
|
|
3
|
-
* Text service interface for Interactive Fiction
|
|
4
|
-
*
|
|
5
|
-
* Text services are responsible for generating output after each turn.
|
|
6
|
-
* They have access to the game context and can query events, entities,
|
|
7
|
-
* and spatial relationships to build appropriate output.
|
|
8
|
-
*/
|
|
9
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
|
-
//# sourceMappingURL=text-service.js.map
|
package/dist/text-service.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"text-service.js","sourceRoot":"","sources":["../src/text-service.ts"],"names":[],"mappings":";AAAA;;;;;;GAMG"}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|