Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4699 in orxonox.OLD


Ignore:
Timestamp:
Jun 25, 2005, 2:29:59 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: news about the new webdev-development package

Location:
orxonox/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/NEWS

    r4698 r4699  
     1Date: June 25, 2005
     2Topic: orxonox development for win32-patch
     3Body: Included the major libraries and tool to develop orxonox on win32 to the webdev repository. Now one might download everything from <a href="http://svn.orxonox.ethz.ch/webdev/develop/">http://svn.orxonox.ethz.ch/webdev/develop/</a>
     4
    15Date: June 25, 2005
    26Topic: Big demo in physically-based animations
    37Body: on Monday we have a big demo on orxonox's physical capabilities. We will show some major new features like the ParticleEngine, the PhysicsInterface, and last but not least the longly expected CollisionDetection. Of course all the new Features are in the new trunk, and are downloadable at the  <a href="/files/snapshots">snapshot-section</a>.
    4 
    58
    69Date: June 09, 2005
     
    2225Date: March 05, 2005
    2326Topic: Orxonox Convention 2005
    24 Body: We are going to make a new Convention, that you are all invited to. Visit the convention section for more details. <A href="http://www.orxonox.ethz.ch/index.php?site=conventions">link.</A
     27Body: We are going to make a new Convention, that you are all invited to. Visit the convention section for more details. <A href="http://www.orxonox.ethz.ch/index.php?site=conventions">link.</A>
    2528
    2629Date: February 21, 2005
  • orxonox/trunk/src/util/object_manager.cc

    r4597 r4699  
    3636      this->managedObjectList[i] = NULL;
    3737    }
    38 
    39   this->garbageCollector = GarbageCollector::getInstance();
    4038}
    4139
  • orxonox/trunk/src/util/object_manager.h

    r4591 r4699  
    2727
    2828
    29 class WorldEntity;
    3029class GarbageCollector;
    3130
     
    5251  inline static ObjectManager* getInstance(void) { if (!singletonRef) singletonRef = new ObjectManager();  return singletonRef; };
    5352
     53  void registerClass(ClassID classID);
     54
    5455  /** a class handled by the objectManage */
    5556  void mCache(Projectile);
     
    6667
    6768  tList<BaseObject>**        managedObjectList;     //!< A list of managed objects (handles different types and lists of them)
    68   GarbageCollector*          garbageCollector;      //!< reference to the GrabageCollector
    6969};
    7070
Note: See TracChangeset for help on using the changeset viewer.