-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontroller_machine.json
More file actions
23 lines (23 loc) · 845 Bytes
/
controller_machine.json
File metadata and controls
23 lines (23 loc) · 845 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"id": "controller",
"initialState": "idle",
"states": [
{ "id": "idle", "onEnter": [] },
{ "id": "approaching", "onEnter": ["emit_approaching"] },
{ "id": "present", "onEnter": [] },
{ "id": "leaving", "onEnter": ["emit_leaving"] },
{ "id": "away", "onEnter": [] }
],
"actions": [
{ "id": "emit_approaching", "type": "EMIT", "target": "approaching", "parameters": {} },
{ "id": "emit_leaving", "type": "EMIT", "target": "leaving", "parameters": {} }
],
"functions": [],
"transitions": [
{ "from": "idle", "event": "seen", "to": "approaching" },
{ "from": "approaching", "event": "seen", "to": "present" },
{ "from": "present", "event": "¬seen", "to": "leaving" },
{ "from": "leaving", "event": "¬seen", "to": "away" },
{ "from": "away", "event": "¬seen", "to": "idle" }
]
}