-
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
-
OpenCV+MFC实现图片中两直线间测距
OpenCV+MFC在简单界面窗口打开图片,并且检测出图片中画的的两条之间的距离,该程序虽小但是五脏俱全,是一个小项目所具备的所以,程序实现,界面编程,可以在这个基础上做扩展继续进行其他的项目开发
- 2022-03-10 00:12:49下载
- 积分:1
-
matlab中极坐标函数的改进,坐标轴刻度可以为负数,输入参数见注释,有问题email联系,可在matlab命令行中直接运行,如:
my_polar2([0...
matlab中极坐标函数的改进,坐标轴刻度可以为负数,输入参数见注释,有问题email联系,可在matlab命令行中直接运行,如:
my_polar2([0,20,30]*pi/180,[-10,0,10], -r ,-20,30)-Matlab polar coordinates function improved, axes calibration can be negative, the input parameters, see Notes email problems can be contacted in Matlab command line direct operations, such as : my_polar2 ([0,20,30]* pi/180 [-10,0,10],- r,-20,30)
- 2022-02-04 23:29:00下载
- 积分:1
-
H.264 Source code, the newest H.264 standard, Good stuff.
h.264的源码,针对最新的h.264标准,值得一看。-H.264 Source code, the newest H.264 standard, Good stuff.
- 2022-08-08 08:17:44下载
- 积分:1
-
Self deleting executable for Win9x/WinNT (all versions). This source file must b...
Self deleting executable for Win9x/WinNT (all versions). This source file must be compiled with /GZ turned OFF (basically, disable run-time stack checks)
- 2022-04-16 12:31:41下载
- 积分:1
-
Simple Receipt Print
日期为自动填充
- 2023-02-04 00:40:04下载
- 积分:1
-
msp430四轴飞行器代码
这个是将51的代码更改为msp430可用的四轴飞行器代码,具体参数还是要是飞行器自行修改
- 2023-06-13 10:30:03下载
- 积分:1
-
该源码是关于键盘扫描的,以及能实现简单的计算功能。和数字移动,消隐清零。功能较多...
该源码是关于键盘扫描的,以及能实现简单的计算功能。和数字移动,消隐清零。功能较多-Shell Tai-ying, tungsten Did Shouson quilt captured扫mirror cavity can , loved wife of mother
- 2022-01-26 06:45:27下载
- 积分:1
-
a very simple seats, generator Rafah, the Rafah is very simple,
一个非常简单的座位号生成器拉,非常简单的拉,-a very simple seats, generator Rafah, the Rafah is very simple,
- 2022-04-02 01:00:17下载
- 积分:1
-
学校学分计算器,为学校学分计算提供方便,有向导,自动计算等功能...
学校学分计算器,为学校学分计算提供方便,有向导,自动计算等功能-school credits calculator for calculating school credits provide a convenient, a wizard, automatic calculation capabilities
- 2022-03-14 10:25:50下载
- 积分:1