-
Notifications
You must be signed in to change notification settings - Fork 0
189 lines (151 loc) · 4.63 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
import {
BuiltInEvents,
Component,
ComponentData,
ComponentEndEvent,
ComponentResetEvent,
dispatchCompleted,
dispatchComponentEvent,
dispatchNextComponentEvent,
getComponentInformation,
JSONSchema7,
registerComponent,
GameEndEvent
} from "./library/parkmyst-1";
interface FinisherData extends ComponentData {
toFinish: number
}
export class Finisher extends Component<FinisherData> {
description = "The Finisher component will send a componentEnd lifecycle event (finishes the component) to the component on its 'toFinish' port."
schema: JSONSchema7 = {
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"required": [
"toFinish"
],
"definitions": {
"component": {
"$id": "#/definitions/component",
"type": "number",
"title": "Next component",
"default": -1,
"minimum": -1,
"format": "parkmyst-id"
}
},
"properties": {
"toFinish": {
"$ref": "#/definitions/component",
"title": "Component to finish"
},
}
};
outputTemplates = {};
componentStartEvent = () => {
dispatchComponentEvent<ComponentEndEvent>({
type: BuiltInEvents.ComponentEnd,
data: {
target: getComponentInformation<FinisherData>().data.toFinish
}
});
dispatchCompleted();
}
componentCleanUp = () => {
}
componentCompleted = () => {
const component = this.getInformation();
dispatchNextComponentEvent(component.nextComponents)
}
}
registerComponent(new Finisher());
interface ReseterData extends ComponentData {
toReset: number
}
export class Reseter extends Component<ReseterData> {
description = "The Rester component will send a componentReset lifecycle event (reverts to original state) to the component on its 'toFinish' port."
schema: JSONSchema7 = {
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"required": [
"toReset"
],
"definitions": {
"component": {
"$id": "#/definitions/component",
"type": "number",
"title": "Next component",
"default": -1,
"minimum": -1,
"format": "parkmyst-id"
}
},
"properties": {
"toReset": {
"$ref": "#/definitions/component",
"title": "Component to reset"
}
}
};
outputTemplates = {};
componentStartEvent = () => {
dispatchComponentEvent<ComponentResetEvent>({
type: BuiltInEvents.ComponentReset,
data: {
target: getComponentInformation<ReseterData>().data.toReset
}
});
dispatchCompleted();
}
componentCleanUp = () => {
}
componentCompleted = () => {
const component = this.getInformation();
dispatchNextComponentEvent(component.nextComponents)
}
}
registerComponent(new Reseter());
export class StartNode extends Component {
description = "The StartNode component will activate itself on the game's start, and finish itself shortly.";
schema: JSONSchema7 = {
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false,
"properties": {}
};
autoStart = true;
outputTemplates = {};
componentCompleted = () => {
const component = this.getInformation();
dispatchNextComponentEvent(component.nextComponents)
}
componentCleanUp = () => {
}
componentStartEvent = () => {
dispatchCompleted();
}
}
registerComponent(new StartNode());
export class EndNode extends Component {
description = "The EndNode will signal that the game has ended to the game.";
useNextComponents = false;
schema: JSONSchema7 = {
"$schema": "http://json-schema.org/draft-07/schema",
"type": "object",
"additionalProperties": false
};
outputTemplates = {};
protected componentCleanUp = (): void => {
}
protected componentCompleted = (): void => {
dispatchComponentEvent<GameEndEvent>({
type: BuiltInEvents.GameEnd,
data: {}
})
}
protected componentStartEvent = (): void => {
dispatchCompleted();
}
}
registerComponent(new EndNode());