[7161] | 1 | /* |
---|
[7745] | 2 | * ORXONOX - the hottest 3D action shooter ever to exist > www.orxonox.net < |
---|
[7161] | 3 | * |
---|
| 4 | * |
---|
| 5 | * License notice: |
---|
| 6 | * |
---|
[7745] | 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. |
---|
[7161] | 11 | * |
---|
[7745] | 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. |
---|
[7161] | 16 | * |
---|
[7745] | 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. |
---|
[7161] | 20 | * |
---|
[7745] | 21 | * Author: Fabian 'x3n' Landau (original) Co-authors: Sandro 'smerkli' Merkli |
---|
| 22 | * (copied and adapted to WAN) |
---|
[7161] | 23 | * |
---|
| 24 | */ |
---|
| 25 | |
---|
[7770] | 26 | #ifndef _WANDiscovery_H__ |
---|
| 27 | #define _WANDiscovery_H__ |
---|
[7161] | 28 | |
---|
| 29 | #include "NetworkPrereqs.h" |
---|
| 30 | #include "packet/ServerInformation.h" |
---|
[7737] | 31 | #include "core/ConfigFileManager.h" |
---|
[7161] | 32 | #include "util/Singleton.h" |
---|
[7737] | 33 | #include "core/OrxonoxClass.h" |
---|
| 34 | #include "core/ConfigValueIncludes.h" |
---|
| 35 | #include "core/CoreIncludes.h" |
---|
[7631] | 36 | #include "MasterServerComm.h" |
---|
[7650] | 37 | #include "MasterServerProtocol.h" |
---|
[7161] | 38 | |
---|
| 39 | #include <vector> |
---|
| 40 | |
---|
[7692] | 41 | #define WANDISC_MAXTRIES 5 |
---|
[7631] | 42 | |
---|
[7161] | 43 | // tolua_begin |
---|
| 44 | namespace orxonox |
---|
| 45 | { |
---|
| 46 | |
---|
[7630] | 47 | class _NetworkExport WANDiscovery |
---|
[7161] | 48 | // tolua_end |
---|
[7737] | 49 | : public Singleton<WANDiscovery>, public OrxonoxClass |
---|
[7161] | 50 | { // tolua_export |
---|
[7630] | 51 | friend class Singleton<WANDiscovery>; |
---|
[7161] | 52 | public: |
---|
[7631] | 53 | /** constructor */ |
---|
[7630] | 54 | WANDiscovery(); |
---|
[7631] | 55 | |
---|
| 56 | /** destructor */ |
---|
[7630] | 57 | ~WANDiscovery(); |
---|
[7631] | 58 | |
---|
[7750] | 59 | /** \return Address of the master server |
---|
| 60 | * |
---|
| 61 | * Get the master server address |
---|
| 62 | */ |
---|
[7745] | 63 | std::string getMSAddress() |
---|
| 64 | { return this->msaddress; } |
---|
| 65 | |
---|
[7631] | 66 | /** ask server for server list */ |
---|
[7161] | 67 | void discover(); // tolua_export |
---|
[7631] | 68 | |
---|
| 69 | /** \param index Index to get the name of |
---|
| 70 | * \return The name of the server |
---|
| 71 | * |
---|
| 72 | * Get the name of the server at index index. |
---|
| 73 | */ |
---|
[7161] | 74 | std::string getServerListItemName( unsigned int index ); // tolua_export |
---|
[7631] | 75 | |
---|
| 76 | /** \param index Index to get the IP of |
---|
| 77 | * \return The IP of the server |
---|
| 78 | * |
---|
| 79 | * Get the IP of the server at index index. |
---|
| 80 | */ |
---|
[7161] | 81 | std::string getServerListItemIP( unsigned int index ); // tolua_export |
---|
[7631] | 82 | |
---|
| 83 | /** \return an instance of WANDiscovery |
---|
| 84 | * |
---|
| 85 | * Create and return an instance of WANDiscovery. |
---|
| 86 | */ |
---|
| 87 | static WANDiscovery& getInstance() { return Singleton<WANDiscovery>::getInstance(); } // tolua_export |
---|
[7651] | 88 | |
---|
[7672] | 89 | /* todo: might make this private and use getter/setter methods |
---|
| 90 | * at some later time. |
---|
| 91 | */ |
---|
[7657] | 92 | /** game server list */ |
---|
| 93 | std::vector<packet::ServerInformation> servers_; |
---|
[7737] | 94 | |
---|
| 95 | /** Function used for the configuration file parameter update */ |
---|
| 96 | void setConfigValues(); |
---|
[7763] | 97 | |
---|
| 98 | /** Master server communications object */ |
---|
| 99 | MasterServerComm msc; |
---|
[7161] | 100 | |
---|
| 101 | private: |
---|
[7631] | 102 | /** Singleton pointer */ |
---|
[7630] | 103 | static WANDiscovery* singletonPtr_s; |
---|
[7631] | 104 | |
---|
[7737] | 105 | /** master server address */ |
---|
[7739] | 106 | std::string msaddress; |
---|
[7737] | 107 | |
---|
[7161] | 108 | }; // tolua_export |
---|
| 109 | |
---|
| 110 | } // tolua_export |
---|
| 111 | |
---|
[7770] | 112 | #endif // _WANDiscovery_H__ |
---|