Home
last modified time | relevance | path

Searched refs:playerIdWho (Results 1 – 11 of 11) sorted by relevance

/dports/games/pokerth/pokerth-1.1.2-rc/src/gui/generic/
H A Dserverguiwrapper.cpp322 void ServerGuiWrapper::SignalPlayerGameInvitation(unsigned gameId, unsigned playerIdWho, unsigned p… in SignalPlayerGameInvitation() argument
324 if (myClientcb) myClientcb->SignalPlayerGameInvitation(gameId, playerIdWho, playerIdFrom); in SignalPlayerGameInvitation()
326 void ServerGuiWrapper::SignalRejectedGameInvitation(unsigned gameId, unsigned playerIdWho, DenyGame… in SignalRejectedGameInvitation() argument
328 if (myClientcb) myClientcb->SignalRejectedGameInvitation(gameId, playerIdWho, reason); in SignalRejectedGameInvitation()
H A Dserverguiwrapper.h183 void SignalPlayerGameInvitation(unsigned gameId, unsigned playerIdWho, unsigned playerIdFrom);
184 …void SignalRejectedGameInvitation(unsigned gameId, unsigned playerIdWho, DenyGameInvitationReason …
/dports/games/pokerth/pokerth-1.1.2-rc/src/net/
H A Dclientcallback.h97 …virtual void SignalPlayerGameInvitation(unsigned gameId, unsigned playerIdWho, unsigned playerIdFr…
98 …virtual void SignalRejectedGameInvitation(unsigned gameId, unsigned playerIdWho, DenyGameInvitatio…
H A Dservergame.h154 …void InternalAskVoteKick(boost::shared_ptr<SessionData> byWhom, unsigned playerIdWho, unsigned tim…
155 …void InternalDenyAskVoteKick(boost::shared_ptr<SessionData> byWhom, unsigned playerIdWho, DenyKick…
/dports/games/pokerth/pokerth-1.1.2-rc/src/net/common/
H A Dservergame.cpp491 ServerGame::InternalAskVoteKick(boost::shared_ptr<SessionData> byWhom, unsigned playerIdWho, unsign… in InternalAskVoteKick() argument
498 if (IsValidPlayer(playerIdWho)) { in InternalAskVoteKick()
505 m_voteKickData->kickPlayerId = playerIdWho; in InternalAskVoteKick()
530 InternalDenyAskVoteKick(byWhom, playerIdWho, KICK_DENIED_OTHER_IN_PROGRESS); in InternalAskVoteKick()
532 InternalDenyAskVoteKick(byWhom, playerIdWho, KICK_DENIED_INVALID_PLAYER_ID); in InternalAskVoteKick()
534 InternalDenyAskVoteKick(byWhom, playerIdWho, KICK_DENIED_TOO_FEW_PLAYERS); in InternalAskVoteKick()
536 InternalDenyAskVoteKick(byWhom, playerIdWho, KICK_DENIED_INVALID_STATE); in InternalAskVoteKick()
540 ServerGame::InternalDenyAskVoteKick(boost::shared_ptr<SessionData> byWhom, unsigned playerIdWho, De… in InternalDenyAskVoteKick() argument
546 netKickDenied->set_playerid(playerIdWho); in InternalDenyAskVoteKick()
/dports/games/pokerth/pokerth-1.1.2-rc/src/gui/qt/gamelobbydialog/
H A Dgamelobbydialogimpl.h155 void chatInfoPlayerInvitation(unsigned gameId, unsigned playerIdWho, unsigned playerIdFrom);
156 …void chatInfoPlayerRejectedInvitation(unsigned gameId, unsigned playerIdWho, DenyGameInvitationRea…
H A Dgamelobbydialogimpl.cpp1774 void gameLobbyDialogImpl::chatInfoPlayerInvitation(unsigned gameId, unsigned playerIdWho, unsigned … in chatInfoPlayerInvitation() argument
1776 …2 by %3.</span>").arg(QString::fromUtf8(mySession->getClientPlayerInfo(playerIdWho).playerName.c_s… in chatInfoPlayerInvitation()
1779 void gameLobbyDialogImpl::chatInfoPlayerRejectedInvitation(unsigned gameId, unsigned playerIdWho, D… in chatInfoPlayerRejectedInvitation() argument
1787 …ay->append(string.arg(QString::fromUtf8(mySession->getClientPlayerInfo(playerIdWho).playerName.c_s… in chatInfoPlayerRejectedInvitation()
/dports/games/pokerth/pokerth-1.1.2-rc/src/gui/qt/
H A Dguiwrapper.cpp528 void GuiWrapper::SignalPlayerGameInvitation(unsigned gameId, unsigned playerIdWho, unsigned playerI… in SignalPlayerGameInvitation() argument
530 myStartWindow->signalPlayerGameInvitation(gameId, playerIdWho, playerIdFrom); in SignalPlayerGameInvitation()
532 void GuiWrapper::SignalRejectedGameInvitation(unsigned gameId, unsigned playerIdWho, DenyGameInvita… in SignalRejectedGameInvitation() argument
534 myStartWindow->signalRejectedGameInvitation(gameId, playerIdWho, reason); in SignalRejectedGameInvitation()
H A Dguiwrapper.h189 void SignalPlayerGameInvitation(unsigned gameId, unsigned playerIdWho, unsigned playerIdFrom);
190 …void SignalRejectedGameInvitation(unsigned gameId, unsigned playerIdWho, DenyGameInvitationReason …
/dports/games/pokerth/pokerth-1.1.2-rc/src/gui/qt/startwindow/
H A Dstartwindowimpl.h148 void signalPlayerGameInvitation(unsigned gameId, unsigned playerIdWho, unsigned playerIdFrom);
149 …void signalRejectedGameInvitation(unsigned gameId, unsigned playerIdWho, DenyGameInvitationReason …
/dports/games/pokerth/pokerth-1.1.2-rc/
H A Dpokerth.proto397 required uint32 playerIdWho = 2; field