diff options
-rw-r--r-- | mbbsd/chess.c | 23 |
1 files changed, 17 insertions, 6 deletions
diff --git a/mbbsd/chess.c b/mbbsd/chess.c index 72632357..c44b669f 100644 --- a/mbbsd/chess.c +++ b/mbbsd/chess.c @@ -120,7 +120,7 @@ ChessDrawHelpLine(const ChessInfo* info) ANSI_COLOR(;31;47) " (←↑↓→)" ANSI_COLOR(30) " 移動 " ANSI_COLOR(31) "(空白鍵/ENTER)" ANSI_COLOR(30) " 下子 " ANSI_COLOR(31) "(q)" ANSI_COLOR(30) " 認輸 " - ANSI_COLOR(31) "(p)" ANSI_COLOR(30) " 虛手 " + ANSI_COLOR(31) "(p)" ANSI_COLOR(30) " 虛手/和棋 " ANSI_COLOR(31) "(u)" ANSI_COLOR(30) " 悔棋 " ANSI_RESET, @@ -223,11 +223,9 @@ ChessStepMade(ChessInfo* info, int who) { if (!info->timelimit) info->lefttime[who] = info->constants->traditional_timeout; - else if ( - (info->lefthand[who] && (--(info->lefthand[who]) == 0)) - || - (info->lefthand[who] == 0 && info->lefttime[who] <= 0) - ) { + else if (info->lefthand[who]) + info->lefthand[who]--; + else if (info->lefthand[who] == 0 && info->lefttime[who] <= 0) { info->lefthand[who] = info->timelimit->limit_hand; info->lefttime[who] = info->timelimit->limit_time; } @@ -314,6 +312,13 @@ ChessMessageSend(ChessInfo* info, ChessStepType type) return ChessStepSend(info, &type); } +static inline int +ChessCheckAlive(ChessInfo* info) +{ + ChessStepType type = CHESS_STEP_NOP; + return ChessStepSendOpposite(info, &type); +} + ChessStepType ChessStepReceive(ChessInfo* info, void* step) { @@ -912,6 +917,12 @@ ChessPlay(ChessInfo* info) if (info == NULL) return; + if (!ChessCheckAlive(info)) { + if (info->sock) + close(info->sock); + return; + } + /* XXX */ if (!info->timelimit) { info->timelimit = _current_time_limit; |