代码搜索:ChessBoard
找到约 642 项符合「ChessBoard」的源代码
代码结果 642
www.eeworm.com/read/130879/14170666
news
Chinese Checkers NEWS
Version 0.2.4
* Support short jump
* Support stay limit
* Support divide group
* Bug fix
Version 0.2.3
* Support Linux console
* Dialog interface for Linux: easy to s
www.eeworm.com/read/130879/14170699
tree
Chinese Checkers file tree:
- buf_text.hpp : lined buffer of text
- checkers.hpp : basic chessboard
- checkers_client.hpp : basic client chessboard
- checkers_hole.hpp : a checkers' hole
- ch
www.eeworm.com/read/127376/14357381
cpp evaluate.cpp
#include
#include "Cdefines.h"
#include "Global.h"
#undef max
#undef min
#define max(a, b) (((a) > (b)) ? (a) : (b))
#define min(a, b) (((a) < (b)) ? (a) : (b))
#define TOLE
www.eeworm.com/read/127376/14357391
cpp treesearch.cpp
#include
#include "MainForm1.h"
#include "CDefines.h"
#include "Chess.h"
#include "Global.h"
#undef max
#undef min
#define max(a, b) (((a) > (b)) ? (a) : (b))
#define min(a, b) (
www.eeworm.com/read/127376/14357426
cpp mainform1.cpp
//---------------------------------------------------------------------------
#include
#pragma hdrstop
#include "MainForm1.h"
#include "EditForm2.h"
#include "InfoForm3.h"
#include "
www.eeworm.com/read/127376/14357433
cpp movegener.cpp
#include "CDefines.h"
#include "Global.h"
/*
* 全局变量
*/
static ATTACKTABTYPE attack[308];
ATTACKTABTYPE *AttackTable = &attack[154];
SETOFPIECE BitTab[8] = {0, 1, 2, 4, 8, 0x10, 0x20, 0x4
www.eeworm.com/read/126009/14452189
java gamecanvas.java
/*
* Five - gobang Game for Nokia series60 mobie,just for funny!!
*
* Copyright (C) 2003.3 runer
* 版权所有 (C)2003.3 runer
*
* 这个五子棋游戏是2003年3月份学习j2me编程时写的,
www.eeworm.com/read/125170/14511191
cpp 棋盘覆盖问题.cpp
#include
void ChessBoard(int **Board,int tr,int tc,int dr,int dc,int size,int *t)
{
if(size==1)
return;
int s=size/2;
if(dr
www.eeworm.com/read/214167/15112094
h d_gqueen.h
#ifdef __BORLANDC__
// suppress the warning message about comparing signed and unsigned values
#pragma warn -8012
#endif // __BORLANDC__
#ifndef EIGHT_QUEENS_GRAPHICAL
#define EIGHT_QUEENS_GRAP
www.eeworm.com/read/206860/15287903
java chesspoint.java
public class ChessPoint
{
int x,y;
boolean 有棋子;
ChessPiece piece=null;
ChessBoard board=null;
public ChessPoint(int x,int y,boolean boo)
{
this.x=x;
this.y=y;