Home
last modified time | relevance | path

Searched refs:ABORT_OFFER (Results 1 – 15 of 15) sorted by relevance

/dports/games/jin/jin-2.14.1/src/free/jin/event/
H A DOfferEvent.java58 public static final int ABORT_OFFER = 3; field in OfferEvent
116 case ABORT_OFFER: in OfferEvent()
205 case ABORT_OFFER: buf.append("ABORT_OFFER,"); break; in toString()
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/Utils/
H A Dconst.py92 ABORT_OFFER = "abort offer" variable
102 ACTIONS = (RESIGNATION, FLAG_CALL, DRAW_OFFER, ABORT_OFFER, ADJOURN_OFFER,
105 OFFERS = (DRAW_OFFER, ABORT_OFFER, ADJOURN_OFFER, PAUSE_OFFER,
107 INGAME_ACTIONS = (RESIGNATION, FLAG_CALL, DRAW_OFFER, ABORT_OFFER,
H A DGameModel.py33 ACTION_ERROR_NONE_TO_DECLINE, ADJOURN_OFFER, ADJOURNED, ABORT_OFFER, ABORTED, \
602 elif offer.type == ABORT_OFFER:
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/ic/managers/
H A DICCOfferManager.py3 from pychess.Utils.const import OFFERS, DRAW_OFFER, ABORT_OFFER, ADJOURN_OFFER, TAKEBACK_OFFER
37 offertype = ABORT_OFFER
H A DOfferManager.py5 from pychess.Utils.const import DRAW_OFFER, ABORT_OFFER, ADJOURN_OFFER, TAKEBACK_OFFER, \
43 "abort": ABORT_OFFER,
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/Players/
H A DHuman.py5 from pychess.Utils.const import DRAW_OFFER, ABORT_OFFER, ADJOURN_OFFER, TAKEBACK_OFFER, \
24 ABORT_OFFER:
45 ABORT_OFFER: _("The abort offer"),
57 ABORT_OFFER: _("offer an abort"),
H A DPyChessFICS.py19 TAKEBACK_OFFER, ABORT_OFFER, ADJOURN_OFFER, SWITCH_OFFER, NORMALCHESS, SAN
304 elif offer.type in (DRAW_OFFER, ABORT_OFFER, SWITCH_OFFER):
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/widgets/
H A Dgamenanny.py16 UNDOABLE_REASONS, BLACK_ENGINE_DIED, HINT, SPY, RUNNING, ABORT_OFFER, ADJOURN_OFFER, \
253 if offer.type == ABORT_OFFER:
H A DBoardControl.py9 from pychess.Utils.const import ARTIFICIAL, FLAG_CALL, ABORT_OFFER, LOCAL, TAKEBACK_OFFER, \
278 self.emit("action", ABORT_OFFER, curplayer, None)
/dports/games/py-pychess/pychess-1.0.2/lib/pychess/ic/
H A DICGameModel.py11 UNFINISHED_STATES, ABORT_OFFER, ACTION_ERROR_NONE_TO_ACCEPT
387 self.connection.om.offer(Offer(ABORT_OFFER))
/dports/games/jin/jin-2.14.1/src/free/jin/sound/
H A DSoundManager.java487 case OfferEvent.ABORT_OFFER: playEventSound("AbortOffer"); break; in offerUpdated()
/dports/games/jin/jin-2.14.1/src/free/jin/board/
H A DPlayedGameButtonPanel.java280 case OfferEvent.ABORT_OFFER:
/dports/games/jin/jin-2.14.1/src/free/jin/chessclub/
H A DJinChessclubConnection.java1675 updateOffer(gameInfo, OfferEvent.ABORT_OFFER, Player.WHITE_PLAYER, whiteAbort); in processOffersInMyGame()
1676 updateOffer(gameInfo, OfferEvent.ABORT_OFFER, Player.BLACK_PLAYER, blackAbort); in processOffersInMyGame()
1726 updateOffer(gameInfo, OfferEvent.ABORT_OFFER, player, false); in clearOffers()
/dports/games/jin/jin-2.14.1/src/free/jin/freechess/
H A DJinFreechessConnection.java1902 processOffered(toUser, offerIndex, oppName, OfferEvent.ABORT_OFFER); in processAbortOffered()
2097 return OfferEvent.ABORT_OFFER; in offerIdForOfferName()
/dports/games/jin/jin-2.14.1/src/free/jin/scripter/
H A DScripter.java985 case OfferEvent.ABORT_OFFER: offerType = "abort"; break; in offerUpdated()