@longstoryshort/vtt-sdk 0.2.0 → 0.3.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.
- package/README.md +13 -11
- package/dist/adapters/owlbear/index.d.ts +1 -1
- package/dist/index.d.ts +12 -9
- package/dist/index.js +3 -3
- package/dist/{types-DQndRf3e.d.ts → types-w2_82sqo.d.ts} +28 -14
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -28,13 +28,13 @@ npm install @owlbear-rodeo/sdk
|
|
|
28
28
|
|
|
29
29
|
| Import | Contents |
|
|
30
30
|
|--------|----------|
|
|
31
|
-
| `@longstoryshort/vtt-sdk` | Core: types, `
|
|
31
|
+
| `@longstoryshort/vtt-sdk` | Core: types, `createRollBridge`, `createSheetClient`, `createBridgeSheetSource`, `formatRollMessage` |
|
|
32
32
|
| `@longstoryshort/vtt-sdk/owlbear` | `OwlbearAdapter`, `syncObrref`, constants |
|
|
33
33
|
|
|
34
34
|
## Quick start — bridge side
|
|
35
35
|
|
|
36
36
|
```ts
|
|
37
|
-
import {
|
|
37
|
+
import { createRollBridge, createBridgeSheetSource } from '@longstoryshort/vtt-sdk';
|
|
38
38
|
import { OwlbearAdapter } from '@longstoryshort/vtt-sdk/owlbear';
|
|
39
39
|
|
|
40
40
|
const adapter = new OwlbearAdapter();
|
|
@@ -43,7 +43,7 @@ const source = createBridgeSheetSource({
|
|
|
43
43
|
allowedOrigins: ['https://longstoryshort.app'],
|
|
44
44
|
});
|
|
45
45
|
|
|
46
|
-
const dispose =
|
|
46
|
+
const dispose = createRollBridge(source, adapter, {
|
|
47
47
|
messages: {
|
|
48
48
|
connected: '🎲 Sheet connected',
|
|
49
49
|
labelHint: 'Select exactly one token to place a roll label',
|
|
@@ -63,11 +63,11 @@ import { createSheetClient } from '@longstoryshort/vtt-sdk';
|
|
|
63
63
|
const client = createSheetClient();
|
|
64
64
|
|
|
65
65
|
// emit a roll to the bridge
|
|
66
|
-
client.send({ type: '
|
|
66
|
+
client.send({ type: 'dnd:roll', payload: { ... } });
|
|
67
67
|
|
|
68
68
|
// receive inbound commands from the bridge
|
|
69
69
|
const unsub = client.onEvent((event) => {
|
|
70
|
-
if (event.type === '
|
|
70
|
+
if (event.type === 'dnd:command') { /* handle damage, conditions, … */ }
|
|
71
71
|
});
|
|
72
72
|
|
|
73
73
|
// cleanup
|
|
@@ -96,12 +96,14 @@ To adapt for your own VTT: copy `bridges/dnd/src/main.ts`, swap `OwlbearAdapter`
|
|
|
96
96
|
|
|
97
97
|
## Protocol events
|
|
98
98
|
|
|
99
|
-
| Type | Direction | Description |
|
|
100
|
-
|
|
101
|
-
| `
|
|
102
|
-
| `
|
|
103
|
-
| `
|
|
104
|
-
| `
|
|
99
|
+
| Type | Status | Direction | Description |
|
|
100
|
+
|------|--------|-----------|-------------|
|
|
101
|
+
| `dnd:roll` | ✅ stable | sheet → host | A roll result |
|
|
102
|
+
| `dnd:manifest` | 🧪 reserved | sheet → host | Sheet capabilities at handshake |
|
|
103
|
+
| `dnd:health` | 🧪 reserved | sheet → host | HP after an adjust/set |
|
|
104
|
+
| `dnd:command` | 🧪 reserved | host → sheet | Narrow inbound ops (adjust HP, toggle condition, …) |
|
|
105
|
+
|
|
106
|
+
Reserved events are typed and functional — the sheet implements them — but the bridge-side wiring is considered experimental API and may change. Wire them directly via `BridgeSheetSource.onEvent` rather than through `createRollBridge`.
|
|
105
107
|
|
|
106
108
|
## License
|
|
107
109
|
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { V as VTTAdapter, a as VTTUser, S as SheetEvent, N as NotifyVariant } from '../../types-
|
|
1
|
+
import { V as VTTAdapter, a as VTTUser, S as SheetEvent, N as NotifyVariant } from '../../types-w2_82sqo.js';
|
|
2
2
|
|
|
3
3
|
/**
|
|
4
4
|
* Owlbear Rodeo implementation of {@link VTTAdapter}.
|
package/dist/index.d.ts
CHANGED
|
@@ -1,19 +1,22 @@
|
|
|
1
|
-
import { b as SheetSource, V as VTTAdapter,
|
|
2
|
-
export {
|
|
1
|
+
import { b as SheetSource, V as VTTAdapter, R as RollBridgeOptions, c as SheetClientOptions, d as SheetClient, C as CapabilityManifest, S as SheetEvent, M as MessageHost, D as DiceRollPayload, N as NotifyVariant } from './types-w2_82sqo.js';
|
|
2
|
+
export { e as CapabilityDescriptor, f as CapabilityOpAddTag, g as CapabilityOpAdjust, h as CapabilityOpName, i as CapabilityOpRemoveTag, j as CapabilityOpRequestRoll, k as CapabilityOpSet, l as CapabilityOpToggle, m as CapabilityOperation, H as HealthChangedPayload, n as MessageTarget, o as RollBridgeMessages, a as VTTUser, p as VTTUserRole } from './types-w2_82sqo.js';
|
|
3
3
|
|
|
4
4
|
/**
|
|
5
|
-
*
|
|
6
|
-
* integration in one place, and it knows nothing about any specific sheet app or
|
|
7
|
-
* any specific VTT:
|
|
5
|
+
* The default roll bridge — one opinionated policy, not the full protocol.
|
|
8
6
|
*
|
|
7
|
+
* Wires {@link SheetSource} → {@link VTTAdapter} for the `dnd:roll` event only:
|
|
9
8
|
* - a roll on the sheet → local toast for the roller + broadcast to other
|
|
10
9
|
* clients + a transient label over the roller's selected token;
|
|
11
10
|
* - a roll broadcast by another client → local toast.
|
|
12
11
|
*
|
|
12
|
+
* Inbound capability wiring (`dnd:command`, `dnd:manifest`, `dnd:health`) is
|
|
13
|
+
* deliberately out of scope here — wire those directly via
|
|
14
|
+
* {@link BridgeSheetSource.onEvent} when your bridge needs them.
|
|
15
|
+
*
|
|
13
16
|
* Returns a dispose fn that tears down every subscription it created. The
|
|
14
17
|
* adapter is left untouched — it may be shared and longer-lived than the bridge.
|
|
15
18
|
*/
|
|
16
|
-
declare function
|
|
19
|
+
declare function createRollBridge(source: SheetSource, adapter: VTTAdapter, options?: RollBridgeOptions): () => void;
|
|
17
20
|
|
|
18
21
|
/**
|
|
19
22
|
* Sheet-side half of the postMessage transport. The character sheet (running in
|
|
@@ -43,7 +46,7 @@ interface BridgeSheetSourceOptions {
|
|
|
43
46
|
/** Origin to post inbound commands to. Default `'*'`. */
|
|
44
47
|
targetOrigin?: string;
|
|
45
48
|
}
|
|
46
|
-
/** A `SheetSource` (for `
|
|
49
|
+
/** A `SheetSource` (for `createRollBridge`) plus raw access and inbound `send`. */
|
|
47
50
|
interface BridgeSheetSource extends SheetSource {
|
|
48
51
|
/** Subscribe to the sheet's capability manifest (sent once at handshake). Returns an unsubscribe fn. */
|
|
49
52
|
onManifest(handler: (manifest: CapabilityManifest) => void): () => void;
|
|
@@ -56,7 +59,7 @@ interface BridgeSheetSource extends SheetSource {
|
|
|
56
59
|
/**
|
|
57
60
|
* Bridge-side half of the postMessage transport. Runs in the bridge frame (the
|
|
58
61
|
* VTT extension), listens to the embedded sheet iframe, and exposes a
|
|
59
|
-
* `SheetSource` so `
|
|
62
|
+
* `SheetSource` so `createRollBridge` can drive the VTT adapter — without the
|
|
60
63
|
* bridge ever touching the sheet's internals.
|
|
61
64
|
*
|
|
62
65
|
* `contentWindow` is read live on every message/send, so it survives the sheet
|
|
@@ -69,4 +72,4 @@ declare function formatRollMessage(payload: DiceRollPayload): string;
|
|
|
69
72
|
/** Maps a roll's crit state onto a toast variant. */
|
|
70
73
|
declare function rollVariant(payload: DiceRollPayload): NotifyVariant;
|
|
71
74
|
|
|
72
|
-
export { type BridgeSheetSource, type BridgeSheetSourceOptions, CapabilityManifest, DiceRollPayload, MessageHost, NotifyVariant,
|
|
75
|
+
export { type BridgeSheetSource, type BridgeSheetSourceOptions, CapabilityManifest, DiceRollPayload, MessageHost, NotifyVariant, RollBridgeOptions, SheetClient, SheetClientOptions, SheetEvent, type SheetFrameRef, SheetSource, VTTAdapter, createBridgeSheetSource, createRollBridge, createSheetClient, formatRollMessage, rollVariant };
|
package/dist/index.js
CHANGED
|
@@ -20,12 +20,12 @@ function rollVariant(payload) {
|
|
|
20
20
|
return "info";
|
|
21
21
|
}
|
|
22
22
|
|
|
23
|
-
// src/
|
|
23
|
+
// src/createRollBridge.ts
|
|
24
24
|
var DEFAULT_MESSAGES = {
|
|
25
25
|
connected: "\u{1F3B2} Sheet connected to the table",
|
|
26
26
|
labelHint: "No label placed \u2014 select exactly one of your tokens on the map"
|
|
27
27
|
};
|
|
28
|
-
function
|
|
28
|
+
function createRollBridge(source, adapter, options = {}) {
|
|
29
29
|
const messages = { ...DEFAULT_MESSAGES, ...options.messages };
|
|
30
30
|
const cleanups = [];
|
|
31
31
|
let cancelled = false;
|
|
@@ -185,4 +185,4 @@ function createBridgeSheetSource(options) {
|
|
|
185
185
|
};
|
|
186
186
|
}
|
|
187
187
|
|
|
188
|
-
export { createBridgeSheetSource,
|
|
188
|
+
export { createBridgeSheetSource, createRollBridge, createSheetClient, formatRollMessage, rollVariant };
|
|
@@ -29,6 +29,7 @@ interface DiceRollPayload {
|
|
|
29
29
|
}
|
|
30
30
|
type CapabilityOpName = 'adjust' | 'set' | 'toggle' | 'add-tag' | 'remove-tag' | 'request-roll';
|
|
31
31
|
/**
|
|
32
|
+
* @experimental
|
|
32
33
|
* adjust: apply a signed delta to a numeric capability.
|
|
33
34
|
* Sign convention: negative delta = subtract (damage), positive delta = add (heal/gain).
|
|
34
35
|
* The sheet applies its own rules (temp HP absorption, resistances, clamping).
|
|
@@ -38,18 +39,19 @@ interface CapabilityOpAdjust {
|
|
|
38
39
|
capabilityId: string;
|
|
39
40
|
delta: number;
|
|
40
41
|
}
|
|
41
|
-
/** set: overwrite a capability value outright. */
|
|
42
|
+
/** @experimental set: overwrite a capability value outright. */
|
|
42
43
|
interface CapabilityOpSet {
|
|
43
44
|
op: 'set';
|
|
44
45
|
capabilityId: string;
|
|
45
46
|
value: number | boolean | string;
|
|
46
47
|
}
|
|
47
|
-
/** toggle: flip a boolean capability. */
|
|
48
|
+
/** @experimental toggle: flip a boolean capability. */
|
|
48
49
|
interface CapabilityOpToggle {
|
|
49
50
|
op: 'toggle';
|
|
50
51
|
capabilityId: string;
|
|
51
52
|
}
|
|
52
53
|
/**
|
|
54
|
+
* @experimental
|
|
53
55
|
* add-tag: append a label to a tag-track capability (e.g. a condition).
|
|
54
56
|
* Idempotent — if the value is already present, the sheet must ignore the command.
|
|
55
57
|
*/
|
|
@@ -59,6 +61,7 @@ interface CapabilityOpAddTag {
|
|
|
59
61
|
value: string;
|
|
60
62
|
}
|
|
61
63
|
/**
|
|
64
|
+
* @experimental
|
|
62
65
|
* remove-tag: remove a label from a tag-track capability.
|
|
63
66
|
* Removes the first occurrence. Assumes a well-behaved set (no duplicates in DnD5e conditions).
|
|
64
67
|
*/
|
|
@@ -67,7 +70,7 @@ interface CapabilityOpRemoveTag {
|
|
|
67
70
|
capabilityId: string;
|
|
68
71
|
value: string;
|
|
69
72
|
}
|
|
70
|
-
/** request-roll: ask the sheet to roll a d20 check against an optional DC. */
|
|
73
|
+
/** @experimental request-roll: ask the sheet to roll a d20 check against an optional DC. */
|
|
71
74
|
interface CapabilityOpRequestRoll {
|
|
72
75
|
op: 'request-roll';
|
|
73
76
|
capabilityId: string;
|
|
@@ -75,12 +78,13 @@ interface CapabilityOpRequestRoll {
|
|
|
75
78
|
dc?: number;
|
|
76
79
|
}
|
|
77
80
|
type CapabilityOperation = CapabilityOpAdjust | CapabilityOpSet | CapabilityOpToggle | CapabilityOpAddTag | CapabilityOpRemoveTag | CapabilityOpRequestRoll;
|
|
78
|
-
/** One capability entry in the sheet manifest. */
|
|
81
|
+
/** @experimental One capability entry in the sheet manifest. */
|
|
79
82
|
interface CapabilityDescriptor {
|
|
80
83
|
id: string;
|
|
81
84
|
operations: CapabilityOpName[];
|
|
82
85
|
}
|
|
83
86
|
/**
|
|
87
|
+
* @experimental
|
|
84
88
|
* Capability manifest — the sheet's public declaration of what the host may do.
|
|
85
89
|
* Sent outbound by the sheet at handshake time; the host reads it to know which
|
|
86
90
|
* dnd:command operations are valid for this member.
|
|
@@ -91,7 +95,7 @@ interface CapabilityManifest {
|
|
|
91
95
|
sheetSystem: string;
|
|
92
96
|
capabilities: CapabilityDescriptor[];
|
|
93
97
|
}
|
|
94
|
-
/** Outbound fact: HP values after the sheet has applied an adjust/set command. */
|
|
98
|
+
/** @experimental Outbound fact: HP values after the sheet has applied an adjust/set command. */
|
|
95
99
|
interface HealthChangedPayload {
|
|
96
100
|
characterId: string;
|
|
97
101
|
current: number;
|
|
@@ -101,19 +105,29 @@ interface HealthChangedPayload {
|
|
|
101
105
|
/**
|
|
102
106
|
* Everything that crosses the sheet↔VTT boundary.
|
|
103
107
|
*
|
|
104
|
-
*
|
|
105
|
-
*
|
|
108
|
+
* | Type | Status | Direction |
|
|
109
|
+
* |------|--------|-----------|
|
|
110
|
+
* | `dnd:roll` | stable | sheet → host |
|
|
111
|
+
* | `dnd:manifest` | experimental | sheet → host |
|
|
112
|
+
* | `dnd:health` | experimental | sheet → host |
|
|
113
|
+
* | `dnd:command` | experimental | host → sheet |
|
|
106
114
|
*/
|
|
107
115
|
type SheetEvent = {
|
|
108
116
|
type: 'dnd:roll';
|
|
109
117
|
payload: DiceRollPayload;
|
|
110
|
-
}
|
|
118
|
+
}
|
|
119
|
+
/** @experimental */
|
|
120
|
+
| {
|
|
111
121
|
type: 'dnd:manifest';
|
|
112
122
|
payload: CapabilityManifest;
|
|
113
|
-
}
|
|
123
|
+
}
|
|
124
|
+
/** @experimental */
|
|
125
|
+
| {
|
|
114
126
|
type: 'dnd:health';
|
|
115
127
|
payload: HealthChangedPayload;
|
|
116
|
-
}
|
|
128
|
+
}
|
|
129
|
+
/** @experimental */
|
|
130
|
+
| {
|
|
117
131
|
type: 'dnd:command';
|
|
118
132
|
payload: CapabilityOperation;
|
|
119
133
|
};
|
|
@@ -127,14 +141,14 @@ interface SheetSource {
|
|
|
127
141
|
onRoll(handler: (roll: DiceRollPayload) => void): () => void;
|
|
128
142
|
}
|
|
129
143
|
/** Human-facing strings surfaced by the bridge — override to localize. */
|
|
130
|
-
interface
|
|
144
|
+
interface RollBridgeMessages {
|
|
131
145
|
/** Toast shown once the sheet connects to the table. */
|
|
132
146
|
connected: string;
|
|
133
147
|
/** Toast shown to the roller when a token label could not be placed. */
|
|
134
148
|
labelHint: string;
|
|
135
149
|
}
|
|
136
|
-
interface
|
|
137
|
-
messages?: Partial<
|
|
150
|
+
interface RollBridgeOptions {
|
|
151
|
+
messages?: Partial<RollBridgeMessages>;
|
|
138
152
|
}
|
|
139
153
|
/**
|
|
140
154
|
* The seam every VTT implements. The sheet talks only to this interface; each
|
|
@@ -204,4 +218,4 @@ interface SheetClient {
|
|
|
204
218
|
dispose(): void;
|
|
205
219
|
}
|
|
206
220
|
|
|
207
|
-
export type { CapabilityManifest as C, DiceRollPayload as D, HealthChangedPayload as H, MessageHost as M, NotifyVariant as N, SheetEvent as S, VTTAdapter as V, VTTUser as a, SheetSource as b,
|
|
221
|
+
export type { CapabilityManifest as C, DiceRollPayload as D, HealthChangedPayload as H, MessageHost as M, NotifyVariant as N, RollBridgeOptions as R, SheetEvent as S, VTTAdapter as V, VTTUser as a, SheetSource as b, SheetClientOptions as c, SheetClient as d, CapabilityDescriptor as e, CapabilityOpAddTag as f, CapabilityOpAdjust as g, CapabilityOpName as h, CapabilityOpRemoveTag as i, CapabilityOpRequestRoll as j, CapabilityOpSet as k, CapabilityOpToggle as l, CapabilityOperation as m, MessageTarget as n, RollBridgeMessages as o, VTTUserRole as p };
|