This commit is contained in:
parent
f785079bda
commit
e1fb3c60fc
17
docs/game/actions/atoms.txt
Normal file
17
docs/game/actions/atoms.txt
Normal file
@ -0,0 +1,17 @@
|
|||||||
|
The possible agent actions in as atomic detail as possible
|
||||||
|
|
||||||
|
|
||||||
|
move
|
||||||
|
pick up
|
||||||
|
place
|
||||||
|
combine
|
||||||
|
equip
|
||||||
|
unequip
|
||||||
|
sit
|
||||||
|
control
|
||||||
|
observe
|
||||||
|
lay
|
||||||
|
sleep
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
98
docs/game/actions/examples.txt
Normal file
98
docs/game/actions/examples.txt
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
move to a new room
|
||||||
|
objects:
|
||||||
|
agent
|
||||||
|
other room
|
||||||
|
|
||||||
|
(move) to the other room
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
write a note
|
||||||
|
objects:
|
||||||
|
desk
|
||||||
|
pencil (on desk)
|
||||||
|
paper (on desk)
|
||||||
|
|
||||||
|
(pick up) pencil (transfer storage)
|
||||||
|
(pick up) paper (transfer storage)
|
||||||
|
(combine) pencil and paper
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
put on a shoe
|
||||||
|
objects:
|
||||||
|
agent
|
||||||
|
shoe
|
||||||
|
|
||||||
|
(pick up) shoe
|
||||||
|
(equip) on self
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
sit in a chair
|
||||||
|
objects:
|
||||||
|
agent
|
||||||
|
chair
|
||||||
|
|
||||||
|
(sit) on the chair
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
watch a television
|
||||||
|
objects:
|
||||||
|
agent
|
||||||
|
remote
|
||||||
|
television
|
||||||
|
|
||||||
|
if television is off,
|
||||||
|
(pick up) remote
|
||||||
|
(control) television
|
||||||
|
(place) remote
|
||||||
|
(observe) television
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
sleep in a bed
|
||||||
|
objects:
|
||||||
|
agent
|
||||||
|
bed
|
||||||
|
(lay) on the bed
|
||||||
|
(sleep)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
@ -1,9 +1,12 @@
|
|||||||
|
|
||||||
|
|
||||||
|
|
||||||
- Characters that you can talk to in the world
|
- Agents that you can talk to in the world
|
||||||
- Move into different spaces in the world
|
- Agents have task sequences that they are responsible for which they pursue
|
||||||
- Interact with items in the world
|
- Agents can move from location to location
|
||||||
- Combat
|
- Agents can pick up items
|
||||||
|
- Agents can place items
|
||||||
|
- Agents can use items
|
||||||
|
- Agents can
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user