-
Notifications
You must be signed in to change notification settings - Fork 0
287 lines (246 loc) · 7.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
import {
BuiltInEvents,
Component,
ComponentData,
ComponentEvent,
createFeed,
dispatchCompleted,
dispatchComponentEvent,
dispatchNextComponentEvent,
getComponentInformation,
isPlayerSender,
isPlayerUser,
JSONSchema7,
OutputTemplates,
PlayerPermission,
PlayerSender,
registerComponent,
removeFeed,
subscribeToEvent,
unsubscribeFromEvent,
updateStatus,
useSharedState,
useState
} from "./library/parkmyst-1";
interface PointEvent extends ComponentEvent {
type: "pointEvent",
sender: PlayerSender,
data: {
counterId: string
operation: "add" | "remove",
amount: number
}
}
function isPointEvent(event: ComponentEvent): event is PointEvent {
return event.type === "pointEvent"
&& typeof event.data.counterId === "string"
&& typeof event.data.amount === "number"
&& typeof event.data.operation === "string"
&& (event.data.operation === "add" || event.data.operation === "remove")
&& (!isPlayerSender(event.sender) || !isPlayerUser(event.sender))
}
interface GlobalPointState {
points: {
[key: string]: {
point: number
}
}
}
interface PointInitializerData extends ComponentData {
id: string
}
export class PointInitializer extends Component<PointInitializerData> {
description = "PointInitializer component will give you an always active component that counts points. \n" +
"If you want a point system from this plugin this MUST be present.";
schema: JSONSchema7 = {
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"required": [
"id"
],
"definitions": {
"component": {
"$id": "#/definitions/component",
"type": "number",
"title": "Next component",
"default": -1,
"minimum": -1,
"format": "parkmyst-id"
}
},
"properties": {
"id": {
"$id": "#/properties/id",
"type": "string",
"title": "Id for point system",
"default": "1",
}
}
};
autoStart = true;
useNextComponents: false;
outputTemplates = {};
constructor() {
super();
this.registerSafeEventListeners("pointEvent", this.handlePointEvent, isPointEvent);
}
componentStartEvent = (): void => {
const component = this.getInformation();
const [context, setContext] = useSharedState<GlobalPointState>();
if (context.points === undefined)
context.points = {};
context.points[component.data.id] = {
point: 0
};
setContext(context);
subscribeToEvent("pointEvent");
}
componentCleanUp = () => {
unsubscribeFromEvent("pointEvent");
}
componentCompleted = () => {
}
handlePointEvent = (event: PointEvent) => {
const component = this.getInformation();
if (event.data.counterId === component.data.id || event.data.counterId.length === 0) {
const [context, setContext] = useSharedState<GlobalPointState>();
switch (event.data.operation) {
case "add":
context.points[component.data.id].point += event.data.amount;
break;
case "remove":
context.points[component.data.id].point -= event.data.amount;
break;
}
setContext(context);
}
}
}
registerComponent(new PointInitializer());
interface PointChangerData extends ComponentData {
counterId: string,
operation: "add" | "remove",
amount: number
}
export class PointChanger extends Component<PointChangerData> {
description = "PointChanger component will give a mean to change the points in the point system.\n" +
"The following basic arithmetic operations are permitted: \n" +
"- add: Will add 'amount' of points\n" +
"- remove: Will deduct 'amount' of points\n" +
"You can specify the point system with the 'counterId' property";
schema: JSONSchema7 = {
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"required": [
"counterId",
"operation",
"amount"
],
"properties": {
"counterId": {
"$id": "#/properties/counterId",
"type": "string",
"title": "Id for point system",
"default": "1"
},
"operation": {
"$id": "#/properties/operation",
"type": "string",
"title": "Type of the operation",
"default": "add",
"enum": ["add", "remove"]
},
"amount": {
"$id": "#/properties/amount",
"type": "integer",
"title": "Amount of points to change",
"default": 1.0,
"minimum": 0.0,
"multipleOf": 1.0
}
}
};
outputTemplates = {};
componentStartEvent = (): void => {
const component = this.getInformation();
dispatchComponentEvent({
type: "pointEvent",
data: {
counterId: component.data.counterId,
amount: component.data.amount,
operation: component.data.operation,
}
});
dispatchCompleted();
}
componentCompleted = () => {
const component = this.getInformation();
dispatchNextComponentEvent(component.nextComponents);
}
componentCleanUp = () => {
}
}
registerComponent(new PointChanger());
interface PointResultData extends ComponentData {
counterId: string
}
interface PointResultState {
messageId: string
}
export class PointResult extends Component<PointResultData, PointResultState> {
description = "PointResult component allows you to show the current situation of points inside a point system.\n" +
"Will signal the next components and stays active.";
schema: JSONSchema7 = {
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"required": [
"counterId"
],
"properties": {
"counterId": {
"$id": "#/properties/counterId",
"type": "string",
"title": "Id for point system",
"default": "1"
}
}
};
outputTemplates: OutputTemplates = {
pointResult: {
example: {
points: 5
},
template: `<div>
<p>You scored: {{points}}</p>
</div>`
}
};
useNextComponents = false;
doCleanUpOnCompletion = false;
defaultCleanUpEnabled = false;
componentStartEvent = (): void => {
const component = this.getInformation()
const [context,] = useSharedState<GlobalPointState>();
const points = context.points[component.data.counterId]?.point ?? -1;
const [, setCtx] = this.useState();
const feedId = createFeed("pointResult", { points }, PlayerPermission.User);
setCtx({ messageId: feedId });
dispatchCompleted();
}
componentCleanUp = () => {
const [ctx,] = this.useState();
removeFeed(ctx.messageId);
updateStatus("idle");
subscribeToEvent(BuiltInEvents.ComponentStart)
unsubscribeFromEvent(BuiltInEvents.ComponentReset);
unsubscribeFromEvent(BuiltInEvents.ComponentEnd);
}
componentCompleted = () => {
const component = this.getInformation();
dispatchNextComponentEvent(component.nextComponents);
}
}
registerComponent(new PointResult());