Changeset 3573 in orxonox.OLD for orxonox/trunk/src
- Timestamp:
- Mar 16, 2005, 3:06:15 PM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 6 added
- 4 deleted
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/Makefile.am
r3559 r3573 35 35 track_node.cc \ 36 36 light.cc \ 37 simple_animation.cc \ 37 38 story_entities/story_entity.cc \ 38 39 story_entities/campaign.cc \ … … 44 45 world_entities/terrain.cc \ 45 46 world_entities/primitive.cc \ 47 world_entities/weapon.cc \ 48 world_entities/projectile.cc \ 46 49 ai/ai.cc \ 47 50 lib/coord/p_node.cc \ … … 76 79 track_manager.h \ 77 80 track_node.h \ 81 simple_animation.h \ 78 82 story_entities/story_entity.h \ 79 83 story_entities/story_def.h \ … … 85 89 world_entities/environment.h \ 86 90 world_entities/skysphere.h \ 87 world_entities/shoot_laser.h \88 world_entities/shoot_rocket.h \89 91 world_entities/power_up.h \ 90 92 world_entities/terrain.h \ 91 93 world_entities/primitive.h \ 94 world_entities/weapon.h \ 95 world_entities/projectile.h \ 92 96 ai/ai.h \ 93 97 network/synchronisable.h \ -
orxonox/trunk/src/Makefile.in
r3569 r3573 56 56 command_node.$(OBJEXT) keynames.$(OBJEXT) camera.$(OBJEXT) \ 57 57 track_manager.$(OBJEXT) track_node.$(OBJEXT) light.$(OBJEXT) \ 58 story_entity.$(OBJEXT) campaign.$(OBJEXT) world.$(OBJEXT) \ 59 world_entity.$(OBJEXT) player.$(OBJEXT) environment.$(OBJEXT) \ 60 skysphere.$(OBJEXT) terrain.$(OBJEXT) primitive.$(OBJEXT) \ 61 ai.$(OBJEXT) p_node.$(OBJEXT) null_parent.$(OBJEXT) \ 62 helper_parent.$(OBJEXT) data_tank.$(OBJEXT) fontset.$(OBJEXT) \ 63 array.$(OBJEXT) objModel.$(OBJEXT) model.$(OBJEXT) \ 64 material.$(OBJEXT) texture.$(OBJEXT) base_entity.$(OBJEXT) \ 65 base_object.$(OBJEXT) ini_parser.$(OBJEXT) list.$(OBJEXT) \ 66 vector.$(OBJEXT) matrix.$(OBJEXT) curve.$(OBJEXT) \ 67 glmenu_imagescreen.$(OBJEXT) 58 simple_animation.$(OBJEXT) story_entity.$(OBJEXT) \ 59 campaign.$(OBJEXT) world.$(OBJEXT) world_entity.$(OBJEXT) \ 60 player.$(OBJEXT) environment.$(OBJEXT) skysphere.$(OBJEXT) \ 61 terrain.$(OBJEXT) primitive.$(OBJEXT) weapon.$(OBJEXT) \ 62 projectile.$(OBJEXT) ai.$(OBJEXT) p_node.$(OBJEXT) \ 63 null_parent.$(OBJEXT) helper_parent.$(OBJEXT) \ 64 data_tank.$(OBJEXT) fontset.$(OBJEXT) array.$(OBJEXT) \ 65 objModel.$(OBJEXT) model.$(OBJEXT) material.$(OBJEXT) \ 66 texture.$(OBJEXT) base_entity.$(OBJEXT) base_object.$(OBJEXT) \ 67 ini_parser.$(OBJEXT) list.$(OBJEXT) vector.$(OBJEXT) \ 68 matrix.$(OBJEXT) curve.$(OBJEXT) glmenu_imagescreen.$(OBJEXT) 68 69 orxonox_OBJECTS = $(am_orxonox_OBJECTS) 69 70 orxonox_LDADD = $(LDADD) … … 87 88 @AMDEP_TRUE@ ./$(DEPDIR)/objModel.Po ./$(DEPDIR)/orxonox.Po \ 88 89 @AMDEP_TRUE@ ./$(DEPDIR)/p_node.Po ./$(DEPDIR)/player.Po \ 89 @AMDEP_TRUE@ ./$(DEPDIR)/primitive.Po ./$(DEPDIR)/skysphere.Po \ 90 @AMDEP_TRUE@ ./$(DEPDIR)/primitive.Po ./$(DEPDIR)/projectile.Po \ 91 @AMDEP_TRUE@ ./$(DEPDIR)/simple_animation.Po \ 92 @AMDEP_TRUE@ ./$(DEPDIR)/skysphere.Po \ 90 93 @AMDEP_TRUE@ ./$(DEPDIR)/story_entity.Po ./$(DEPDIR)/terrain.Po \ 91 94 @AMDEP_TRUE@ ./$(DEPDIR)/texture.Po \ 92 95 @AMDEP_TRUE@ ./$(DEPDIR)/track_manager.Po \ 93 96 @AMDEP_TRUE@ ./$(DEPDIR)/track_node.Po ./$(DEPDIR)/vector.Po \ 94 @AMDEP_TRUE@ ./$(DEPDIR)/world.Po ./$(DEPDIR)/world_entity.Po 97 @AMDEP_TRUE@ ./$(DEPDIR)/weapon.Po ./$(DEPDIR)/world.Po \ 98 @AMDEP_TRUE@ ./$(DEPDIR)/world_entity.Po 95 99 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 96 100 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) … … 230 234 track_node.cc \ 231 235 light.cc \ 236 simple_animation.cc \ 232 237 story_entities/story_entity.cc \ 233 238 story_entities/campaign.cc \ … … 239 244 world_entities/terrain.cc \ 240 245 world_entities/primitive.cc \ 246 world_entities/weapon.cc \ 247 world_entities/projectile.cc \ 241 248 ai/ai.cc \ 242 249 lib/coord/p_node.cc \ … … 271 278 track_manager.h \ 272 279 track_node.h \ 280 simple_animation.h \ 273 281 story_entities/story_entity.h \ 274 282 story_entities/story_def.h \ … … 280 288 world_entities/environment.h \ 281 289 world_entities/skysphere.h \ 282 world_entities/shoot_laser.h \283 world_entities/shoot_rocket.h \284 290 world_entities/power_up.h \ 285 291 world_entities/terrain.h \ 286 292 world_entities/primitive.h \ 293 world_entities/weapon.h \ 294 world_entities/projectile.h \ 287 295 ai/ai.h \ 288 296 network/synchronisable.h \ … … 405 413 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/player.Po@am__quote@ 406 414 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/primitive.Po@am__quote@ 415 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/projectile.Po@am__quote@ 416 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/simple_animation.Po@am__quote@ 407 417 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/skysphere.Po@am__quote@ 408 418 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/story_entity.Po@am__quote@ … … 412 422 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/track_node.Po@am__quote@ 413 423 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vector.Po@am__quote@ 424 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/weapon.Po@am__quote@ 414 425 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/world.Po@am__quote@ 415 426 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/world_entity.Po@am__quote@ … … 574 585 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 575 586 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o primitive.obj `if test -f 'world_entities/primitive.cc'; then $(CYGPATH_W) 'world_entities/primitive.cc'; else $(CYGPATH_W) '$(srcdir)/world_entities/primitive.cc'; fi` 587 588 weapon.o: world_entities/weapon.cc 589 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT weapon.o -MD -MP -MF "$(DEPDIR)/weapon.Tpo" -c -o weapon.o `test -f 'world_entities/weapon.cc' || echo '$(srcdir)/'`world_entities/weapon.cc; \ 590 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/weapon.Tpo" "$(DEPDIR)/weapon.Po"; else rm -f "$(DEPDIR)/weapon.Tpo"; exit 1; fi 591 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='world_entities/weapon.cc' object='weapon.o' libtool=no @AMDEPBACKSLASH@ 592 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/weapon.Po' tmpdepfile='$(DEPDIR)/weapon.TPo' @AMDEPBACKSLASH@ 593 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 594 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o weapon.o `test -f 'world_entities/weapon.cc' || echo '$(srcdir)/'`world_entities/weapon.cc 595 596 weapon.obj: world_entities/weapon.cc 597 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT weapon.obj -MD -MP -MF "$(DEPDIR)/weapon.Tpo" -c -o weapon.obj `if test -f 'world_entities/weapon.cc'; then $(CYGPATH_W) 'world_entities/weapon.cc'; else $(CYGPATH_W) '$(srcdir)/world_entities/weapon.cc'; fi`; \ 598 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/weapon.Tpo" "$(DEPDIR)/weapon.Po"; else rm -f "$(DEPDIR)/weapon.Tpo"; exit 1; fi 599 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='world_entities/weapon.cc' object='weapon.obj' libtool=no @AMDEPBACKSLASH@ 600 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/weapon.Po' tmpdepfile='$(DEPDIR)/weapon.TPo' @AMDEPBACKSLASH@ 601 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 602 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o weapon.obj `if test -f 'world_entities/weapon.cc'; then $(CYGPATH_W) 'world_entities/weapon.cc'; else $(CYGPATH_W) '$(srcdir)/world_entities/weapon.cc'; fi` 603 604 projectile.o: world_entities/projectile.cc 605 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT projectile.o -MD -MP -MF "$(DEPDIR)/projectile.Tpo" -c -o projectile.o `test -f 'world_entities/projectile.cc' || echo '$(srcdir)/'`world_entities/projectile.cc; \ 606 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/projectile.Tpo" "$(DEPDIR)/projectile.Po"; else rm -f "$(DEPDIR)/projectile.Tpo"; exit 1; fi 607 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='world_entities/projectile.cc' object='projectile.o' libtool=no @AMDEPBACKSLASH@ 608 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/projectile.Po' tmpdepfile='$(DEPDIR)/projectile.TPo' @AMDEPBACKSLASH@ 609 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 610 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o projectile.o `test -f 'world_entities/projectile.cc' || echo '$(srcdir)/'`world_entities/projectile.cc 611 612 projectile.obj: world_entities/projectile.cc 613 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT projectile.obj -MD -MP -MF "$(DEPDIR)/projectile.Tpo" -c -o projectile.obj `if test -f 'world_entities/projectile.cc'; then $(CYGPATH_W) 'world_entities/projectile.cc'; else $(CYGPATH_W) '$(srcdir)/world_entities/projectile.cc'; fi`; \ 614 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/projectile.Tpo" "$(DEPDIR)/projectile.Po"; else rm -f "$(DEPDIR)/projectile.Tpo"; exit 1; fi 615 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='world_entities/projectile.cc' object='projectile.obj' libtool=no @AMDEPBACKSLASH@ 616 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/projectile.Po' tmpdepfile='$(DEPDIR)/projectile.TPo' @AMDEPBACKSLASH@ 617 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 618 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o projectile.obj `if test -f 'world_entities/projectile.cc'; then $(CYGPATH_W) 'world_entities/projectile.cc'; else $(CYGPATH_W) '$(srcdir)/world_entities/projectile.cc'; fi` 576 619 577 620 ai.o: ai/ai.cc -
orxonox/trunk/src/story_entities/world.cc
r3568 r3573 44 44 { 45 45 this->init(name, -1); 46 NullParent* np = NullParent::getInstance();46 //NullParent* np = NullParent::getInstance(); 47 47 } 48 48 -
orxonox/trunk/src/world_entities/environment.h
r3544 r3573 8 8 { 9 9 friend class World; 10 11 private:12 float xCor;13 float yCor;14 float zCor;15 16 float mountainTest[10][10];17 10 18 11 public:
Note: See TracChangeset
for help on using the changeset viewer.