The areas need to have a lot of structure so that they can be handled by automatic tools and the game engine. Because of this areas have an attribute that can be used to tell what kind of area it is.
All the scripting will be done in the implementation language (O'Caml). Actually most features of the game will be implemented using the scripting library.
The task system is implemented simply by using a priority queue with tasks. Tasks are structures that return what is left of the task when it has been executed for a certain time, or what is left after it has processed an event. If an actor has two tasks that should be executed at the same time, the one with larger priority is selected.
Another complication regarding attributes are modifiers: attributes can be temporarily modified because of some phenomena. An accessor function might detect the phenomena and modify the attributes accordingly. Another possibility is to apply the modifiers directly to the attribute data.
The task system is good for describing how the NPC should act, but not for describing what it should do. For mimicking rational behaviour, some knowledge about the world is needed. Some logic can be used to represent knowledge and reason about that knowledge. Then NPCs can generate plans to achieve their goals.
Hissim can generate population for the world. Because Hissim simulates everything, it can also generate relationships and family histories. With Hissim it's possible to have special attributes that might have caused special events in past.
Town generator can use Hissim generated or handwritten data. The data includes buildings with inhabitants. Also items and other objects are needed. Then the generator places the buildings and connects them with a road network. Towngen can also add trees, stones and other obstacles. When the town data is exported from Hissim, it is also possible to add possessions for persons.
Town simulator will use the datastructures in town generator to simulate a town in a level of detail that is higher than Hissim but lower than normal game level. It uses the scripting system described above. This simulator should run fast enough so that it can be determined if economy is balanced or not.
A lot of the game logic can be implemented at high level of abstraction using the town simulator. The simulator is parameterized by some tasks that add desired level of detail to the simulation. These tasks will be empty or just use some time when running on day-to-day level of detail. When running on normal level of detail, the tasks will move the character or otherwise change the graphics.
An important feature in computer role playing games is the predefined, possibly non-linear, story. The task system above doesn't support stories directly, it can only be used to script one entity at once. So some more support for stories is needed on top of the normal scripting system. Another possibility is that the story is not predefined. Then a planning system can be used to invent events that help players to achieve their goals.
Main Introduction Tutorial Technical Status Download Links
Last modified: Sunday, May 9, 2004