DOS簡(jiǎn)易版C語(yǔ)言貪吃蛇
本文實(shí)例為大家分享了C語(yǔ)言實(shí)現(xiàn)貪吃蛇的具體代碼,供大家參考,具體內(nèi)容如下
#include <stdio.h> #include <stdlib.h> #include <conio.h> #include <time.h> #include <windows.h> #define WALL_LENGTH 22 #define LEFT 0x4b #define RIGHT 0x4d #define DOWN 0x50 #define UP 0x48 struct Snakes{ int x; int y; struct Snakes *prev; struct Snakes *next; }; struct Food{ int x; int y; }; struct Snakes *header; struct Snakes *tailer; struct Food *food; int wall[WALL_LENGTH][WALL_LENGTH]; int direction = RIGHT; /**/ void init(); void draw(); void move(); void doMove(int x1, int y1); void eat(); void keydown(); void foods(); int isOver(); int isDrawSnake(int x, int y); int isDrawFood(int x, int y); int main(){ init(); while(1){ if(isOver()){ break; } move(); eat(); draw(); _sleep( 100 ); keydown(); } printf("GAME OVER!"); system("pause"); } void init(){ int y, x; for(y=0; y < WALL_LENGTH; y++){ for(x=0; x < WALL_LENGTH; x++){ if(y == 0 || y == WALL_LENGTH - 1 || x == 0 || x == WALL_LENGTH - 1){ wall[y][x] = 1; } } } header=(struct Snakes *)malloc(sizeof(struct Snakes)); header->x=10; header->y=10; header->prev=NULL; tailer=(struct Snakes *)malloc(sizeof(struct Snakes)); tailer->x=9; tailer->y=10; tailer->next=NULL; tailer->prev=header; header->next=tailer; foods(); } void draw(){ int y, x; system("cls"); for(y=0; y < WALL_LENGTH; y++){ for(x=0; x < WALL_LENGTH; x++){ if(wall[y][x] == 1){ printf("[]"); }else if(isDrawSnake(x, y)){ printf("[]"); }else if(isDrawFood(x, y)){ printf("()"); }else{ printf(" "); } } printf("\n"); } } void move(){ switch(direction){ case LEFT : doMove(-1, 0); break; case RIGHT : doMove(1, 0); break; case UP : doMove(0, -1); break; case DOWN : doMove(0, 1); break; } } void doMove(int x1, int y1){ struct Snakes *temp_tailer = tailer->prev; tailer->x=header->x + x1; tailer->y=header->y + y1; tailer->next=header; tailer->prev->next = NULL; tailer->prev = NULL; header->prev=tailer; header = tailer; tailer = temp_tailer; } void eat(){ if(header->x == food->x && header->y == food->y){ int x1=0, y1 =0; struct Snakes *temp_tailer = tailer; tailer=(struct Snakes *)malloc(sizeof(struct Snakes)); switch(direction){ case LEFT : x1 = -1; y1 = 0; break; case RIGHT : x1 = 1; y1 = 0; break; case UP : x1 = 0; y1 = -1; break; case DOWN : x1 = 0; y1 = 1; break; } tailer->x=temp_tailer->x + x1; tailer->y=temp_tailer->y + y1; tailer->next=NULL; tailer->prev=temp_tailer; temp_tailer->next = tailer; foods(); } } void foods(){ int y,x; struct Snakes *temp = header; _sleep(20); srand((unsigned)time(NULL)); y=rand()%WALL_LENGTH; x=rand()%WALL_LENGTH; if(y == 0 || y == WALL_LENGTH - 1 || x == 0 || x == WALL_LENGTH - 1 ){ return foods(); } do{ if(temp->x == x && temp->y == y){ return foods(); } temp = temp->next; }while(temp != NULL); if(food == NULL){ food=(struct Food *)malloc(sizeof(struct Food)); } food->x = x; food->y = y; } void keydown(){ char keycode; if(_kbhit()&&(keycode =_getch())) { switch(keycode) { case LEFT: if(RIGHT!=direction) { direction=LEFT; // move(); // draw(); } break; case RIGHT: if(LEFT!=direction) { direction=RIGHT; // move(); // draw(); } break; case UP: if(DOWN!=direction) { direction=UP; // move(); // draw(); } break; case DOWN: if(UP!=direction){ direction=DOWN; // move(); // draw(); } break; } } } int isDrawSnake(int x, int y){ struct Snakes *temp = header; do{ if(temp->x == x && temp->y == y){ return 1; } temp = temp->next; }while(temp != NULL); return 0; } int isDrawFood(int x, int y){ if(food->x == x && food->y == y){ return 1; } return 0; } int isOver(){ int x1=0, y1 =0; switch(direction){ case LEFT : x1 = -1; y1 = 0; break; case RIGHT : x1 = 1; y1 = 0; break; case UP : x1 = 0; y1 = -1; break; case DOWN : x1 = 0; y1 = 1; break; } if(header->x + x1 <= 0 || header->x + x1 >= WALL_LENGTH - 1 || header->y + y1 <= 0 || header->y + y1 >= WALL_LENGTH - 1){ return 1; } return 0; }
好久沒(méi)寫過(guò)C語(yǔ)言了,隨便寫個(gè)貪吃蛇玩一玩,BUG不少,當(dāng)記錄了。
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持我們。
上一篇:C語(yǔ)言實(shí)現(xiàn)單詞助手功能
欄 目:C語(yǔ)言
下一篇:C語(yǔ)言實(shí)現(xiàn)萬(wàn)年歷
本文標(biāo)題:DOS簡(jiǎn)易版C語(yǔ)言貪吃蛇
本文地址:http://mengdiqiu.com.cn/a1/Cyuyan/147.html
您可能感興趣的文章
- 01-10C++ 模版雙向鏈表的實(shí)現(xiàn)詳解
- 01-10哈希表實(shí)驗(yàn)C語(yǔ)言版實(shí)現(xiàn)
- 01-10用位圖排序無(wú)重復(fù)數(shù)據(jù)集實(shí)例代碼(C++版)
- 01-10c語(yǔ)言版本二叉樹基本操作示例(先序 遞歸 非遞歸)
- 01-10簡(jiǎn)易Dota改鍵外掛程序制作
- 01-10判斷本機(jī)office安裝版本的方法分享
- 01-10c語(yǔ)言網(wǎng)絡(luò)編程-標(biāo)準(zhǔn)步驟(改進(jìn)版)
- 01-10c++版線程池和任務(wù)池示例
- 01-10Recommended C Style and Coding Standards中文翻譯版第1/3頁(yè)
- 01-10貪吃蛇游戲C++命令行版實(shí)例代碼


