Disappearing Doors by Andrew Plotkin


The Standard Rules let you "change the (direction) exit of (room) to (room)", but doors are fixed in place on the map. This extension does not allow you to move doors around, but it does let you make a door disappear and then reappear in the same place.

This is done through a "present" (or "absent") property of doors. So you can write:

now the magic door is absent;
now the magic door is present;

if the magic door is absent:...
if the magic door is present:...

Doors always start as "present". If you want an initially hidden door to be revealed (a common case) then you must say:

When play begins:
     now the secret door is absent.

When a door disappears, it leaves no exit where it was previously connected. You can reconnect those directions to other rooms, but you must disconnect them before you make the door present again.

Making a door disappear or reappear does not affect whether it is open, closed, locked, or unlocked.

A one-sided door cannot be made absent. This extension only works on two-sided doors.

(This extension has been tested with Inform 6G60 and 6L38.)

Example: * The Prisoner of La-Z-enda - A simple demonstration of an appearing door.

"The Prisoner of La-Z-enda"

Include Disappearing Doors by Andrew Plotkin.

The Prison Cell is a room. "These four stone walls are all you have seen of the world for thirty-five interminable minutes. [if the steel door is absent]There is no way in or out. Except for the[else]There's an[end if] escape tunnel to the northeast[if the Tunnel is not visited], but that looks terribly uncomfortable, so you've never tried it[end if]."

Instead of going nowhere in the Prison Cell:
     say "The walls are obdurate."

The steel door is a door. The steel door is north of the Prison Cell. "A door beckons in the [direction of steel door from location] wall!"

The Tunnel is a room. "The tunnel is less uncomfortable than you'd been led to believe. Your cell is southwest, and sweet freedom is northwest."
The Tunnel is southeast of the Hallway.
The Tunnel is northeast of the Prison Cell.

The Hallway is north of the steel door. "Many's the time you've imagined this corridor. It lives up to your expectations. The rest of your life is to the west."

Instead of going west in the Hallway:
     end the story finally saying "Freedom".

When play begins:
     now the steel door is absent.

The doorbell is carried by the player.
Understand "button", "bell", "device" as the doorbell.

The doorbell can be ever-tried.

The description of the doorbell is "It's a little bell-shaped device with a button on it. You once heard that pushing the button would make a door appear or disappear. [if the doorbell is not ever-tried]You've never bothered to try it.[else]Guess it works.[end if]"

Instead of pushing the doorbell:
     now the doorbell is ever-tried;
     if the steel door is present:
         if the steel door is in the location:
             say "The steel door disappears.";
         else:
             say "Click. Nothing seems to happen.";
         now the steel door is absent;
     else:
         now the steel door is present;
         if the steel door is in the location:
             say "A steel door appears!";
         else:
             say "Click. Nothing seems to happen."

Test me with "north / push button / look / north / examine door / push button / look / examine door / west".