Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Sep 15, 2008, 9:31:55 PM (16 years ago)
Author:
rgrieder
Message:

reverted r1787

Location:
code/trunk/src/orxonox/objects
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/orxonox/objects/Model.cc

    r1787 r1789  
    8585        COUT(4) << "Loader (Model.cc): Created model" << std::endl;
    8686      }
    87       if(this->isExactlyA(GetClassIdentifier(Model)))
     87      if(this->isExactlyA(Class(Model)))
    8888        setObjectFrequency(300); //sync all 10 seconds (this only applies to asteroids and other isExactlyA(Model)
    8989      return true;
  • code/trunk/src/orxonox/objects/Projectile.cc

    r1787 r1789  
    101101                {
    102102                    // hit
    103                     if (it->isA(GetClassIdentifier(SpaceShipAI)))
     103                    if (it->isA(Class(SpaceShipAI)))
    104104                        ((SpaceShipAI*)(*it))->damage(this->damage_);
    105105                    ParticleSpawner* explosion = new ParticleSpawner(this->explosionTemplateName_, LODParticle::low, 2.0);
  • code/trunk/src/orxonox/objects/SpaceShip.cc

    r1787 r1789  
    7777      ObjectList<SpaceShip>::iterator it;
    7878      for(it = ObjectList<SpaceShip>::begin(); it; ++it){
    79         assert(it->isA(GetClassIdentifier(SpaceShip)));
     79        assert(it->isA(Class(SpaceShip)));
    8080        if( (it)->myShip_ || (network::Host::running() && network::Host::getShipID()==(it)->objectID) ){
    8181//        COUT(1) << "^^^^^^^^^^ myShip_:" << *it << " classname: " << (*it)->getIdentifier()->getName() << " objectid: " << (*it)->objectID << std::endl;
     
    273273            // END CREATING ADDITIONAL EFFECTS
    274274
    275             if (this->isExactlyA(GetClassIdentifier(SpaceShip)))
     275            if (this->isExactlyA(Class(SpaceShip)))
    276276            {
    277277                // START of testing crosshair
     
    376376        COUT(4) << "requesting focus for camera" << std::endl;
    377377        //CameraHandler::getInstance()->requestFocus(cam_);
    378         if(this->isExactlyA(GetClassIdentifier(SpaceShip))){
     378        if(this->isExactlyA(Class(SpaceShip))){
    379379          getFocus();
    380380          COUT(4) << "getting focus for obj id: " << objectID << std::endl;
     
    421421        myShip_=true; //TODO: this is a hack
    422422        SpaceShip::create();
    423         /*if (this->isExactlyA(GetClassIdentifier(SpaceShip)))
     423        /*if (this->isExactlyA(Class(SpaceShip)))
    424424            getFocus();*/
    425425    }
Note: See TracChangeset for help on using the changeset viewer.