资源简介
俄罗斯方块AI的C代码和设计文档
(包含调试信息的版本与不包含调试信息的版本)
代码片段和文件信息
// Tetris.cpp : 定义控制台应用程序的入口点。
//
//#include “stdafx.h“
#include “string.h“
#include “stdlib.h“
#include “stdio.h“
#include “time.h“
int const LINE=17;
int const WIDTH=10;
int HIGHLIMIT=6;
int SCORE;
typedef struct Status{
int xyOffset[4][2]; // block body based on base point xy
int curDrc; //direction
int side; // the leftest point x
Status *next;
}Status;
typedef struct Factor{
Status *status; //status of Block
int faces;
int fullLine;
int emptyCells;
int hight;
int realX; //coordinate of Block
int realY; //coordinate of Block
}Factor;
int Board[LINE+1][WIDTH];// Game board 17line*10width
int TempBoard[LINE+1][WIDTH];//Used to get board Status
Status * Block[8]; // 7 blocksblock list
//advanced array
int const AdvLength=20;// length of the array
int AdvBlocks[AdvLength]; //advanced blocks
int CurIndex; //current index of in the array
void PrintTempBoard()
{
//int minLine=GetTempBoard();
for(int i=0;i for(int j=0;j printf(“%c“TempBoard[i][j]?‘x‘:‘-‘);
printf(“\n“);
}
void PrintBoard()
{
for(int y=0;y for(int x=0;x printf(“%c“Board[LINE-y-1][x]?‘X‘:‘-‘);
}
void PrintBlock(Status block)
{
int xy[6][6]={0};
for(int i=0;i<4;i++)
{
printf(“(%d%d)\t“block.xyOffset[i][0]block.xyOffset[i][1]);
int x=block.xyOffset[i][0]+2;
int y=block.xyOffset[i][1]+2;
xy[x][y]=1;
}
printf(“\n“);
for(int i=5;i>=0;i--printf(“\n“))
for(int j=0;j<6;j++)
{
printf(“%c“xy[j][i]?‘X‘:‘-‘);
}
printf(“\n\n“);
}
/*
init the AdvBlocks array
*/
int containBlock(int block)
{
for(int i=0;i if(AdvBlocks[i]==block) return 1;
return 0;
}
void initAdvBlocks()
{
srand(time(NULL));
for(int i=0;i AdvBlocks[i]=rand()%7+1;
}
/*
get a new block
*/
int getNextBlock()
{
int temp=AdvBlocks[CurIndex];
//AdvBlocks[CurIndex]= containBlock(2)?rand()%7+1:2;
AdvBlocks[CurIndex]= rand()%7+1;
CurIndex=(CurIndex+1)%AdvLength;
//return rand()%2?5:7;
return temp;
}
/*
preview the next block
*/
int viewNextBlock()
{
return AdvBlocks[(CurIndex+1)%AdvLength];
}
/*
determine whether a cell is inside the board (Board / TempBoard)
*/
int insideBoard(int yint x)
{
return (y>=0 && y=0&& x }
/*
Get the TempBoard which is used to specify the empty space where the block can be put.
*/
void GetTempBoard()
{
memset(TempBoard1sizeof(TempBoard));
for(int x=0;x {
for(int y=LINE-1;y>=0;y--)
{
if(Board[y][x]) break;
TempBoard[y][x]=0;
}
}
//PrintTempBoard();
}
/*
Determine whether the block is fit into the TempBoard.
*/
int fitIn(Status * block int x int y)
{
for(int i=0;i<4;i++)
{
int realX=x+block->xyOffset[i][0];
int realY=y+block->xyOffset[i][1];
if(!insideBoard(realYreal
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 13335 2009-09-23 14:16 Tetris_Debug.cpp
文件 182390 2009-06-07 16:37 Design specification.docx
文件 12458 2009-06-01 16:43 Tetris_Sec.cpp
----------- --------- ---------- ----- ----
208183 3
- 上一篇:教学计划编制问题--课程管理
- 下一篇:UML案例:BBS系统一
相关资源
- KPCA-故障检测代码已优化
- 学生成绩管理系统制作教程(含代码
- 基于qt的音乐播放器源代码
- 人工智能实验报告 五子棋游戏
- 语法分析的源代码文件与相关文件
- qt写的俄罗斯方块完整代码
- linux VFS概述以及内核源代码分析
- LABVIEW心率脉搏采集处理代码
- 身高体重 贝叶斯分类 判别男女
- 编译原理课程设计之编译器完整代码
- 以词法分析和语法分析部分的上机结
- Kinect俄罗斯方块源代码及项目
- 编译原理实验 中间代码生成
- 监护仪界面LINUX代码
- 实时录音并显示波形.zip
- 源代码.rar
- 电子密码锁verilog语言程序代码.zip
- 课程设计题十二:电子密码锁.zip
- 实验三 TCP Tahoe与Reno 运行机制对比分
- 空间分析的源代码
- 基于QT实现俄罗斯方块游戏。代码只有
- 基于51单片机水量检测c代码+proteus仿真
- 语义分析c源代码
- 等值线生成算法代码和
- memcached1.4.5源代码
- 课程设计——路由与交换
- 基于opencv的blob分析代码
- 100个VHDL
- 实验二 实现一门语言的词法分析器
- 音频信号分析仪(快速傅里叶变换)
评论
共有 条评论