我一直致力于将 Marcel 的简单国际象棋程序http://marcelk.net/mscp/ 从 C 移植到 C++。我从来没有与工会合作过,更不用说工会内的结构了。我列出的最上面的部分是工会的声明。(所有代码都在一个 .c 文件中)。
除了 C++ 教科书之外,我还搜索并阅读了一些指南,但我仍然没有深入了解如何解决这个问题。我不确定什么是“前向 cdeclaration”,也不确定我应该在什么情况下查看问题。
我的编译选项是
g++ -ansi -Wall -O2 -pedantic -o mscp -mscp.cpp
static union { struct tt { /* Transposition table entry */ unsigned short hash; /* - Identifies position */ short move; /* - Best recorded move */ short score; /* - Score */ char flag; /* - How to interpret score */ char depth; /* - Remaining search depth */ } tt[CORE]; struct bk { /* Opening book entry */ unsigned long hash; /* - Identifies position */ short move; /* - Move for this position */ unsigned short count; /* - Frequency */ } bk[CORE]; } core;
这些部分是给出错误的行的示例:
错误:'const struct cmp_bk(const void*, const void*)::bk' 的前向声明
错误:无效使用不完整类型 'const struct cmp_bk(const void*, const void*)::bk'</p>
static int cmp_bk(const void *ap, const void *bp)
{
const struct bk *a = ap; //ERROR HERE
const struct bk *b = bp; //ERROR HERE
if (a->hash < b->hash) return -1; //ERROR HERE
if (a->hash > b->hash) return 1; //ERROR HERE
return (int)a->move - (int)b->move; //ERROR HERE
}
static int search(int depth, int alpha, int beta)
{
int best_score = -INF;
int best_move = 0;
int score;
struct move *moves;
int incheck = 0;
struct tt *tt; //ERROR HERE
int oldalpha = alpha;
int oldbeta = beta;
int i, count=0;
if (tt->depth >= depth) {
if (tt->flag >= 0) alpha = MAX(alpha, tt->score); //ERROR HERE
if (tt->flag <= 0) beta = MIN(beta, tt->score); //ERROR HERE
if (alpha >= beta) return tt->score;
}
best_move = tt->move & 07777;