Changeset 3992 in orxonox.OLD for orxonox/branches/ll2trunktemp
- Timestamp:
- Apr 27, 2005, 10:38:19 AM (20 years ago)
- Location:
- orxonox/branches/ll2trunktemp/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/branches/ll2trunktemp/src/Makefile.in
r3940 r3992 1 # Makefile.in generated by automake 1.8. 2from Makefile.am.1 # Makefile.in generated by automake 1.8.5 from Makefile.am. 2 2 # @configure_input@ 3 3 … … 50 50 CONFIG_HEADER = $(top_builddir)/config.h 51 51 CONFIG_CLEAN_FILES = 52 am__installdirs = $(DESTDIR)$(bindir)52 am__installdirs = "$(DESTDIR)$(bindir)" 53 53 binPROGRAMS_INSTALL = $(INSTALL_PROGRAM) 54 54 PROGRAMS = $(bin_PROGRAMS) … … 404 404 install-binPROGRAMS: $(bin_PROGRAMS) 405 405 @$(NORMAL_INSTALL) 406 $(mkdir_p) $(DESTDIR)$(bindir)406 test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)" 407 407 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 408 408 p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \ … … 410 410 ; then \ 411 411 f=`echo "$$p1" | sed 's,^.*/,,;$(transform);s/$$/$(EXEEXT)/'`; \ 412 echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f"; \413 $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) $$p $(DESTDIR)$(bindir)/$$f|| exit 1; \412 echo " $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) '$$p' '$(DESTDIR)$(bindir)/$$f'"; \ 413 $(INSTALL_PROGRAM_ENV) $(binPROGRAMS_INSTALL) "$$p" "$(DESTDIR)$(bindir)/$$f" || exit 1; \ 414 414 else :; fi; \ 415 415 done … … 419 419 @list='$(bin_PROGRAMS)'; for p in $$list; do \ 420 420 f=`echo "$$p" | sed 's,^.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/'`; \ 421 echo " rm -f $(DESTDIR)$(bindir)/$$f"; \422 rm -f $(DESTDIR)$(bindir)/$$f; \421 echo " rm -f '$(DESTDIR)$(bindir)/$$f'"; \ 422 rm -f "$(DESTDIR)$(bindir)/$$f"; \ 423 423 done 424 424 … … 1299 1299 tags=; \ 1300 1300 here=`pwd`; \ 1301 if ( etags--etags-include --version) >/dev/null 2>&1; then \1301 if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ 1302 1302 include_option=--etags-include; \ 1303 empty_fix=.; \ 1303 1304 else \ 1304 1305 include_option=--include; \ 1306 empty_fix=; \ 1305 1307 fi; \ 1306 1308 list='$(SUBDIRS)'; for subdir in $$list; do \ 1307 1309 if test "$$subdir" = .; then :; else \ 1308 test -f $$subdir/TAGS &&\1310 test ! -f $$subdir/TAGS || \ 1309 1311 tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \ 1310 1312 fi; \ … … 1316 1318 $(AWK) ' { files[$$0] = 1; } \ 1317 1319 END { for (i in files) print i; }'`; \ 1318 test -z "$(ETAGS_ARGS)$$tags$$unique" \ 1319 || $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 1320 $$tags $$unique 1320 if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \ 1321 test -n "$$unique" || unique=$$empty_fix; \ 1322 $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ 1323 $$tags $$unique; \ 1324 fi 1321 1325 ctags: CTAGS 1322 1326 CTAGS: ctags-recursive $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ … … 1388 1392 installdirs: installdirs-recursive 1389 1393 installdirs-am: 1390 $(mkdir_p) $(DESTDIR)$(bindir) 1394 for dir in "$(DESTDIR)$(bindir)"; do \ 1395 test -z "$$dir" || $(mkdir_p) "$$dir"; \ 1396 done 1391 1397 install: install-recursive 1392 1398 install-exec: install-exec-recursive -
orxonox/branches/ll2trunktemp/src/story_entities/world.cc
r3989 r3992 452 452 this->skySphere->setName("SkySphere"); 453 453 this->localCamera->addChild(this->skySphere); 454 this->skySphere->setMode(PNODE_MOVEMENT);454 spawn(skySphere); 455 455 456 456 … … 461 461 //localCamera->setParent(TrackNode::getInstance()); 462 462 tn->addChild(this->localCamera); 463 //localCamera->lookAt(tn);463 localCamera->lookAt(tn); 464 464 this->localPlayer->setMode(PNODE_ALL); 465 //Vector* cameraOffset = new Vector (0, 5, -10);466 //trackManager->condition(2, LEFTRIGHT, this->localPlayer);465 Vector* cameraOffset = new Vector (0, 5, -10); 466 trackManager->condition(2, LEFTRIGHT, this->localPlayer); 467 467 468 468 // initialize debug coord system … … 836 836 } 837 837 delete iterator; 838 //skySphere->updatePosition(localCamera->absCoordinate); 839 838 840 839 /* update tick the rest */ 841 //this->trackManager->tick(this->dt);842 //this->localCamera->tick(this->dt);840 this->trackManager->tick(this->dt); 841 this->localCamera->tick(this->dt); 843 842 this->garbageCollector->tick(seconds); 844 843
Note: See TracChangeset
for help on using the changeset viewer.