From 3fd44caace18608a40f67e6c911acc0c0eb9d5f4 Mon Sep 17 00:00:00 2001 From: victor Date: Tue, 14 Oct 2003 04:43:47 +0000 Subject: add mode CHESSWATCHING git-svn-id: http://opensvn.csie.org/pttbbs/trunk@1239 63ad8ddf-47c3-0310-b6dd-a9e9d9715204 --- pttbbs/include/modes.h | 1 + pttbbs/mbbsd/chc.c | 5 ++++- pttbbs/mbbsd/talk.c | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/pttbbs/include/modes.h b/pttbbs/include/modes.h index 8321fc8b..ca43900c 100644 --- a/pttbbs/include/modes.h +++ b/pttbbs/include/modes.h @@ -96,6 +96,7 @@ #define JCEE 78 #define REEDIT 79 #define BLOGGING 80 +#define CHESSWATCHING 81 /* menu.c 中的模式 */ #define QUIT 0x666 /* Return value to abort recursive functions */ diff --git a/pttbbs/mbbsd/chc.c b/pttbbs/mbbsd/chc.c index 1fad931a..e6436d0c 100644 --- a/pttbbs/mbbsd/chc.c +++ b/pttbbs/mbbsd/chc.c @@ -853,7 +853,10 @@ chc_init(int s, chcusr_t *user1, chcusr_t *user2, board_t board, play_func_t pla { userinfo_t *my = currutmp; - setutmpmode(CHC); + if (chc_mode & CHC_WATCH) + setutmpmode(CHESSWATCHING); + else + setutmpmode(CHC); clear(); chc_warnmsg[0] = 0; diff --git a/pttbbs/mbbsd/talk.c b/pttbbs/mbbsd/talk.c index 9633570d..c3a9399b 100644 --- a/pttbbs/mbbsd/talk.c +++ b/pttbbs/mbbsd/talk.c @@ -137,6 +137,8 @@ modestring(userinfo_t * uentp, int simple) snprintf(modestr, sizeof(modestr), "%s", "五子棋 空氣"); else snprintf(modestr, sizeof(modestr), "%s %s", word, getuserid(uentp->destuid)); + } else if (mode == CHESSWATCHING) { + snprintf(modestr, sizeof(modestr), "觀棋"); } else if (mode == CHC) { if (isvisible_uid(uentp->destuid)) snprintf(modestr, sizeof(modestr), "%s", "下象棋"); -- cgit v1.2.3