-
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
-
图标提取器
IconExtractor
提取所有的 Exe 和 DLL 图标
- 2022-05-05 06:07:55下载
- 积分:1
-
预览屏幕保护程序的程序
预览屏幕保护程序的程序-The program of previewing screen-save
- 2022-03-17 16:48:21下载
- 积分:1
-
闹钟程序,大家看看啊
闹钟程序,大家看看啊-alarm procedures, we see ah
- 2022-02-15 14:40:45下载
- 积分:1
-
一个简单的dos下记事本程序。初学者参考。简单易用。有学习价值...
一个简单的dos下记事本程序。初学者参考。简单易用。有学习价值-a simple dos procedures under the notebook. Beginners reference. Easy to use. Learning Value
- 2023-02-16 17:20:04下载
- 积分:1
-
用clistctrl作的可以对每一个表格项进行编辑的程序,涉及到很多方面的知识,...
用clistctrl作的可以对每一个表格项进行编辑的程序,涉及到很多方面的知识,-clistctrl used for the right can be a form for each item editing process, involving many aspects of knowledge, s
- 2023-01-10 15:50:04下载
- 积分:1
-
三层结构开发图书系统.适合初学者学习参考.
三层结构开发图书系统.适合初学者学习参考.-Development of circulation systems the three-tier structure. Reference for beginners to learn.
- 2022-07-13 21:22:34下载
- 积分:1
-
单纯型法。用c++编的单纯型法。
单纯型法。用c++编的单纯型法。-simple method. C series with the simple method.
- 2022-03-17 23:58:40下载
- 积分:1
-
普通函数的重载,虚函数的重栽,指向派生类对象的基类指针对重载函数的调用...
普通函数的重载,虚函数的重栽,指向派生类对象的基类指针对重载函数的调用-ordinary function overloading, the virtual function re-planting, point to objects derived category refers to the base class against heavy function call
- 2022-05-30 16:29:34下载
- 积分:1
-
activation and NumLock key CapsLoc
激活CapsLoc和NumLock键-activation and NumLock key CapsLoc
- 2023-05-17 08:15:04下载
- 积分:1