Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/orxonox/interfaces/InterfaceCompilation.cc @ 9287

Last change on this file since 9287 was 8668, checked in by landauf, 13 years ago

small cleanup

  • Property svn:eol-style set to native
File size: 2.5 KB
RevLine 
[1590]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 *      Reto Grieder
24 *   Co-authors:
25 *      ...
26 *
27 */
28
[3177]29/**
30@file
31@brief
[5693]32    Compiles all the interfaces in the orxonox library with mostly just a constructor.
[3177]33*/
34
35#include "GametypeMessageListener.h"
[5738]36#include "PlayerTrigger.h"
[3177]37#include "RadarListener.h"
[3181]38#include "Rewardable.h"
[3183]39#include "TeamColourable.h"
[5693]40#include "NotificationListener.h"
[3177]41
[1616]42#include "core/CoreIncludes.h"
[1590]43
[8668]44#include "infos/PlayerInfo.h"
45#include "worldentities/pawns/Pawn.h"
46
[1590]47namespace orxonox
48{
[3177]49    //----------------------------
50    // GametypeMessageListener
51    //----------------------------
52    GametypeMessageListener::GametypeMessageListener()
53    {
54        RegisterRootObject(GametypeMessageListener);
55    }
[7163]56
[6524]57    //----------------------------
58    // PlayerTrigger
59    //----------------------------
60    PlayerTrigger::PlayerTrigger()
61    {
62        RegisterRootObject(PlayerTrigger);
63
[7606]64        this->isForPlayer_ = false;
[6524]65    }
[7163]66
[8668]67    void PlayerTrigger::setTriggeringPawn(Pawn* pawn)
68    {
69        assert(pawn);
70        this->pawn_ = WeakPtr<Pawn>(pawn);
71        if (pawn)
72            this->player_ = WeakPtr<PlayerInfo>(pawn->getPlayer());
73    }
74
[6524]75    //----------------------------
[3177]76    // RadarListener
77    //----------------------------
78    RadarListener::RadarListener()
79    {
80        RegisterRootObject(RadarListener);
81    }
82
83    //----------------------------
[3183]84    // TeamColourable
[3177]85    //----------------------------
[3183]86    TeamColourable::TeamColourable()
[3177]87    {
[3183]88        RegisterRootObject(TeamColourable);
[3177]89    }
90
91    //----------------------------
[5693]92    // Rewardable
[3177]93    //----------------------------
[5693]94    Rewardable::Rewardable()
[3177]95    {
[5738]96        RegisterRootObject(Rewardable);
[3177]97    }
[1590]98}
Note: See TracBrowser for help on using the repository browser.