[3311] | 1 | /* |
---|
| 2 | orxonox - the future of 3D-vertical-scrollers |
---|
| 3 | |
---|
| 4 | Copyright (C) 2004 orx |
---|
| 5 | |
---|
| 6 | This program is free software; you can redistribute it and/or modify |
---|
| 7 | it under the terms of the GNU General Public License as published by |
---|
| 8 | the Free Software Foundation; either version 2, or (at your option) |
---|
| 9 | any later version. |
---|
| 10 | |
---|
| 11 | ### File Specific: |
---|
[3433] | 12 | main-programmer: Benjamin Grauer |
---|
[3311] | 13 | co-programmer: ... |
---|
| 14 | */ |
---|
| 15 | |
---|
[3591] | 16 | #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_TRACK_MANAGER |
---|
[3311] | 17 | |
---|
| 18 | #include "track_manager.h" |
---|
[3495] | 19 | |
---|
[3608] | 20 | #include "base_object.h" |
---|
[3433] | 21 | #include "p_node.h" |
---|
[3528] | 22 | #include "track_node.h" |
---|
[3608] | 23 | #include "stdincl.h" |
---|
| 24 | #include "list.h" |
---|
[3845] | 25 | #include "text_engine.h" |
---|
[3849] | 26 | #include "t_animation.h" |
---|
[3528] | 27 | |
---|
[3495] | 28 | #include <stdarg.h> |
---|
| 29 | |
---|
[3311] | 30 | using namespace std; |
---|
| 31 | |
---|
[3331] | 32 | /** |
---|
| 33 | \brief initializes a TrackElement (sets the default values) |
---|
| 34 | */ |
---|
| 35 | TrackElement::TrackElement(void) |
---|
| 36 | { |
---|
[3332] | 37 | this->isFresh = true; |
---|
[3354] | 38 | this->isHotPoint = false; |
---|
[3331] | 39 | this->isSavePoint = false; |
---|
| 40 | this->isFork = false; |
---|
| 41 | this->isJoined = false; |
---|
[3356] | 42 | this->mainJoin = false; |
---|
[3331] | 43 | this->ID = -1; |
---|
[3588] | 44 | this->startingTime = 0; |
---|
| 45 | this->duration = TMAN_DEFAULT_DURATION; |
---|
[3433] | 46 | this->endTime = 1; |
---|
| 47 | this->jumpTime = 0; |
---|
[3596] | 48 | this->width = TMAN_DEFAULT_WIDTH; |
---|
[3331] | 49 | this->nodeCount = 0; |
---|
[3835] | 50 | this->curve = NULL; |
---|
[3348] | 51 | this->childCount = 0; |
---|
[3835] | 52 | this->children = NULL; |
---|
[3332] | 53 | this->name = NULL; |
---|
[3527] | 54 | |
---|
| 55 | this->history = NULL; |
---|
| 56 | |
---|
[3835] | 57 | this->subject = NULL; |
---|
[3522] | 58 | this->condFunc = &TrackElement::random; |
---|
[3331] | 59 | } |
---|
[3311] | 60 | |
---|
[3331] | 61 | /** |
---|
[3332] | 62 | \brief destroys all alocated memory) |
---|
[3331] | 63 | \todo eventually when deleting a TrackElement you would not like to delete all its preceding TrackElements |
---|
| 64 | */ |
---|
| 65 | TrackElement::~TrackElement(void) |
---|
| 66 | { |
---|
[3835] | 67 | // deleting the Name |
---|
| 68 | delete []name; |
---|
| 69 | // deleting the Curve |
---|
| 70 | delete this->curve; |
---|
| 71 | |
---|
| 72 | // deleting all the Children of this TrackNode. |
---|
| 73 | if ((!this->isJoined &&this->childCount > 0) |
---|
| 74 | || (this->isJoined && this->mainJoin)) // only if this is the MainJoin. |
---|
[3331] | 75 | { |
---|
[3661] | 76 | tIterator<TrackElement>* iterator = this->children->getIterator(); |
---|
| 77 | TrackElement* enumElem = iterator->nextElement(); |
---|
[3594] | 78 | while (enumElem) |
---|
| 79 | { |
---|
| 80 | delete enumElem; |
---|
[3661] | 81 | enumElem = iterator->nextElement(); |
---|
[3594] | 82 | } |
---|
[3661] | 83 | delete iterator; |
---|
[3356] | 84 | delete this->children; |
---|
[3331] | 85 | } |
---|
| 86 | } |
---|
| 87 | |
---|
[3332] | 88 | /** |
---|
| 89 | \brief Searches through all the TrackElements for trackID. |
---|
| 90 | \param trackID The ID to search for. |
---|
| 91 | \returns The TrackElement if Found, NULL otherwise. |
---|
| 92 | */ |
---|
| 93 | TrackElement* TrackElement::findByID(unsigned int trackID) |
---|
| 94 | { |
---|
| 95 | // return if Found. |
---|
| 96 | if (this->ID == trackID) |
---|
| 97 | return this; |
---|
[3835] | 98 | // search all children |
---|
[3332] | 99 | if (this->childCount > 0) |
---|
[3594] | 100 | { |
---|
[3661] | 101 | tIterator<TrackElement>* iterator = this->children->getIterator(); |
---|
| 102 | TrackElement* enumElem = iterator->nextElement(); |
---|
[3594] | 103 | TrackElement* tmpElem; |
---|
| 104 | while (enumElem) |
---|
| 105 | { |
---|
| 106 | if ((tmpElem = enumElem->findByID(trackID))) |
---|
| 107 | return tmpElem; |
---|
[3661] | 108 | enumElem = iterator->nextElement(); |
---|
[3594] | 109 | } |
---|
[3661] | 110 | delete iterator; |
---|
[3594] | 111 | } |
---|
[3835] | 112 | // if not found |
---|
[3882] | 113 | return NULL; |
---|
[3332] | 114 | } |
---|
[3331] | 115 | |
---|
| 116 | |
---|
[3522] | 117 | /** |
---|
[3835] | 118 | \brief Searches through all the TrackElements for a trackName |
---|
| 119 | \param trackName The name to search for. |
---|
| 120 | \returns The TrackElement if Found, NULL otherwise. |
---|
[3522] | 121 | */ |
---|
[3835] | 122 | TrackElement* TrackElement::findByName(const char* trackName) |
---|
[3522] | 123 | { |
---|
[3835] | 124 | // return if Found. |
---|
| 125 | if (this->name && !strcmp(this->name, trackName)) |
---|
| 126 | return this; |
---|
| 127 | // search all children |
---|
| 128 | if (this->childCount > 0) |
---|
[3522] | 129 | { |
---|
[3661] | 130 | tIterator<TrackElement>* iterator = this->children->getIterator(); |
---|
| 131 | TrackElement* enumElem = iterator->nextElement(); |
---|
[3835] | 132 | TrackElement* tmpElem; |
---|
[3594] | 133 | while (enumElem) |
---|
| 134 | { |
---|
[3835] | 135 | if ((tmpElem = enumElem->findByName(trackName))) |
---|
| 136 | return tmpElem; |
---|
[3661] | 137 | enumElem = iterator->nextElement(); |
---|
[3594] | 138 | } |
---|
[3661] | 139 | delete iterator; |
---|
[3522] | 140 | } |
---|
[3835] | 141 | // if not found |
---|
[3882] | 142 | return NULL; |
---|
[3522] | 143 | } |
---|
[3331] | 144 | |
---|
[3522] | 145 | /** |
---|
[3835] | 146 | \brief checks if there are any BackLoops in the Track (Backloops only |
---|
| 147 | \param trackElem the trackElement to check about |
---|
| 148 | \returns true if NO loop was found, false Otherwise |
---|
| 149 | You actually have to act on false!! |
---|
| 150 | it simply does this by looking if the current trackElem is found again somewhere else in the Track |
---|
| 151 | */ |
---|
| 152 | bool TrackElement::backLoopCheck(const TrackElement* trackElem, unsigned int depth) const |
---|
| 153 | { |
---|
| 154 | if(depth == 0 || this != trackElem) |
---|
| 155 | { |
---|
| 156 | if (this->children) |
---|
| 157 | { |
---|
| 158 | tIterator<TrackElement>* iterator = this->children->getIterator(); |
---|
| 159 | TrackElement* enumElem = iterator->nextElement(); |
---|
| 160 | while (enumElem) |
---|
| 161 | { |
---|
| 162 | if(!enumElem->backLoopCheck(trackElem, depth + 1)) |
---|
| 163 | return false; |
---|
| 164 | enumElem = iterator->nextElement(); |
---|
| 165 | } |
---|
| 166 | delete iterator; |
---|
| 167 | } |
---|
| 168 | } |
---|
| 169 | else |
---|
| 170 | return false; |
---|
| 171 | |
---|
| 172 | // only returns if everything worked out |
---|
| 173 | return true; |
---|
| 174 | } |
---|
| 175 | |
---|
| 176 | /** |
---|
[3594] | 177 | \param childNumber which child to return |
---|
[3835] | 178 | \returns the n-the children (starting at 0). |
---|
| 179 | Be aware, that when the trackElement has no Children, NULL will be returned |
---|
[3594] | 180 | */ |
---|
[3835] | 181 | TrackElement* TrackElement::getChild(int childCount) const |
---|
[3594] | 182 | { |
---|
[3835] | 183 | // if the the trackElement has no children return NULL. |
---|
[3594] | 184 | if (this->childCount == 0) |
---|
| 185 | return NULL; |
---|
[3835] | 186 | // we cannot return the childCount+m's Child, so we return the last. |
---|
[3594] | 187 | if (childCount > this->childCount) |
---|
| 188 | childCount = this->childCount; |
---|
| 189 | |
---|
[3832] | 190 | tIterator<TrackElement>* iterator = this->children->getIterator(); |
---|
| 191 | TrackElement* enumElem = iterator->nextElement(); |
---|
[3594] | 192 | for (int i = 0; i < childCount; i++) |
---|
[3832] | 193 | enumElem = iterator->nextElement(); |
---|
| 194 | delete iterator; |
---|
[3594] | 195 | return enumElem; |
---|
| 196 | } |
---|
| 197 | |
---|
| 198 | /** |
---|
[3588] | 199 | \param name the Name to set. |
---|
| 200 | */ |
---|
| 201 | void TrackElement::setName(const char* name) |
---|
| 202 | { |
---|
| 203 | // delete the old name |
---|
| 204 | if (this->name) |
---|
| 205 | delete []this->name; |
---|
[3835] | 206 | // if a name was given. |
---|
[3588] | 207 | if (name) |
---|
| 208 | { |
---|
| 209 | this->name = new char[strlen(name)+1]; |
---|
| 210 | strcpy(this->name, name); |
---|
| 211 | } |
---|
| 212 | else |
---|
| 213 | this->name = NULL; |
---|
| 214 | } |
---|
| 215 | |
---|
| 216 | /** |
---|
| 217 | \returns The name of this TrackElement |
---|
| 218 | */ |
---|
[3835] | 219 | const char* TrackElement::getName(void) const |
---|
[3588] | 220 | { |
---|
| 221 | return this->name; |
---|
| 222 | } |
---|
| 223 | |
---|
[3593] | 224 | /** |
---|
| 225 | \brief prints out debug information about this TrackElement |
---|
| 226 | */ |
---|
[3835] | 227 | void TrackElement::debug(void) const |
---|
[3593] | 228 | { |
---|
| 229 | PRINT(0)("--== TrackElement:%i ==--", this->ID); |
---|
| 230 | if(this->getName()) |
---|
[3842] | 231 | PRINT(0)("--++Name: %s++--", this->getName()); |
---|
[3593] | 232 | if(this->isFresh) |
---|
| 233 | PRINT(0)(" -- has not jet eddited in any way --\n"); |
---|
| 234 | PRINT(0)("\n TimeTable: startingTime=%f; endTime=%f; duration=%f; jumpTime=%f\n", this->startingTime, this->endTime, this->duration, this->jumpTime); |
---|
| 235 | PRINT(0)(" consists of %d Points\n", this->nodeCount); |
---|
| 236 | if (this->childCount == 0) |
---|
| 237 | PRINT(0)(" has no child\n"); |
---|
| 238 | else if (this->childCount == 1) |
---|
[3594] | 239 | PRINT(0)(" has 1 child: =%d=\n", this->getChild(0)->ID); |
---|
[3593] | 240 | else if (this->childCount > 1) |
---|
| 241 | { |
---|
| 242 | PRINT(0)(" has %d children: ", this->childCount); |
---|
[3832] | 243 | //TrackElement* enumElem = this->children->enumerate(); |
---|
| 244 | tIterator<TrackElement>* iterator = this->children->getIterator(); |
---|
| 245 | TrackElement* enumElem = iterator->nextElement(); |
---|
[3594] | 246 | while (enumElem) |
---|
| 247 | { |
---|
| 248 | PRINT(0)("=%d= ", enumElem->ID); |
---|
[3832] | 249 | enumElem = iterator->nextElement(); |
---|
[3594] | 250 | } |
---|
[3832] | 251 | delete iterator; |
---|
[3593] | 252 | PRINT(0)("\n"); |
---|
| 253 | } |
---|
| 254 | |
---|
| 255 | if(this->isHotPoint) |
---|
| 256 | PRINT(0)(" is a special Point:\n"); |
---|
| 257 | if(this->isSavePoint) |
---|
| 258 | PRINT(0)(" is a SavePoint\n"); |
---|
| 259 | if(this->isFork) |
---|
| 260 | { |
---|
| 261 | PRINT(0)(" is A Fork with with %d children.\n", this->childCount); |
---|
| 262 | } |
---|
| 263 | if(this->isJoined) |
---|
| 264 | PRINT(0)(" is Joined at the End\n"); |
---|
| 265 | |
---|
| 266 | if(!this->backLoopCheck(this)) /* this should not happen */ |
---|
| 267 | PRINT(2)(" THERE IS A BACKLOOP TO THIS ELEMENT\n"); |
---|
| 268 | } |
---|
[3588] | 269 | |
---|
| 270 | /** |
---|
[3522] | 271 | \brief CONDITION that chooses the first child for the decision (static) |
---|
| 272 | \param nothing Nothing in this function |
---|
| 273 | \returns the chosen child |
---|
| 274 | */ |
---|
[3835] | 275 | int TrackElement::lowest(const void* nothing) const |
---|
[3522] | 276 | { |
---|
| 277 | return 0; |
---|
| 278 | } |
---|
[3332] | 279 | |
---|
[3522] | 280 | /** |
---|
| 281 | \brief CONDITION that chooses the last child for the decision (static) |
---|
| 282 | \param nothing Nothing in this function |
---|
| 283 | \returns the chosen child |
---|
| 284 | */ |
---|
[3835] | 285 | int TrackElement::highest(const void* nothing) const |
---|
[3522] | 286 | { |
---|
| 287 | return this->childCount-1; |
---|
| 288 | } |
---|
[3332] | 289 | |
---|
[3522] | 290 | /** |
---|
| 291 | \brief CONDITION that chooses a random child for the decision (static) |
---|
| 292 | \param nothing Nothing in this function |
---|
| 293 | \returns the chosen child |
---|
| 294 | */ |
---|
[3835] | 295 | int TrackElement::random(const void* nothing) const |
---|
[3522] | 296 | { |
---|
| 297 | int i = (int)floor ((float)rand()/(float)RAND_MAX * (float)this->childCount); |
---|
| 298 | if (i >= this->childCount) |
---|
| 299 | return this->childCount-1; |
---|
| 300 | else |
---|
| 301 | return i; |
---|
| 302 | } |
---|
| 303 | |
---|
| 304 | /** |
---|
| 305 | \brief CONDITION that chooses child 0, if the node(probably Player) |
---|
| 306 | is left of its parent (z<0)) and 1/right otherwise. |
---|
| 307 | \param node The node to act upon. |
---|
| 308 | \returns the chosen child |
---|
| 309 | */ |
---|
[3835] | 310 | int TrackElement::leftRight(const void* node) const |
---|
[3522] | 311 | { |
---|
| 312 | PNode* tmpNode = (PNode*)node; |
---|
| 313 | |
---|
[4194] | 314 | if (tmpNode->getRelCoor().z < 0) |
---|
[3522] | 315 | return 0; |
---|
| 316 | else |
---|
| 317 | return 1; |
---|
| 318 | } |
---|
| 319 | |
---|
| 320 | |
---|
| 321 | /** |
---|
| 322 | \brief CONDITION that chooses the child, that has the nearest distance to the node (probably player). |
---|
| 323 | \param node The node to act upon. |
---|
| 324 | \returns the chosen child |
---|
| 325 | |
---|
| 326 | This is rather dangerous, because one must carefully set the points on the curve. |
---|
| 327 | The best Way is to set the nodes as wide away of each other as possible, |
---|
| 328 | but take into consideration, that if the nodes are to far from a center node, the center will be chosen. |
---|
| 329 | (play with this!!). |
---|
| 330 | */ |
---|
[3835] | 331 | int TrackElement::nearest(const void* node) const |
---|
[3522] | 332 | { |
---|
| 333 | PNode* tmpNode = (PNode*)node; |
---|
| 334 | |
---|
[4194] | 335 | Vector nodeRelCoord = tmpNode->getRelCoor(); |
---|
[3522] | 336 | float minDist = 100000000; |
---|
[3594] | 337 | int childNumber = 0; |
---|
| 338 | int i = 0; |
---|
| 339 | |
---|
[3832] | 340 | //TrackElement* enumElem = this->children->enumerate(); |
---|
| 341 | tIterator<TrackElement>* iterator = this->children->getIterator(); |
---|
| 342 | TrackElement* enumElem = iterator->nextElement(); |
---|
[3594] | 343 | while (enumElem) |
---|
[3522] | 344 | { |
---|
[3594] | 345 | float dist = (nodeRelCoord - enumElem->curve->getNode(4)).len(); |
---|
[3522] | 346 | if (dist < minDist) |
---|
| 347 | { |
---|
| 348 | minDist = dist; |
---|
[3594] | 349 | childNumber = i; |
---|
[3522] | 350 | } |
---|
[3594] | 351 | i++; |
---|
[3832] | 352 | enumElem = iterator->nextElement(); |
---|
[3522] | 353 | } |
---|
[3832] | 354 | delete iterator; |
---|
[3594] | 355 | |
---|
| 356 | PRINTF(4)("PathDecision with nearest algorithm: %d\n", childNumber); |
---|
| 357 | return childNumber; |
---|
[3522] | 358 | } |
---|
| 359 | |
---|
| 360 | |
---|
[3599] | 361 | //////////////////////// |
---|
| 362 | ///// TRACKMANAGER ///// |
---|
| 363 | //////////////////////// |
---|
[3311] | 364 | /** |
---|
| 365 | \brief standard constructor |
---|
| 366 | |
---|
| 367 | */ |
---|
[3354] | 368 | TrackManager::TrackManager(void) |
---|
[3311] | 369 | { |
---|
[3594] | 370 | this->setClassName("TrackManager"); |
---|
[3528] | 371 | |
---|
[3836] | 372 | TrackManager::singletonRef = this; // do this because otherwise the TrackNode cannot get The instance of the TrackManager |
---|
[3331] | 373 | |
---|
| 374 | PRINTF(3)("Initializing the TrackManager\n"); |
---|
[3836] | 375 | // setting up the First TrackElement |
---|
[3348] | 376 | this->firstTrackElem = new TrackElement(); |
---|
| 377 | this->firstTrackElem->ID = 1; |
---|
[3842] | 378 | this->firstTrackElem->setName("root"); |
---|
| 379 | |
---|
[3331] | 380 | this->currentTrackElem = firstTrackElem; |
---|
[3836] | 381 | |
---|
| 382 | this->curveType = CURVE_BEZIER; |
---|
[3331] | 383 | this->localTime = 0; |
---|
| 384 | this->maxTime = 0; |
---|
[3348] | 385 | this->trackElemCount = 1; |
---|
[3845] | 386 | |
---|
[3836] | 387 | this->trackNode = new TrackNode(); |
---|
| 388 | this->setBindSlave(this->trackNode); |
---|
[3845] | 389 | // initializing the Text |
---|
| 390 | this->trackText = TextEngine::getInstance()->createText("fonts/earth.ttf", 30, TEXT_DYNAMIC, 0, 255, 0); |
---|
| 391 | this->trackText->setAlignment(TEXT_ALIGN_SCREEN_CENTER); |
---|
| 392 | // initializing the Animation for the Text. |
---|
[3847] | 393 | this->textAnimation = new tAnimation<Text>(this->trackText, &Text::setBlending); |
---|
[3872] | 394 | this->textAnimation->addKeyFrame(1.0, 3.0, ANIM_NEG_EXP); |
---|
[3846] | 395 | this->textAnimation->addKeyFrame(0.0, .001); |
---|
[3845] | 396 | this->textAnimation->setInfinity(ANIM_INF_CONSTANT); |
---|
[3311] | 397 | } |
---|
| 398 | |
---|
[4194] | 399 | |
---|
[3311] | 400 | /** |
---|
[4194] | 401 | \brief loads a trackElement from a TiXmlElement |
---|
| 402 | \param root the TiXmlElement to load the Data from |
---|
| 403 | |
---|
| 404 | */ |
---|
| 405 | bool TrackManager::load( TiXmlElement* root) |
---|
| 406 | { |
---|
| 407 | |
---|
| 408 | } |
---|
| 409 | |
---|
| 410 | |
---|
| 411 | |
---|
| 412 | /** |
---|
[3331] | 413 | \brief standard destructor |
---|
[3311] | 414 | */ |
---|
[3354] | 415 | TrackManager::~TrackManager(void) |
---|
[3330] | 416 | { |
---|
[3331] | 417 | PRINTF(3)("Destruct TrackManager\n"); |
---|
[3311] | 418 | |
---|
[3594] | 419 | PRINTF(4)("Deleting all the TrackElements\n"); |
---|
[3331] | 420 | delete this->firstTrackElem; |
---|
[3335] | 421 | |
---|
[3836] | 422 | // the tracknode should be deleted here, but is deleted by pNode: -> null_parent |
---|
| 423 | |
---|
[3331] | 424 | // we do not have a TrackManager anymore |
---|
[3594] | 425 | TrackManager::singletonRef = NULL; |
---|
[3330] | 426 | } |
---|
| 427 | |
---|
[3543] | 428 | //! Singleton Reference to TrackManager |
---|
[3331] | 429 | TrackManager* TrackManager::singletonRef = NULL; |
---|
| 430 | |
---|
[3330] | 431 | /** |
---|
[3331] | 432 | \returns The reference on the TrackManager. |
---|
| 433 | |
---|
| 434 | If the TrackManager does not exist, it will be created. |
---|
| 435 | */ |
---|
| 436 | TrackManager* TrackManager::getInstance(void) |
---|
| 437 | { |
---|
[3594] | 438 | if (!TrackManager::singletonRef) |
---|
| 439 | TrackManager::singletonRef = new TrackManager(); |
---|
| 440 | return TrackManager::singletonRef; |
---|
[3331] | 441 | } |
---|
| 442 | |
---|
[3836] | 443 | |
---|
| 444 | // INITIALIZE // |
---|
[3331] | 445 | /** |
---|
[3335] | 446 | \brief reserves Space for childCount children |
---|
| 447 | \param childCount The Count of children to make space for. |
---|
[3836] | 448 | \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) |
---|
[3335] | 449 | */ |
---|
[3836] | 450 | void TrackManager::initChildren(unsigned int childCount, TrackElement* trackElem) |
---|
[3335] | 451 | { |
---|
[3836] | 452 | if (!trackElem) |
---|
| 453 | trackElem = this->currentTrackElem; |
---|
| 454 | |
---|
| 455 | trackElem->childCount = childCount; |
---|
| 456 | trackElem->mainJoin = true; // this tells join, that this one is the Main Join, if it tries to join multiple Tracks |
---|
| 457 | trackElem->children = new tList<TrackElement>(); |
---|
[3594] | 458 | for (int i = 0; i < childCount; i++) |
---|
[3348] | 459 | { |
---|
[3836] | 460 | // create a new Element |
---|
[3594] | 461 | TrackElement* newElem = new TrackElement(); |
---|
[3836] | 462 | // setting up the new ID |
---|
[3594] | 463 | newElem->ID = ++trackElemCount; |
---|
[3836] | 464 | // setting up the Time |
---|
| 465 | newElem->startingTime = trackElem->endTime + trackElem->jumpTime; |
---|
| 466 | // adds the conection Point |
---|
| 467 | this->addPoint(trackElem->curve->getNode(trackElem->curve->getNodeCount()), |
---|
| 468 | newElem); |
---|
| 469 | // add the new child to the childList. |
---|
| 470 | trackElem->children->add(newElem); |
---|
[3348] | 471 | } |
---|
[3836] | 472 | |
---|
[3842] | 473 | // setting the Name of the new TrackElement to the name of the last one + _childI |
---|
[3837] | 474 | |
---|
[3842] | 475 | if (trackElem->getName()) |
---|
| 476 | { |
---|
| 477 | for (int i = 0; i < trackElem->childCount; i++) |
---|
| 478 | { |
---|
| 479 | char* childName = new char[strlen(trackElem->getName())+10]; |
---|
| 480 | sprintf(childName, "%s_child%d", trackElem->getName(), i); |
---|
| 481 | trackElem->getChild(i)->setName(childName); |
---|
| 482 | } |
---|
| 483 | } |
---|
[3837] | 484 | // select the first Child to work on. |
---|
| 485 | this->currentTrackElem = trackElem->getChild(0); |
---|
[3335] | 486 | } |
---|
| 487 | |
---|
[3836] | 488 | |
---|
[3335] | 489 | /** |
---|
[3836] | 490 | \brief Sets the trackID we are working on. |
---|
| 491 | \param trackID the trackID we are working on |
---|
[3330] | 492 | */ |
---|
[3836] | 493 | void TrackManager::workOn(unsigned int trackID) |
---|
[3330] | 494 | { |
---|
[3836] | 495 | TrackElement* tmpElem = this->firstTrackElem->findByID(trackID); |
---|
| 496 | if (tmpElem) |
---|
| 497 | this->currentTrackElem = tmpElem; |
---|
| 498 | else |
---|
| 499 | PRINTF(2)("TrackElement %d not Found, leaving unchanged\n", trackID); |
---|
| 500 | PRINTF(4)("now Working on %d\n", this->currentTrackElem->ID); |
---|
[3330] | 501 | } |
---|
| 502 | |
---|
| 503 | /** |
---|
[3836] | 504 | \brief Sets the TrackElement to work on |
---|
| 505 | \param trackName the Name of the Track to work on |
---|
[3330] | 506 | */ |
---|
[3836] | 507 | void TrackManager::workOn(const char* trackName) |
---|
[3330] | 508 | { |
---|
[3836] | 509 | TrackElement* tmpElem = this->firstTrackElem->findByName(trackName); |
---|
[3355] | 510 | if (tmpElem) |
---|
| 511 | this->currentTrackElem = tmpElem; |
---|
| 512 | else |
---|
[3836] | 513 | PRINTF(2)("TrackElement %s not Found, leaving unchanged\n", trackName); |
---|
[3594] | 514 | PRINTF(4)("now Working on %d\n", this->currentTrackElem->ID); |
---|
[3330] | 515 | } |
---|
| 516 | |
---|
| 517 | /** |
---|
| 518 | \brief Sets the Type of the Curve |
---|
[3522] | 519 | \param curveType The Type to set |
---|
| 520 | \param trackElem the TrackElement that should get a new Curve. |
---|
[3836] | 521 | |
---|
| 522 | \brief this will possibly get obsolete during the process. |
---|
[3330] | 523 | */ |
---|
[3433] | 524 | void TrackManager::setCurveType(CurveType curveType, TrackElement* trackElem) |
---|
[3330] | 525 | { |
---|
[3433] | 526 | if (!trackElem->isFresh) |
---|
[3332] | 527 | { |
---|
| 528 | PRINTF(2)("It is not possible to change the type of a Curve after you have have appended some points to it\n"); |
---|
| 529 | return; |
---|
| 530 | } |
---|
[3588] | 531 | this->curveType = curveType; |
---|
[3332] | 532 | switch (curveType) |
---|
| 533 | { |
---|
[3836] | 534 | case CURVE_BEZIER: |
---|
[3433] | 535 | trackElem->curve = new BezierCurve(); |
---|
[3332] | 536 | break; |
---|
| 537 | } |
---|
[3330] | 538 | } |
---|
| 539 | |
---|
| 540 | /** |
---|
[3333] | 541 | \brief Sets the duration of the current path in seconds. |
---|
[3836] | 542 | \param duration The duration in seconds. |
---|
| 543 | \param trackElem The TrackElement to apply this to. |
---|
[3330] | 544 | */ |
---|
[3836] | 545 | void TrackManager::setDuration(float duration, TrackElement* trackElem) |
---|
[3330] | 546 | { |
---|
[3836] | 547 | if (!trackElem) |
---|
| 548 | trackElem = this->currentTrackElem; |
---|
[3330] | 549 | |
---|
[3836] | 550 | trackElem->duration = duration; |
---|
| 551 | trackElem->endTime = trackElem->startingTime + duration; |
---|
[3352] | 552 | } |
---|
| 553 | |
---|
| 554 | /** |
---|
| 555 | \brief adds a point to trackElem |
---|
| 556 | \param newPoint The point to add. |
---|
| 557 | \param trackElem The TrackElement to add the Point to |
---|
| 558 | */ |
---|
| 559 | bool TrackManager::addPoint(Vector newPoint, TrackElement* trackElem) |
---|
| 560 | { |
---|
[3836] | 561 | if (!trackElem) |
---|
| 562 | trackElem = this->currentTrackElem; |
---|
| 563 | |
---|
[3352] | 564 | if (trackElem->isFresh) |
---|
[3332] | 565 | { |
---|
[3588] | 566 | this->setCurveType(TMAN_DEFAULT_CURVETYPE, trackElem); |
---|
[3352] | 567 | trackElem->isFresh = false; |
---|
[3332] | 568 | } |
---|
[3352] | 569 | trackElem->curve->addNode(newPoint); |
---|
| 570 | trackElem->nodeCount++; |
---|
[3330] | 571 | } |
---|
| 572 | |
---|
| 573 | /** |
---|
| 574 | \brief adds save/splitpoint. |
---|
| 575 | \param newPoint The point to add. |
---|
[3333] | 576 | \returns A Pointer to a newly appended Curve |
---|
[3330] | 577 | */ |
---|
[3836] | 578 | int TrackManager::addHotPoint(Vector newPoint, TrackElement* trackElem) |
---|
[3330] | 579 | { |
---|
[3836] | 580 | if (!trackElem) |
---|
| 581 | trackElem = this->currentTrackElem; |
---|
| 582 | |
---|
[3594] | 583 | PRINTF(4)("setting up a HotPoint\n"); |
---|
[3836] | 584 | if (trackElem->isFresh) |
---|
[3332] | 585 | { |
---|
[3836] | 586 | trackElem->isFresh = false; |
---|
[3332] | 587 | } |
---|
[3330] | 588 | |
---|
[3332] | 589 | // \todo HotPoint Handling. |
---|
[3836] | 590 | trackElem->curve->addNode(newPoint); |
---|
| 591 | trackElem->nodeCount++; |
---|
[3837] | 592 | this->initChildren(1, trackElem); |
---|
[3330] | 593 | } |
---|
| 594 | |
---|
| 595 | /** |
---|
| 596 | \brief Sets the last HotPoint into a savePoint. |
---|
[3837] | 597 | \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) |
---|
[3333] | 598 | \returns A Pointer to a newly appended Curve |
---|
[3837] | 599 | |
---|
[3330] | 600 | If no HotPoint was defined the last added Point will be rendered into a savePoint. \n |
---|
| 601 | If the HotPoint was defined as a fork the Point will \b not be set into a savePoint. |
---|
| 602 | */ |
---|
[3837] | 603 | int TrackManager::setSavePoint(TrackElement* trackElem) |
---|
[3330] | 604 | { |
---|
[3837] | 605 | if (!trackElem) |
---|
| 606 | trackElem = this->currentTrackElem; |
---|
| 607 | |
---|
[3594] | 608 | PRINTF(4)("setting up a SavePoint.\n"); |
---|
[3837] | 609 | if (trackElem->isFork || trackElem->isSavePoint) |
---|
[3594] | 610 | { |
---|
[3837] | 611 | PRINTF(2)("%d is already finished \n", trackElem->ID); |
---|
| 612 | return trackElem->getChild(0)->ID; |
---|
[3594] | 613 | } |
---|
[3837] | 614 | trackElem->isSavePoint = true; |
---|
| 615 | trackElem->isHotPoint = true; |
---|
[3332] | 616 | |
---|
[3837] | 617 | this->initChildren(1, trackElem); |
---|
[3330] | 618 | } |
---|
| 619 | |
---|
| 620 | /** |
---|
| 621 | \brief adds some interessting non-linear movments through the level. |
---|
| 622 | \param count The Count of childrens the current HotPoint will have. |
---|
| 623 | |
---|
| 624 | If no HotPoint was defined the last added Point will be rendered into a fork. \n |
---|
| 625 | If the HotPoint was defined as a savePoint the Point will \b not be set into a fork. |
---|
| 626 | */ |
---|
[3332] | 627 | void TrackManager::fork(unsigned int count, ...) |
---|
[3330] | 628 | { |
---|
[3351] | 629 | int* trackIDs = new int[count]; |
---|
| 630 | this->forkV(count, trackIDs); |
---|
[3332] | 631 | va_list ID; |
---|
| 632 | va_start (ID, count); |
---|
| 633 | for(int i = 0; i < count; i++) |
---|
| 634 | { |
---|
[3351] | 635 | *va_arg (ID, int*) = trackIDs[i]; |
---|
[3332] | 636 | } |
---|
[3351] | 637 | va_end(ID); |
---|
[3332] | 638 | delete []trackIDs; |
---|
[3330] | 639 | } |
---|
| 640 | |
---|
| 641 | /** |
---|
| 642 | \brief adds some interessting non-linear movments through the level. |
---|
| 643 | \param count The Count of childrens the current HotPoint will have. |
---|
| 644 | \param trackIDs A Pointer to an Array of ints which will hold the trackID's (the user will have to reserve space for this). |
---|
[3837] | 645 | \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) |
---|
[3838] | 646 | \see TrackManager::fork(unsigned int count, ...) |
---|
[3330] | 647 | */ |
---|
[3837] | 648 | void TrackManager::forkV(unsigned int count, int* trackIDs, TrackElement* trackElem) |
---|
[3330] | 649 | { |
---|
[3837] | 650 | if (!trackElem) |
---|
| 651 | trackElem = this->currentTrackElem; |
---|
| 652 | |
---|
[3594] | 653 | PRINTF(4)("Forking with %d children\n", count); |
---|
[3837] | 654 | if (trackElem->isSavePoint) |
---|
[3332] | 655 | return; |
---|
[3837] | 656 | trackElem->isFork = true; |
---|
| 657 | trackElem->isHotPoint = true; |
---|
[3351] | 658 | for(int i = 0; i < count; i++) |
---|
| 659 | trackIDs[i]=this->trackElemCount+1+i; |
---|
[3837] | 660 | this->initChildren(count, trackElem); |
---|
[3330] | 661 | } |
---|
| 662 | |
---|
| 663 | /** |
---|
| 664 | \brief decides under what condition a certain Path will be chosen. |
---|
[3837] | 665 | \param trackID the trackID to apply this to. |
---|
[3522] | 666 | \param cond the CONDITION of the decision |
---|
| 667 | \param subject the Subject that will be decided upon with CONDITION cond. |
---|
| 668 | */ |
---|
[3837] | 669 | void TrackManager::condition(unsigned int trackID, CONDITION cond, void* subject) |
---|
[3522] | 670 | { |
---|
[3837] | 671 | this->condition(cond, subject, this->firstTrackElem->findByID(trackID)); |
---|
[3522] | 672 | } |
---|
[3837] | 673 | |
---|
[3522] | 674 | /** |
---|
| 675 | \brief decides under what condition a certain Path will be chosen. |
---|
| 676 | \param cond the CONDITION of the decision |
---|
| 677 | \param subject the Subject that will be decided upon with CONDITION cond. |
---|
[3837] | 678 | \param trackElem The TrackElement to appy this to. (if NULL chose this->currentTrackElement) |
---|
[3330] | 679 | */ |
---|
[3837] | 680 | void TrackManager::condition(CONDITION cond, void* subject, TrackElement* trackElem) |
---|
[3330] | 681 | { |
---|
[3837] | 682 | if (!trackElem) |
---|
| 683 | trackElem = this->currentTrackElem; |
---|
| 684 | |
---|
| 685 | if (!trackElem->isFork) |
---|
[3522] | 686 | { |
---|
[3837] | 687 | PRINTF(2)("%d is not a Fork, and no condition can be set in this case\n", trackElem->ID); |
---|
[3594] | 688 | return; |
---|
[3522] | 689 | } |
---|
[3594] | 690 | else |
---|
| 691 | { |
---|
| 692 | switch (cond) |
---|
| 693 | { |
---|
| 694 | case LOWEST: |
---|
[3837] | 695 | trackElem->condFunc = &TrackElement::lowest; |
---|
[3594] | 696 | break; |
---|
| 697 | case HIGHEST: |
---|
[3837] | 698 | trackElem->condFunc = &TrackElement::highest; |
---|
[3594] | 699 | break; |
---|
| 700 | case RANDOM: |
---|
[3837] | 701 | trackElem->condFunc = &TrackElement::random; |
---|
[3594] | 702 | break; |
---|
| 703 | case LEFTRIGHT: |
---|
[3837] | 704 | trackElem->condFunc = &TrackElement::leftRight; |
---|
[3594] | 705 | break; |
---|
| 706 | case NEAREST: |
---|
[3837] | 707 | trackElem->condFunc = &TrackElement::nearest; |
---|
[3594] | 708 | break; |
---|
| 709 | case ENEMYKILLED: |
---|
| 710 | break; |
---|
| 711 | } |
---|
[3837] | 712 | trackElem->subject=subject; |
---|
[3594] | 713 | } |
---|
[3330] | 714 | } |
---|
| 715 | |
---|
| 716 | /** |
---|
| 717 | \brief joins some tracks together again. |
---|
| 718 | \param count The count of Paths to join. |
---|
| 719 | |
---|
| 720 | Join will set the localTime to the longest time a Path has to get to this Point. \n |
---|
[3354] | 721 | Join will join all curves to the first curve, meaning that all the tangents will be matched. |
---|
[3330] | 722 | */ |
---|
[3332] | 723 | void TrackManager::join(unsigned int count, ...) |
---|
[3330] | 724 | { |
---|
[3332] | 725 | int* trackIDs = new int [count]; |
---|
| 726 | va_list ID; |
---|
| 727 | va_start (ID, count); |
---|
| 728 | for(int i = 0; i < count; i++) |
---|
| 729 | { |
---|
| 730 | trackIDs[i] = va_arg (ID, int); |
---|
| 731 | } |
---|
| 732 | va_end(ID); |
---|
| 733 | this->joinV(count, trackIDs); |
---|
| 734 | delete []trackIDs; |
---|
[3330] | 735 | } |
---|
| 736 | |
---|
| 737 | /** |
---|
[3841] | 738 | \brief Joins some Tracks together again. |
---|
| 739 | \param count The count of trackElements to join |
---|
| 740 | |
---|
| 741 | \see void TrackManager::join(unsigned int count, ...) |
---|
| 742 | The difference to void TrackManager::join(unsigned int count, ...) is, that this function takes |
---|
| 743 | the Names of the TrackElements as inputs and not their ID |
---|
| 744 | */ |
---|
| 745 | void TrackManager::joinc(unsigned int count, ...) |
---|
| 746 | { |
---|
| 747 | int* trackIDs = new int [count]; |
---|
| 748 | va_list NAME; |
---|
| 749 | va_start (NAME, count); |
---|
| 750 | for(int i = 0; i < count; i++) |
---|
| 751 | { |
---|
| 752 | char* name = va_arg (NAME, char*); |
---|
| 753 | TrackElement* tmpElem = this->firstTrackElem->findByName(name); |
---|
| 754 | if (tmpElem) |
---|
| 755 | trackIDs[i] = tmpElem->ID; |
---|
| 756 | else |
---|
| 757 | PRINTF(1)("Trying to join a Track, of which the name does not exist: %s\n", name); |
---|
| 758 | } |
---|
| 759 | va_end(NAME); |
---|
| 760 | this->joinV(count, trackIDs); |
---|
| 761 | delete []trackIDs; |
---|
| 762 | } |
---|
| 763 | |
---|
| 764 | |
---|
| 765 | /** |
---|
[3330] | 766 | \brief joins some tracks together again. |
---|
| 767 | \param count The count of Paths to join. |
---|
| 768 | \param trackIDs an Array with the trackID's to join |
---|
| 769 | |
---|
[3841] | 770 | \see void TrackManager::join(unsigned int count, ...) |
---|
[3330] | 771 | */ |
---|
[3332] | 772 | void TrackManager::joinV(unsigned int count, int* trackIDs) |
---|
[3330] | 773 | { |
---|
[3840] | 774 | TrackElement* tmpTrackElem; |
---|
[3880] | 775 | TrackElement* tmpJoinElem; |
---|
[3840] | 776 | for (int i = 0; i < count; i++) |
---|
| 777 | if (!this->firstTrackElem->findByID(trackIDs[i])) |
---|
| 778 | { |
---|
| 779 | PRINTF(1)("Error trying to Connect Paths that do not exist yet: %d\n Not Joining Anything", trackIDs[i]); |
---|
| 780 | return; |
---|
| 781 | } |
---|
| 782 | |
---|
| 783 | |
---|
[3594] | 784 | PRINTF(3)("Joining %d tracks and merging to Track %d\n", count, trackIDs[0]); |
---|
[3354] | 785 | |
---|
[3522] | 786 | // checking if there is a back-loop-connection and ERROR if it is. |
---|
[3840] | 787 | tmpTrackElem = this->firstTrackElem->findByID(trackIDs[0]); |
---|
[3522] | 788 | if (!tmpTrackElem->backLoopCheck(tmpTrackElem)) |
---|
[3838] | 789 | { |
---|
| 790 | PRINTF(2)("Backloop connection detected at joining trackElements\n -> TRACK WILL NOT BE JOINED\n"); |
---|
| 791 | return; |
---|
| 792 | } |
---|
[3522] | 793 | |
---|
[3838] | 794 | TrackElement* firstJoint = this->firstTrackElem->findByID(trackIDs[0]); |
---|
[3433] | 795 | float tmpLatestTime = firstJoint->endTime; |
---|
[3354] | 796 | |
---|
| 797 | Vector tmpEndPoint = firstJoint->curve->getNode(firstJoint->curve->getNodeCount()); |
---|
[3433] | 798 | Vector tmpTangentPoint = firstJoint->curve->getNode(firstJoint->curve->getNodeCount()-1); |
---|
| 799 | Vector tmpc2Point = firstJoint->curve->getNode(firstJoint->curve->getNodeCount()-2); |
---|
[3354] | 800 | firstJoint->isJoined = true; |
---|
[3433] | 801 | // firstJoint->mainJoin = true; |
---|
[3354] | 802 | if(!firstJoint->isHotPoint) |
---|
[3838] | 803 | this->setSavePoint(firstJoint); |
---|
[3433] | 804 | // Timing: |
---|
| 805 | for (int i = 0; i < count; i++) |
---|
| 806 | { |
---|
[3880] | 807 | if(tmpJoinElem = this->firstTrackElem->findByID(trackIDs[i])) |
---|
| 808 | { |
---|
| 809 | if (tmpJoinElem->childCount == 0 |
---|
| 810 | && tmpJoinElem->endTime > tmpLatestTime) |
---|
| 811 | tmpLatestTime = tmpJoinElem->endTime; |
---|
| 812 | } |
---|
[3433] | 813 | } |
---|
| 814 | // time the main Join. |
---|
| 815 | firstJoint->jumpTime = tmpLatestTime - firstJoint->endTime; |
---|
| 816 | |
---|
| 817 | // Joining: |
---|
[3354] | 818 | for (int i = 1; i < count; i++) |
---|
[3352] | 819 | { |
---|
[3880] | 820 | if( tmpJoinElem = this->firstTrackElem->findByID(trackIDs[i])) |
---|
[3354] | 821 | { |
---|
[3880] | 822 | if (tmpJoinElem->childCount > 0) |
---|
| 823 | printf("!!This Curve has children, and as such will not be joined!!\n You can try joining other childless TrackElements to this one!"); |
---|
| 824 | else |
---|
| 825 | { |
---|
| 826 | this->addPoint(tmpc2Point, tmpJoinElem); |
---|
| 827 | this->addPoint(tmpTangentPoint, tmpJoinElem); |
---|
| 828 | this->addPoint(tmpEndPoint, tmpJoinElem); |
---|
| 829 | // time all other Joins |
---|
| 830 | tmpJoinElem->jumpTime = tmpLatestTime - tmpJoinElem->endTime; |
---|
| 831 | |
---|
| 832 | //Copying Joint-Info |
---|
| 833 | tmpJoinElem->children = firstJoint->children; |
---|
| 834 | tmpJoinElem->childCount = firstJoint->childCount; |
---|
| 835 | tmpJoinElem->isSavePoint = firstJoint->isSavePoint; |
---|
| 836 | tmpJoinElem->isFork = firstJoint->isFork; |
---|
| 837 | |
---|
| 838 | tmpJoinElem->isJoined = true; |
---|
| 839 | } |
---|
[3354] | 840 | } |
---|
[3352] | 841 | } |
---|
[3838] | 842 | if(firstJoint->children) |
---|
[3594] | 843 | { |
---|
[3832] | 844 | //TrackElement* enumElem = firstJoint->children->enumerate(); |
---|
| 845 | tIterator<TrackElement>* iterator = firstJoint->children->getIterator(); |
---|
| 846 | TrackElement* enumElem = iterator->nextElement(); |
---|
[3594] | 847 | while (enumElem) |
---|
| 848 | { |
---|
[3838] | 849 | PRINTF(5)("Setting startingTime of %d to %f.\n", enumElem->ID, tmpLatestTime); |
---|
[3594] | 850 | enumElem->startingTime = tmpLatestTime; |
---|
| 851 | enumElem->endTime = tmpLatestTime + enumElem->duration; |
---|
| 852 | |
---|
[3832] | 853 | enumElem = iterator->nextElement(); |
---|
[3594] | 854 | } |
---|
[3832] | 855 | delete iterator; |
---|
[3594] | 856 | } |
---|
[3330] | 857 | } |
---|
| 858 | |
---|
[3433] | 859 | /** |
---|
| 860 | \brief finalizes the TrackSystem. after this it will not be editable anymore |
---|
| 861 | |
---|
| 862 | \todo check for any inconsistencies, output errors |
---|
| 863 | */ |
---|
| 864 | void TrackManager::finalize(void) |
---|
| 865 | { |
---|
| 866 | for (int i = 1; i<= trackElemCount ;i++) |
---|
| 867 | { |
---|
[3836] | 868 | TrackElement* tmpElem = this->firstTrackElem->findByID(i); |
---|
[3832] | 869 | if( tmpElem->childCount > 0 && tmpElem->mainJoin) |
---|
[3433] | 870 | { |
---|
[3832] | 871 | tIterator<TrackElement>* iterator = tmpElem->children->getIterator(); |
---|
| 872 | TrackElement* enumElem = iterator->nextElement(); |
---|
| 873 | //TrackElement* enumElem = tmpElem->children->enumerate(); |
---|
[3594] | 874 | while (enumElem) |
---|
[3433] | 875 | { |
---|
| 876 | |
---|
| 877 | // c1-continuity |
---|
[3594] | 878 | enumElem->curve->addNode(enumElem->curve->getNode(0) + |
---|
| 879 | ((enumElem->curve->getNode(0) - |
---|
[3433] | 880 | tmpElem->curve->getNode(tmpElem->curve->getNodeCount()-1)) |
---|
| 881 | ),2); |
---|
[3594] | 882 | enumElem->nodeCount++; |
---|
[3433] | 883 | // c2-continuity |
---|
[3594] | 884 | enumElem->curve->addNode((tmpElem->curve->getNode(tmpElem->curve->getNodeCount())- |
---|
[3433] | 885 | tmpElem->curve->getNode(tmpElem->curve->getNodeCount()-1)) * 4 + |
---|
| 886 | tmpElem->curve->getNode(tmpElem->curve->getNodeCount()-2), 3); |
---|
[3594] | 887 | enumElem->nodeCount++; |
---|
| 888 | PRINTF(5)("accelerations: %d-in: count: %d, %f, %f, %f\n %d-out: count: %d %f, %f, %f\n", |
---|
[3433] | 889 | tmpElem->ID, tmpElem->nodeCount, |
---|
| 890 | tmpElem->curve->calcAcc(0.999).x, tmpElem->curve->calcAcc(0.999).y, tmpElem->curve->calcAcc(0.999).z, |
---|
[3594] | 891 | enumElem->ID, enumElem->nodeCount, |
---|
| 892 | enumElem->curve->calcAcc(0).x, enumElem->curve->calcAcc(0).y, enumElem->curve->calcAcc(0).z); |
---|
| 893 | |
---|
[3832] | 894 | enumElem = iterator->nextElement(); |
---|
[3433] | 895 | } |
---|
[3832] | 896 | delete iterator; |
---|
[3433] | 897 | } |
---|
| 898 | } |
---|
[3838] | 899 | for (int i = 1; i <= trackElemCount;i++) |
---|
[3836] | 900 | if (this->firstTrackElem->findByID(i)->endTime > this->maxTime) |
---|
| 901 | this->maxTime = this->firstTrackElem->findByID(i)->endTime; // very bad implemented :/ |
---|
[3433] | 902 | } |
---|
| 903 | |
---|
| 904 | |
---|
[3330] | 905 | // RUNTIME // |
---|
| 906 | |
---|
| 907 | /** |
---|
| 908 | \brief calculates the Position for the localTime of the Track. |
---|
| 909 | \returns the calculated Position |
---|
| 910 | */ |
---|
[3332] | 911 | Vector TrackManager::calcPos() const |
---|
[3330] | 912 | { |
---|
[3348] | 913 | return this->currentTrackElem->curve->calcPos((this->localTime-this->currentTrackElem->startingTime)/this->currentTrackElem->duration); |
---|
[3330] | 914 | } |
---|
| 915 | |
---|
| 916 | /** |
---|
| 917 | \brief calculates the Rotation for the localTime of the Track. |
---|
| 918 | \returns the calculated Rotation |
---|
| 919 | */ |
---|
[3332] | 920 | Vector TrackManager::calcDir() const |
---|
[3330] | 921 | { |
---|
[3433] | 922 | return this->currentTrackElem->curve->calcDir((this->localTime - this->currentTrackElem->startingTime)/this->currentTrackElem->duration); |
---|
[3330] | 923 | } |
---|
| 924 | |
---|
| 925 | /** |
---|
[3596] | 926 | \returns the current Width of the track |
---|
| 927 | */ |
---|
| 928 | float TrackManager::getWidth(void) const |
---|
| 929 | { |
---|
| 930 | return this->currentTrackElem->width; |
---|
| 931 | } |
---|
| 932 | |
---|
| 933 | /** |
---|
[3330] | 934 | \brief Advances the local-time of the Track around dt |
---|
| 935 | \param dt The time about which to advance. |
---|
[3333] | 936 | |
---|
| 937 | This function also checks, if the TrackElement has to be changed. |
---|
[3330] | 938 | */ |
---|
| 939 | void TrackManager::tick(float dt) |
---|
| 940 | { |
---|
[3433] | 941 | dt /= 1000; |
---|
[3591] | 942 | PRINTF(4)("CurrentTrackID: %d, LocalTime is: %f, timestep is: %f\n", this->currentTrackElem->ID, this->localTime, dt); |
---|
[3348] | 943 | if (this->localTime <= this->firstTrackElem->duration) |
---|
| 944 | this->jumpTo(this->localTime); |
---|
[3601] | 945 | if (this->localTime <= this->maxTime) |
---|
| 946 | this->localTime += dt; |
---|
[3433] | 947 | if (this->localTime > this->currentTrackElem->endTime |
---|
| 948 | && this->currentTrackElem->children) |
---|
| 949 | { |
---|
[3527] | 950 | if (this->currentTrackElem->jumpTime != 0.0) |
---|
[3433] | 951 | this->jumpTo(this->localTime + this->currentTrackElem->jumpTime); |
---|
[3527] | 952 | // jump to the next TrackElement and also set the history of the new Element to the old one. |
---|
| 953 | TrackElement* tmpHistoryElem = this->currentTrackElem; |
---|
[3594] | 954 | this->currentTrackElem = this->currentTrackElem->getChild(this->choosePath(this->currentTrackElem)); |
---|
[3527] | 955 | this->currentTrackElem->history = tmpHistoryElem; |
---|
[3845] | 956 | if (this->currentTrackElem->getName()) |
---|
| 957 | { |
---|
| 958 | this->trackText->setText(this->currentTrackElem->getName()); |
---|
[3846] | 959 | this->textAnimation->replay(); |
---|
[3845] | 960 | } |
---|
[3433] | 961 | } |
---|
| 962 | if (this->bindSlave) |
---|
| 963 | { |
---|
| 964 | Vector tmp = this->calcPos(); |
---|
| 965 | 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)); |
---|
[3539] | 966 | |
---|
| 967 | Vector v(0.0, 1.0, 0.0); |
---|
[3543] | 968 | Quaternion q(-PI/2, v); |
---|
[3539] | 969 | quat = quat * q; |
---|
| 970 | |
---|
[3809] | 971 | this->bindSlave->setAbsCoor(tmp); |
---|
| 972 | this->bindSlave->setAbsDir(quat); |
---|
[3433] | 973 | } |
---|
[3330] | 974 | } |
---|
| 975 | |
---|
| 976 | /** |
---|
[3331] | 977 | \brief Jumps to a certain point on the Track. |
---|
| 978 | \param time The time on the Track to jump to. |
---|
| 979 | |
---|
| 980 | 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.) |
---|
| 981 | Max is trackLengthMax. |
---|
| 982 | */ |
---|
| 983 | void TrackManager::jumpTo(float time) |
---|
| 984 | { |
---|
[3348] | 985 | if (time == 0) |
---|
[3845] | 986 | { |
---|
| 987 | this->currentTrackElem = this->firstTrackElem; |
---|
| 988 | if (this->currentTrackElem->getName()) |
---|
| 989 | { |
---|
| 990 | this->trackText->setText(this->currentTrackElem->getName()); |
---|
| 991 | this->textAnimation->play(); |
---|
| 992 | } |
---|
| 993 | } |
---|
[3348] | 994 | this->localTime = time; |
---|
[3331] | 995 | } |
---|
| 996 | |
---|
| 997 | /** |
---|
[3330] | 998 | \brief a Function that decides which Path we should follow. |
---|
[3522] | 999 | \param trackElem The Path to choose. |
---|
[3330] | 1000 | |
---|
| 1001 | */ |
---|
[3522] | 1002 | int TrackManager::choosePath(TrackElement* trackElem) |
---|
[3330] | 1003 | { |
---|
[3522] | 1004 | return (trackElem->*(trackElem->condFunc))(trackElem->subject); |
---|
[3330] | 1005 | } |
---|
| 1006 | |
---|
[3433] | 1007 | /** |
---|
| 1008 | \brief Sets the PNode, that should be moved along the Tack |
---|
| 1009 | \param bindSlave the PNode to set |
---|
| 1010 | */ |
---|
| 1011 | void TrackManager::setBindSlave(PNode* bindSlave) |
---|
| 1012 | { |
---|
[3556] | 1013 | this->bindSlave = bindSlave; |
---|
[3433] | 1014 | } |
---|
[3350] | 1015 | |
---|
[3556] | 1016 | /** |
---|
| 1017 | \returns the main TrackNode |
---|
| 1018 | */ |
---|
| 1019 | PNode* TrackManager::getTrackNode(void) |
---|
| 1020 | { |
---|
| 1021 | return this->trackNode; |
---|
| 1022 | } |
---|
[3350] | 1023 | |
---|
| 1024 | // DEBUG // |
---|
| 1025 | |
---|
| 1026 | /** |
---|
| 1027 | \brief Imports a model of the Graph into the OpenGL-environment. |
---|
| 1028 | \param dt The Iterator used in seconds for Painting the Graph. |
---|
| 1029 | |
---|
| 1030 | This is for testing facility only. Do this if you want to see the Path inside the Level. |
---|
| 1031 | eventually this will all be packed into a gl-list. |
---|
| 1032 | */ |
---|
| 1033 | void TrackManager::drawGraph(float dt) const |
---|
| 1034 | { |
---|
| 1035 | for (int i = 1; i <= trackElemCount; i++) |
---|
| 1036 | { |
---|
[3352] | 1037 | glBegin(GL_LINE_STRIP); |
---|
[3836] | 1038 | TrackElement* tmpElem = this->firstTrackElem->findByID(i); |
---|
[3350] | 1039 | if (tmpElem->curve) |
---|
| 1040 | for(float f = 0.0; f < 1.0; f+=dt) |
---|
| 1041 | { |
---|
| 1042 | // printf("%f, %f, %f\n",trackManager->calcPos().x, trackManager->calcPos().y, trackManager->calcPos().z); |
---|
| 1043 | Vector tmpVector = tmpElem->curve->calcPos(f); |
---|
| 1044 | glVertex3f(tmpVector.x, tmpVector.y, tmpVector.z); |
---|
| 1045 | } |
---|
[3710] | 1046 | glEnd(); |
---|
[3350] | 1047 | } |
---|
| 1048 | } |
---|
| 1049 | |
---|
[3433] | 1050 | /** |
---|
| 1051 | \brief outputs debug information about the trackManager |
---|
| 1052 | \param level how much debug |
---|
| 1053 | */ |
---|
[3350] | 1054 | void TrackManager::debug(unsigned int level) const |
---|
| 1055 | { |
---|
[3522] | 1056 | PRINT(0)("=========================================\n"); |
---|
| 1057 | PRINT(0)("= CLASS TRACKMANAGER::debug information =\n"); |
---|
| 1058 | PRINT(0)("=========================================\n"); |
---|
| 1059 | // PRINT(0)("Status is: % |
---|
| 1060 | PRINT(0)(" Consists of %d elements\n", this->trackElemCount); |
---|
| 1061 | PRINT(0)(" localTime is: %f\n", this->localTime); |
---|
[3350] | 1062 | if (level >= 2) |
---|
| 1063 | { |
---|
| 1064 | for (int i = 1; i <= trackElemCount; i++) |
---|
| 1065 | { |
---|
[3836] | 1066 | TrackElement* tmpElem = this->firstTrackElem->findByID(i); |
---|
[3593] | 1067 | tmpElem->debug(); |
---|
[3350] | 1068 | } |
---|
| 1069 | } |
---|
[3522] | 1070 | PRINT(0)("-----------------------------------------\n"); |
---|
[3350] | 1071 | } |
---|