git-svn-id: svn+ssh://svn.code.sf.net/p/supertuxkart/code/main/branches/uni@13455 178a84e3-b1eb-0310-8ba1-8eac791a3b58
98 lines
2.9 KiB
C++
98 lines
2.9 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_ONLINE_PROFILE_HPP
|
|
#define HEADER_ONLINE_PROFILE_HPP
|
|
|
|
#include "http_manager.hpp"
|
|
#include "online/request.hpp"
|
|
#include "online/user.hpp"
|
|
#include "utils/types.hpp"
|
|
#include "utils/ptr_vector.hpp"
|
|
|
|
|
|
#include <irrString.h>
|
|
|
|
#include <string>
|
|
|
|
namespace Online{
|
|
|
|
// ============================================================================
|
|
|
|
/**
|
|
* \brief Class that represents an online profile
|
|
* \ingroup online
|
|
*/
|
|
class Profile
|
|
{
|
|
public :
|
|
class FriendsListRequest : public XMLRequest
|
|
{
|
|
virtual void callback ();
|
|
public:
|
|
FriendsListRequest() : XMLRequest() {}
|
|
};
|
|
private:
|
|
|
|
enum State
|
|
{
|
|
S_FETCHING = 1,
|
|
S_READY
|
|
};
|
|
|
|
Synchronised<State> m_state;
|
|
bool m_is_current_user;
|
|
uint32_t m_id;
|
|
irr::core::stringw m_username;
|
|
|
|
bool m_has_fetched_friends;
|
|
PtrVector<Online::User> m_friends;
|
|
const FriendsListRequest * m_friends_list_request;
|
|
|
|
bool m_cache_bit;
|
|
|
|
|
|
|
|
void setState(State state) { m_state.setAtomic(state); }
|
|
const State getState() const { return m_state.getAtomic(); }
|
|
|
|
void friendsListCallback(const XMLNode * input);
|
|
|
|
public:
|
|
Profile(User * user);
|
|
void fetchFriends();
|
|
const PtrVector<Online::User> & getFriends();
|
|
|
|
bool isFetching() { return getState() == S_FETCHING; }
|
|
bool isReady() { return getState() == S_READY; }
|
|
|
|
void setCacheBit() { m_cache_bit = true; }
|
|
void unsetCacheBit() { m_cache_bit = false; }
|
|
bool getCacheBit() { return m_cache_bit; }
|
|
uint32_t getID() { return m_id; }
|
|
irr::core::stringw getUsername() { return m_username; }
|
|
|
|
|
|
}; // class CurrentUser
|
|
|
|
} // namespace Online
|
|
|
|
#endif
|
|
|
|
/*EOF*/
|