Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 4220 in orxonox.OLD for orxonox/trunk/src/track_manager.h


Ignore:
Timestamp:
May 18, 2005, 11:01:59 PM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: TrackManager prepared for loading. added new overloaded functions that read in join and fork from one single string
thanks to chris, this was pretty easy… the hard part was finding the substring class :)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/track_manager.h

    r4166 r4220  
    167167  int setSavePoint(TrackElement* trackElem = NULL);
    168168  void fork(unsigned int count, ...);
    169   void forkV(unsigned int count, int* trackIDs, TrackElement* trackElem = NULL);
     169  void forkS(unsigned int count, ...);
     170  void forkS(const char* forkString);
     171  void forkV(unsigned int count, int* trackIDs, char** trackNames, TrackElement* trackElem = NULL);
    170172  void condition(unsigned int trackID, CONDITION cond, void* subject);
    171173  void condition(CONDITION cond, void* subject, TrackElement* trackElem = NULL);
    172174  void join(unsigned int count, ...);
    173   void joinc(unsigned int count, ...);
     175  void joinS(const char* joinString);
     176  void joinS(unsigned int cound, ...);
    174177  void joinV(unsigned int count, int* trackIDs);
    175178  void finalize(void);
Note: See TracChangeset for help on using the changeset viewer.