[1751] | 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 | * Oliver Scheuss <scheusso [at] ee.ethz.ch>, (C) 2008 |
---|
| 24 | * Co-authors: |
---|
| 25 | * ... |
---|
| 26 | * |
---|
| 27 | */ |
---|
| 28 | |
---|
[3214] | 29 | #include "Host.h" |
---|
| 30 | |
---|
[2773] | 31 | #include <cassert> |
---|
[3214] | 32 | #include <string> |
---|
[1666] | 33 | |
---|
[1907] | 34 | #include "core/ConsoleCommand.h" |
---|
[3214] | 35 | #include "core/ObjectList.h" |
---|
[2087] | 36 | #include "ChatListener.h" |
---|
[1666] | 37 | |
---|
[2171] | 38 | namespace orxonox { |
---|
[1666] | 39 | |
---|
[1907] | 40 | SetConsoleCommandShortcut(Host, Chat); |
---|
| 41 | |
---|
[1666] | 42 | Host *Host::instance_=0; |
---|
[2087] | 43 | |
---|
[1907] | 44 | /** |
---|
| 45 | * @brief Constructor: assures that only one reference will be created and sets the pointer |
---|
| 46 | */ |
---|
[1666] | 47 | Host::Host() |
---|
| 48 | { |
---|
[1907] | 49 | clientID_=0; |
---|
[1666] | 50 | assert(instance_==0); |
---|
| 51 | instance_=this; |
---|
| 52 | } |
---|
| 53 | |
---|
| 54 | |
---|
[1907] | 55 | /** |
---|
| 56 | * @brief Destructor: resets the instance pointer to 0 |
---|
| 57 | */ |
---|
[1666] | 58 | Host::~Host() |
---|
| 59 | { |
---|
| 60 | instance_=0; |
---|
| 61 | } |
---|
| 62 | |
---|
[1907] | 63 | /** |
---|
| 64 | * This function is used to add an enetpacket to be sent to another peer |
---|
| 65 | * @param packet Packet to be added |
---|
| 66 | * @param clientID ID of the client the packet should be sent to |
---|
| 67 | * @return success? |
---|
| 68 | */ |
---|
[1666] | 69 | bool Host::addPacket(ENetPacket *packet, int clientID){ |
---|
| 70 | if(instance_) |
---|
| 71 | return instance_->queuePacket(packet, clientID); |
---|
| 72 | else |
---|
| 73 | return false; |
---|
| 74 | } |
---|
| 75 | |
---|
| 76 | |
---|
[1711] | 77 | // bool Host::chat(std::string& message){ |
---|
| 78 | // if(!instance_) |
---|
| 79 | // return false; |
---|
| 80 | // packet::Chat *c = new packet::Chat(message, getPlayerID()); |
---|
| 81 | // return instance_->sendChat(c); |
---|
| 82 | // } |
---|
[1666] | 83 | |
---|
[2171] | 84 | // bool Host::receiveChat(packet::Chat *message, unsigned int clientID){ |
---|
[1711] | 85 | // if(instance_) |
---|
| 86 | // return instance_->processChat(message, clientID); |
---|
| 87 | // else |
---|
| 88 | // return false; |
---|
| 89 | // } |
---|
[1666] | 90 | |
---|
[1907] | 91 | /** |
---|
| 92 | * This function returns the ID of the player |
---|
| 93 | * @return playerID |
---|
| 94 | */ |
---|
[2087] | 95 | unsigned int Host::getPlayerID(){ |
---|
[1666] | 96 | if(!instance_) |
---|
| 97 | return 0; |
---|
[1907] | 98 | return instance_->clientID_; |
---|
[1666] | 99 | } |
---|
| 100 | |
---|
[2087] | 101 | bool Host::Chat(const std::string& message){ |
---|
[1907] | 102 | if(!instance_) |
---|
[3095] | 103 | { |
---|
| 104 | for (ObjectList<ChatListener>::iterator it = ObjectList<ChatListener>::begin(); it != ObjectList<ChatListener>::end(); ++it) |
---|
| 105 | it->incomingChat(message, 0); |
---|
| 106 | return true; |
---|
| 107 | } |
---|
[1907] | 108 | return instance_->chat(message); |
---|
| 109 | } |
---|
[1666] | 110 | |
---|
[2087] | 111 | bool Host::Broadcast(const std::string& message){ |
---|
| 112 | if(!instance_) |
---|
[3058] | 113 | { |
---|
| 114 | for (ObjectList<ChatListener>::iterator it = ObjectList<ChatListener>::begin(); it != ObjectList<ChatListener>::end(); ++it) |
---|
[3095] | 115 | it->incomingChat(message, CLIENTID_UNKNOWN); |
---|
[3074] | 116 | return true; |
---|
[3058] | 117 | } |
---|
[3059] | 118 | else |
---|
| 119 | return instance_->broadcast(message); |
---|
[2087] | 120 | } |
---|
| 121 | |
---|
| 122 | bool Host::incomingChat(const std::string& message, unsigned int playerID){ |
---|
[2171] | 123 | for (ObjectList<ChatListener>::iterator it = ObjectList<ChatListener>::begin(); it != ObjectList<ChatListener>::end(); ++it) |
---|
[2087] | 124 | it->incomingChat(message, playerID); |
---|
| 125 | |
---|
[1907] | 126 | return instance_->processChat(message, playerID); |
---|
| 127 | } |
---|
| 128 | |
---|
[2171] | 129 | }//namespace orxonox |
---|