// Cyphesis Online RPG Server and AI Engine // Copyright (C) 2009 Alistair Riddoch // // 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 // $Id$ #ifndef COMMON_ATLAS_STREAM_CLIENT_H #define COMMON_ATLAS_STREAM_CLIENT_H #include "common/OperationRouter.h" #include #include #include #include namespace Atlas { class Codec; } // namespace Atlas class basic_socket_stream; class ClientTask; class AtlasStreamClient : public Atlas::Objects::ObjectsDecoder { protected: /// \brief Flag to indicate that a reply has been received from the server bool reply_flag; /// \brief Flag to indicate that an error has been received from the server bool error_flag; /// \brief Counter used to track serial numbers sent to the server int serialNo; int m_fd; Atlas::Objects::ObjectsEncoder * m_encoder; Atlas::Codec * m_codec; basic_socket_stream * m_ios; ClientTask * m_currentTask; std::string m_username; int m_spacing; /// \brief Store for reply data from the server Atlas::Objects::Root m_infoReply; /// \brief Account identifier returned after successful login std::string m_accountId; /// \brief Account type returned after login std::string m_accountType; /// \brief Stored error message from the last received Error operation std::string m_errorMessage; // void objectArrived(const Atlas::Objects::Root &); int waitForLoginResponse(); int negotiate(); virtual void objectArrived(const Atlas::Objects::Root &); virtual void operation(const Atlas::Objects::Operation::RootOperation &); virtual void infoArrived(const Atlas::Objects::Operation::RootOperation &); virtual void errorArrived(const Atlas::Objects::Operation::RootOperation &); virtual void appearanceArrived(const Operation &); virtual void disappearanceArrived(const Operation &); virtual void sightArrived(const Operation &); virtual void soundArrived(const Operation &); virtual void loginSuccess(const Atlas::Objects::Root & arg); public: AtlasStreamClient(); virtual ~AtlasStreamClient(); int newSerialNo() { return ++serialNo; } const Atlas::Objects::Root & getInfoReply() const { return m_infoReply; } const std::string & errorMessage() const { return m_errorMessage; } int spacing() const { return m_spacing; } void send(const Atlas::Objects::Operation::RootOperation & op); int connect(const std::string & host, int port = 6767); int connectLocal(const std::string & host); int cleanDisconnect(); int login(const std::string & username, const std::string & password); int create(const std::string & type, const std::string & username, const std::string & password); int poll(int timeout = 0, int msec = 0); void output(const Atlas::Message::Element & item, int depth = 0) const; void output(const Atlas::Objects::Root & item) const; int runTask(ClientTask * task, const std::string & arg); int endTask(); }; #endif // COMMON_ATLAS_STREAM_CLIENT_H