C语言实现贪吃蛇代码

时间:2022-11-23 14:52:49

本文实例为大家分享了C语言实现贪吃蛇代码的具体代码,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
#include"stdafx.h"
#include<stdio.h>
#include<time.h>
#include<windows.h>
#include<stdlib.h>
#include<conio.h>
 
#define U 1
#define D 2
#define L 3
#define R 4      //蛇的状态 U:上 D:下 L:左 R:右
typedef struct snake    //蛇身的一个节点
{
 int x;      //节点的x坐标
 int y;      //节点的y坐标
 struct snake *next;   //蛇身的下一个节点
 }snake;
 int score=0,add=10;    //总得分和每吃一次食物的得分
 int highscore=0;     //最高分
 int status,sleeptime=200;  //蛇前进状态,每次运行的时间间隔
 snake *head,*food;    //蛇头指针,食物指针
 snake *q;      //遍历蛇时用的指针
 int endgamestatus=0;    //游戏结束时的状态
 HANDLE hOut;      //控制台句柄
 void gotoxy(int x,int y);
 int color(int c);
 void printsnake();
 void wlcome();
 void createmap();
 void scoreandtips();
 void initsnake();
 void createfood();
 int biteself();
 void cantcrosswall();
 void speedup();
 void speeddown();
 void snakemove();
 void keyboardcontrol();
 void lostdraw();
 void endgame();
 void choose();
 void file_out();
 void file_in();
 void explation();
 main()
 {
 system("mode con cols=100 lines=30");
 printsnake();
 wlcome();
 file_out();
 keyboardcontrol();
 endgame();
 }
 void gotoxy(int x,int y)//设置光标位置
 {COORD c;
 c.X=x;
 c.Y=y;
 SetConsoleCursorPosition(GetStdHandle(STD_OUTPUT_HANDLE),c); //定位光标的位置
 }
 int color(int c)//设置颜色
 {
 SetConsoleTextAttribute(GetStdHandle(STD_OUTPUT_HANDLE),c);
 return 0;
 }
 void printsnake()//打印字符蛇
 {
 gotoxy(2,5);
 color(3);
 printf("姓名:张小艾");
 
 gotoxy(2,6);
 color(3);
 printf("学号:1910101099");
 
 gotoxy(35,1);
 color(6);
 printf("/^\\/^\\");
 
 gotoxy(34,2);
 printf("|_| o|");
 
 gotoxy(33,2);
 color(2);
 printf("_");
 
 gotoxy(25,3);
 color(12);
 printf("\\/");
 
 gotoxy(31,3);
 color(2);
 printf("/");
 
 gotoxy(37,3);
 color(6);
 printf("\\_/");
 
 gotoxy(41,3);
 color(10);
 printf(" \\");
 
 gotoxy(26,4);
 color(12);
 printf("\\____");
 
 gotoxy(32,4);
 printf("_________");
 
 gotoxy(31,4);
 color(2);
 printf("|");
 
 gotoxy(43,4);
 color(10);
 printf("\\");
 
 gotoxy(32,5);
 color(2);
 printf("\\_______");
 
 gotoxy(44,5);
 color(10);
 printf("\\");
 
 gotoxy(39,6);
 printf("| |    \\");
 
 gotoxy(38,7);
 printf("/ /    \\");
 
 gotoxy(37,8);
 printf("/ /    \\ \\");
 
 gotoxy(35,9);
 printf("/ /    \\ \\");
 
 gotoxy(34,10);
 printf(" / /     \\ \\");
 
 gotoxy(33,11);
 printf("/ /  _----_  \\ \\");
 
 gotoxy(32,12);
 printf("/ /   _-~ ~-_  | |");
 
 gotoxy(31,13);
 printf("(  (  _-~ _--_ ~-_  _/ |");
 
 gotoxy(32,14);
 printf("\\ ~-____-~ _-~ ~-_ ~-_-~ /");
 
 gotoxy(33,15);
 printf("~-_   _-~  ~-_  _-~");
 
 gotoxy(35,16);
 printf("~--____-~    ~-___-~");
 }
 
 void wlcome()//欢迎界面
 {int n;
 int i,j=1;
 gotoxy(43,18);
 color(11);
 printf("贪吃蛇大作战");
 color(14);
 for(i=20;i<=26;i++)
 {
  for(j=27;j<=74;j++)
  {
  gotoxy(j,i);
  if(i==20||i==26)
  {
  printf("-");
 }
 else if(j==27||j==74)
 {
 printf("|");
 }
 }
 }
 color(12);
 gotoxy(35,22);
 printf("1.开始游戏");
 gotoxy(55,22);
 printf("2.游戏说明");
 gotoxy(35,24);
 printf("3.退出游戏");
 gotoxy(29,27);
 color(3);
 printf("请选择1 2 3\n");
 color(14);
 scanf("%d",&n);
 switch(n)
 {
 case 1:
 system("cls");//清屏
 createmap();
 initsnake();
 createfood();
 keyboardcontrol();
 break;
 case 2:
 explation();
 break;
 break;
 case 3:
  exit(0);
 break;
 }
 }
