Changeset 9716 in orxonox.OLD for branches/new_class_id/src/lib
- Timestamp:
- Sep 1, 2006, 8:16:15 PM (19 years ago)
- Location:
- branches/new_class_id/src/lib
- Files:
-
- 27 edited
- 4 moved
Legend:
- Unmodified
- Added
- Removed
-
branches/new_class_id/src/lib/graphics/effects/cloud_effect.cc
r9715 r9716 29 29 #include "script_class.h" 30 30 31 #include "class_id .h"31 #include "class_id_DEPRECATED.h" 32 32 33 33 Vector CloudEffect::cloudColor; -
branches/new_class_id/src/lib/graphics/effects/fog_effect.cc
r9715 r9716 29 29 SHELL_COMMAND(fadeout, FogEffect, fadeOutFog); 30 30 31 #include "class_id .h"31 #include "class_id_DEPRECATED.h" 32 32 33 33 CREATE_SCRIPTABLE_CLASS(FogEffect, FogEffect::classID(), -
branches/new_class_id/src/lib/graphics/effects/lense_flare.cc
r9715 r9716 33 33 #include "camera.h" 34 34 35 #include "class_id .h"35 #include "class_id_DEPRECATED.h" 36 36 37 37 ObjectListDefinitionID(LenseFlare, CL_LENSE_FLARE); -
branches/new_class_id/src/lib/graphics/effects/lightning_effect.cc
r9715 r9716 27 27 #include "cloud_effect.h" 28 28 #include "script_class.h" 29 #include "class_id .h"29 #include "class_id_DEPRECATED.h" 30 30 31 31 ObjectListDefinitionID(LightningEffect, CL_LIGHTNING_EFFECT); -
branches/new_class_id/src/lib/graphics/effects/rain_effect.cc
r9715 r9716 31 31 #include "script_class.h" 32 32 33 #include "class_id .h"33 #include "class_id_DEPRECATED.h" 34 34 35 35 ObjectListDefinitionID(RainEffect, CL_RAIN_EFFECT); -
branches/new_class_id/src/lib/graphics/effects/snow_effect.cc
r9715 r9716 30 30 #include "cloud_effect.h" 31 31 32 #include "class_id .h"32 #include "class_id_DEPRECATED.h" 33 33 34 34 ObjectListDefinitionID(SnowEffect, CL_SNOW_EFFECT); -
branches/new_class_id/src/lib/graphics/effects/volfog_effect.cc
r9715 r9716 47 47 48 48 49 #include "class_id .h"49 #include "class_id_DEPRECATED.h" 50 50 ObjectListDefinitionID(VolFogEffect, CL_VOLFOG_EFFECT); 51 51 CREATE_FACTORY(VolFogEffect); -
branches/new_class_id/src/lib/graphics/light.cc
r9715 r9716 27 27 #include "debug.h" 28 28 29 #include "class_id .h"29 #include "class_id_DEPRECATED.h" 30 30 31 31 ObjectListDefinitionID(Light, CL_LIGHT); -
branches/new_class_id/src/lib/graphics/render2D/image_plane.cc
r9715 r9716 24 24 25 25 26 #include "class_id .h"26 #include "class_id_DEPRECATED.h" 27 27 28 28 ObjectListDefinitionID(ImagePlane, CL_IMAGE_PLANE); -
branches/new_class_id/src/lib/gui/gl/glmenu/glmenu_imagescreen.cc
r9715 r9716 25 25 #include "util/loading/load_param.h" 26 26 27 #include "class_id .h"27 #include "class_id_DEPRECATED.h" 28 28 ObjectListDefinitionID(GLMenuImageScreen, CL_GLMENU_IMAGE_SCREEN); 29 29 CREATE_FACTORY(GLMenuImageScreen); -
branches/new_class_id/src/lib/lang/Makefile.am
r9684 r9716 9 9 libORXlang_a_SOURCES = \ 10 10 base_object.cc \ 11 new_class_id.cc \12 new_object_list.cc11 class_id.cc \ 12 object_list.cc 13 13 14 14 noinst_HEADERS = \ 15 15 base_object.h \ 16 new_class_id.h \17 new_object_list.h16 class_id.h \ 17 object_list.h 18 18 19 19 -
branches/new_class_id/src/lib/lang/base_object.h
r9715 r9716 14 14 #define __BASE_OBJECT_H_ 15 15 16 #include " new_object_list.h"16 #include "object_list.h" 17 17 #include "sigslot/slot.h" 18 18 -
branches/new_class_id/src/lib/lang/class_id.cc
r9715 r9716 16 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ 17 17 18 #include " new_class_id.h"19 #include " new_object_list.h"18 #include "class_id.h" 19 #include "object_list.h" 20 20 21 21 /** -
branches/new_class_id/src/lib/lang/class_id.h
r9715 r9716 1 1 /*! 2 * @file new_class_id.h2 * @file class_id.h 3 3 * @brief Definition of a dynamically allocating ClassID 4 4 * 5 5 */ 6 6 7 #ifndef _ NEW_CLASS_ID_H8 #define _ NEW_CLASS_ID_H7 #ifndef _CLASS_ID_H 8 #define _CLASS_ID_H 9 9 10 10 #include <string> … … 74 74 }; 75 75 76 #endif /* _ NEW_CLASS_ID_H */76 #endif /* _CLASS_ID_H */ -
branches/new_class_id/src/lib/lang/object_list.cc
r9715 r9716 16 16 //#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ 17 17 18 #include " new_object_list.h"18 #include "object_list.h" 19 19 #include <cassert> 20 20 -
branches/new_class_id/src/lib/lang/object_list.h
r9715 r9716 1 1 /*! 2 * @file new_object_list.h2 * @file object_list.h 3 3 * @brief Definition of a dynamically allocating ClassID 4 4 * 5 5 */ 6 6 7 #ifndef _ NEW_OBJECT_LIST_H8 #define _ NEW_OBJECT_LIST_H9 10 #include " new_class_id.h"7 #ifndef _OBJECT_LIST_H 8 #define _OBJECT_LIST_H 9 10 #include "class_id.h" 11 11 #include <cassert> 12 12 #include <map> … … 331 331 } 332 332 333 #endif /* _ NEW_OBJECT_LIST_H */333 #endif /* _OBJECT_LIST_H */ -
branches/new_class_id/src/lib/lang/test_object_list.cc
r9715 r9716 1 #include " new_class_id.h"2 #include " new_object_list.h"1 #include "class_id.h" 2 #include "object_list.h" 3 3 #include <iostream> 4 4 -
branches/new_class_id/src/lib/network/network_stream.cc
r9715 r9716 1194 1194 } 1195 1195 else 1196 ; /// FIXME NEW_CLASS_ID :: b = Factory::fabricate( leafClassId );1196 ; /// FIXME CLASS_ID :: b = Factory::fabricate( leafClassId ); 1197 1197 1198 1198 if ( !b ) -
branches/new_class_id/src/lib/network/player_stats.cc
r9715 r9716 30 30 #include "shell_command.h" 31 31 32 #include "class_id .h"32 #include "class_id_DEPRECATED.h" 33 33 34 34 ObjectListDefinitionID(PlayerStats, CL_PLAYER_STATS); -
branches/new_class_id/src/lib/particles/box_emitter.cc
r9715 r9716 24 24 #include "debug.h" 25 25 26 #include "class_id .h"26 #include "class_id_DEPRECATED.h" 27 27 28 28 ObjectListDefinitionID(BoxEmitter, CL_BOX_EMITTER); -
branches/new_class_id/src/lib/particles/dot_emitter.cc
r9715 r9716 26 26 27 27 28 #include "class_id .h"28 #include "class_id_DEPRECATED.h" 29 29 ObjectListDefinitionID(DotEmitter, CL_DOT_EMITTER); 30 30 CREATE_FACTORY(DotEmitter); -
branches/new_class_id/src/lib/particles/dot_particles.cc
r9715 r9716 24 24 #include "shell_command.h" 25 25 26 #include "class_id .h"26 #include "class_id_DEPRECATED.h" 27 27 28 28 ObjectListDefinitionID(DotParticles, CL_DOT_PARTICLES); -
branches/new_class_id/src/lib/particles/model_particles.cc
r9715 r9716 24 24 #include "shell_command.h" 25 25 26 #include "class_id .h"26 #include "class_id_DEPRECATED.h" 27 27 28 28 ObjectListDefinitionID(ModelParticles, CL_MODEL_PARTICLES); -
branches/new_class_id/src/lib/particles/plane_emitter.cc
r9715 r9716 24 24 #include "debug.h" 25 25 26 #include "class_id .h"26 #include "class_id_DEPRECATED.h" 27 27 28 28 ObjectListDefinitionID(PlaneEmitter, CL_PLANE_EMITTER); -
branches/new_class_id/src/lib/particles/spark_particles.cc
r9715 r9716 24 24 #include "shell_command.h" 25 25 26 #include "class_id .h"26 #include "class_id_DEPRECATED.h" 27 27 28 28 ObjectListDefinitionID(SparkParticles, CL_SPARK_PARTICLES); -
branches/new_class_id/src/lib/particles/sprite_particles.cc
r9715 r9716 24 24 #include "shell_command.h" 25 25 26 #include "class_id .h"26 #include "class_id_DEPRECATED.h" 27 27 28 28 ObjectListDefinitionID(SpriteParticles, CL_SPRITE_PARTICLES); -
branches/new_class_id/src/lib/physics/fields/gravity.cc
r9715 r9716 21 21 #include "util/loading/factory.h" 22 22 23 #include "class_id .h"23 #include "class_id_DEPRECATED.h" 24 24 ObjectListDefinitionID(Gravity, CL_FIELD_GRAVITY); 25 25 -
branches/new_class_id/src/lib/physics/fields/point_gravity.cc
r9715 r9716 20 20 21 21 22 #include "class_id .h"22 #include "class_id_DEPRECATED.h" 23 23 ObjectListDefinitionID(PointGravity, CL_FIELD_POINT_GRAVITY); 24 24 -
branches/new_class_id/src/lib/physics/fields/twirl.cc
r9715 r9716 20 20 21 21 22 #include "class_id .h"22 #include "class_id_DEPRECATED.h" 23 23 ObjectListDefinitionID(Twirl, CL_FIELD_TWIRL); 24 24 -
branches/new_class_id/src/lib/physics/physics_connection.cc
r9715 r9716 27 27 #include "util/loading/load_param.h" 28 28 29 #include "class_id .h"29 #include "class_id_DEPRECATED.h" 30 30 ObjectListDefinition(PhysicsConnection); 31 31 CREATE_FACTORY(PhysicsConnection); -
branches/new_class_id/src/lib/util/loading/fast_factory.h
r9715 r9716 33 33 * Creates a FastFactory for a Class' static function named ClassName::fastFactory. 34 34 * @param CLASS_NAME the name of the Class to create the fast-factory for. 35 * @param CLASS_ID the ID of the class to create the fast-factory for @see "class_id .h"35 * @param CLASS_ID the ID of the class to create the fast-factory for @see "class_id_DEPRECATED.h" 36 36 * 37 37 * notice, that the Class to be called, must implement:
Note: See TracChangeset
for help on using the changeset viewer.