Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 6, 2011, 8:15:38 AM (13 years ago)
Author:
dafrick
Message:

Adherence to styleguide.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/presentation/src/modules/docking/Dock.cc

    r8667 r8700  
    6363    }
    6464
    65 
    6665    void Dock::XMLPort(Element& xmlelement, XMLPort::Mode mode)
    6766    {
     
    7978        XMLPortEventSink(Dock, BaseObject, "execute", execute, xmlelement, mode);
    8079    }
    81 
    8280
    8381    bool Dock::execute(bool bTriggered, BaseObject* trigger)
     
    109107        {
    110108            // Add player to this Docks candidates
    111             candidates.insert(player);
     109            candidates_.insert(player);
    112110
    113111            // Show docking dialog
     
    117115        {
    118116            // Remove player from candidates list
    119             candidates.erase(player);
    120         }
    121 
    122         return true;
    123     }
    124 
     117            candidates_.erase(player);
     118        }
     119
     120        return true;
     121    }
    125122
    126123    void Dock::cmdDock()
     
    144141    }
    145142
    146 
    147143    bool Dock::dock(PlayerInfo* player)
    148144    {
    149145        // Check if player is a candidate
    150         if(candidates.find(player) == candidates.end())
     146        if(candidates_.find(player) == candidates_.end())
    151147        {
    152148            COUT(2) << "Dock::dock Player is not a candidate!" << std::endl;
     
    154150        }
    155151
    156         candidates.erase(player);
    157         docked.insert(player);
    158 
    159         if (animations.empty())
     152        candidates_.erase(player);
     153        docked_.insert(player);
     154
     155        if (animations_.empty())
    160156            return dockingAnimationFinished(player);
    161157        else
    162             DockingAnimation::invokeAnimation(true, player, animations);
     158            DockingAnimation::invokeAnimation(true, player, animations_);
    163159
    164160        return true;
     
    167163    bool Dock::dockingAnimationFinished(PlayerInfo* player)
    168164    {
    169         if(docked.find(player) == docked.end())
     165        if(docked_.find(player) == docked_.end())
    170166        {
    171167            COUT(2) << "Dock::dockingAnimationFinished Player is not currently docked." << std::endl;
     
    173169        }
    174170
    175         DockingEffect::invokeEffect(true, player, effects);
     171        DockingEffect::invokeEffect(true, player, effects_);
    176172        return true;
    177173    }
     
    180176    {
    181177        // Check if player is docked to this Dock
    182         if(docked.find(player) == docked.end())
     178        if(docked_.find(player) == docked_.end())
    183179        {
    184180            COUT(2) << "Dock::undock Player is not docked to this Dock." << std::endl;
     
    186182        }
    187183
    188         docked.erase(player);
    189         candidates.insert(player);
    190 
    191         DockingEffect::invokeEffect(false, player, effects);
    192 
    193         if (animations.empty())
     184        docked_.erase(player);
     185        candidates_.insert(player);
     186
     187        DockingEffect::invokeEffect(false, player, effects_);
     188
     189        if (animations_.empty())
    194190            return undockingAnimationFinished(player);
    195191        else
    196             DockingAnimation::invokeAnimation(false, player, animations);
     192            DockingAnimation::invokeAnimation(false, player, animations_);
    197193
    198194        return true;
     
    204200    }
    205201
    206 
    207202    unsigned int Dock::getNumberOfActiveDocks()
    208203    {
     
    211206        for(ObjectList<Dock>::iterator it = ObjectList<Dock>::begin(); it != ObjectList<Dock>::end(); ++it)
    212207        {
    213             if(it->candidates.find(player) != it->candidates.end())
     208            if(it->candidates_.find(player) != it->candidates_.end())
    214209                i++;
    215210        }
     
    222217        for(ObjectList<Dock>::iterator it = ObjectList<Dock>::begin(); it != ObjectList<Dock>::end(); ++it)
    223218        {
    224             if(it->candidates.find(player) != it->candidates.end())
     219            if(it->candidates_.find(player) != it->candidates_.end())
    225220            {
    226221                if(index == 0)
     
    232227    }
    233228
    234 
    235229    bool Dock::addEffect(DockingEffect* effect)
    236230    {
    237231        assert(effect);
    238         effects.push_back(effect);
     232        effects_.push_back(effect);
    239233        return true;
    240234    }
     
    242236    const DockingEffect* Dock::getEffect(unsigned int i) const
    243237    {
    244         for (std::list<DockingEffect*>::const_iterator effect = this->effects.begin(); effect != this->effects.end(); ++effect)
     238        for (std::list<DockingEffect*>::const_iterator effect = this->effects_.begin(); effect != this->effects_.end(); ++effect)
    245239        {
    246240            if(i == 0)
     
    255249        assert(animation);
    256250        animation->setParent(this);
    257         animations.push_back(animation);
     251        animations_.push_back(animation);
    258252        return true;
    259253    }
     
    261255    const DockingAnimation* Dock::getAnimation(unsigned int i) const
    262256    {
    263         for (std::list<DockingAnimation*>::const_iterator animation = this->animations.begin(); animation != this->animations.end(); ++animation)
     257        for (std::list<DockingAnimation*>::const_iterator animation = this->animations_.begin(); animation != this->animations_.end(); ++animation)
    264258        {
    265259            if(i == 0)
     
    270264    }
    271265}
    272 
Note: See TracChangeset for help on using the changeset viewer.