void createmap()//创建地图
{
 int i,j;
 for(i=0;i<58;i+=2)
 {
 gotoxy(i,0);
 color(5);
  printf("□");
  gotoxy(i,26);
 printf("□");
 }
 for(i=0;i<26;i++)
 {
 gotoxy(0,i);
  printf("□");
  gotoxy(56,i);
 printf("□");
 }
 for(i=2;i<56;i+=2)
 {
 for(j=1;j<26;j++)
 {
 gotoxy(i,j);
  color(3);
  printf("■\n\n");
 }
 
 }
}
 void scoreandtips()//游戏界面右侧的得分和小提示
 {
 file_out();
 gotoxy(64,4);
 color(11);
 printf("*最高纪录*: %d",highscore);
 gotoxy(64,8);
 color(14);
 printf("得分: %d ",score);
 color(13);
 gotoxy(73,11);
 printf("小提示");
 gotoxy(60,13);
 color(6);
 printf("+---------------------+");
 gotoxy(60,25);
 printf("+---------------------+");
 color(3);
 gotoxy(64,14);
 printf("每个食物得分:%d分",add);
 gotoxy(64,16);
 printf("不能穿墙,不能咬到自己");
 gotoxy(64,18);
 printf("用↑↓←→分别控制蛇的移动");
 gotoxy(64,20);
 printf("F1为加速,F2为减速");
 gotoxy(64,22);
 printf("space: 暂停游戏");
 gotoxy(64,24);
 printf("ESC:退出游戏");
}
void file_out()//打开文件记录最高分
{
 FILE *fp;
 fp=fopen("save.txt","a+");
 fscanf(fp,"%d",&highscore);
 fclose(fp);
 }
 void initsnake()
 {
 snake *tail;
 int i;
 tail=(snake*)malloc(sizeof(snake));
 tail->x=24;
 tail->y=5;
 tail->next=NULL;
 for(i=1;i<=4;i++)
 {
 head=(snake*)malloc(sizeof(snake));
 head->next=tail;
 head->x=24+2*i;
 head->y=5;
 tail=head;
 }
 while(tail!=NULL)
 {gotoxy(tail->x,tail->y);
 color(14);
 printf("★");     //蛇身由★组成
 tail=tail->next;
 }
}
void createfood()//随机出现食物
{
 snake *food_1;
 srand((unsigned)time(NULL));
 food_1=(snake*)malloc(sizeof(snake));
 while((food_1->x%2!=0))
 {
  food_1->x=rand()%52+2;
 }
 food_1->y=rand()%24+1;
 q=head;
 while(q->next==NULL)
 {
  if(q->x==food_1->x&&q->y==food_1->y)
  {
  free(food_1);
  createfood();
 }
 q=q->next;
 }
 gotoxy(food_1->x,food_1->y);
 food=food_1;
 color(12);
 printf("@");
}
int biteself()
{
 snake *self;    //定义self为蛇身上除蛇头以外的节点
 self=head->next;
 while(self!=NULL)
 {
 if(self->x==head->x&&self->y==head->y)
 {
 return 1;
 }
 self=self->next;
 }
 return 0;
 }
 
 void cantcrosswall()
{
 if(head->x==0||head->x==56||head->y==0||head->y==26)
 {
 endgamestatus=1;
 endgame();
 }
 }
 void speedup()//加速
{
 if(sleeptime>=50)
 {
 sleeptime=sleeptime-10;
 add=add+2;
 }
}
 
