123 lines
4.6 KiB
C++
123 lines
4.6 KiB
C++
//
|
|
// SuperTuxKart - a fun racing game with go-kart
|
|
// Copyright (C) 2013 Glenn De Jonghe
|
|
//
|
|
// 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 3
|
|
// 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
#ifndef HEADER_CURRENT_ONLINE_USER_HPP
|
|
#define HEADER_CURRENT_ONLINE_USER_HPP
|
|
|
|
#include "config/player_profile.hpp"
|
|
#include "online/http_request.hpp"
|
|
#include "online/online_profile.hpp"
|
|
#include "online/request_manager.hpp"
|
|
#include "online/server.hpp"
|
|
#include "online/xml_request.hpp"
|
|
#include "utils/synchronised.hpp"
|
|
#include "utils/types.hpp"
|
|
|
|
#include <irrString.h>
|
|
|
|
#include <string>
|
|
#include <assert.h>
|
|
|
|
class PlayerManager;
|
|
|
|
namespace Online
|
|
{
|
|
|
|
class OnlineProfile;
|
|
|
|
// ============================================================================
|
|
|
|
/**
|
|
* \brief Class that represents an online registered user
|
|
* \ingroup online
|
|
*/
|
|
class OnlinePlayerProfile : public PlayerProfile
|
|
{
|
|
public:
|
|
// ----------------------------------------------------------------
|
|
class SignInRequest : public XMLRequest
|
|
{
|
|
virtual void callback ();
|
|
public:
|
|
SignInRequest(bool manage_memory = false)
|
|
: XMLRequest(manage_memory, /*priority*/10) {}
|
|
}; // SignInRequest
|
|
|
|
// ----------------------------------------------------------------
|
|
class PollRequest : public XMLRequest {
|
|
virtual void callback ();
|
|
public:
|
|
PollRequest() : XMLRequest(true) {}
|
|
}; // PollRequest
|
|
|
|
private:
|
|
std::string m_token;
|
|
OnlineProfile *m_profile;
|
|
|
|
/** The state of the player (logged in, logging in, ...) */
|
|
PlayerProfile::OnlineState m_online_state;
|
|
|
|
virtual void signIn(bool success, const XMLNode * input);
|
|
virtual void signOut(bool success, const XMLNode * input,
|
|
const irr::core::stringw &info);
|
|
virtual uint32_t getOnlineId() const;
|
|
virtual void setUserDetails(Online::HTTPRequest *request,
|
|
const std::string &action,
|
|
const std::string &php_script = "") const;
|
|
|
|
virtual void requestPoll() const;
|
|
// ----------------------------------------------------------------
|
|
/** Returns if this user is logged in. */
|
|
virtual bool isLoggedIn() const
|
|
{
|
|
return m_online_state == PlayerProfile::OS_SIGNED_IN;
|
|
} // isLoggedIn
|
|
|
|
// ----------------------------------------------------------------
|
|
/** The online state of the player (i.e. logged out, logging in,
|
|
* logged in, ...). */
|
|
PlayerProfile::OnlineState getOnlineState() const
|
|
{
|
|
return m_online_state;
|
|
} // getOnlineState
|
|
// ----------------------------------------------------------------
|
|
/** Returns a pointer to the profile associated with the current
|
|
* user. */
|
|
OnlineProfile* getProfile() const { return m_profile; }
|
|
// ----------------------------------------------------------------
|
|
/** Returns the session token of the signed in user. */
|
|
const std::string& getToken() const { return m_token; }
|
|
virtual void requestSavedSession();
|
|
virtual void requestSignOut();
|
|
virtual SignInRequest *requestSignIn(const irr::core::stringw &username,
|
|
const irr::core::stringw &password);
|
|
|
|
public:
|
|
OnlinePlayerProfile(const XMLNode *player);
|
|
OnlinePlayerProfile(const core::stringw &name, bool is_guest = false);
|
|
virtual ~OnlinePlayerProfile() {};
|
|
// ----------------------------------------------------------------
|
|
|
|
}; // class OnlinePlayerProfile
|
|
|
|
} // namespace Online
|
|
|
|
#endif
|
|
|
|
/*EOF*/
|