The first thing to decide is what constitutes a valid direction: is it from a fixed list or can it be freeform text? The simplest solution is to have the four cardinal directions. Some have suggested doing this as an int array. That might be a valid solution in C/C++/C# (enums in all of them are just int constants) but there is no reason to do it in Java.
In Java you can use a (typesafe) enum—which incidentally can have state and behaviour—and use an EnumMap, which is highly efficient. Internally it's just an array indexed by enum ordinal value. You might argue what's the difference between that and an int array? The answer is that the int array inside EnumMap is an internal implementation detail for a typesafe random access collection.
If you allow freeform text for the exit direction, your structure will look something like this:
Map<String, Direction> exits;
I don't recommend this however. I recommend enumerating possible directions:
public enum Direction {
NORTH("north", "n"),
NORTHWEST("northwest", "nw"),
...
IN("in"),
OUT("out");
private final static Map<String, Direction> INSTANCES;
static {
Map<String, Direction> map = new HashMap<String, Direction>();
for (Direction direction : values()) {
for (String exit : direction.exits) {
if (map.containsKey(exit)) {
throw new IllegalStateException("Exit '" + exit + "' duplicated");
}
map.put(exit, direction);
}
}
INSTANCES = Collections.unmodifiableMap(map);
}
private final List<String> exits;
Direction(String... exits) {
this.exits = Collections.unmodifiableList(Arrays.asList(exits));
}
public List<String> getExits() { return exits; }
public String getName() { return exits.get(0); }
public static Map<String, Direction> getInstances() { return INSTANCES; }
public static Direction getDirection(String exit) { return INSTANCES.get(exit); }
}
which you then store with:
private final Map<Direction, Exit> exits =
new EnumMap<Direction, Exit>(Direction.class);
That gives you type-safety, performance and extensibility.
The first way to think about this is as a Map:
Map<String, Room> exits;
where the key is a freeform direction (north, east, south, etc).
Next question: what is an Exit? In the simplest case, an Exit is simply what Room you end up in but then you start asking all sorts of questions like:
- Can the player see the exit?
- Is the exit closed or open?
- Can the exit be closed, opened, locked, unlocked, pushed open, etc?
- Can use of the exit be programmatic (eg you have to be carrying a certain amulet)?
- Can where you end up be programmatic (eg you could fall down a pit-trap and end up somewhere else entirely)?
- Can using an exit trigger some other action (eg setting off an alarm)?
It is necessary to consider the interface for a text adventure game. A player types in commands in the following form:
Verb [[preposition1] object1 [[preposition2] object2]]
That's one possibility at least. Examples would include:
- sit (verb = sit);
- open door (verb = open, object1 = door)
- look at book;
- lock chest with iron key (verb = lock, object1 = chest, preposition2 = with, object2 = iron key);
- cast fireball at orc;
- etc.
So the above covers a fairly comprehensive set of behaviour. The point of all this is:
- Exits will support a number of Verbs or Commands (eg you can open/close a door but not a passageway);
- Monsters and items also will support commands (a wand can be "waved" and an orc can be "hit");
- Exits, monsters and items are then all types of Objects (being things in game that can be interacted with in some way).
so:
public enum Command { LOOK, HIT, WAVE, OPEN, CLOSE, ... };
(and there will no doubt be behaviour associated with those instances) and:
public class GameObject {
boolean isSupported(Command command);
boolean trigger(Command command);
}
public class Exit extends GameObject {
...
}
GameObjects may also have other state such as whether they can be seen or not. Interestingly, the Direction enum instances are also arguably Commands, which again changes the abstraction.
So hopefully that should help point you in the right direction. There is no "right" answer for the abstraction because it all depends on what you need to model and support. This should hopefully give you a starting point however.