Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 10491 in orxonox.OLD


Ignore:
Timestamp:
Jan 30, 2007, 1:13:28 AM (17 years ago)
Author:
patrick
Message:

merged blinki branche back to trunk

Location:
trunk/src/world_entities
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/world_entities/effects/billboard.cc

    r10473 r10491  
    154154  // changes the color of the texture (if any is set)
    155155  if(this->texColor != NULL)
    156     glColor4ub((GLubyte)this->texColor->r()*255, (GLubyte)this->texColor->g()*255, (GLubyte)this->texColor->b()*255, (GLubyte)(this->texColor->a()*255));
     156    glColor4ub((GLubyte)(this->texColor->r()*255.0f), (GLubyte)(this->texColor->g()*255.0f), (GLubyte)(this->texColor->b()*255.0f), (GLubyte)(this->texColor->a()*255));
    157157
    158158  glBegin(GL_QUADS);
  • trunk/src/world_entities/effects/blink.cc

    r10445 r10491  
    3838  // calculation of the symbolTime
    3939  this->symbolTime = this->period / this->blinkSequence.length();
     40  //PRINTF(0)("\n\n\nperiod: %f\n\n\n", this->period);
    4041}
    4142
     
    8081  this->timer = 0;
    8182  this->seqCounter = 0;
     83
     84  // ugly hack continued
     85  this->setCoor = true;
    8286}
    8387
     
    9195  WorldEntity::loadParams(root);
    9296
    93   LoadParam(root, "position", this, Blink, setPosition);
     97  LoadParam(root, "position", this, Blink, PNode::setAbsCoor);
    9498  LoadParam(root, "size", this, Blink, setSize);
    9599  LoadParam(root, "color", this, Blink, setColor);
     
    105109void Blink::tick(float dt)
    106110{
     111  // ugly hack continued, set absCoor only once
     112  if(this->setCoor) {
     113    this->bBoard->setAbsCoor(this->getAbsCoor());
     114    this->setCoor = false;
     115    this->symbolTime = this->period / this->blinkSequence.length();
     116  }
     117
    107118  timer += dt;
    108119
  • trunk/src/world_entities/effects/blink.h

    r10445 r10491  
    3636    void loadParams(const TiXmlElement* root);
    3737
    38     void setPosition(float x, float y, float z) { this->bBoard->setAbsCoor(x, y, z); }
     38    //void setAbsCoor(const Vector& absCoor) { this->bBoard->setAbsCoor(absCoor); }
     39    //void setAbsCoor(float x, float y, float z) { this->bBoard->setAbsCoor(x, y, z); }
     40    //void setPosition(float x, float y, float z) { this->bBoard->setAbsCoor(x, y, z); }
    3941    void setSize(float s) { this->size = s; this->bBoard->setSize(this->size, this->size); }
    4042    void setPeriod(float t) { this->period = t; }
     
    5658    float             symbolTime;       //! defines how long one symbol of the sequence will be shown in sec
    5759    float             timer;
     60    bool              setCoor;          // this is a really ugly hack
    5861};
    5962
  • trunk/src/world_entities/mount_point.cc

    r10455 r10491  
    176176      this->_mount->setParent( this);
    177177
    178       this->_mount->toList( (OM_LIST)(this->getOMListNumber()+1));
     178      this->_mount->toList((OM_LIST)(this->getOMListNumber()));
    179179    }
    180180    else if( obj->isA( WeaponSlot::staticClassID()))
  • trunk/src/world_entities/questGUI/quest_gui.cc

    r10489 r10491  
    157157      OrxGui::GLGuiImage* placeImage = new OrxGui::GLGuiImage();
    158158      placeImage->setWidgetSize(85, 10);
    159       placeImage->loadImageFromFile("maps/schwarz.png");
     159      placeImage->loadImageFromFile("textures/gui/gui_quest_black.png");
    160160      placeImage->show();
    161161      labelBox->pack(placeImage);
     
    191191      OrxGui::GLGuiImage* placeImage = new OrxGui::GLGuiImage();
    192192      placeImage->setWidgetSize(20, 10);
    193       placeImage->loadImageFromFile("maps/schwarz.png");
     193      placeImage->loadImageFromFile("textures/gui/gui_quest_black.png");
    194194      placeImage->show();
    195195      answerBox->pack(placeImage);
Note: See TracChangeset for help on using the changeset viewer.