/* * ORXONOX - the hottest 3D action shooter ever to exist > www.orxonox.net < * * * License notice: * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the Free * Software Foundation; either version 2 of the License, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License * for more details. * * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., 51 * Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. * * Author: Fabian 'x3n' Landau (original) Co-authors: Sandro 'smerkli' Merkli * (copied and adapted to WAN) * */ #ifndef _WANDiscovery_H__ #define _WANDiscovery_H__ #include "NetworkPrereqs.h" #include "packet/ServerInformation.h" #include "core/ConfigFileManager.h" #include "util/Singleton.h" #include "core/OrxonoxClass.h" #include "core/ConfigValueIncludes.h" #include "core/CoreIncludes.h" #include "MasterServerComm.h" #include "MasterServerProtocol.h" #include #define WANDISC_MAXTRIES 5 // tolua_begin namespace orxonox { class _NetworkExport WANDiscovery // tolua_end : public Singleton, public OrxonoxClass { // tolua_export friend class Singleton; public: /** constructor */ WANDiscovery(); /** destructor */ ~WANDiscovery(); /** \return Address of the master server * * Get the master server address */ std::string getMSAddress() { return this->msaddress; } /** ask server for server list */ void discover(); // tolua_export /** \param index Index to get the name of * \return The name of the server * * Get the name of the server at index index. */ std::string getServerListItemName( unsigned int index ); // tolua_export /** \param index Index to get the IP of * \return The IP of the server * * Get the IP of the server at index index. */ std::string getServerListItemIP( unsigned int index ); // tolua_export /** \return an instance of WANDiscovery * * Create and return an instance of WANDiscovery. */ static WANDiscovery& getInstance() { return Singleton::getInstance(); } // tolua_export /* todo: might make this private and use getter/setter methods * at some later time. */ /** game server list */ std::vector servers_; /** Function used for the configuration file parameter update */ void setConfigValues(); /** Master server communications object */ MasterServerComm msc; private: /** Singleton pointer */ static WANDiscovery* singletonPtr_s; /** master server address */ std::string msaddress; }; // tolua_export } // tolua_export #endif // _WANDiscovery_H__