[2194] | 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 | * Damian 'Mozork' Frick |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
[2221] | 28 | |
---|
| 29 | /** |
---|
[7601] | 30 | @file PlayerTrigger.h |
---|
| 31 | @brief Definition of the PlayerTrigger class. |
---|
| 32 | @ingroup Triggers |
---|
[2221] | 33 | */ |
---|
| 34 | |
---|
[2194] | 35 | #ifndef _PlayerTrigger_H__ |
---|
| 36 | #define _PlayerTrigger_H__ |
---|
| 37 | |
---|
[2221] | 38 | #include "OrxonoxPrereqs.h" |
---|
[7601] | 39 | |
---|
[5727] | 40 | #include "core/OrxonoxClass.h" |
---|
[2194] | 41 | |
---|
[2662] | 42 | namespace orxonox |
---|
| 43 | { |
---|
[2194] | 44 | /** |
---|
| 45 | @brief |
---|
[7601] | 46 | PlayerTrigger is an interface if implemented by a specific trigger can be used to recover the Player (or more precisely the @ref orxonox::Pawn "Pawn") that triggered it. |
---|
| 47 | |
---|
[2194] | 48 | @author |
---|
| 49 | Damian 'Mozork' Frick |
---|
[7601] | 50 | |
---|
| 51 | @ingroup Triggers |
---|
[2194] | 52 | */ |
---|
[5727] | 53 | class _OrxonoxExport PlayerTrigger : virtual public OrxonoxClass |
---|
[2194] | 54 | { |
---|
[2662] | 55 | public: |
---|
[5727] | 56 | PlayerTrigger(); |
---|
| 57 | virtual ~PlayerTrigger() {} |
---|
[5693] | 58 | |
---|
[2662] | 59 | /** |
---|
| 60 | @brief Returns the player that triggered the PlayerTrigger. |
---|
[5936] | 61 | @return Returns a pointer to the Pawn that triggered the PlayerTrigger. |
---|
[2662] | 62 | */ |
---|
[3033] | 63 | inline Pawn* getTriggeringPlayer(void) const |
---|
[2662] | 64 | { return this->player_; } |
---|
[5693] | 65 | |
---|
[2662] | 66 | /** |
---|
[5936] | 67 | @brief Checks whether the PlayerTrigger normally returns a Pawn. |
---|
| 68 | @return Returns true if the PlayerTrigger normally returns a Pawn. |
---|
[2662] | 69 | */ |
---|
| 70 | inline bool isForPlayer(void) const |
---|
| 71 | { return this->isForPlayer_; } |
---|
[5693] | 72 | |
---|
[2662] | 73 | protected: |
---|
| 74 | /** |
---|
| 75 | @brief Set the player that triggered the PlayerTrigger. This is normally done by classes inheriting vom PlayerTrigger. |
---|
[5936] | 76 | @param player A pointer to the Pawn that triggered the PlayerTrigger. |
---|
[2662] | 77 | */ |
---|
[3033] | 78 | inline void setTriggeringPlayer(Pawn* player) |
---|
[2662] | 79 | { this->player_ = player; } |
---|
[2221] | 80 | |
---|
[7601] | 81 | /** |
---|
| 82 | @brief Set whether the PlayerTrigger normally is triggered by Pawns. |
---|
| 83 | @param isForPlayer Should be true when the PlayerTrigger should be set to normally be triggered by Pawns, false if not. |
---|
| 84 | */ |
---|
[2662] | 85 | inline void setForPlayer(bool isForPlayer) |
---|
| 86 | { this->isForPlayer_ = isForPlayer; } |
---|
[5693] | 87 | |
---|
[2662] | 88 | private: |
---|
[3033] | 89 | Pawn* player_; //!< The player that triggered the PlayerTrigger. |
---|
[5936] | 90 | bool isForPlayer_; //!< Is true when the PlayerTrigger should be set to normally be triggered by Pawns. |
---|
[5693] | 91 | |
---|
[2194] | 92 | }; |
---|
| 93 | |
---|
| 94 | } |
---|
| 95 | |
---|
| 96 | #endif /* _PlayerTrigger_H__ */ |
---|