Inform 7 Bootcamp Notes
Find slides at http://aramzs.me/7j
Find example at http://aramzs.me/7k
More examples at – http://iat.ubalt.edu/blodgett/TCG/
Inform 7 – entirely graphics free.
Natural language
Errors tab -> Problem button will tell you where things have gone wrong.
You can change the code as the came is running.
All you need to create a room is the room name.
[Room name] is [direction] of [room name]
Directions:
East
West
North
South
Up (above)
Down (below)
in
out
You can also declare something enterable (thing).
When dealing with directions ‘of’ can always be replaced by ‘from’.
You can declare a group a Region. – Group of rooms that are adjacent and share some attribute.
“There is a region called the cave. Everything in the cave is…”
Rooms can be lit or unlit. Unlit is completely dark, they need an inventory item to light it.
All objects are “thing” type and must be declared. If they are declared in a room they do not need to remain in that room.
You can create doors, which can be locked or unlocked. Doors do not have to be “Doors” they can be other things, like grates.
You can create something outside of a room (or without a room) and move it in later.
Using some will make the thing plural (a collection of multiple objects.)
No article causes it …