[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 | |
---|
[8706] | 44 | #include "infos/PlayerInfo.h" |
---|
| 45 | #include "worldentities/pawns/Pawn.h" |
---|
| 46 | |
---|
[1590] | 47 | namespace orxonox |
---|
| 48 | { |
---|
[3177] | 49 | //---------------------------- |
---|
| 50 | // GametypeMessageListener |
---|
| 51 | //---------------------------- |
---|
[10624] | 52 | RegisterAbstractClass(GametypeMessageListener).inheritsFrom<OrxonoxInterface>(); |
---|
[9667] | 53 | |
---|
[3177] | 54 | GametypeMessageListener::GametypeMessageListener() |
---|
| 55 | { |
---|
[9667] | 56 | RegisterObject(GametypeMessageListener); |
---|
[3177] | 57 | } |
---|
[7163] | 58 | |
---|
[6524] | 59 | //---------------------------- |
---|
| 60 | // PlayerTrigger |
---|
| 61 | //---------------------------- |
---|
[10624] | 62 | RegisterAbstractClass(PlayerTrigger).inheritsFrom<OrxonoxInterface>(); |
---|
[9667] | 63 | |
---|
[6524] | 64 | PlayerTrigger::PlayerTrigger() |
---|
| 65 | { |
---|
[9667] | 66 | RegisterObject(PlayerTrigger); |
---|
[6524] | 67 | |
---|
[7606] | 68 | this->isForPlayer_ = false; |
---|
[6524] | 69 | } |
---|
[7163] | 70 | |
---|
[8706] | 71 | void PlayerTrigger::setTriggeringPawn(Pawn* pawn) |
---|
| 72 | { |
---|
| 73 | assert(pawn); |
---|
[10624] | 74 | this->pawn_ = pawn; |
---|
[8706] | 75 | if (pawn) |
---|
[10624] | 76 | this->player_ = pawn->getPlayer(); |
---|
[8706] | 77 | } |
---|
| 78 | |
---|
[6524] | 79 | //---------------------------- |
---|
[3177] | 80 | // RadarListener |
---|
| 81 | //---------------------------- |
---|
[10624] | 82 | RegisterAbstractClass(RadarListener).inheritsFrom<OrxonoxInterface>(); |
---|
[9667] | 83 | |
---|
[3177] | 84 | RadarListener::RadarListener() |
---|
| 85 | { |
---|
[9667] | 86 | RegisterObject(RadarListener); |
---|
[3177] | 87 | } |
---|
| 88 | |
---|
| 89 | //---------------------------- |
---|
[3183] | 90 | // TeamColourable |
---|
[3177] | 91 | //---------------------------- |
---|
[10624] | 92 | RegisterAbstractClass(TeamColourable).inheritsFrom<OrxonoxInterface>(); |
---|
[9667] | 93 | |
---|
[3183] | 94 | TeamColourable::TeamColourable() |
---|
[3177] | 95 | { |
---|
[9667] | 96 | RegisterObject(TeamColourable); |
---|
[3177] | 97 | } |
---|
| 98 | |
---|
| 99 | //---------------------------- |
---|
[5693] | 100 | // Rewardable |
---|
[3177] | 101 | //---------------------------- |
---|
[10624] | 102 | RegisterAbstractClass(Rewardable).inheritsFrom<OrxonoxInterface>(); |
---|
[9667] | 103 | |
---|
[5693] | 104 | Rewardable::Rewardable() |
---|
[3177] | 105 | { |
---|
[9667] | 106 | RegisterObject(Rewardable); |
---|
[3177] | 107 | } |
---|
[1590] | 108 | } |
---|