Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3992 in orxonox.OLD


Ignore:
Timestamp:
Apr 27, 2005, 10:38:19 AM (19 years ago)
Author:
bensch
Message:

orxonox/branches/ll2trunktemp: displays the player, and the ground again

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.2 from Makefile.am.
     1# Makefile.in generated by automake 1.8.5 from Makefile.am.
    22# @configure_input@
    33
     
    5050CONFIG_HEADER = $(top_builddir)/config.h
    5151CONFIG_CLEAN_FILES =
    52 am__installdirs = $(DESTDIR)$(bindir)
     52am__installdirs = "$(DESTDIR)$(bindir)"
    5353binPROGRAMS_INSTALL = $(INSTALL_PROGRAM)
    5454PROGRAMS = $(bin_PROGRAMS)
     
    404404install-binPROGRAMS: $(bin_PROGRAMS)
    405405        @$(NORMAL_INSTALL)
    406         $(mkdir_p) $(DESTDIR)$(bindir)
     406        test -z "$(bindir)" || $(mkdir_p) "$(DESTDIR)$(bindir)"
    407407        @list='$(bin_PROGRAMS)'; for p in $$list; do \
    408408          p1=`echo $$p|sed 's/$(EXEEXT)$$//'`; \
     
    410410          ; then \
    411411            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; \
    414414          else :; fi; \
    415415        done
     
    419419        @list='$(bin_PROGRAMS)'; for p in $$list; do \
    420420          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"; \
    423423        done
    424424
     
    12991299        tags=; \
    13001300        here=`pwd`; \
    1301         if (etags --etags-include --version) >/dev/null 2>&1; then \
     1301        if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
    13021302          include_option=--etags-include; \
     1303          empty_fix=.; \
    13031304        else \
    13041305          include_option=--include; \
     1306          empty_fix=; \
    13051307        fi; \
    13061308        list='$(SUBDIRS)'; for subdir in $$list; do \
    13071309          if test "$$subdir" = .; then :; else \
    1308             test -f $$subdir/TAGS && \
     1310            test ! -f $$subdir/TAGS || \
    13091311              tags="$$tags $$include_option=$$here/$$subdir/TAGS"; \
    13101312          fi; \
     
    13161318          $(AWK) '    { files[$$0] = 1; } \
    13171319               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
    13211325ctags: CTAGS
    13221326CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
     
    13881392installdirs: installdirs-recursive
    13891393installdirs-am:
    1390         $(mkdir_p) $(DESTDIR)$(bindir)
     1394        for dir in "$(DESTDIR)$(bindir)"; do \
     1395          test -z "$$dir" || $(mkdir_p) "$$dir"; \
     1396        done
    13911397install: install-recursive
    13921398install-exec: install-exec-recursive
  • orxonox/branches/ll2trunktemp/src/story_entities/world.cc

    r3989 r3992  
    452452  this->skySphere->setName("SkySphere");
    453453  this->localCamera->addChild(this->skySphere);
    454   this->skySphere->setMode(PNODE_MOVEMENT);
     454  spawn(skySphere);
    455455 
    456456 
     
    461461  //localCamera->setParent(TrackNode::getInstance());
    462462  tn->addChild(this->localCamera);
    463   //        localCamera->lookAt(tn);
     463  localCamera->lookAt(tn);
    464464  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);
    467467 
    468468  // initialize debug coord system
     
    836836        }
    837837      delete iterator;
    838       //skySphere->updatePosition(localCamera->absCoordinate);
    839      
     838
    840839      /* 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);
    843842      this->garbageCollector->tick(seconds);
    844843
Note: See TracChangeset for help on using the changeset viewer.