| [7589] | 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 |  *      Sandro 'smerkli' Merkli | 
|---|
 | 24 |  *   Co-authors: | 
|---|
 | 25 |  *      ... | 
|---|
 | 26 |  * | 
|---|
 | 27 |  */ | 
|---|
 | 28 |  | 
|---|
| [7611] | 29 | #include "MasterServerComm.h" | 
|---|
| [7589] | 30 |  | 
|---|
| [7631] | 31 | namespace orxonox | 
|---|
| [7589] | 32 | { | 
|---|
| [7631] | 33 |   | 
|---|
 | 34 |   MasterServerComm::MasterServerComm() | 
|---|
 | 35 |   { /* nothing anymore, everything's been outsourced to  | 
|---|
 | 36 |      * the initialize method to facilitate debugging | 
|---|
 | 37 |      */ | 
|---|
 | 38 |   }  | 
|---|
| [7589] | 39 |  | 
|---|
 | 40 |  | 
|---|
| [7631] | 41 |   int MasterServerComm::initialize() | 
|---|
 | 42 |   { | 
|---|
 | 43 |     /* initialize Enet */ | 
|---|
 | 44 |     if (enet_initialize () != 0) | 
|---|
 | 45 |     { COUT(1) << "An error occurred while initializing ENet.\n"; | 
|---|
 | 46 |       return 1; | 
|---|
 | 47 |     } | 
|---|
| [7684] | 48 |  | 
|---|
 | 49 |     /* initialize the event holder */ | 
|---|
 | 50 |     this->event = (ENetEvent *)calloc( sizeof(ENetEvent), 1 ); | 
|---|
| [7631] | 51 |      | 
|---|
 | 52 |     /* install atexit handler for enet */ | 
|---|
 | 53 |     atexit( enet_deinitialize ); | 
|---|
| [7589] | 54 |  | 
|---|
| [7631] | 55 |  | 
|---|
 | 56 |     /* initiate the client */ | 
|---|
 | 57 |     this->client = enet_host_create( NULL /* create a client host */, | 
|---|
 | 58 |         1, | 
|---|
 | 59 |         2, /* allow up 2 channels to be used, 0 and 1 */ | 
|---|
 | 60 |         0,  | 
|---|
 | 61 |         0 );  | 
|---|
 | 62 |  | 
|---|
 | 63 |     /* see if it worked */ | 
|---|
 | 64 |     if (this->client == NULL) | 
|---|
 | 65 |     { COUT(1) << "An error occurred while trying to create an ENet client host.\n"; | 
|---|
 | 66 |       return 1; | 
|---|
 | 67 |     } | 
|---|
| [7632] | 68 |  | 
|---|
 | 69 |     return 0; | 
|---|
| [7589] | 70 |   } | 
|---|
 | 71 |  | 
|---|
| [7631] | 72 |   MasterServerComm::~MasterServerComm() | 
|---|
 | 73 |   { | 
|---|
 | 74 |     /* destroy the enet facilities */ | 
|---|
 | 75 |     enet_host_destroy(this->client); | 
|---|
 | 76 |   } | 
|---|
| [7589] | 77 |  | 
|---|
| [7725] | 78 |   int MasterServerComm::connect( const char *address, unsigned int port ) | 
|---|
| [7631] | 79 |   { | 
|---|
 | 80 |     /* Connect to address:port. */ | 
|---|
 | 81 |     enet_address_set_host( &this->address, address ); | 
|---|
 | 82 |     this->address.port = port; | 
|---|
| [7589] | 83 |  | 
|---|
| [7631] | 84 |     /* Initiate the connection, allocating the two channels 0 and 1. */ | 
|---|
 | 85 |     this->peer = enet_host_connect(this->client, &this->address, 2, 0);     | 
|---|
| [7589] | 86 |  | 
|---|
| [7631] | 87 |     if (this->peer == NULL ) | 
|---|
| [7662] | 88 |     { COUT(2) << "ERROR: No available peers for initiating an ENet connection.\n"; | 
|---|
| [7630] | 89 |     //exit (EXIT_FAILURE); | 
|---|
 | 90 |     return -1; | 
|---|
| [7631] | 91 |     } | 
|---|
| [7589] | 92 |  | 
|---|
| [7631] | 93 |     /* Wait up to 2 seconds for the connection attempt to succeed. */ | 
|---|
| [7684] | 94 |     if (enet_host_service (this->client, this->event, 2000) > 0 && | 
|---|
 | 95 |         this->event->type == ENET_EVENT_TYPE_CONNECT ) | 
|---|
| [7631] | 96 |       fprintf( stdout, "Connection to server succeeded." ); | 
|---|
 | 97 |     else | 
|---|
 | 98 |     { | 
|---|
 | 99 |       enet_peer_reset (this->peer); | 
|---|
 | 100 |       fprintf( stdout, "Connection to %s failed.", address ); | 
|---|
 | 101 |       //exit(EXIT_FAILURE); | 
|---|
 | 102 |       return -1; | 
|---|
 | 103 |     } | 
|---|
 | 104 |  | 
|---|
 | 105 |     return 0; | 
|---|
| [7611] | 106 |   } | 
|---|
| [7589] | 107 |  | 
|---|
| [7631] | 108 |   int MasterServerComm::pollForReply( int (*callback)( char*, ENetEvent* ) ) | 
|---|
| [7611] | 109 |   {  | 
|---|
| [7631] | 110 |     /* see whether anything happened */ | 
|---|
| [7668] | 111 |     /* WORK MARK REMOVE THIS OUTPUT */ | 
|---|
| [7692] | 112 |     COUT(2) << "polling masterserver...\n"; | 
|---|
| [7668] | 113 |  | 
|---|
| [7692] | 114 |     /* address buffer */ | 
|---|
 | 115 |     char *addrconv = NULL; | 
|---|
 | 116 |     int retval = 0; | 
|---|
 | 117 |  | 
|---|
| [7672] | 118 |     /* enet_host_service returns 0 if no event occured */ | 
|---|
 | 119 |     /* just newly set below test to >0 from >= 0, to be tested */ | 
|---|
| [7684] | 120 |     if( enet_host_service( this->client, this->event, 1000 ) > 0 ) | 
|---|
| [7631] | 121 |     {  | 
|---|
 | 122 |       /* check what type of event it is and react accordingly */ | 
|---|
| [7684] | 123 |       switch (this->event->type) | 
|---|
| [7631] | 124 |       { /* new connection, not supposed to happen. */ | 
|---|
 | 125 |         case ENET_EVENT_TYPE_CONNECT: break; | 
|---|
| [7611] | 126 |  | 
|---|
| [7631] | 127 |         /* disconnect */ | 
|---|
 | 128 |         case ENET_EVENT_TYPE_DISCONNECT: /* ?? */ break; | 
|---|
 | 129 |  | 
|---|
| [7611] | 130 |         /* incoming data */ | 
|---|
| [7631] | 131 |         case ENET_EVENT_TYPE_RECEIVE:  | 
|---|
 | 132 |           addrconv = (char *) calloc( 50, 1 ); | 
|---|
| [7692] | 133 |           if( !addrconv )  | 
|---|
 | 134 |           { COUT(2) << "MasterServerComm.cc: Could not allocate memory!\n"; | 
|---|
 | 135 |             break; | 
|---|
 | 136 |           } | 
|---|
 | 137 |  | 
|---|
 | 138 |           /* resolve IP */ | 
|---|
| [7684] | 139 |           enet_address_get_host_ip( &(this->event->peer->address),  | 
|---|
 | 140 |             addrconv, 49 ); | 
|---|
| [7611] | 141 |  | 
|---|
| [7631] | 142 |           /* DEBUG */ | 
|---|
| [7725] | 143 |           COUT(3) << "A packet of length " << this->event->packet->dataLength  | 
|---|
 | 144 |             << " containing " << this->event->packet->data | 
|---|
 | 145 |             << " was received from " << addrconv  | 
|---|
 | 146 |             << " on channel " << this->event->channelID; | 
|---|
 | 147 |           //printf( "A packet of length %u containing %s was " | 
|---|
 | 148 |             //"received from %s on channel %u.\n", | 
|---|
 | 149 |             //this->event->packet->dataLength, | 
|---|
 | 150 |             //this->event->packet->data, | 
|---|
 | 151 |             //addrconv, | 
|---|
 | 152 |             //this->event->channelID ); | 
|---|
| [7631] | 153 |           /* END DEBUG */ | 
|---|
| [7611] | 154 |  | 
|---|
| [7631] | 155 |           /* call the supplied callback, if any. */ | 
|---|
 | 156 |           if( (*callback) != NULL ) | 
|---|
| [7684] | 157 |             retval = (*callback)( addrconv, (this->event) ); | 
|---|
| [7611] | 158 |  | 
|---|
| [7684] | 159 |           enet_packet_destroy( event->packet ); | 
|---|
| [7631] | 160 |           if( addrconv ) free( addrconv ); | 
|---|
 | 161 |           break; | 
|---|
 | 162 |         default: break; | 
|---|
 | 163 |       } | 
|---|
 | 164 |  | 
|---|
 | 165 |       /* event handled, return 0 */ | 
|---|
| [7650] | 166 |       return retval; | 
|---|
| [7589] | 167 |     } | 
|---|
| [7631] | 168 |  | 
|---|
 | 169 |     /* show that no event occured */ | 
|---|
| [7668] | 170 |     return 0; | 
|---|
| [7589] | 171 |   } | 
|---|
| [7611] | 172 |  | 
|---|
| [7725] | 173 |   int MasterServerComm::sendRequest( const char *data ) | 
|---|
| [7631] | 174 |   { | 
|---|
 | 175 |     /* send the data to the friend */ | 
|---|
 | 176 |     /* Create a reliable packet of size 7 containing "packet\0" */ | 
|---|
 | 177 |     ENetPacket * packet = enet_packet_create( data,  | 
|---|
 | 178 |         strlen( data ) + 1,  | 
|---|
 | 179 |         ENET_PACKET_FLAG_RELIABLE); | 
|---|
| [7611] | 180 |  | 
|---|
| [7631] | 181 |     /* Send the packet to the peer over channel id 0. */ | 
|---|
 | 182 |     enet_peer_send (this->peer, 0, packet); | 
|---|
| [7611] | 183 |  | 
|---|
| [7631] | 184 |     /* One could just use enet_host_service() instead. */ | 
|---|
 | 185 |     enet_host_flush( this->client ); | 
|---|
| [7668] | 186 |     | 
|---|
| [7692] | 187 |     /* free the packet */ | 
|---|
 | 188 |     enet_packet_destroy( packet ); | 
|---|
| [7632] | 189 |  | 
|---|
 | 190 |     /* all done. */ | 
|---|
 | 191 |     return 0; | 
|---|
| [7631] | 192 |   } | 
|---|
| [7611] | 193 |  | 
|---|
| [7650] | 194 |   int MasterServerComm::sendRequest( std::string data ) | 
|---|
 | 195 |   { | 
|---|
 | 196 |     /* send the data to the friend */ | 
|---|
 | 197 |     /* Create a reliable packet of size 7 containing "packet\0" */ | 
|---|
 | 198 |     ENetPacket * packet = enet_packet_create( data.c_str(),  | 
|---|
 | 199 |         data.length() + 1,  | 
|---|
 | 200 |         ENET_PACKET_FLAG_RELIABLE); | 
|---|
 | 201 |  | 
|---|
 | 202 |     /* Send the packet to the peer over channel id 0. */ | 
|---|
 | 203 |     enet_peer_send (this->peer, 0, packet); | 
|---|
 | 204 |  | 
|---|
 | 205 |     /* One could just use enet_host_service() instead. */ | 
|---|
 | 206 |     enet_host_flush( this->client ); | 
|---|
 | 207 |     if( packet ) free( packet ); | 
|---|
 | 208 |  | 
|---|
 | 209 |     /* all done. */ | 
|---|
 | 210 |     return 0; | 
|---|
 | 211 |   } | 
|---|
 | 212 |  | 
|---|
| [7611] | 213 | } | 
|---|
 | 214 |  | 
