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