閱讀排行
- 1C語(yǔ)言 while語(yǔ)句的用法詳解
- 2java 實(shí)現(xiàn)簡(jiǎn)單圣誕樹的示例代碼(圣誕
- 3利用C語(yǔ)言實(shí)現(xiàn)“百馬百擔(dān)”問(wèn)題方法
- 4C語(yǔ)言中計(jì)算正弦的相關(guān)函數(shù)總結(jié)
- 5c語(yǔ)言計(jì)算三角形面積代碼
- 6什么是 WSH(腳本宿主)的詳細(xì)解釋
- 7C++ 中隨機(jī)函數(shù)random函數(shù)的使用方法
- 8正則表達(dá)式匹配各種特殊字符
- 9C語(yǔ)言十進(jìn)制轉(zhuǎn)二進(jìn)制代碼實(shí)例
- 10C語(yǔ)言查找數(shù)組里數(shù)字重復(fù)次數(shù)的方法
本欄相關(guān)
- 04-02c語(yǔ)言函數(shù)調(diào)用后清空內(nèi)存 c語(yǔ)言調(diào)用
- 04-02func函數(shù)+在C語(yǔ)言 func函數(shù)在c語(yǔ)言中
- 04-02c語(yǔ)言的正則匹配函數(shù) c語(yǔ)言正則表達(dá)
- 04-02c語(yǔ)言用函數(shù)寫分段 用c語(yǔ)言表示分段
- 04-02c語(yǔ)言中對(duì)數(shù)函數(shù)的表達(dá)式 c語(yǔ)言中對(duì)
- 04-02c語(yǔ)言編寫函數(shù)冒泡排序 c語(yǔ)言冒泡排
- 04-02c語(yǔ)言沒(méi)有round函數(shù) round c語(yǔ)言
- 04-02c語(yǔ)言分段函數(shù)怎么求 用c語(yǔ)言求分段
- 04-02C語(yǔ)言中怎么打出三角函數(shù) c語(yǔ)言中怎
- 04-02c語(yǔ)言調(diào)用函數(shù)求fibo C語(yǔ)言調(diào)用函數(shù)求
隨機(jī)閱讀
- 01-10C#中split用法實(shí)例總結(jié)
- 08-05DEDE織夢(mèng)data目錄下的sessions文件夾有什
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 01-10delphi制作wav文件的方法
- 01-11ajax實(shí)現(xiàn)頁(yè)面的局部加載
- 08-05dedecms(織夢(mèng))副欄目數(shù)量限制代碼修改
- 04-02jquery與jsp,用jquery
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 01-10使用C語(yǔ)言求解撲克牌的順子及n個(gè)骰子
- 08-05織夢(mèng)dedecms什么時(shí)候用欄目交叉功能?