summaryrefslogtreecommitdiffstats
path: root/mbbsd
diff options
context:
space:
mode:
authorscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-08-10 09:47:34 +0800
committerscw <scw@63ad8ddf-47c3-0310-b6dd-a9e9d9715204>2005-08-10 09:47:34 +0800
commit4fe6fa6ea16743f6e6f265e1131df3bff3767116 (patch)
tree06fe4785b0e53dc726d3d720e31de1b998d8a231 /mbbsd
parentb9f694e971dd74723e1cf3cd837b385c02820194 (diff)
downloadpttbbs-4fe6fa6ea16743f6e6f265e1131df3bff3767116.tar
pttbbs-4fe6fa6ea16743f6e6f265e1131df3bff3767116.tar.gz
pttbbs-4fe6fa6ea16743f6e6f265e1131df3bff3767116.tar.bz2
pttbbs-4fe6fa6ea16743f6e6f265e1131df3bff3767116.tar.lz
pttbbs-4fe6fa6ea16743f6e6f265e1131df3bff3767116.tar.xz
pttbbs-4fe6fa6ea16743f6e6f265e1131df3bff3767116.tar.zst
pttbbs-4fe6fa6ea16743f6e6f265e1131df3bff3767116.zip
* fix chc watching SEGV bug
* chc.[ch] and chess.[ch] code clean up git-svn-id: http://opensvn.csie.org/pttbbs/trunk/pttbbs@3022 63ad8ddf-47c3-0310-b6dd-a9e9d9715204
Diffstat (limited to 'mbbsd')
-rw-r--r--mbbsd/chc.c18
-rw-r--r--mbbsd/chess.c3
2 files changed, 11 insertions, 10 deletions
diff --git a/mbbsd/chc.c b/mbbsd/chc.c
index efed0041..6f53bc8b 100644
--- a/mbbsd/chc.c
+++ b/mbbsd/chc.c
@@ -1,6 +1,6 @@
/* $Id$ */
#include "bbs.h"
-#include "chess.h"
+#include "chc.h"
#define assert_not_reached() assert(!"Should never be here!!!")
@@ -37,8 +37,8 @@ typedef struct {
} chc_tag_data_t;
/* chess framework action functions */
-static void chc_init_user(const userinfo_t *userec, ChessUser *user);
-static void chc_init_board(const ChessInfo* info, board_t board);
+static void chc_init_user(const userinfo_t *uinfo, ChessUser *user);
+static void chc_init_board(board_t board);
static void chc_drawline(const ChessInfo* info, int line);
static void chc_movecur(int r, int c);
static void chc_prepare_play(ChessInfo* info);
@@ -435,7 +435,7 @@ chc_genlog(ChessInfo* info, FILE* fp, ChessGameResult result)
else
fprintf(fp, "%s V.S. %s\n", info->user2.userid, info->user1.userid);
- chc_init_board(info, board);
+ chc_init_board(board);
for (i = 0; i < nStep; ++i) {
const drc_t *move = (const drc_t*) ChessHistoryRetrieve(info, i);
chc_log_step(fp, board, move);
@@ -465,7 +465,7 @@ chc_genlog(ChessInfo* info, FILE* fp, ChessGameResult result)
* Start of the rule function.
*/
static void
-chc_init_board(const ChessInfo* info, board_t board)
+chc_init_board(board_t board)
{
memset(board, 0, sizeof(board_t));
board[0][4] = CHE(KIND_K, BLK); /* 將 */
@@ -777,9 +777,7 @@ chc_select(ChessInfo* info, rc_t scrloc, ChessGameResult* result)
chc_drawline(info, LTR(info, moving.to.r));
ChessHistoryAppend(info, &moving);
- ChessStepBroadcast(info, &moving);
-
- ChessStepSendOpposite(info, &moving);
+ ChessStepSend(info, &moving);
tag->selected = 0;
return 1;
@@ -789,7 +787,7 @@ chc_select(ChessInfo* info, rc_t scrloc, ChessGameResult* result)
ANSI_COLOR(1;33) "不可以王見王" ANSI_RESET,
sizeof(info->warnmsg));
bell();
- chc_drawline(info, WARN_ROW);
+ chc_drawline(info, REAL_WARN_ROW);
return 0;
}
} else
@@ -857,7 +855,7 @@ chc(int s, ChessGameMode mode)
board_t board;
chc_tag_data_t tag;
- chc_init_board(info, board);
+ chc_init_board(board);
tag.selected = 0;
info->board = board;
diff --git a/mbbsd/chess.c b/mbbsd/chess.c
index 04a05f03..d6b1a292 100644
--- a/mbbsd/chess.c
+++ b/mbbsd/chess.c
@@ -1089,6 +1089,9 @@ NewChessInfo(const ChessActions* actions, const ChessConstants* constants,
ChessInfo* info =
(ChessInfo*) calloc(1, sizeof(ChessInfo) + constants->step_entry_size);
+ if (mode == CHESS_MODE_PERSONAL)
+ strcpy(currutmp->mateid, cuser.userid);
+
/* compiler don't know it's actually const... */
info->actions = (ChessActions*) actions;
info->constants = (ChessConstants*) constants;