91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C語言怎么實現貪吃蛇小游戲程序

發布時間:2021-08-27 18:22:43 來源:億速云 閱讀:136 作者:chen 欄目:編程語言

這篇文章主要介紹“C語言怎么實現貪吃蛇小游戲程序”,在日常操作中,相信很多人在C語言怎么實現貪吃蛇小游戲程序問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”C語言怎么實現貪吃蛇小游戲程序”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

代碼如下:

#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; }

到此,關于“C語言怎么實現貪吃蛇小游戲程序”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

东台市| 诏安县| 惠东县| 凤凰县| 东明县| 玉树县| 溆浦县| 互助| 岳普湖县| 当雄县| 印江| 信丰县| 文山县| 大城县| 博罗县| 华宁县| 房产| 武强县| 洮南市| 五华县| 淳化县| 延长县| 绿春县| 凯里市| 灵川县| 习水县| 阳信县| 阿荣旗| 永寿县| 汝州市| 乌什县| 米易县| 双鸭山市| 东城区| 台前县| 奈曼旗| 江门市| 海兴县| 沭阳县| 兴仁县| 元谋县|