Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/masterserver/src/libraries/network/MasterServerComm.h @ 7650

Last change on this file since 7650 was 7650, checked in by smerkli, 13 years ago

Minimum target achieved for today, servers can log on to master server, clients can get server list. To be debugged.

File size: 2.6 KB
Line 
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
29#include <cstdlib>
30#include <cstdio>
31#include <string>
32#include <cstring>
33#include <enet/enet.h>
34
35namespace orxonox
36{
37  class MasterServerComm
38  {
39    public: 
40      /** constructor */
41      MasterServerComm();
42
43      /** destructor */
44      ~MasterServerComm();
45
46      /** \return 0 for success, other for error
47       *
48       * Initialize everything for the master server communication
49       */
50      int initialize();
51
52
53      /** \param address Address to connect to (Host name or IP in text form)
54       * \param port Port to connect on
55       * \return 0 for success, other for error
56       *
57       * Connect to the master server with the given address on the given port.
58       */
59      int connect( char *address, unsigned int port );
60
61      /** \param data The data to be sent.
62       * \return 0 for success, other for error.
63       *
64       * Send a request to the master server containing data specified in data
65       */
66      int sendRequest( char *data );
67
68      /** \param data The data to be sent.
69       * \return 0 for success, other for error.
70       *
71       * Send a request to the master server containing data specified in data
72       * (string version)
73       */
74      int sendRequest( std::string data );
75
76      /** \param callback The callback function to call with data receivced.
77       * \return 0 for success, other for error
78       *
79       * Poll the master server for new data and act accordingly */
80      int pollForReply( int (*callback)( char*, ENetEvent* ) );
81
82    private:
83      /** client handle */
84      ENetHost *client;
85
86      /** event data holder */
87      ENetEvent event;
88
89      /** address holder */
90      ENetAddress address;
91
92      /** peer data holder */
93      ENetPeer *peer;
94  };
95
96}
Note: See TracBrowser for help on using the repository browser.