[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 | |
---|
[3214] | 34 | #include "core/ObjectList.h" |
---|
[7284] | 35 | #include "core/command/ConsoleCommand.h" |
---|
[2087] | 36 | #include "ChatListener.h" |
---|
[1666] | 37 | |
---|
[2171] | 38 | namespace orxonox { |
---|
[1666] | 39 | |
---|
[7284] | 40 | static const std::string __CC_printRTT_name = "printRTT"; |
---|
[1907] | 41 | |
---|
[7284] | 42 | SetConsoleCommand("chat", &Host::Chat); |
---|
| 43 | SetConsoleCommand(__CC_printRTT_name, &Host::printRTT); |
---|
| 44 | |
---|
[7163] | 45 | // Host* Host::instance_=0; |
---|
| 46 | uint32_t Host::clientID_s=0; |
---|
[7801] | 47 | // uint32_t Host::shipID_s=-1; |
---|
[7163] | 48 | std::vector<Host*> Host::instances_s; |
---|
[2087] | 49 | |
---|
[7163] | 50 | /** |
---|
| 51 | * @brief Constructor: assures that only one reference will be created and sets the pointer |
---|
| 52 | */ |
---|
| 53 | Host::Host() |
---|
| 54 | { |
---|
| 55 | // assert(instance_==0); |
---|
| 56 | instances_s.push_back(this); |
---|
[7284] | 57 | ModifyConsoleCommand(__CC_printRTT_name).setObject(this); |
---|
[7163] | 58 | this->bIsActive_ = false; |
---|
| 59 | } |
---|
[1666] | 60 | |
---|
| 61 | |
---|
[7163] | 62 | /** |
---|
| 63 | * @brief Destructor: resets the instance pointer to 0 |
---|
| 64 | */ |
---|
| 65 | Host::~Host() |
---|
| 66 | { |
---|
| 67 | assert( std::find( instances_s.begin(), instances_s.end(), this )!=instances_s.end() ); |
---|
| 68 | instances_s.erase(std::find( instances_s.begin(), instances_s.end(), this )); |
---|
[7284] | 69 | ModifyConsoleCommand(__CC_printRTT_name).setObject(0); |
---|
[7163] | 70 | } |
---|
[1666] | 71 | |
---|
[7163] | 72 | /** |
---|
| 73 | * This function is used to add an enetpacket to be sent to another peer |
---|
| 74 | * @param packet Packet to be added |
---|
| 75 | * @param clientID ID of the client the packet should be sent to |
---|
| 76 | * @return success? |
---|
| 77 | */ |
---|
[7801] | 78 | void Host::addPacket(ENetPacket *packet, int clientID, uint8_t channelID) |
---|
[7163] | 79 | { |
---|
| 80 | for( std::vector<Host*>::iterator it = instances_s.begin(); it!=instances_s.end(); ++it ) |
---|
| 81 | { |
---|
| 82 | if( (*it)->isActive() ) |
---|
| 83 | { |
---|
[7801] | 84 | (*it)->queuePacket(packet, clientID, channelID); |
---|
[7163] | 85 | } |
---|
| 86 | } |
---|
| 87 | } |
---|
[1666] | 88 | |
---|
[7284] | 89 | void Host::Chat(const std::string& message) |
---|
[7163] | 90 | { |
---|
| 91 | if(instances_s.size()==0) |
---|
| 92 | { |
---|
| 93 | for (ObjectList<ChatListener>::iterator it = ObjectList<ChatListener>::begin(); it != ObjectList<ChatListener>::end(); ++it) |
---|
| 94 | it->incomingChat(message, 0); |
---|
[7284] | 95 | // return true; |
---|
[7163] | 96 | } |
---|
| 97 | else |
---|
| 98 | { |
---|
| 99 | bool result = true; |
---|
| 100 | for( std::vector<Host*>::iterator it = instances_s.begin(); it!=instances_s.end(); ++it ) |
---|
| 101 | { |
---|
| 102 | if( (*it)->isActive() ) |
---|
| 103 | { |
---|
| 104 | if( !(*it)->chat(message) ) |
---|
| 105 | result = false; |
---|
| 106 | } |
---|
| 107 | } |
---|
[7284] | 108 | // return result; |
---|
[7163] | 109 | } |
---|
| 110 | } |
---|
[1666] | 111 | |
---|
[7163] | 112 | bool Host::Broadcast(const std::string& message) |
---|
[3095] | 113 | { |
---|
[7163] | 114 | if(instances_s.size()==0) |
---|
| 115 | { |
---|
| 116 | for (ObjectList<ChatListener>::iterator it = ObjectList<ChatListener>::begin(); it != ObjectList<ChatListener>::end(); ++it) |
---|
| 117 | it->incomingChat(message, CLIENTID_UNKNOWN); |
---|
| 118 | return true; |
---|
| 119 | } |
---|
| 120 | else |
---|
| 121 | { |
---|
| 122 | bool result = true; |
---|
| 123 | for( std::vector<Host*>::iterator it = instances_s.begin(); it!=instances_s.end(); ++it ) |
---|
| 124 | { |
---|
| 125 | if( (*it)->isActive() ) |
---|
| 126 | { |
---|
| 127 | if( !(*it)->broadcast(message) ) |
---|
| 128 | result = false; |
---|
| 129 | } |
---|
| 130 | } |
---|
| 131 | return result; |
---|
| 132 | } |
---|
[3095] | 133 | } |
---|
[1666] | 134 | |
---|
[7163] | 135 | bool Host::incomingChat(const std::string& message, unsigned int playerID) |
---|
[3058] | 136 | { |
---|
| 137 | for (ObjectList<ChatListener>::iterator it = ObjectList<ChatListener>::begin(); it != ObjectList<ChatListener>::end(); ++it) |
---|
[7163] | 138 | it->incomingChat(message, playerID); |
---|
[7284] | 139 | |
---|
[7163] | 140 | bool result = true; |
---|
| 141 | for( std::vector<Host*>::iterator it = instances_s.begin(); it!=instances_s.end(); ++it ) |
---|
| 142 | { |
---|
| 143 | if( (*it)->isActive() ) |
---|
| 144 | { |
---|
| 145 | if( !(*it)->processChat(message, playerID) ) |
---|
| 146 | result = false; |
---|
| 147 | } |
---|
| 148 | } |
---|
| 149 | return result; |
---|
[3058] | 150 | } |
---|
[2087] | 151 | |
---|
[7163] | 152 | bool Host::isServer() |
---|
| 153 | { |
---|
| 154 | for (std::vector<Host*>::iterator it=instances_s.begin(); it!=instances_s.end(); ++it ) |
---|
| 155 | { |
---|
| 156 | if( (*it)->isServer_() ) |
---|
| 157 | return true; |
---|
| 158 | } |
---|
| 159 | return false; |
---|
| 160 | } |
---|
[2087] | 161 | |
---|
[2171] | 162 | }//namespace orxonox |
---|