/* orxonox - the future of 3D-vertical-scrollers Copyright (C) 2004 orx This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. ### File Specific: main-programmer: Benjamin Grauer co-programmer: ... */ #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_TRACK_MANAGER #include "track_manager.h" #include "base_object.h" #include "p_node.h" #include "track_node.h" #include "stdincl.h" #include "list.h" #include "text_engine.h" #include "t_animation.h" #include using namespace std; CREATE_FACTORY(TrackManager); /** \brief initializes a TrackElement (sets the default values) */ TrackElement::TrackElement(void) { this->isFresh = true; this->isHotPoint = false; this->isSavePoint = false; this->isFork = false; this->isJoined = false; this->mainJoin = false; this->ID = -1; this->startingTime = 0; this->duration = TMAN_DEFAULT_DURATION; this->endTime = 1; this->jumpTime = 0; this->width = TMAN_DEFAULT_WIDTH; this->nodeCount = 0; this->curve = NULL; this->childCount = 0; this->children = NULL; this->name = NULL; this->history = NULL; this->subject = NULL; this->condFunc = &TrackElement::random; } /** \brief destroys all alocated memory) \todo eventually when deleting a TrackElement you would not like to delete all its preceding TrackElements */ TrackElement::~TrackElement(void) { // deleting the Name delete []name; // deleting the Curve delete this->curve; // deleting all the Children of this TrackNode. if ((!this->isJoined &&this->childCount > 0) || (this->isJoined && this->mainJoin)) // only if this is the MainJoin. { tIterator* iterator = this->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); while (enumElem) { delete enumElem; enumElem = iterator->nextElement(); } delete iterator; delete this->children; } } /** \brief Searches through all the TrackElements for trackID. \param trackID The ID to search for. \returns The TrackElement if Found, NULL otherwise. */ TrackElement* TrackElement::findByID(unsigned int trackID) { // return if Found. if (this->ID == trackID) return this; // search all children if (this->childCount > 0) { tIterator* iterator = this->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); TrackElement* tmpElem; while (enumElem) { if ((tmpElem = enumElem->findByID(trackID))) return tmpElem; enumElem = iterator->nextElement(); } delete iterator; } // if not found return NULL; } /** \brief Searches through all the TrackElements for a trackName \param trackName The name to search for. \returns The TrackElement if Found, NULL otherwise. */ TrackElement* TrackElement::findByName(const char* trackName) { // return if Found. if (this->name && !strcmp(this->name, trackName)) return this; // search all children if (this->childCount > 0) { tIterator* iterator = this->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); TrackElement* tmpElem; while (enumElem) { if ((tmpElem = enumElem->findByName(trackName))) return tmpElem; enumElem = iterator->nextElement(); } delete iterator; } // if not found return NULL; } /** \brief checks if there are any BackLoops in the Track (Backloops only \param trackElem the trackElement to check about \returns true if NO loop was found, false Otherwise You actually have to act on false!! it simply does this by looking if the current trackElem is found again somewhere else in the Track */ bool TrackElement::backLoopCheck(const TrackElement* trackElem, unsigned int depth) const { if(depth == 0 || this != trackElem) { if (this->children) { tIterator* iterator = this->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); while (enumElem) { if(!enumElem->backLoopCheck(trackElem, depth + 1)) return false; enumElem = iterator->nextElement(); } delete iterator; } } else return false; // only returns if everything worked out return true; } /** \param childNumber which child to return \returns the n-the children (starting at 0). Be aware, that when the trackElement has no Children, NULL will be returned */ TrackElement* TrackElement::getChild(int childCount) const { // if the the trackElement has no children return NULL. if (this->childCount == 0) return NULL; // we cannot return the childCount+m's Child, so we return the last. if (childCount > this->childCount) childCount = this->childCount; tIterator* iterator = this->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); for (int i = 0; i < childCount; i++) enumElem = iterator->nextElement(); delete iterator; return enumElem; } /** \param name the Name to set. */ void TrackElement::setName(const char* name) { // delete the old name if (this->name) delete []this->name; // if a name was given. if (name) { this->name = new char[strlen(name)+1]; strcpy(this->name, name); } else this->name = NULL; } /** \returns The name of this TrackElement */ const char* TrackElement::getName(void) const { return this->name; } /** \brief prints out debug information about this TrackElement */ void TrackElement::debug(void) const { PRINT(0)("--== TrackElement:%i ==--", this->ID); if(this->getName()) PRINT(0)("--++Name: %s++--", this->getName()); if(this->isFresh) PRINT(0)(" -- has not jet eddited in any way --\n"); PRINT(0)("\n TimeTable: startingTime=%f; endTime=%f; duration=%f; jumpTime=%f\n", this->startingTime, this->endTime, this->duration, this->jumpTime); PRINT(0)(" consists of %d Points\n", this->nodeCount); if (this->childCount == 0) PRINT(0)(" has no child\n"); else if (this->childCount == 1) PRINT(0)(" has 1 child: =%d=\n", this->getChild(0)->ID); else if (this->childCount > 1) { PRINT(0)(" has %d children: ", this->childCount); //TrackElement* enumElem = this->children->enumerate(); tIterator* iterator = this->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); while (enumElem) { PRINT(0)("=%d= ", enumElem->ID); enumElem = iterator->nextElement(); } delete iterator; PRINT(0)("\n"); } if(this->isHotPoint) PRINT(0)(" is a special Point:\n"); if(this->isSavePoint) PRINT(0)(" is a SavePoint\n"); if(this->isFork) { PRINT(0)(" is A Fork with with %d children.\n", this->childCount); } if(this->isJoined) PRINT(0)(" is Joined at the End\n"); if(!this->backLoopCheck(this)) /* this should not happen */ PRINT(2)(" THERE IS A BACKLOOP TO THIS ELEMENT\n"); } /** \brief CONDITION that chooses the first child for the decision (static) \param nothing Nothing in this function \returns the chosen child */ int TrackElement::lowest(const void* nothing) const { return 0; } /** \brief CONDITION that chooses the last child for the decision (static) \param nothing Nothing in this function \returns the chosen child */ int TrackElement::highest(const void* nothing) const { return this->childCount-1; } /** \brief CONDITION that chooses a random child for the decision (static) \param nothing Nothing in this function \returns the chosen child */ int TrackElement::random(const void* nothing) const { int i = (int)floor ((float)rand()/(float)RAND_MAX * (float)this->childCount); if (i >= this->childCount) return this->childCount-1; else return i; } /** \brief CONDITION that chooses child 0, if the node(probably Player) is left of its parent (z<0)) and 1/right otherwise. \param node The node to act upon. \returns the chosen child */ int TrackElement::leftRight(const void* node) const { PNode* tmpNode = (PNode*)node; if (tmpNode->getRelCoor().z < 0) return 0; else return 1; } /** \brief CONDITION that chooses the child, that has the nearest distance to the node (probably player). \param node The node to act upon. \returns the chosen child This is rather dangerous, because one must carefully set the points on the curve. The best Way is to set the nodes as wide away of each other as possible, but take into consideration, that if the nodes are to far from a center node, the center will be chosen. (play with this!!). */ int TrackElement::nearest(const void* node) const { PNode* tmpNode = (PNode*)node; Vector nodeRelCoord = tmpNode->getRelCoor(); float minDist = 100000000; int childNumber = 0; int i = 0; //TrackElement* enumElem = this->children->enumerate(); tIterator* iterator = this->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); while (enumElem) { float dist = (nodeRelCoord - enumElem->curve->getNode(4)).len(); if (dist < minDist) { minDist = dist; childNumber = i; } i++; enumElem = iterator->nextElement(); } delete iterator; PRINTF(4)("PathDecision with nearest algorithm: %d\n", childNumber); return childNumber; } //////////////////////// ///// TRACKMANAGER ///// //////////////////////// /** \brief standard constructor */ TrackManager::TrackManager(void) { this->setClassName("TrackManager"); TrackManager::singletonRef = this; // do this because otherwise the TrackNode cannot get The instance of the TrackManager PRINTF(3)("Initializing the TrackManager\n"); // setting up the First TrackElement this->firstTrackElem = new TrackElement(); this->firstTrackElem->ID = 1; this->firstTrackElem->setName("root"); this->currentTrackElem = firstTrackElem; this->curveType = CURVE_BEZIER; this->localTime = 0; this->maxTime = 0; this->trackElemCount = 1; this->trackNode = new TrackNode(); this->setBindSlave(this->trackNode); // initializing the Text this->trackText = TextEngine::getInstance()->createText("fonts/earth.ttf", 30, TEXT_DYNAMIC, 0, 255, 0); this->trackText->setAlignment(TEXT_ALIGN_SCREEN_CENTER); // initializing the Animation for the Text. this->textAnimation = new tAnimation(this->trackText, &Text::setBlending); this->textAnimation->addKeyFrame(1.0, 3.0, ANIM_NEG_EXP); this->textAnimation->addKeyFrame(0.0, .001); this->textAnimation->setInfinity(ANIM_INF_CONSTANT); } /** \brief loads a trackElement from a TiXmlElement \param root the TiXmlElement to load the Data from */ TrackManager::TrackManager( TiXmlElement* root) { } /** \brief standard destructor */ TrackManager::~TrackManager(void) { PRINTF(3)("Destruct TrackManager\n"); PRINTF(4)("Deleting all the TrackElements\n"); delete this->firstTrackElem; // the tracknode should be deleted here, but is deleted by pNode: -> null_parent // we do not have a TrackManager anymore TrackManager::singletonRef = NULL; } //! Singleton Reference to TrackManager TrackManager* TrackManager::singletonRef = NULL; /** \returns The reference on the TrackManager. If the TrackManager does not exist, it will be created. */ TrackManager* TrackManager::getInstance(void) { if (!TrackManager::singletonRef) TrackManager::singletonRef = new TrackManager(); return TrackManager::singletonRef; } // INITIALIZE // /** \brief reserves Space for childCount children \param childCount The Count of children to make space for. \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) */ void TrackManager::initChildren(unsigned int childCount, TrackElement* trackElem) { if (!trackElem) trackElem = this->currentTrackElem; trackElem->childCount = childCount; trackElem->mainJoin = true; // this tells join, that this one is the Main Join, if it tries to join multiple Tracks trackElem->children = new tList(); for (int i = 0; i < childCount; i++) { // create a new Element TrackElement* newElem = new TrackElement(); // setting up the new ID newElem->ID = ++trackElemCount; // setting up the Time newElem->startingTime = trackElem->endTime + trackElem->jumpTime; // adds the conection Point this->addPoint(trackElem->curve->getNode(trackElem->curve->getNodeCount()), newElem); // add the new child to the childList. trackElem->children->add(newElem); } // setting the Name of the new TrackElement to the name of the last one + _childI if (trackElem->getName()) { for (int i = 0; i < trackElem->childCount; i++) { char* childName = new char[strlen(trackElem->getName())+10]; sprintf(childName, "%s_child%d", trackElem->getName(), i); trackElem->getChild(i)->setName(childName); } } // select the first Child to work on. this->currentTrackElem = trackElem->getChild(0); } /** \brief Sets the trackID we are working on. \param trackID the trackID we are working on */ void TrackManager::workOn(unsigned int trackID) { TrackElement* tmpElem = this->firstTrackElem->findByID(trackID); if (tmpElem) this->currentTrackElem = tmpElem; else PRINTF(2)("TrackElement %d not Found, leaving unchanged\n", trackID); PRINTF(4)("now Working on %d\n", this->currentTrackElem->ID); } /** \brief Sets the TrackElement to work on \param trackName the Name of the Track to work on */ void TrackManager::workOn(const char* trackName) { TrackElement* tmpElem = this->firstTrackElem->findByName(trackName); if (tmpElem) this->currentTrackElem = tmpElem; else PRINTF(2)("TrackElement %s not Found, leaving unchanged\n", trackName); PRINTF(4)("now Working on %d\n", this->currentTrackElem->ID); } /** \brief Sets the Type of the Curve \param curveType The Type to set \param trackElem the TrackElement that should get a new Curve. \brief this will possibly get obsolete during the process. */ void TrackManager::setCurveType(CurveType curveType, TrackElement* trackElem) { if (!trackElem->isFresh) { PRINTF(2)("It is not possible to change the type of a Curve after you have have appended some points to it\n"); return; } this->curveType = curveType; switch (curveType) { case CURVE_BEZIER: trackElem->curve = new BezierCurve(); break; } } /** \brief Sets the duration of the current path in seconds. \param duration The duration in seconds. \param trackElem The TrackElement to apply this to. */ void TrackManager::setDuration(float duration, TrackElement* trackElem) { if (!trackElem) trackElem = this->currentTrackElem; trackElem->duration = duration; trackElem->endTime = trackElem->startingTime + duration; } /** \brief adds a point to trackElem \param newPoint The point to add. \param trackElem The TrackElement to add the Point to */ bool TrackManager::addPoint(Vector newPoint, TrackElement* trackElem) { if (!trackElem) trackElem = this->currentTrackElem; if (trackElem->isFresh) { this->setCurveType(TMAN_DEFAULT_CURVETYPE, trackElem); trackElem->isFresh = false; } trackElem->curve->addNode(newPoint); trackElem->nodeCount++; } /** \brief adds save/splitpoint. \param newPoint The point to add. \returns A Pointer to a newly appended Curve */ int TrackManager::addHotPoint(Vector newPoint, TrackElement* trackElem) { if (!trackElem) trackElem = this->currentTrackElem; PRINTF(4)("setting up a HotPoint\n"); if (trackElem->isFresh) { trackElem->isFresh = false; } // \todo HotPoint Handling. trackElem->curve->addNode(newPoint); trackElem->nodeCount++; this->initChildren(1, trackElem); } /** \brief Sets the last HotPoint into a savePoint. \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) \returns A Pointer to a newly appended Curve If no HotPoint was defined the last added Point will be rendered into a savePoint. \n If the HotPoint was defined as a fork the Point will \b not be set into a savePoint. */ int TrackManager::setSavePoint(TrackElement* trackElem) { if (!trackElem) trackElem = this->currentTrackElem; PRINTF(4)("setting up a SavePoint.\n"); if (trackElem->isFork || trackElem->isSavePoint) { PRINTF(2)("%d is already finished \n", trackElem->ID); return trackElem->getChild(0)->ID; } trackElem->isSavePoint = true; trackElem->isHotPoint = true; this->initChildren(1, trackElem); } /** \brief adds some interessting non-linear movments through the level. \param count The Count of childrens the current HotPoint will have. If no HotPoint was defined the last added Point will be rendered into a fork. \n If the HotPoint was defined as a savePoint the Point will \b not be set into a fork. */ void TrackManager::fork(unsigned int count, ...) { int* trackIDs = new int[count]; this->forkV(count, trackIDs); va_list ID; va_start (ID, count); for(int i = 0; i < count; i++) { *va_arg (ID, int*) = trackIDs[i]; } va_end(ID); delete []trackIDs; } /** \brief adds some interessting non-linear movments through the level. \param count The Count of childrens the current HotPoint will have. \param trackIDs A Pointer to an Array of ints which will hold the trackID's (the user will have to reserve space for this). \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) \see TrackManager::fork(unsigned int count, ...) */ void TrackManager::forkV(unsigned int count, int* trackIDs, TrackElement* trackElem) { if (!trackElem) trackElem = this->currentTrackElem; PRINTF(4)("Forking with %d children\n", count); if (trackElem->isSavePoint) return; trackElem->isFork = true; trackElem->isHotPoint = true; for(int i = 0; i < count; i++) trackIDs[i]=this->trackElemCount+1+i; this->initChildren(count, trackElem); } /** \brief decides under what condition a certain Path will be chosen. \param trackID the trackID to apply this to. \param cond the CONDITION of the decision \param subject the Subject that will be decided upon with CONDITION cond. */ void TrackManager::condition(unsigned int trackID, CONDITION cond, void* subject) { this->condition(cond, subject, this->firstTrackElem->findByID(trackID)); } /** \brief decides under what condition a certain Path will be chosen. \param cond the CONDITION of the decision \param subject the Subject that will be decided upon with CONDITION cond. \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) */ void TrackManager::condition(CONDITION cond, void* subject, TrackElement* trackElem) { if (!trackElem) trackElem = this->currentTrackElem; if (!trackElem->isFork) { PRINTF(2)("%d is not a Fork, and no condition can be set in this case\n", trackElem->ID); return; } else { switch (cond) { case LOWEST: trackElem->condFunc = &TrackElement::lowest; break; case HIGHEST: trackElem->condFunc = &TrackElement::highest; break; case RANDOM: trackElem->condFunc = &TrackElement::random; break; case LEFTRIGHT: trackElem->condFunc = &TrackElement::leftRight; break; case NEAREST: trackElem->condFunc = &TrackElement::nearest; break; case ENEMYKILLED: break; } trackElem->subject=subject; } } /** \brief joins some tracks together again. \param count The count of Paths to join. Join will set the localTime to the longest time a Path has to get to this Point. \n Join will join all curves to the first curve, meaning that all the tangents will be matched. */ void TrackManager::join(unsigned int count, ...) { int* trackIDs = new int [count]; va_list ID; va_start (ID, count); for(int i = 0; i < count; i++) { trackIDs[i] = va_arg (ID, int); } va_end(ID); this->joinV(count, trackIDs); delete []trackIDs; } /** \brief Joins some Tracks together again. \param count The count of trackElements to join \see void TrackManager::join(unsigned int count, ...) The difference to void TrackManager::join(unsigned int count, ...) is, that this function takes the Names of the TrackElements as inputs and not their ID */ void TrackManager::joinc(unsigned int count, ...) { int* trackIDs = new int [count]; va_list NAME; va_start (NAME, count); for(int i = 0; i < count; i++) { char* name = va_arg (NAME, char*); TrackElement* tmpElem = this->firstTrackElem->findByName(name); if (tmpElem) trackIDs[i] = tmpElem->ID; else PRINTF(1)("Trying to join a Track, of which the name does not exist: %s\n", name); } va_end(NAME); this->joinV(count, trackIDs); delete []trackIDs; } /** \brief joins some tracks together again. \param count The count of Paths to join. \param trackIDs an Array with the trackID's to join \see void TrackManager::join(unsigned int count, ...) */ void TrackManager::joinV(unsigned int count, int* trackIDs) { TrackElement* tmpTrackElem; TrackElement* tmpJoinElem; for (int i = 0; i < count; i++) if (!this->firstTrackElem->findByID(trackIDs[i])) { PRINTF(1)("Error trying to Connect Paths that do not exist yet: %d\n Not Joining Anything", trackIDs[i]); return; } PRINTF(3)("Joining %d tracks and merging to Track %d\n", count, trackIDs[0]); // checking if there is a back-loop-connection and ERROR if it is. tmpTrackElem = this->firstTrackElem->findByID(trackIDs[0]); if (!tmpTrackElem->backLoopCheck(tmpTrackElem)) { PRINTF(2)("Backloop connection detected at joining trackElements\n -> TRACK WILL NOT BE JOINED\n"); return; } TrackElement* firstJoint = this->firstTrackElem->findByID(trackIDs[0]); float tmpLatestTime = firstJoint->endTime; Vector tmpEndPoint = firstJoint->curve->getNode(firstJoint->curve->getNodeCount()); Vector tmpTangentPoint = firstJoint->curve->getNode(firstJoint->curve->getNodeCount()-1); Vector tmpc2Point = firstJoint->curve->getNode(firstJoint->curve->getNodeCount()-2); firstJoint->isJoined = true; // firstJoint->mainJoin = true; if(!firstJoint->isHotPoint) this->setSavePoint(firstJoint); // Timing: for (int i = 0; i < count; i++) { if(tmpJoinElem = this->firstTrackElem->findByID(trackIDs[i])) { if (tmpJoinElem->childCount == 0 && tmpJoinElem->endTime > tmpLatestTime) tmpLatestTime = tmpJoinElem->endTime; } } // time the main Join. firstJoint->jumpTime = tmpLatestTime - firstJoint->endTime; // Joining: for (int i = 1; i < count; i++) { if( tmpJoinElem = this->firstTrackElem->findByID(trackIDs[i])) { if (tmpJoinElem->childCount > 0) printf("!!This Curve has children, and as such will not be joined!!\n You can try joining other childless TrackElements to this one!"); else { this->addPoint(tmpc2Point, tmpJoinElem); this->addPoint(tmpTangentPoint, tmpJoinElem); this->addPoint(tmpEndPoint, tmpJoinElem); // time all other Joins tmpJoinElem->jumpTime = tmpLatestTime - tmpJoinElem->endTime; //Copying Joint-Info tmpJoinElem->children = firstJoint->children; tmpJoinElem->childCount = firstJoint->childCount; tmpJoinElem->isSavePoint = firstJoint->isSavePoint; tmpJoinElem->isFork = firstJoint->isFork; tmpJoinElem->isJoined = true; } } } if(firstJoint->children) { //TrackElement* enumElem = firstJoint->children->enumerate(); tIterator* iterator = firstJoint->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); while (enumElem) { PRINTF(5)("Setting startingTime of %d to %f.\n", enumElem->ID, tmpLatestTime); enumElem->startingTime = tmpLatestTime; enumElem->endTime = tmpLatestTime + enumElem->duration; enumElem = iterator->nextElement(); } delete iterator; } } /** \brief finalizes the TrackSystem. after this it will not be editable anymore \todo check for any inconsistencies, output errors */ void TrackManager::finalize(void) { for (int i = 1; i<= trackElemCount ;i++) { TrackElement* tmpElem = this->firstTrackElem->findByID(i); if( tmpElem->childCount > 0 && tmpElem->mainJoin) { tIterator* iterator = tmpElem->children->getIterator(); TrackElement* enumElem = iterator->nextElement(); //TrackElement* enumElem = tmpElem->children->enumerate(); while (enumElem) { // c1-continuity enumElem->curve->addNode(enumElem->curve->getNode(0) + ((enumElem->curve->getNode(0) - tmpElem->curve->getNode(tmpElem->curve->getNodeCount()-1)) ),2); enumElem->nodeCount++; // c2-continuity enumElem->curve->addNode((tmpElem->curve->getNode(tmpElem->curve->getNodeCount())- tmpElem->curve->getNode(tmpElem->curve->getNodeCount()-1)) * 4 + tmpElem->curve->getNode(tmpElem->curve->getNodeCount()-2), 3); enumElem->nodeCount++; PRINTF(5)("accelerations: %d-in: count: %d, %f, %f, %f\n %d-out: count: %d %f, %f, %f\n", tmpElem->ID, tmpElem->nodeCount, tmpElem->curve->calcAcc(0.999).x, tmpElem->curve->calcAcc(0.999).y, tmpElem->curve->calcAcc(0.999).z, enumElem->ID, enumElem->nodeCount, enumElem->curve->calcAcc(0).x, enumElem->curve->calcAcc(0).y, enumElem->curve->calcAcc(0).z); enumElem = iterator->nextElement(); } delete iterator; } } for (int i = 1; i <= trackElemCount;i++) if (this->firstTrackElem->findByID(i)->endTime > this->maxTime) this->maxTime = this->firstTrackElem->findByID(i)->endTime; // very bad implemented :/ } // RUNTIME // /** \brief calculates the Position for the localTime of the Track. \returns the calculated Position */ Vector TrackManager::calcPos() const { return this->currentTrackElem->curve->calcPos((this->localTime-this->currentTrackElem->startingTime)/this->currentTrackElem->duration); } /** \brief calculates the Rotation for the localTime of the Track. \returns the calculated Rotation */ Vector TrackManager::calcDir() const { return this->currentTrackElem->curve->calcDir((this->localTime - this->currentTrackElem->startingTime)/this->currentTrackElem->duration); } /** \returns the current Width of the track */ float TrackManager::getWidth(void) const { return this->currentTrackElem->width; } /** \brief Advances the local-time of the Track around dt \param dt The time about which to advance. This function also checks, if the TrackElement has to be changed. */ void TrackManager::tick(float dt) { dt /= 1000; PRINTF(4)("CurrentTrackID: %d, LocalTime is: %f, timestep is: %f\n", this->currentTrackElem->ID, this->localTime, dt); if (this->localTime <= this->firstTrackElem->duration) this->jumpTo(this->localTime); if (this->localTime <= this->maxTime) this->localTime += dt; if (this->localTime > this->currentTrackElem->endTime && this->currentTrackElem->children) { if (this->currentTrackElem->jumpTime != 0.0) this->jumpTo(this->localTime + this->currentTrackElem->jumpTime); // jump to the next TrackElement and also set the history of the new Element to the old one. TrackElement* tmpHistoryElem = this->currentTrackElem; this->currentTrackElem = this->currentTrackElem->getChild(this->choosePath(this->currentTrackElem)); this->currentTrackElem->history = tmpHistoryElem; if (this->currentTrackElem->getName()) { this->trackText->setText(this->currentTrackElem->getName()); this->textAnimation->replay(); } } if (this->bindSlave) { Vector tmp = this->calcPos(); Quaternion quat = Quaternion(this->calcDir(), Vector(this->currentTrackElem->curve->calcAcc((localTime-this->currentTrackElem->startingTime)/this->currentTrackElem->duration).x,1,this->currentTrackElem->curve->calcAcc((localTime-this->currentTrackElem->startingTime)/this->currentTrackElem->duration).z)); Vector v(0.0, 1.0, 0.0); Quaternion q(-PI/2, v); quat = quat * q; this->bindSlave->setAbsCoor(tmp); this->bindSlave->setAbsDir(quat); } } /** \brief Jumps to a certain point on the Track. \param time The time on the Track to jump to. This should be used to Jump backwards on a Track, because moving forward means to change between the Path. (it then tries to choose the default.) Max is trackLengthMax. */ void TrackManager::jumpTo(float time) { if (time == 0) { this->currentTrackElem = this->firstTrackElem; if (this->currentTrackElem->getName()) { this->trackText->setText(this->currentTrackElem->getName()); this->textAnimation->play(); } } this->localTime = time; } /** \brief a Function that decides which Path we should follow. \param trackElem The Path to choose. */ int TrackManager::choosePath(TrackElement* trackElem) { return (trackElem->*(trackElem->condFunc))(trackElem->subject); } /** \brief Sets the PNode, that should be moved along the Tack \param bindSlave the PNode to set */ void TrackManager::setBindSlave(PNode* bindSlave) { this->bindSlave = bindSlave; } /** \returns the main TrackNode */ PNode* TrackManager::getTrackNode(void) { return this->trackNode; } // DEBUG // /** \brief Imports a model of the Graph into the OpenGL-environment. \param dt The Iterator used in seconds for Painting the Graph. This is for testing facility only. Do this if you want to see the Path inside the Level. eventually this will all be packed into a gl-list. */ void TrackManager::drawGraph(float dt) const { for (int i = 1; i <= trackElemCount; i++) { glBegin(GL_LINE_STRIP); TrackElement* tmpElem = this->firstTrackElem->findByID(i); if (tmpElem->curve) for(float f = 0.0; f < 1.0; f+=dt) { // printf("%f, %f, %f\n",trackManager->calcPos().x, trackManager->calcPos().y, trackManager->calcPos().z); Vector tmpVector = tmpElem->curve->calcPos(f); glVertex3f(tmpVector.x, tmpVector.y, tmpVector.z); } glEnd(); } } /** \brief outputs debug information about the trackManager \param level how much debug */ void TrackManager::debug(unsigned int level) const { PRINT(0)("=========================================\n"); PRINT(0)("= CLASS TRACKMANAGER::debug information =\n"); PRINT(0)("=========================================\n"); // PRINT(0)("Status is: % PRINT(0)(" Consists of %d elements\n", this->trackElemCount); PRINT(0)(" localTime is: %f\n", this->localTime); if (level >= 2) { for (int i = 1; i <= trackElemCount; i++) { TrackElement* tmpElem = this->firstTrackElem->findByID(i); tmpElem->debug(); } } PRINT(0)("-----------------------------------------\n"); }