Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: code/branches/presentation/src/libraries/network/WANDiscovery.h @ 7749

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

Removed some things and fixed some bugs

File size: 3.1 KB
Line 
1/*
2 *   ORXONOX - the hottest 3D action shooter ever to exist > www.orxonox.net <
3 *
4 *
5 *   License notice:
6 *
7 *   This program is free software; you can redistribute it and/or modify it
8 *   under the terms of the GNU General Public License as published by the Free
9 *   Software Foundation; either version 2 of the License, or (at your option)
10 *   any later version.
11 *
12 *   This program is distributed in the hope that it will be useful, but
13 *   WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
14 *   or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
15 *   for more details.
16 *
17 *   You should have received a copy of the GNU General Public License along
18 *   with this program; if not, write to the Free Software Foundation, Inc., 51
19 *   Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
20 *
21 *   Author: Fabian 'x3n' Landau (original) Co-authors: Sandro 'smerkli' Merkli
22 *   (copied and adapted to WAN)
23 *
24 */
25
26#ifndef WANDISCOVERY_H
27#define WANDISCOVERY_H
28
29#include "NetworkPrereqs.h"
30#include "packet/ServerInformation.h"
31#include "core/ConfigFileManager.h"
32#include "util/Singleton.h"
33#include "core/OrxonoxClass.h"
34#include "core/ConfigValueIncludes.h"
35#include "core/CoreIncludes.h"
36#include "MasterServerComm.h"
37#include "MasterServerProtocol.h"
38
39#include <vector>
40
41#define WANDISC_MAXTRIES 5
42
43// tolua_begin
44namespace orxonox
45{
46
47  class _NetworkExport WANDiscovery
48// tolua_end
49    : public Singleton<WANDiscovery>, public OrxonoxClass
50  { // tolua_export
51    friend class Singleton<WANDiscovery>;
52    public:
53      /** constructor */
54      WANDiscovery();
55
56      /** destructor */
57      ~WANDiscovery();
58
59      /** get content of msaddress */
60      std::string getMSAddress()
61      { return this->msaddress; }
62
63      /** ask server for server list  */
64      void discover(); // tolua_export
65
66      /** \param index Index to get the name of
67       * \return The name of the server
68       *
69       * Get the name of the server at index index.
70       */
71      std::string getServerListItemName( unsigned int index ); // tolua_export
72
73      /** \param index Index to get the IP of
74       * \return The IP of the server
75       *
76       * Get the IP of the server at index index.
77       */
78      std::string getServerListItemIP( unsigned int index ); // tolua_export
79
80      /** \return an instance of WANDiscovery
81       *
82       * Create and return an instance of WANDiscovery.
83       */
84      static WANDiscovery& getInstance() { return Singleton<WANDiscovery>::getInstance(); } // tolua_export
85   
86      /* todo: might make this private and use getter/setter methods
87       * at some later time.
88       */
89      /** game server list */
90      std::vector<packet::ServerInformation> servers_;
91
92      /** Function used for the configuration file parameter update */
93      void setConfigValues();
94     
95    private:
96      /** Singleton pointer */
97      static WANDiscovery* singletonPtr_s;
98
99      /** Master server communications object */
100      MasterServerComm msc;
101
102      /** master server address */
103      std::string msaddress;
104
105  }; // tolua_export
106
107} // tolua_export
108
109#endif // WANDISCOVERY_H
Note: See TracBrowser for help on using the repository browser.