diff options
author | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-10-14 12:43:47 +0800 |
---|---|---|
committer | victor <victor@63ad8ddf-47c3-0310-b6dd-a9e9d9715204> | 2003-10-14 12:43:47 +0800 |
commit | 1885c4f2e49d581baaf5f5dfd600287076dbd1f5 (patch) | |
tree | d9838e7a4cb331f3f495e672f00a619f6f495276 | |
parent | 3ffb17c6a53f3f4761654cb32044ac55e528546d (diff) | |
download | pttbbs-1885c4f2e49d581baaf5f5dfd600287076dbd1f5.tar pttbbs-1885c4f2e49d581baaf5f5dfd600287076dbd1f5.tar.gz pttbbs-1885c4f2e49d581baaf5f5dfd600287076dbd1f5.tar.bz2 pttbbs-1885c4f2e49d581baaf5f5dfd600287076dbd1f5.tar.lz pttbbs-1885c4f2e49d581baaf5f5dfd600287076dbd1f5.tar.xz pttbbs-1885c4f2e49d581baaf5f5dfd600287076dbd1f5.tar.zst pttbbs-1885c4f2e49d581baaf5f5dfd600287076dbd1f5.zip |
add mode CHESSWATCHING
git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@1239 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
-rw-r--r-- | include/modes.h | 1 | ||||
-rw-r--r-- | mbbsd/chc.c | 5 | ||||
-rw-r--r-- | mbbsd/talk.c | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/include/modes.h b/include/modes.h index 8321fc8b..ca43900c 100644 --- a/include/modes.h +++ b/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/mbbsd/chc.c b/mbbsd/chc.c index 1fad931a..e6436d0c 100644 --- a/mbbsd/chc.c +++ b/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/mbbsd/talk.c b/mbbsd/talk.c index 9633570d..c3a9399b 100644 --- a/mbbsd/talk.c +++ b/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", "下象棋"); |