2011-07-02 14:38:06 +00:00
|
|
|
/*****************************************************************************
|
|
|
|
|
* PokerTH - The open source texas holdem engine *
|
|
|
|
|
* Copyright (C) 2006-2011 Felix Hammer, Florian Thauer, Lothar May *
|
|
|
|
|
* *
|
|
|
|
|
* This program is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the GNU Affero 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 Affero General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the GNU Affero General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
|
*****************************************************************************/
|
2007-11-16 15:24:25 +00:00
|
|
|
/* Context of network client. */
|
|
|
|
|
|
|
|
|
|
#ifndef _CLIENTCONTEXT_H_
|
|
|
|
|
#define _CLIENTCONTEXT_H_
|
|
|
|
|
|
2009-05-07 22:36:51 +00:00
|
|
|
#include <boost/shared_ptr.hpp>
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
#include <net/receivebuffer.h>
|
|
|
|
|
#include <net/sessiondata.h>
|
2010-03-26 21:41:35 +00:00
|
|
|
#include <playerdata.h>
|
2009-01-07 21:52:16 +00:00
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
|
2009-06-14 22:07:41 +00:00
|
|
|
class ClientContext
|
2007-11-16 15:24:25 +00:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
ClientContext();
|
|
|
|
|
virtual ~ClientContext();
|
|
|
|
|
|
|
|
|
|
boost::shared_ptr<SessionData> GetSessionData() const;
|
2009-03-21 10:28:27 +00:00
|
|
|
void SetSessionData(boost::shared_ptr<SessionData> sessionData);
|
2009-06-14 22:07:41 +00:00
|
|
|
boost::shared_ptr<boost::asio::ip::tcp::resolver> GetResolver() const;
|
|
|
|
|
void SetResolver(boost::shared_ptr<boost::asio::ip::tcp::resolver> resolver);
|
2011-02-11 20:02:08 +00:00
|
|
|
bool GetSctp() const {
|
|
|
|
|
return m_sctp;
|
|
|
|
|
}
|
|
|
|
|
void SetSctp(bool sctp) {
|
|
|
|
|
m_sctp = sctp;
|
|
|
|
|
}
|
|
|
|
|
int GetAddrFamily() const {
|
|
|
|
|
return m_addrFamily;
|
|
|
|
|
}
|
|
|
|
|
void SetAddrFamily(int addrFamily) {
|
|
|
|
|
m_addrFamily = addrFamily;
|
|
|
|
|
}
|
|
|
|
|
const std::string &GetServerAddr() const {
|
|
|
|
|
return m_serverAddr;
|
|
|
|
|
}
|
|
|
|
|
void SetServerAddr(const std::string &serverAddr) {
|
|
|
|
|
m_serverAddr = serverAddr;
|
|
|
|
|
}
|
2011-10-20 21:19:58 +00:00
|
|
|
const std::string &GetServerPassword() const {
|
|
|
|
|
return m_serverPassword;
|
|
|
|
|
}
|
|
|
|
|
void SetServerPassword(const std::string &serverPassword) {
|
|
|
|
|
m_serverPassword = serverPassword;
|
|
|
|
|
}
|
2011-02-11 20:02:08 +00:00
|
|
|
const std::string &GetServerListUrl() const {
|
|
|
|
|
return m_serverListUrl;
|
|
|
|
|
}
|
|
|
|
|
void SetServerListUrl(const std::string &serverListUrl) {
|
|
|
|
|
m_serverListUrl = serverListUrl;
|
|
|
|
|
}
|
|
|
|
|
bool GetUseServerList() const {
|
|
|
|
|
return m_useServerList;
|
|
|
|
|
}
|
|
|
|
|
void SetUseServerList(bool use) {
|
|
|
|
|
m_useServerList = use;
|
|
|
|
|
}
|
|
|
|
|
unsigned GetServerPort() const {
|
|
|
|
|
return m_serverPort;
|
|
|
|
|
}
|
|
|
|
|
void SetServerPort(unsigned serverPort) {
|
|
|
|
|
m_serverPort = serverPort;
|
|
|
|
|
}
|
|
|
|
|
const std::string &GetAvatarServerAddr() const {
|
|
|
|
|
return m_avatarServerAddr;
|
|
|
|
|
}
|
|
|
|
|
void SetAvatarServerAddr(const std::string &avatarServerAddr) {
|
|
|
|
|
m_avatarServerAddr = avatarServerAddr;
|
|
|
|
|
}
|
|
|
|
|
const std::string &GetPassword() const {
|
|
|
|
|
return m_password;
|
|
|
|
|
}
|
|
|
|
|
void SetPassword(const std::string &password) {
|
|
|
|
|
m_password = password;
|
|
|
|
|
}
|
|
|
|
|
const std::string &GetPlayerName() const {
|
|
|
|
|
return m_playerName;
|
|
|
|
|
}
|
|
|
|
|
void SetPlayerName(const std::string &playerName) {
|
|
|
|
|
m_playerName = playerName;
|
|
|
|
|
}
|
|
|
|
|
PlayerRights GetPlayerRights() const {
|
|
|
|
|
return m_playerRights;
|
|
|
|
|
}
|
|
|
|
|
void SetPlayerRights(PlayerRights rights) {
|
|
|
|
|
m_playerRights = rights;
|
|
|
|
|
}
|
|
|
|
|
const std::string &GetAvatarFile() const {
|
|
|
|
|
return m_avatarFile;
|
|
|
|
|
}
|
|
|
|
|
void SetAvatarFile(const std::string &avatarFile) {
|
|
|
|
|
m_avatarFile = avatarFile;
|
|
|
|
|
}
|
|
|
|
|
const std::string &GetCacheDir() const {
|
|
|
|
|
return m_cacheDir;
|
|
|
|
|
}
|
|
|
|
|
void SetCacheDir(const std::string &cacheDir) {
|
|
|
|
|
m_cacheDir = cacheDir;
|
|
|
|
|
}
|
|
|
|
|
bool GetSubscribeLobbyMsg() const {
|
|
|
|
|
return m_hasSubscribedLobbyMsg;
|
|
|
|
|
}
|
|
|
|
|
void SetSubscribeLobbyMsg(bool setSubscribe) {
|
|
|
|
|
m_hasSubscribedLobbyMsg = setSubscribe;
|
|
|
|
|
}
|
2007-11-16 15:24:25 +00:00
|
|
|
|
2011-02-11 20:02:08 +00:00
|
|
|
ReceiveBuffer &GetReceiveBuffer() {
|
|
|
|
|
return m_receiveBuffer;
|
|
|
|
|
}
|
2007-11-16 15:24:25 +00:00
|
|
|
|
2011-08-28 17:14:03 +00:00
|
|
|
const std::string &GetSessionGuid() const {
|
|
|
|
|
return m_sessionGuid;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void SetSessionGuid(const std::string &sessionGuid) {
|
|
|
|
|
m_sessionGuid = sessionGuid;
|
|
|
|
|
}
|
|
|
|
|
|
2007-11-16 15:24:25 +00:00
|
|
|
private:
|
|
|
|
|
boost::shared_ptr<SessionData> m_sessionData;
|
2009-06-14 22:07:41 +00:00
|
|
|
boost::shared_ptr<boost::asio::ip::tcp::resolver> m_resolver;
|
2009-06-16 22:00:07 +00:00
|
|
|
bool m_sctp;
|
2007-11-16 15:24:25 +00:00
|
|
|
int m_addrFamily;
|
|
|
|
|
std::string m_serverAddr;
|
2011-10-20 21:19:58 +00:00
|
|
|
std::string m_serverPassword;
|
2008-05-10 15:47:48 +00:00
|
|
|
std::string m_serverListUrl;
|
|
|
|
|
bool m_useServerList;
|
2007-11-16 15:24:25 +00:00
|
|
|
unsigned m_serverPort;
|
2009-03-18 15:01:43 +00:00
|
|
|
std::string m_avatarServerAddr;
|
2007-11-16 15:24:25 +00:00
|
|
|
std::string m_password;
|
|
|
|
|
std::string m_playerName;
|
2010-03-26 21:41:35 +00:00
|
|
|
PlayerRights m_playerRights;
|
2007-11-16 15:24:25 +00:00
|
|
|
std::string m_avatarFile;
|
2008-04-19 11:48:09 +00:00
|
|
|
std::string m_cacheDir;
|
2008-05-16 20:42:46 +00:00
|
|
|
bool m_hasSubscribedLobbyMsg;
|
2007-11-16 15:24:25 +00:00
|
|
|
ReceiveBuffer m_receiveBuffer;
|
2011-08-28 17:14:03 +00:00
|
|
|
std::string m_sessionGuid;
|
2007-11-16 15:24:25 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif
|