温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

C语言如何实现简单的贪吃蛇游戏

发布时间:2023-01-13 09:45:24 来源:亿速云 阅读:118 作者:iii 栏目:开发技术

本篇内容主要讲解“C语言如何实现简单的贪吃蛇游戏”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C语言如何实现简单的贪吃蛇游戏”吧!

运行效果

C语言如何实现简单的贪吃蛇游戏

代码

#include <Windows.h>
#include <stdio.h>
#include <conio.h>
#include <time.h>
#define PANIC(err) (fprintf(stderr,"PANIC Line %d : %s",__LINE__,err),exit(-1),1)
#define PANICIFNULL(EXP) ((EXP)==NULL && PANIC("NULL"))
typedef enum { EMPTY=0, WALL, BODY, FOOD } MAP;
typedef int POSITION;
struct { int color; const char* shape; } UI[] = {
	{2,"■"},{4,"□"},{6,"★"},{4,"●"}
};
struct {
	int WIDTH, HEIGHT, direction, delay;
	MAP* map;
	POSITION* body, head, tail, len;
} C;
void initConsole(int width, int height) {
	char cmd[100];
	sprintf_s(cmd,100, "mode con cols=%d lines=%d && title C语言贪吃蛇 By dreamer2q %s", width, height,__DATE__);
	system(cmd);
	HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
	CONSOLE_CURSOR_INFO cur_info;
	GetConsoleCursorInfo(handle, &cur_info);
	cur_info.bVisible = FALSE;
	SetConsoleCursorInfo(handle, &cur_info);
}
void updatePosition(POSITION pos) {
	HANDLE handle = GetStdHandle(STD_OUTPUT_HANDLE);
	COORD coord = { (pos % (C.WIDTH)) * 2 ,pos / (C.WIDTH) };
	SetConsoleCursorPosition(handle, coord);
	SetConsoleTextAttribute(handle, UI[C.map[pos]].color);
	printf("%s", UI[C.map[pos]].shape);
}
MAP food(int t) {
	POSITION pos = (rand() % ((C.WIDTH - 2) * (C.HEIGHT - 2))) + C.WIDTH + 1;
	if (C.map[pos]) return food(t);
	else return  (C.map[pos] = FOOD) ? updatePosition(pos), BODY : BODY;
}
int init() {
	C.WIDTH = C.HEIGHT = 30;
	initConsole(C.WIDTH * 2, C.HEIGHT);
	PANICIFNULL(C.map = (MAP*)malloc((C.WIDTH) * (C.HEIGHT) * sizeof(MAP)));
	PANICIFNULL(C.body = (POSITION*)malloc(C.WIDTH * C.HEIGHT * sizeof(POSITION)));
	C.head = (C.len = 3) - 1;
	C.direction = (C.tail = 0) + 1;
	C.delay = -150;
	memset(C.map, EMPTY, (C.WIDTH) * (C.HEIGHT) * sizeof(MAP));
	for (int i = 0; i < (C.WIDTH) * (C.HEIGHT); i++) {
		i < C.WIDTH && (C.map[i] = C.map[C.WIDTH * (C.HEIGHT - 1) + i] = WALL);
		i < C.HEIGHT && (C.map[C.WIDTH * i] = C.map[C.WIDTH * i + C.WIDTH - 1] = WALL);
		i < C.len && (C.map[C.body[i] = C.WIDTH * C.HEIGHT / 2 + C.WIDTH / 2 - 1 + i] = BODY);
		updatePosition(i);
	}
	srand(time(NULL));
	return food(0);
}
int Run(int shit) {
	int prv = 77;
	while (1) {
		if (_kbhit()) {
			int t = _getch();
			if ((prv + t) == 152)continue;
			switch (t) {
			case 72:C.direction = -C.WIDTH; break;
			case 80:C.direction = C.WIDTH; break;
			case 75:C.direction = -1; break;
			case 77:C.direction = 1; break;
			case ' ':C.delay = -C.delay; break;
			default:continue;
			}
			prv = t;
		}
#define INC(p) (((p)+1)%(C.WIDTH*C.HEIGHT))
		if (C.delay > 0) Sleep(C.delay);
		else continue;
		switch (C.map[C.body[INC(C.head)] = C.body[C.head] + C.direction]) {
		case FOOD:food(C.len = -C.len - 1);
		case EMPTY:
			C.map[C.body[C.head = INC(C.head)]] = BODY;
			updatePosition(C.body[C.head]);
			if (C.len > 0) updatePosition((C.map[C.body[C.tail]] = EMPTY) ? BODY : C.body[C.tail]), C.tail = INC(C.tail);
			else C.len = -C.len;
			break;
		case WALL:case BODY:
			return -1;//dead
		}
	}
}
int main() {
	while (1) {
		initConsole(25, 10);
		printf("\n\tC语言贪吃蛇\n\n    1. 开始游戏\n    2. 关于\n    q. 退出\n%");
		switch (_getch()) {
		case 'q':return 0;
		case '2':MessageBoxA(GetConsoleWindow(), MB_OK|MB_ICONASTERISK); continue;
		case '1':Run(init());
			MessageBoxA(GetConsoleWindow(),  "SHIT", MB_OK | MB_ICONERROR);
		}
	}
}

到此,相信大家对“C语言如何实现简单的贪吃蛇游戏”有了更深的了解,不妨来实际操作一番吧!这里是亿速云网站,更多相关内容可以进入相关频道进行查询,关注我们,继续学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI