Tasks:Object Models
Back to Task List
Overview
The Object Model defines the shape and position of things that can be placed in the game world. It is required for Collision Detection, Path Finding and Rendering.
Dependencies
None
Requirements
- Objects have one or more states. (like "open", "closed" for doors or containers)
- Each state has its own graphical and internal representation.
- The internal representation is composed of one or more cube shapes, defined by 8 freely positioned points.
- For further processing, the internal representation is converted into a list of triangles.
- Object graphics are composed of one or more 2D images.
- A base point defines the location of an object on the map.
References
- Map object suggestion on adonthell-devel
- Current map engine implementation.