Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jul 17, 2009, 11:53:35 PM (15 years ago)
Author:
rgrieder
Message:

Found a few more C-Style casts.

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

Legend:

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

    r3196 r3300  
    7171
    7272        for (std::map<PlayerInfo*, int>::iterator it = this->teamnumbers_.begin(); it != this->teamnumbers_.end(); ++it)
    73             if (it->second < (int)this->teams_ && it->second >= 0)
     73            if (it->second < static_cast<int>(this->teams_) && it->second >= 0)
    7474                playersperteam[it->second]++;
    7575
     
    127127            {
    128128                TeamSpawnPoint* tsp = dynamic_cast<TeamSpawnPoint*>(*it);
    129                 if (tsp && (int)tsp->getTeamNumber() != desiredTeamNr)
     129                if (tsp && static_cast<int>(tsp->getTeamNumber()) != desiredTeamNr)
    130130                {
    131131                    teamSpawnPoints.erase(it++);
     
    160160        // Set the team colour
    161161        std::map<PlayerInfo*, int>::const_iterator it_player = this->teamnumbers_.find(player);
    162         if (it_player != this->teamnumbers_.end() && it_player->second >= 0 && it_player->second < (int)this->teamcolours_.size())
     162        if (it_player != this->teamnumbers_.end() && it_player->second >= 0 && it_player->second < static_cast<int>(this->teamcolours_.size()))
    163163        {
    164164            if (pawn)
  • code/trunk/src/orxonox/objects/gametypes/UnderAttack.cc

    r3280 r3300  
    5151
    5252        this->setConfigValues();
    53         this->timesequence_ = (int) this->gameTime_;
     53        this->timesequence_ = static_cast<this->gameTime_);
    5454    }
    5555
  • code/trunk/src/orxonox/objects/infos/Bot.cc

    r3196 r3300  
    5252        this->setConfigValues();
    5353
    54         this->setName(this->names_[(size_t)(rnd() * this->names_.size())]);
     54        this->setName(this->names_[static_cast<size_t>(rnd() * this->names_.size())]);
    5555
    5656        if (this->getGametype())
  • code/trunk/src/orxonox/objects/pickup/PickupCollection.cc

    r3280 r3300  
    8686    bool PickupCollection::checkSlot(BaseItem* item)
    8787    {
    88         return ((int)this->items_.count(item->getPickupIdentifier()) < item->getMaxCarryAmount());
     88        return (static_cast<int>(this->items_.count(item->getPickupIdentifier())) < item->getMaxCarryAmount());
    8989    }
    9090    /**
  • code/trunk/src/orxonox/objects/worldentities/ParticleEmitter.h

    r3280 r3300  
    6464        protected:
    6565            inline void setLODxml(unsigned int level)
    66                 { this->LOD_ = (LODParticle::Value)level; this->LODchanged(); }
     66                { this->LOD_ = static_cast<LODParticle::Value>(level); this->LODchanged(); }
    6767            inline unsigned int getLODxml() const
    6868                { return (unsigned int)this->LOD_; }
  • code/trunk/src/orxonox/objects/worldentities/pawns/Pawn.cc

    r3280 r3300  
    281281        else
    282282        {
    283             callMemberNetworkFunction(Pawn, doFire, this->getObjectID(), 0, ((uint8_t)firemode));
     283            callMemberNetworkFunction(Pawn, doFire, this->getObjectID(), 0, firemode);
    284284            if (this->weaponSystem_)
    285285                this->weaponSystem_->fire(firemode);
Note: See TracChangeset for help on using the changeset viewer.