Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 18, 2006, 4:41:00 PM (19 years ago)
Author:
manuel
Message:

prepare to merge…

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/powerups/src/world_entities/power_ups/power_up.cc

    r6547 r6588  
    2828
    2929  this->respawnType = RESPAWN_NONE;
     30  this->respawnStart = 10;
     31  this->model = NULL;
    3032/*  if(!PowerUp::sphereModel) {*/
    3133
     
    5860    if(dynamic_cast<Extendable*>(entity)->pickup(this))
    5961    {
     62      this->respawnTime = this->respawnStart;
    6063      this->toList(OM_DEAD_TICK);
     64    }
     65  }
     66}
     67
     68void PowerUp::tick(float dt) {
     69  if(this->getOMListNumber() != OM_COMMON) {
     70    this->respawnTime -= dt;
     71    if(this->respawnTime <= 0) {
     72      this->toList(OM_COMMON);
     73      this->respawn();
    6174    }
    6275  }
     
    6578void PowerUp::draw() const
    6679{
     80  if(this->model != NULL) {
     81    glMatrixMode(GL_MODELVIEW);
     82    glPushMatrix();
     83    glTranslatef (this->getAbsCoor ().x,
     84                  this->getAbsCoor ().y,
     85                  this->getAbsCoor ().z);
     86    Vector tmpRot = this->getAbsDir().getSpacialAxis();
     87    glRotatef (this->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z );
     88    this->model->draw();
     89    glPopMatrix();
     90  }
    6791  this->sphereMaterial->select();
    6892  WorldEntity::draw();
    69   /*glMatrixMode(GL_MODELVIEW);
    70   glPushMatrix();
    71 
    72   glTranslatef (this->getAbsCoor ().x,
    73                 this->getAbsCoor ().y,
    74                 this->getAbsCoor ().z);
    75   Vector tmpRot = this->getAbsDir().getSpacialAxis();
    76   glRotatef (this->getAbsDir().getSpacialAxisAngle(), tmpRot.x, tmpRot.y, tmpRot.z );
    77 
    78    this->sphereMaterial->select();
    79    this->getModel(0)->draw();
    80 
    81   glPopMatrix();*/
    8293}
    8394
Note: See TracChangeset for help on using the changeset viewer.