/
//游戏中用0表示空地,1表示人物,2表示箱子,3表示目的地,6表示围墙
//本程序由VC++6.0开发,采用了easyx函数库,请到http://www.easyx.cn/网站下载
//作者:sambrown from zzu 感谢网友:自然向日葵
/
#include <stdio.h>
#include <graphics.h>
#include <stdlib.h>
#include <conio.h>
#include <iostream>
int loop;
int x, y; //人物坐标
int win(int a[][10])
{
for(int x1 = 0; x1 < 10; x1++)
for(int y1 = 0; y1 < 10; y1++)
if(a[x1][y1] == 2) return 0; //如果还有箱子返回假
return 1; //如果没有箱子返回真
}
void find( int a[][10] )
{
for(x = 0; x < 10; x++)
for(y = 0; y < 10; y++)
if(a[x][y] == 1 || a[x][y] == 4 )
return;
}
void clearman( int i, int j )
{
i *= 40;
j *= 40;
setcolor(BLACK);
setfillstyle(BLACK);
fillcircle(i, j, 19 );
}
void clearbox( int i, int j )
{
i *= 40;
j *= 40;
i -= 20;
j -= 20;
setfillstyle(BLACK
C语言推箱子简易版VC++6.0代码
最新推荐文章于 2024-10-08 00:29:04 发布
这是一个使用VC++6.0和easyx库开发的简易推箱子游戏。游戏地图由10x10的二维数组表示,包含空地、人物、箱子、目的地和围墙。玩家通过键盘控制人物移动,当所有箱子被移到目的地时,游戏胜利。代码中包含了游戏的绘制、移动逻辑和游戏重置功能。
摘要由CSDN通过智能技术生成