In a plot that takes place over multiple locations or has several distinct scenes, we may want to move the player or change the scenery around him. Age of Steam brings a train on and off-stage as the plot requires. Meteoric similarly brings a meteor into view at a certain time of day, showing off several implementations depending on whether or not the player is supposed to be able to refer to the meteor after it has gone.
Entrevaux constructs an organized system such that all scenes have their own lists of props and associated locations, and props are moved on and off automatically. Scene changes are also announced with a pause and a new title, such as "Chapter 2: Abduction".
Space Patrol - Stranded on Jupiter inserts an interlude in which the player's possessions and clothes are switched for new ones and the player moved to a new location - and then put back where he started from.
See Flashbacks for more ways to move the player from one level of reality to another
| Example Age of Steam The railway-station examples so far put together into a short game called "Age of Steam". | |
|  Example Meteoric I and II A meteor in the night sky which is visible from many rooms, so needs to be a backdrop, but which does not appear until 11:31 PM. | |
The timing of the meteor's arrival uses features of Inform which the next chapter will go into at greater detail: suffice to say that the game below begins at half past eleven, and that one turn later is meteor time.
"Meteoric I"
The time of day is 11:30 PM.
At 11:31 PM:
move meteor to the great outdoors;
say "A meteor streaks across the sky.".
The great outdoors is a region. The Spanish Balcony is east of the Inner Court. The Court and Balcony are in the great outdoors. Inside from the Court is the Swimming Pool.
The meteor is a backdrop. Instead of doing something to the meteor, say "The meteor is no longer visible, now nothing more than a memory."
Test me with "wait / wait / examine meteor / west / examine meteor / in / examine meteor".
Or for something a little slower-moving and with no after-image:
"Meteoric II"
The time of day is 4:30 PM.
At 4:31 PM:
move Phobos to the great outdoors;
say "Phobos rises from the western horizon."
At 10:06 PM:
remove Phobos from play;
say "Phobos sets over the eastern horizon."
The great outdoors is a region. The Martian Balcony is east of the Inner Court. The Court and Balcony are in the great outdoors. Inside from the Court is the Heavy Water Swimming Pool.
Phobos is a backdrop. Instead of doing something to Phobos, say "Phobos orbits a mere 6000km above you, which is practically touching range for astronomy. On the other hand, astronomy isn't all that practical."
Test me with "wait / wait / examine phobos / west / examine phobos / in / examine phobos".
Though we should not really use Earthly time-keeping, since the Martian day is about half an hour longer than ours.
|