void speeddown()//减速
{
 if(sleeptime<350)
 {
 sleeptime=sleeptime+30;
 add=add-2;
 if(sleeptime==350)
 {
 add=1;
 }
 }
}
 
 void snakemove()//控制方向
{
 snake *nexthead;
 cantcrosswall();
 nexthead=(snake*)malloc(sizeof(snake));
 if(status==U)//上
 {
 nexthead->x=head->x;   //向上前进时,x不变,y-1
 nexthead->y=head->y-1;
 nexthead->next=head;
 head=nexthead;
 q=head;
 //如果下一个位置上有食物,下一个位置的坐标和食物坐标相同
 if(nexthead->x==food->x&&nexthead->y==food->y)
 {
 while(q!=NULL)
 {
 gotoxy(q->x,q->y);
 color(14);
 printf("★");
 q=q->next;
 }
 score=score+add;
 speedup();
 createfood();
 }
 else
 {
 while(q->next->next!=NULL)//如果没有遇见食物
  {
   gotoxy(q->x,q->y);
 color(14);
 printf("★");
 q=q->next;
  }
 //经过上面的循环 ,q指向蛇尾,蛇尾的下一步就是蛇走过去的位置
  gotoxy(q->next->x,q->next->y);
  color(3);
  printf("■");//恢复走过的位置
  free(q->next);
  q->next=NULL;
 }
 
 }
 if(status==D)
 {
  nexthead->x=head->x;   //向下前进时,x不变,y+1
 nexthead->y=head->y+1;
 nexthead->next=head;
 head=nexthead;
 q=head;
 //如果下一个位置上有食物,下一个位置的坐标和食物坐标相同
 if(nexthead->x==food->x&&nexthead->y==food->y)
 {
 while(q!=NULL)
 {
 gotoxy(q->x,q->y);
 color(14);
 printf("★");
 q=q->next;
 }
 score=score+add;
 speedup();
 createfood();
 }
 else
 {
 while(q->next->next!=NULL)//如果没有遇见食物
  {
   gotoxy(q->x,q->y);
 color(14);
 printf("★");
 q=q->next;
  }
 //经过上面的循环 ,q指向蛇尾,蛇尾的下一步就是蛇走过去的位置
  gotoxy(q->next->x,q->next->y);
  color(3);
  printf("■");//恢复走过的位置
  free(q->next);
  q->next=NULL;
 }
 }
 if(status==L)//左
 {
  nexthead->x=head->x-2;   //向左前进时,x不变,y+1
 nexthead->y=head->y;
 nexthead->next=head;
 head=nexthead;
 q=head;
 //如果下一个位置上有食物,下一个位置的坐标和食物坐标相同
 if(nexthead->x==food->x&&nexthead->y==food->y)
 {
 while(q!=NULL)
 {
 gotoxy(q->x,q->y);  //食物变成蛇身上的一部分
 color(14);
 printf("★");
 q=q->next;
 }
 score=score+add;
 speedup();
 createfood();
 }
 else
 {
 while(q->next->next!=NULL)//如果没有遇见食物
  {
   gotoxy(q->x,q->y);
 color(14);
 printf("★");
 q=q->next;
  }
 //经过上面的循环 ,q指向蛇尾,蛇尾的下一步就是蛇走过去的位置
  gotoxy(q->next->x,q->next->y);
  color(3);
  printf("■");//恢复走过的位置
  free(q->next);
  q->next=NULL;
 }
 }
 if(status==R)
 {
  nexthead->x=head->x+2;   //向上前进时,x不变,y-1
 nexthead->y=head->y;
 nexthead->next=head;
 head=nexthead;
 q=head;
 //如果下一个位置上有食物,下一个位置的坐标和食物坐标相同
 if(nexthead->x==food->x&&nexthead->y==food->y)
 {
 while(q!=NULL)
 {
 gotoxy(q->x,q->y);
 color(14);
 printf("★");
 q=q->next;
 }
 score=score+add;
 speedup();
 createfood();
 }
 else
 {
 while(q->next->next!=NULL)//如果没有遇见食物
  {
   gotoxy(q->x,q->y);
 color(14);
 printf("★");
 q=q->next;
  }
 //经过上面的循环 ,q指向蛇尾,蛇尾的下一步就是蛇走过去的位置
  gotoxy(q->next->x,q->next->y);
  color(3);
  printf("■");//恢复走过的位置
  free(q->next);
  q->next=NULL;
 }
}
 if(biteself()==1)
 {
 endgamestatus=2;
 endgame();
 }
}
void keyboardcontrol()
{
 status=R;
 while(1)
 {
 scoreandtips();
 //GetAsyncKeyState函数用来判断函数调用指定虚拟键的状态
 if(GetAsyncKeyState(VK_UP)&&status!=D)
 {
 status=U;
 }
 else if(GetAsyncKeyState(VK_DOWN)&&status!=U)
 {
 status=D;
 }
 else if(GetAsyncKeyState(VK_LEFT)&&status!=R)
 {
 status=L;
 }
 else if(GetAsyncKeyState(VK_RIGHT)&&status!=L)
 {
 status=R;
 }
 if(GetAsyncKeyState(VK_SPACE))
 {
  while(1)
   {
 //调用sleep函数,令进程停止,直到达到其中设定的参数时间
  Sleep(300);
  if(GetAsyncKeyState(VK_SPACE))
  {
   break;
 }
 }
 }
 else if(GetAsyncKeyState(VK_ESCAPE))
 {
   endgamestatus=3;
   break;
 }
 else if(GetAsyncKeyState(VK_F1))
 {
   speedup();
 }
 else if(GetAsyncKeyState(VK_F2))
 {
   if(sleeptime<350)
   {
   sleeptime=sleeptime+30;
   add=add-2;
   if(sleeptime==350)
   {
   add=1;
 }
   }
 }
 Sleep(sleeptime);
 snakemove();
 }
}
 
