Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/trunk/src/orxonox/worldentities/pawns/TeamBaseMatchBase.cc @ 11071

Last change on this file since 11071 was 11071, checked in by landauf, 8 years ago

merged branch cpp11_v3 back to trunk

  • Property svn:eol-style set to native
File size: 2.8 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist
3 *                    > www.orxonox.net <
4 *
5 *
6 *   License notice:
7 *
8 *   This program is free software; you can redistribute it and/or
9 *   modify it under the terms of the GNU General Public License
10 *   as published by the Free Software Foundation; either version 2
11 *   of the License, or (at your option) any later version.
12 *
13 *   This program is distributed in the hope that it will be useful,
14 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
15 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 *   GNU General Public License for more details.
17 *
18 *   You should have received a copy of the GNU General Public License
19 *   along with this program; if not, write to the Free Software
20 *   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
21 *
22 *   Author:
23 *      Val Mikos
24 *   Co-authors:
25 *      ...
26 *
27 */
28
29
30#include "TeamBaseMatchBase.h"
31
32#include "core/CoreIncludes.h"
33#include "controllers/ArtificialController.h"
34#include "interfaces/TeamColourable.h"
35#include "gametypes/TeamBaseMatch.h"
36
37namespace orxonox
38{
39    RegisterClass(TeamBaseMatchBase);
40
41    TeamBaseMatchBase::TeamBaseMatchBase(Context* context) : Pawn(context)
42    {
43        RegisterObject(TeamBaseMatchBase);
44
45        this->state_ = BaseState::Uncontrolled;
46
47        TeamBaseMatch* gametype = orxonox_cast<TeamBaseMatch*>(this->getGametype());
48        if (gametype)
49        {
50            gametype->addBase(this);
51        }
52
53        this->setRadarObjectShape(RadarViewable::Shape::Triangle);
54    }
55
56    void TeamBaseMatchBase::changeTeamColour()
57    {
58        this->fireEvent();
59
60        TeamDeathmatch* gametype = orxonox_cast<TeamDeathmatch*>(this->getGametype());
61        if (!gametype)
62            return;
63
64        ColourValue colour;
65
66        switch (this->state_)
67        {
68            case BaseState::ControlTeam1:
69                colour = gametype->getTeamColour(0);
70                break;
71            case BaseState::ControlTeam2:
72                colour = gametype->getTeamColour(1);
73                break;
74            case BaseState::Uncontrolled:
75            default:
76                colour = ColourValue(0.5, 0.5, 0.5, 1.0);
77                break;
78        }
79
80
81        std::set<WorldEntity*> attachments = this->getAttachedObjects();
82        for (WorldEntity* attachment : attachments)
83        {
84            if (attachment->isA(Class(TeamColourable)))
85            {
86                TeamColourable* tc = orxonox_cast<TeamColourable*>(attachment);
87                tc->setTeamColour(colour);
88            }
89        }
90
91        this->setRadarObjectColour(colour);
92
93        // Call this so bots stop shooting at the base after they converted it
94        for (ArtificialController* controller : ObjectList<ArtificialController>())
95            controller->abandonTarget(this);
96    }
97}
98
Note: See TracBrowser for help on using the repository browser.