Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3846 in orxonox.OLD


Ignore:
Timestamp:
Apr 17, 2005, 1:32:39 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: now the Text is real sexy, smashing in and smoothly fading out

Location:
orxonox/trunk/src
Files:
3 edited

Legend:

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

    r3833 r3846  
    239239      if (localTime >= this->currentKeyFrame->duration)
    240240        {
     241          // switching to the next Key-Frame
     242          this->currentKeyFrame = this->nextKeyFrame;
    241243          this->localTime = 0;
     244          // checking, if we should still Play the animation
    242245          if (this->currentKeyFrame == this->keyFrameList->lastElement())
    243             switch (this->postInfinity)
    244               {
    245               case ANIM_INF_CONSTANT:
    246                 this->bRunning = false;
    247                 break;
    248               case ANIM_INF_REWIND:
    249                 break;
    250               }
    251           //this->currentKeyFrame = this->keyFrameList->nextElement(this->currentKeyFrame);
    252           this->currentKeyFrame = this->nextKeyFrame;
     246            {
     247              switch (this->postInfinity)
     248                {
     249                case ANIM_INF_CONSTANT:
     250                  this->bRunning = false;
     251                  break;
     252                case ANIM_INF_REWIND:
     253                  break;
     254                }
     255            }
    253256          this->nextKeyFrame = this->keyFrameList->nextElement(this->nextKeyFrame);
    254257          printf("%p from:%f to:%f\n", this->currentKeyFrame,this->currentKeyFrame->value, this->nextKeyFrame->value);
  • orxonox/trunk/src/story_entities/world.cc

    r3832 r3846  
    373373            this->glmis->step();
    374374
    375             this->testText = TextEngine::getInstance()->createText("fonts/earth.ttf", 30, TEXT_DYNAMIC, 0, 255, 0);
    376             testText->setText("We've got Hostiles!");
    377             testText->setBlending(1.0);
    378             testText->setBindNode(tn);
    379 
    380             //aTest* test = new aTest();
    381             //tAnim<aTest>* testAnim = new tAnim<aTest>(test, &aTest::littleDebug);
    382             tAnim<Text>* testAnim = new tAnim<Text>(testText, &Text::setBlending);
    383            
    384             testAnim->addKeyFrame(0.0, 1.0, ANIM_LINEAR);
    385             testAnim->addKeyFrame(0.0, 1.0, ANIM_LINEAR);
    386             testAnim->addKeyFrame(1.0, 1.0, ANIM_LINEAR);
    387            
    388             testAnim->addKeyFrame(0.0, 1.0, ANIM_COSINE);
    389             testAnim->addKeyFrame(1.0, 1.0, ANIM_COSINE);         
    390            
    391             testAnim->addKeyFrame(0.0, 1.0, ANIM_SINE);
    392             testAnim->addKeyFrame(1.0, 1.0, ANIM_SINE);
    393                     testAnim->addKeyFrame(0.0, 1.0, ANIM_NEG_EXP);
    394             testAnim->addKeyFrame(1.0, 1.0, ANIM_NEG_EXP);
    395            
    396             testAnim->setInfinity(ANIM_INF_REWIND);
    397375            break;
    398376          }
  • orxonox/trunk/src/track_manager.cc

    r3845 r3846  
    394394  // initializing the Animation for the Text.
    395395  this->textAnimation = new tAnim<Text>(this->trackText, &Text::setBlending);
    396   this->textAnimation->addKeyFrame(1.0, 1.0, ANIM_LINEAR);
    397   this->textAnimation->addKeyFrame(0.0, 1.0);
     396  this->textAnimation->addKeyFrame(1.0, 3.0, ANIM_LINEAR);
     397  this->textAnimation->addKeyFrame(0.0, .001);
    398398  this->textAnimation->setInfinity(ANIM_INF_CONSTANT);
    399399}
     
    941941        {
    942942          this->trackText->setText(this->currentTrackElem->getName());
    943           this->textAnimation->play();
     943          this->textAnimation->replay();
    944944        }
    945945    }
Note: See TracChangeset for help on using the changeset viewer.