108 lines
3.8 KiB
C++
108 lines
3.8 KiB
C++
/***************************************************************************
|
|
* Copyright (C) 2007 by Lothar May *
|
|
* *
|
|
* 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., *
|
|
* 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
|
|
***************************************************************************/
|
|
#ifndef SERVERGUIWRAPPER_H
|
|
#define SERVERGUIWRAPPER_H
|
|
|
|
#include <guiinterface.h>
|
|
|
|
class ConfigFile;
|
|
class Session;
|
|
|
|
class ServerGuiWrapper : public GuiInterface
|
|
{
|
|
public:
|
|
ServerGuiWrapper(ConfigFile *config, ClientCallback *clientcb, ServerCallback *servercb);
|
|
~ServerGuiWrapper();
|
|
|
|
void initGui(int speed);
|
|
|
|
Session &getSession();
|
|
void setSession(boost::shared_ptr<Session> session);
|
|
|
|
void refreshSet() const;
|
|
void refreshCash() const;
|
|
void refreshAction(int =-1, int =-1) const;
|
|
void refreshChangePlayer() const;
|
|
void refreshPot() const;
|
|
void refreshGroupbox(int =-1, int =-1) const;
|
|
void refreshAll() const;
|
|
void refreshPlayerName() const;
|
|
void refreshButton() const;
|
|
void refreshGameLabels() const;
|
|
|
|
void dealHoleCards();
|
|
void dealFlopCards();
|
|
void dealTurnCard();
|
|
void dealRiverCard();
|
|
|
|
void nextPlayerAnimation();
|
|
|
|
void preflopAnimation1();
|
|
void preflopAnimation2();
|
|
|
|
void flopAnimation1();
|
|
void flopAnimation2();
|
|
|
|
void turnAnimation1();
|
|
void turnAnimation2();
|
|
|
|
void riverAnimation1();
|
|
void riverAnimation2();
|
|
|
|
void postRiverAnimation1();
|
|
void postRiverRunAnimation1();
|
|
|
|
void flipHolecardsAllIn();
|
|
|
|
void nextRoundCleanGui();
|
|
|
|
void meInAction();
|
|
|
|
void logPlayerActionMsg(std::string playerName, int action, int setValue) ;
|
|
void logNewGameHandMsg(int gameID, int handID) ;
|
|
void logPlayerWinsMsg(int playerID, int pot);
|
|
void logDealBoardCardsMsg(int roundID, int card1, int card2, int card3, int card4 = -1, int card5 = -1) ;
|
|
void logFlipHoleCardsMsg(std::string playerName, int card1, int card2, int cardsValueInt = -1, std::string showHas = "shows") ;
|
|
void logPlayerLeftMsg(int playerID);
|
|
|
|
void SignalNetClientConnect(int actionID);
|
|
void SignalNetClientGameInfo(int actionID);
|
|
void SignalNetClientError(int errorID, int osErrorID);
|
|
void SignalNetClientPlayerJoined(const std::string &playerName);
|
|
void SignalNetClientPlayerLeft(const std::string &playerName);
|
|
void SignalNetClientChatMsg(const std::string &playerName, const std::string &msg);
|
|
|
|
void SignalNetClientGameStart(boost::shared_ptr<Game> game);
|
|
|
|
void SignalNetServerSuccess(int actionID);
|
|
void SignalNetServerError(int errorID, int osErrorID);
|
|
void SignalNetServerPlayerJoined(const std::string &playerName);
|
|
void SignalNetServerPlayerLeft(const std::string &playerName);
|
|
|
|
private:
|
|
|
|
boost::shared_ptr<Session> mySession;
|
|
ConfigFile *myConfig;
|
|
|
|
ClientCallback *myClientcb;
|
|
ServerCallback *myServercb;
|
|
};
|
|
|
|
#endif
|