使用C語言編寫貪食蛇程式原始碼
#include <windows.h>
#include <stdlib.h>
#include <time.h>
#include <stdio.h>
#include <string.h>
#include <conio.h>
#define N 21
int apple[3],num;
char score[3];
char tail[3];
void gotoxy(int x, int y) //輸出座標
{
COORD pos;
pos.X = x;
pos.Y = y;
SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE), pos);
}
void color(int b) //顏色函式
{
HANDLE hConsole = GetStdHandle((STD_OUTPUT_HANDLE)) ;
SetConsoleTextAttribute(hConsole,b) ;
}
int Block(char head[2]) //判斷出界
{
if ((head[0] < 1) || (head[0] > N) || (head[1] < 1) || (head[1] > N))
return 1;
return 0;
}
int Eat(char snake[2]) //吃了蘋果
{
if ((snake[0] == apple[0]) && (snake[1] == apple[1]))
{
apple[0] = apple[1] = apple[2] = 0;
gotoxy(N+44,10);
color(13);
printf("%d",score[0]*10);
color(11);
return 1;
}
return 0;
}
void Draw(char **snake, int len) //蛇移動
{
if (apple[2])
{
gotoxy(apple[1] * 2, apple[0]);
color(12);
printf("●");
color(11);
}
gotoxy(tail[1] * 2, tail[0]);
if (tail[2])
{
color(num);
printf("★");
color(num);
}
else
printf("■");
gotoxy(snake[0][1] * 2, snake[0][0]);
color(num);
printf("★");
color(num);
putchar('\n');
}
char** Move(char **snake, char dirx, int *len) //控制方向
{
int i, full = Eat(snake[0]);
memcpy(tail, snake[(*len)-1], 2);
for (i = (*len) - 1; i > 0; --i)
memcpy(snake[i], snake[i-1], 2);
switch (dirx)
{
case 'w': case 'W': --snake[0][0]; break;
case 's': case 'S': ++snake[0][0]; break;
case 'a': case 'A': --snake[0][1]; break;
case 'd': case 'D': ++snake[0][1]; break;
default: ;
}
if (full)
{
snake = (char **)realloc(snake, sizeof(char *) * ((*len) + 1));
snake[(*len)] = (char *)malloc(sizeof(char) * 2);
memcpy(snake[(*len)], tail, 2);
++(*len);
++score[0];
if(score[3] < 16)
++score[3];
tail[2] = 1;
}
else
tail[2] = 0;
return snake;
}
void init(char plate[N+2][N+2], char ***snake_x, int *len) //初始化
{
int i, j;
char **snake = NULL;
*len = 3;
score[0] = score[3] =3;
snake = (char **)realloc(snake, sizeof(char *) * (*len));
for (i = 0; i < *len; ++i)
snake[i] = (char *)malloc(sizeof(char) * 2);
for (i = 0; i < 3; ++i)
{
snake[i][0] = N/2 + 1;
snake[i][1] = N/2 + 1 + i;
}
for (i = 1; i <= N; ++i)
for (j = 1; j <= N; ++j)
plate[i][j] = 1;
apple[0] = rand()%N + 1; apple[1] = rand()%N + 1;
apple[2] = 1;
for (i = 0; i < N + 2; ++i)
{
gotoxy(0, i);
for (j = 0; j < N + 2; ++j)
{
switch (plate[i][j])
{
case 0:
color(12);printf("□");color(11); continue;
case 1: printf("■"); continue;
default: ;
}
}
putchar('\n');
}
for (i = 0; i < (*len); ++i)
{
gotoxy(snake[i][1] * 2, snake[i][0]);
printf("★");
}
putchar('\n');
*snake_x = snake;
}
void Manual()
{
gotoxy(N+30,2);
color(10);
printf("按 W S A D 移動方向");
gotoxy(N+30,4);
printf("按 space 鍵暫停");
gotoxy(N+30,8);
color(11);
printf("歷史最高分為: ");
color(12);
gotoxy(N+44,8);
printf("%d",score[1]*10);
color(11);
gotoxy(N+30,12);
printf("你現在得分為: 0");
}
int File_in() //取記錄的分數
{
FILE *fp;
if((fp = fopen("C:\\tcs.txt","a+")) == NULL)
{
gotoxy(N+18, N+2);
printf("檔案不能開啟\n");
exit(0);
}
if((score[1] = fgetc(fp)) != EOF);
else
score[1] = 0;
return 0;
}
int File_out() //存資料
{
FILE *fp;
if(score[1] > score[0])
{gotoxy(10,10);
color(12);
puts("闖關失敗 加油耶");
gotoxy(0,N+2);
return 0;
}
if((fp = fopen("C:\\tcs.txt","w+")) == NULL)
{
printf("檔案不能開啟\n");
exit(0);
}
if(fputc(--score[0],fp)==EOF)
printf("輸出失敗\n");
gotoxy(10,10);
color(12);
puts("恭喜您打破記錄");
gotoxy(0,N+2);
return 0;
}
void Free(char **snake, int len) //釋放空間
{
int i;
for (i = 0; i < len; ++i)
free(snake[i]);
free(snake);
}
int main(void)
{
int len;
char ch = 'g';
char a[N+2][N+2] = {{0}};
char **snake;
srand((unsigned)time(NULL));
color(11);
File_in();
init(a, &snake, &len);
Manual();
while (ch != 0x1B) // 按 ESC 結束
{
Draw(snake, len);
if (!apple[2]) {
apple[0] = rand()%N + 1;
apple[1] = rand()%N + 1;
apple[2] = 1;
num++;
if(num>8)
num=0;
}
Sleep(200-score[3]*10);
setbuf(stdin, NULL);
if (kbhit())
{
gotoxy(0, N+2);
ch = getche();
}
snake = Move(snake, ch, &len);
if (Block(snake[0])==1)
{
gotoxy(N+2, N+2);
puts("你輸了");
File_out();
Free(snake, len);
getche();
exit(0);
}
}
Free(snake, len);
exit(0);
}
相關文章
- 用C語言編寫windows服務程式C語言Windows
- C語言 編寫線段樹C語言
- C語言編寫靜態連結庫及其使用C語言
- 選擇使用c語言編寫的phalcon框架C語言框架
- 手機寫作業系統之 使用C語言編寫核心作業系統C語言
- 09. C語言內嵌彙編程式碼C語言
- 幽默:儘量用領域語言編寫程式碼
- Go 語言實戰: 編寫可維護 Go 語言程式碼建議Go
- 編寫程式碼?先熟悉一下程式語言界限吧!
- c語言if語句是如何變成彙編程式碼的?C語言
- 將你的 C 語言程式碼編譯成 .NET編譯
- 用 C 語言編寫多程式 Web 伺服器【粗暴版】Web伺服器
- C語言爬蟲程式編寫的爬取APP通用模板C語言爬蟲APP
- [譯] Go 語言實戰: 編寫可維護 Go 語言程式碼建議Go
- 【程式語言】C/C++中如何使用Lua指令碼C++指令碼
- C語言貪吃蛇原始碼C語言原始碼
- RTree原始碼——C語言實現原始碼C語言
- C語言程式碼區錯誤以及編譯過程C語言編譯
- 用C語言編寫Linux實用程式的藝術(轉)C語言Linux
- C語言簡單程式碼程式C語言
- 用C語言編寫小遊戲——“井字棋”C語言遊戲
- c語言編寫經驗逐步積累4C語言
- 用C語言編寫的公式計算器C語言公式
- C 語言程式碼總結
- C語言程式書寫規範 (轉)C語言
- 使用 Sublime Text 3 編譯 C 語言編譯
- C語言的本質(32)——C語言與彙編之C語言內聯彙編C語言
- C51-------時鐘程式(C語言編寫的微控制器時鐘)C語言
- 使用 Rust 語言編寫 Java JNI 實現RustJava
- HTML語言編寫指南HTML
- 實驗1 C語言輸入輸出和簡單程式編寫C語言
- 57段讓編譯器崩潰的C語言程式碼編譯C語言
- 聊聊C語言/C++—程式和程式語言C語言C++
- 教你在 C 語言上編寫自己的協程
- 嵌入式c語言編碼規範C語言
- 將GO編繹成JavaScript,用GO語言來寫前端程式碼GoJavaScript前端
- 編寫更好的C#程式碼C#
- 手寫程式語言-如何為 GScript 編寫標準庫