Changeset 4595 in orxonox.OLD for orxonox/trunk/src/defs
- Timestamp:
- Jun 10, 2005, 11:22:00 PM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/defs/class_list.h
r4594 r4595 19 19 \brief list of orxonox classes 20 20 21 this File is used to identify an Object with its class and also with its sub classes.21 this File is used to identify an Object with its class and also with its sub/super-classes. 22 22 this is also used by the ObjectManager to identify and load important classes 23 23 */ … … 34 34 * inheritance is done in the following way: Classes are identified by 35 35 * a HEX-number eg: 0x12345678 36 * The number has 8 x16entries.36 * The number has 8^4 entries. 37 37 * The first two: 1,2 superclass identifiers to 38 38 * The second three are for subclasses with inheritance … … 69 69 // lowest level classes 70 70 CL_MASK_LOWLEVEL_CLASS = 0x00000fff, 71 71 72 // singleton classes (range from 0x00000001 to 0x000000ff) 72 73 CL_MASK_SINGLETON = 0x0000003f, … … 74 75 CL_NULL_PARENT = 0x00000002, 75 76 CL_PILOT_PARENT = 0x00000003, 76 77 77 CL_OBJECT_MANAGER = 0x00000004, 78 78 CL_RESOURCE_MANAGER = 0x00000005, … … 95 95 96 96 97 // story entities (range from 0x00000101 to 0x000001ff)97 // StoryEntities (range from 0x00000101 to 0x000001ff) 98 98 CL_CAMPAIGN = 0x00000101, 99 99 CL_WORLD = 0x00000102, 100 100 101 // world entities (range from 0x00000201 to 0x000005ff)101 // WorldEntities (range from 0x00000201 to 0x000005ff) 102 102 CL_CAMERA = 0x00000201, 103 103 CL_CAMERA_TARGET = 0x00000202, … … 112 112 CL_TEST_GUN = 0x0000020a, 113 113 114 CL_CHARACTER_ATTRIBUTES,115 114 115 CL_EVENT = 0x00000a08, 116 CL_KEY_MAPPER = 0x00000a09, 116 117 117 CL_ANIMATION, 118 CL_ANIMATION3D, 118 // graphical stuff (range from 0x00000800 to 0x000009ff) 119 CL_TEXT = 0x00000801, 120 CL_MATERIAL = 0x00000802, 121 CL_MODEL = 0x00000803, //!< \todo make this a SUBCLASS maybe 122 CL_OBJMODEL = 0x00000804, 123 CL_PROMITIVE_MODEL = 0x00000805, 124 CL_MD2Model = 0x00000806, 125 CL_LIGHT = 0x00000807, 126 CL_PARTICLE_EMITTER = 0x00000808, 127 CL_PARTICLE_SYSTEM = 0x00000809, 128 // GL-menu 129 CL_GLMENU_IMAGE_SCREEN = 0x00000901, 119 130 120 CL_ARRAY, 121 CL_CURVE, 122 CL_VECTOR, 123 CL_FACTORY, 124 CL_INI_PARSER, 125 CL_LIST, 126 CL_SUBSTRING, 127 CL_LOAD_PARAM, 128 129 130 CL_EVENT, 131 CL_KEY_MAPPER, 132 133 CL_TEXT, 134 CL_GLMENU_IMAGE_SCREEN, 135 CL_LIGHT, 136 CL_MATERIAL, 137 CL_MD2Model, 138 CL_MODEL, 139 CL_OBJMODEL, 140 CL_PROMITIVE_MODEL, 141 142 CL_PARTICLE_EMITTER, 143 CL_PARTICLE_SYSTEM, 144 131 // Collision 145 132 CL_COLLISION, 146 133 CL_BV_TREE, … … 152 139 CL_BOUNDING_SPHERE, 153 140 141 // misc: (range from 0x00000a00 to 0x00000bff) 142 CL_ANIMATION = 0x00000a01, 143 // CL_ANIMATION3D = 0x00000a02, 144 CL_FACTORY = 0x00000a02, 145 CL_INI_PARSER = 0x00000a03, 146 CL_LIST = 0x00000a04, 147 CL_SUBSTRING = 0x00000a05, 148 CL_LOAD_PARAM = 0x00000a06, 149 CL_CURVE = 0x00000a07, 150 CL_VECTOR = 0x00000a08, 151 CL_CHARACTER_ATTRIBUTES = 0x00000a09, 154 152 CL_NUMBER 155 153 };
Note: See TracChangeset
for help on using the changeset viewer.