void lostdraw()
{
 system("cls");
 int i,j;
 gotoxy(17,5);
 color(11);
 printf("+------------------------");
 
 gotoxy(35,5);
 color(14);
 printf("o00o");
 
 gotoxy(39,5);
 color(11);
 printf("----------");
 
 gotoxy(48,5);
 color(14);
 printf("---");
 
 gotoxy(51,5);
 color(11);
 printf("----------");
 
 gotoxy(61,5);
 color(14);
 printf("o00o");
 
 gotoxy(65,5);
 color(11);
 printf("-----------------+");
 
 for(i=6;i<=19;i++)
 {
 gotoxy(17,i);
  printf("|");
  gotoxy(82,i);
  printf("|");
 }
 gotoxy(17,20);
 printf("+----------------------------------");
 
 gotoxy(52,20);
 color(11);
 printf("-----------------------------+");
 }
 
 void endgame()
 {
 system("cls");
 if(endgamestatus==1)
 {
 lostdraw();
 gotoxy(35,9);
 color(12);
 printf("对不起,您撞到墙了。游戏结束!");
 }
 else if(endgamestatus==2)
 {
 lostdraw();
 gotoxy(35,9);
 color(12);
 printf("对不起,您咬到自己了。游戏结束!");
 }
 else if(endgamestatus==3)
 {
 lostdraw();
 gotoxy(40,9);
 color(12);
 printf("您结束了游戏。");
 }
 gotoxy(43,12);
 color(13);
 printf("您的得分是 %d",score);
 if(score>=highscore)
 {
  color(10);
  gotoxy(33,16);
  printf("创新纪录啦!你真棒!!!");
 file_in();
  }
 choose();
 }
 void file_in()//将最高分存储到文件中
 {
 FILE *fp;
 fp=fopen("save.txt","w+");//以读写的方式建立文件
 fprintf(fp,"%d",score);
 fclose(fp);
 }
 void choose()
 {
 int n;
 gotoxy(25,23);
 color(12);
 printf("重玩一局-------1");
 gotoxy(52,23);
 printf("不玩了,退出-------2");
 gotoxy(46,25);
 color(11);
 printf("选择:");
 scanf("%d",&n);
 switch(n)
 {
 case 1:
  system("cls");
  score=0;
  sleeptime=200;
  add=10;
  printsnake();
  wlcome();
  break;
 case 2:
  exit(0);
  break;
 default:
  gotoxy(35,27);
  color(12);
  printf("您输入有误,请重新输入");
  system("pause >nul");//按任意键
 endgame();
 choose();
 break;
 }
 }
 void explation()
 {
 int i,j=1;
 system("cls");
 color(13);
 gotoxy(44,3);
 printf("游戏说明");
 color(2);
 for(i=6;i<=22;i++)
 {
 for(j=20;j<=75;j++)
 {
 gotoxy(j,i);
 if(i==6||i==22)printf("=");
 else if(j==20||j==75)printf("||");
 }
 }
 color(3);
 gotoxy(30,8);
 printf("1、不能穿墙,不能咬到自己");
 color(3);
 gotoxy(30,8);
 printf("1、不能穿墙,不能咬到自己");
 color(10);
 gotoxy(30,11);
 printf("2、用↑↓←→分别控制蛇的移动");
 color(14);
 gotoxy(30,14);
 printf("3、F1为加速,F2为减速");
 color(11);
 gotoxy(30,17);
 printf("4、按空格键暂停游戏,再按空格键继续");
 color(4);
 gotoxy(30,20);
 printf("5、ESC:退出游戏,space:暂停游戏");
 getch();//按任意键返回主界面
 system("cls");
 printsnake();
 wlcome();
 
}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:https://blog.csdn.net/weixin_46627433/article/details/108956493