|---|
| [7631] | 215 |  | 
|---|
 | 216 | /* DON'T DELETE THIS I MIGHT NEED IT AGAIN -smerkli */ | 
|---|
 | 217 | /* not needed anymore, only here for testing purposes */ | 
|---|
 | 218 | /* | 
|---|
 | 219 | //[> sample callback to output debugging info. <] | 
|---|
 | 220 | //int callb( char *addr, ENetEvent *ev ) | 
|---|
 | 221 | //{  | 
|---|
 | 222 |   //printf( "A packet of length %u containing %s was " | 
|---|
 | 223 |       //"received from %s on channel %u.\n", | 
|---|
 | 224 |       //ev->packet->dataLength, | 
|---|
 | 225 |       //ev->packet->data, | 
|---|
 | 226 |       //addr, | 
|---|
 | 227 |       //ev->channelID ); | 
|---|
 | 228 |   //return 0; | 
|---|
 | 229 | //} | 
|---|
 | 230 |  | 
|---|
 | 231 | //[> small testing implementation <] | 
|---|
 | 232 | //int | 
|---|
 | 233 | //main( int argc, char *argv[] ) | 
|---|
 | 234 | //{ | 
|---|
 | 235 |   //[> setup object and connect <] | 
|---|
 | 236 |   //MasterServerComm msc = MasterServerComm(); | 
|---|
 | 237 |   //if( msc.connect( argv[1], 1234 ) ) | 
|---|
 | 238 |     //exit(EXIT_FAILURE); | 
|---|
| [7611] | 239 |    | 
|---|
| [7631] | 240 |   //[> send some data and poll for replies <] | 
|---|
 | 241 |   //char *theinput = (char *)calloc( 100,1 ); | 
|---|
 | 242 |   //while( true ) | 
|---|
 | 243 |   //{  | 
|---|
 | 244 |     //fgets( theinput, 90, stdin ); | 
|---|
 | 245 |     //if( !strncmp( theinput, "quit", 4 ) ) | 
|---|
 | 246 |       //break; | 
|---|
| [7611] | 247 |  | 
|---|
| [7631] | 248 |     //msc.sendRequest( theinput ); | 
|---|
 | 249 |     //msc.pollForReply( &callb ); | 
|---|
 | 250 |   //} | 
|---|
| [7589] | 251 |  | 
|---|
| [7631] | 252 | //} | 
|---|
 | 253 | */ | 
|---|