-
C语言实现贪吃蛇
//: Snake.c
/* * * * * * * * * * * * * * * * * * * * * * *
// Project: RedSnake(贪吃蛇)
// Author: Problue
// Version: 1.0
// Date: 19:55 2012-10-29
* * * * * * * * * * * * * * * * * * * * * * */
#include
#include
#include
#include "pcc32.h"
// 定义地图的尺寸及坐标
#define MAP_WIDTH 32 // 地图宽度
#define MAP_HEIGHT 32 // 地图高度
#define OFFSET_X 1 // 地图左右的边距
#define OFFSET_Y 1 // 地图上下的边距
#define TOTAL_WIDTH (MAP_WIDTH + OFFSET_X * 2) // 窗口宽度
#define TOTAL_HEIGHT (MAP_HEIGHT + OFFSET_Y * 2) // 窗口高度
#define GotoMap(x, y) gotoTextPos((x) * 2, (y))
// 定义地图方格的状态,分别为: 空格、蛇头、蛇身、蛇尾、食物
#define BS_SPACE 0
#define BS_SHEAD 1
#define BS_SBODY 2
#define BS_STAIL 3
#define BS_FOOD 4
// 蛇默认长度
#define SNAKE_MIN_LEN 5
// 定义蛇运动方向: 上、下、左、右
#define DIR_UP 1
#define DIR_DOWN 2
#define DIR_LEFT 3
- 2022-05-15 19:59:34下载
- 积分:1
-
射线C #码跟踪,并支持四方球
Ray tracing of C # code, and support the sphere of the Quartet-Ray tracing of C# code, and support the sphere of the Quartet
- 2023-02-24 18:05:04下载
- 积分:1
-
TDIUHC124数据手册,官网都下不到的!
TDIUHC124数据手册,官网都下不到的!-TDIUHC124 Data Sheet, official website are not under the!
- 2023-03-10 02:30:03下载
- 积分:1
-
STM32 LED工程模版
这是一个已经搭建好的STM32 LED工程模版,大家可以根据自己的需要去修改这个模版,而不在需要添加任何官方库文件、头文件等,这些文件我已经添加好进去了。而且做了多次实验,完全可以用。
- 2022-05-25 16:47:16下载
- 积分:1
-
图书信息检索的小程序
图书信息检索的小程序-Book Information Retrieval small program
- 2022-05-29 14:44:03下载
- 积分:1
-
Arabic characters will be converted into, for example: 1.56089 million turn into...
将阿拉伯数字转成中文字,例如:1560890 转成 "壹佰伍拾陆万零捌佰玖拾"。-Arabic characters will be converted into, for example: 1.56089 million turn into a " zero-Ba rented furnishings Fifty thousand nine hundred land."
- 2022-08-20 02:20:17下载
- 积分:1
-
dlgview,VC++ 6
DlgView,vc++6.0
- 2022-10-18 08:35:03下载
- 积分:1
-
VC++ 模拟生成彩票号码的简单程序源代码
VC++ 模拟生成彩票号码的简单程序源代码-VC++ simulation generated a simple numbers lottery source code
- 2022-04-07 14:34:35下载
- 积分:1
-
功能:返回自格林威治时间1970年1月1日午夜(00:00:00)开始所经历的秒数,没有错误返回值...
功能:返回自格林威治时间1970年1月1日午夜(00:00:00)开始所经历的秒数,没有错误返回值-function : to return to Greenwich time since January 1, 1970 at midnight (00:00:00) experienced in seconds, no error return values
- 2022-12-27 07:55:03下载
- 积分:1
-
C语言工具集合,集成了超多C语言的工具源代码,像一些库函数的实现...
C语言工具集合,集成了超多C语言的工具源代码,像一些库函数的实现-C language tools to gather more integrated C-language source code for a tool, as some of the library functions to achieve
- 2022-02-05 10:08:46下载
- 积分:1