Many virtual reality (VR) experiences take place in a series of rooms. In comparison to room-based physical experiences (think of escape rooms or museums), VR offers the possibility to adjust future rooms and layouts on the fly to certain criteria. To make this possible, rooms and the modules therein must be designed in a way that allows them to be adjusted to the requirements of the specific application.
This document is a framework for modular room design in VR. Experiences implementing Modular VR are able to procedurally create new rooms and adapt future rooms to the user.
For this document to be easier to understand, we introduce an example of a virtual escape room built with Modular VR. This room should generate different puzzles and rooms with puzzles each time it is played. Additionally, it should be able to adjust to the experience of the player by generating more difficult or easier puzzles in subsequent rooms.
Modular VR is made to guide the implementation of room-based VR applications that adjust the experience to the user while they are in it. In this document, we will call these applications the engine.
The experience is the virtual environment that the user sees and interacts with. It is generated by the engine out of random and modular parts.
An experience can have several goals, be they recreational, educational or otherwise.
For the engine to dynamically adapt to the user, it needs measures by which it can decide how to change the experience. These measures are defined according to their use and can be broadly categorised into
An example for a passive measure is how long the player takes to solve puzzles in an escape room. The engine can use this data to adjust future rooms to contain more puzzles of a difficulty level appropriate for the player.
An active measure might be which choice a player makes when they reach a point at which they can choose whether to continue with the experience or not.
A room is the abstract definition of a location that the user can find themselves in. It contains a physical representation of the room, a group of spaces, and any number of modules.
Rooms that have not yet been visited can be dynamically created and adjusted to fit the measures of the currently running experience or recorded measures from past experiences. As soon as a room is available to be accessed by the user, it should not be fundamentally changed any more.
Rooms themselves do not tell anything about their physical representation, but they must consist of at least one space that does.
The physical representation of rooms is contained in a space or a group of spaces. They provide a physical layout, a polygon that defines the ground plan of the space. Generally, it is advisable to restrict the layout of spaces to the physical space available to the engine, which is normally a rectangle.
A space may contain multiple modules.
A module is an arbitrary, self-contained element. It is placed in a space by the engine according to measures and possible requirements to ensure a module is only used the way it was intended to be used.
Modules have one or more types that help the engine distinguish them. Two or more modules may be related. Finally, modules may contain or provide any number of objects.
Examples for modules are puzzles in an escape room or the doors that connect spaces.
Modules should be built with the goal of creating multiple variants in mind. A variant of a module has the same type, relations and possibly requirements. It can however work or appear differently from other variants of the same module.
Variants of a puzzle module can be used to make sure if a player knows the solution of a puzzle, they cannot solve it as easily as if the puzzle was always the same. Alternatively, multiple puzzle variants with a range of difficulties could be made for the engine to have more options of difficult and easy puzzles.
Spaces can be connected to other spaces within the current room or spaces in other rooms. A passage consists of two doors, which themselves are a module in a space.
Passages can be simple doors, moving platforms, elevators, portals or anything else transporting the user between spaces.
Module types give a high-level description of a module. They may be used by the engine to distinguish different modules either for the purpose of choosing and placing them or to find the right measures to analyse them.
Types can be defined as a flat list of strings if they don't have any correlation. Otherwise, they should be in a tree structure formatted like "parent-type/child-type".
Module types can be used when measuring the interactions with puzzle modules. These could be types like "dexterity", "mental" or "exploration".
Depending on the use case, there could be different kinds of doors, e.g. "door/simple", "door/teleporter-exit" or "door/teleporter-entry".
Modules may have certain restrictions on how they should be used by the engine. Requirements exactly specify these restrictions.
The facing requirement is a strictly stronger requirement to the existence requirement. The space size requirement is useful to prevent large modules from filling up small spaces.
More types of requirements can be developed to fit the needs of an engine.
Multiple modules that form a logical union without necessarily being positioned together should be defined by a relation. The relation does not impose any restrictions on the modules, it simply allows the modules to be aware of each other. If a module needs its related modules to exist in the same space or room, an existence requirement should be used.
Relations may be used with a set number of modules. Alternatively, they can combine an arbitrary number of modules into one bucket. These types of relations are called group relations or collection relations respectively.
Related modules could for example be parts of a single puzzle that are placed separately from each other in an escape room.
Everything that can be picked up by the user without being restrained to a specific module is considered to be an object. Modules can provide objects, require them or both.
A puzzle could drop a key for the user to unlock another puzzle.