Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to realize the Snake Game for two in C language

2025-04-04 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)06/02 Report--

This article is about how C language realizes the game of two-person gluttonous snake. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Gluttonous Snake double Mini Game, each game for two minutes, death is a direct failure, if the end of time, the one with the highest score wins.

Source code: # include#include # define SNAKESIZE 100#define MAPWIDTH 118#define MAPHEIGHT 29 struct {/ / Save food coordinates int x; int y;} food; struct {int len; int x [SNAKESIZE]; int y [SNAKESIZE];} snake;struct {int len; int x [SNAKESIZE]; int y [SNAKESIZE];} snake1;char key ='8' / / initial direction up char key1 = 'w'; int changeFlag = 0, changeFlag1 = 0 int speed=150, sorce = 0, sorce1 = 0, sec=0, min=2; void gotoxy (int x, int y) / / move the cursor to the specified position {COORD coord; coord.X = x; coord.Y = y; SetConsoleCursorPosition (GetStdHandle (STD_OUTPUT_HANDLE), coord) } void MAP () / / print frame and the starting position of the two snakes {for (int I = 0; I 0; I Murray -) {snake.x [I] = snake.x [I-1]; snake.y [I] = snake.y [I-1];} for (int I = snake1.len-1; I > 0 ) {snake1.x [I] = snake1.x [I-1]; snake1.y [I] = snake1.y [I-1] } / / the snake cannot move in the opposite direction with the previous one. For example, when the snake goes to the left, it cannot press the right button directly to go to the right / / if the current direction is opposite to the previous direction, change the current direction to the previous direction if (pre_key = ='8' & & key = ='5') key ='8' If (pre_key = ='5' & & key = ='8') key = '5mm; if (pre_key = =' 4' & & key = ='6') key ='4'; if (pre_key = ='6' & & key = ='4') key ='6' If (pre_key1 = ='w'& & key1 = ='s') key1 = 'wicked; if (pre_key1 = =' s'& & key1 = ='w') key1 ='s'; if (pre_key1 = ='a'& & key1 = ='d') key1 ='a' If (pre_key1 = ='d' & & key1 = ='a') key1 = 'dbath; / / determine in which direction the snakehead should move switch (key) {case' 4pm: snake.x [0]-= 2X break / left Case '6pm: snake.x [0] + = 2 break / right break; case' 8pm: snake.y [0] -; / up break; case '5pm: snake.y [0] + +; / / Down break } gotoxy (snake.x [0], snake.y [0]); printf ("■"); changeFlag = 0; switch (key1) {case'asides: case'Aids: snake1.x [0]-= 2TIMAX / left break Case'dcards: case'Downs: snake1.x [0] + = 2 / right break; case'wills: case'Wells: snake1.y [0] -; / / up break; case's shoes: case'slots: snake1.y [0] + + / / break;} gotoxy (snake1.x [0], snake1.y [0]); printf ("●"); changeFlag1 = 0; gotoxy (MAPWIDTH, 0); return } void createFood () {if (snake.x [0] = = food.x & & snake.y [0] = = food.y) / / the snakehead touches the food {/ / the snakehead touches the food and is about to eat the food, so it is necessary to generate a food while (1) {int a = 1, bFGF 1 again. Srand ((unsigned int) time (NULL)); food.x = rand ()% (MAPWIDTH-4) + 2; food.y = rand ()% (MAPHEIGHT-2) + 1 / / randomly generated food cannot be for on the body of a snake (int I = 0; I

< snake.len; i++) { if (snake.x[i] == food.x && snake.y[i] == food.y) { a = 0; break; } } for (int i = 0; i < snake1.len; i++) { if (snake1.x[i] == food.x && snake1.y[i] == food.y) { b = 0; break; } } //随机生成的食物不能横坐标为奇数,也不能在蛇身,否则重新生成 if (a==1&&b==1 && food.x % 2 == 0) break; } //绘制食物 gotoxy(food.x, food.y); printf("★"); snake.len++;//吃到食物,蛇身长度加1 sorce += 10; speed -= 5;//随着吃的食物越来越多,速度会越来越快 changeFlag = 1;//很重要,因为吃到了食物,就不用再擦除蛇尾的那一节,以此来造成蛇身体增长的效果 } return;}void createFood1(){ if (snake1.x[0] == food.x && snake1.y[0] == food.y)//蛇头碰到食物 { //蛇头碰到食物即为要吃掉这个食物了,因此需要再次生成一个食物 while (1) { int a = 1 , b=1; srand((unsigned int)time(NULL)); food.x = rand() % (MAPWIDTH - 4) + 2; food.y = rand() % (MAPHEIGHT - 2) + 1; //随机生成的食物不能在蛇的身体上 for (int i = 0; i < snake.len; i++) { if (snake.x[i] == food.x && snake.y[i] == food.y) { a = 0; break; } } for (int i = 0; i < snake1.len; i++) { if (snake1.x[i] == food.x && snake1.y[i] == food.y) { b = 0; break; } } //随机生成的食物不能横坐标为奇数,也不能在蛇身,否则重新生成 if (a==1&&b==1&& food.x % 2 == 0) break; } //绘制食物 gotoxy(food.x, food.y); printf("★"); snake1.len++;//吃到食物,蛇身长度加1 sorce1 += 10; speed -= 5;//随着吃的食物越来越多,速度会越来越快 changeFlag1 = 1;//很重要,因为吃到了食物,就不用再擦除蛇尾的那一节,以此来造成蛇身体增长的效果 } return;}bool check(){ //蛇头碰到上下边界,游戏结束 if (snake.y[0] == 0 || snake.y[0] == MAPHEIGHT) return true; //蛇头碰到左右边界,游戏结束 if (snake.x[0] == 0 || snake.x[0] == MAPWIDTH) return true; //蛇头碰到蛇身,游戏结束 for (int i = 1; i < snake.len; i++) { if (snake.x[i] == snake.x[0] && snake.y[i] == snake.y[0]) return true; } for (int i = 0; i < snake1.len; i++) { if(snake1.x[i] == snake.x[0]&&snake1.y[i] == snake.y[0]) return true; } return false;}bool check1(){ //蛇头碰到上下边界,游戏结束 if (snake1.y[0] == 0 || snake1.y[0] == MAPHEIGHT) return true; //蛇头碰到左右边界,游戏结束 if (snake1.x[0] == 0 || snake1.x[0] == MAPWIDTH) return true; //蛇头碰到蛇身,游戏结束 for (int i = 1; i < snake1.len; i++) { if (snake1.x[i] == snake1.x[0] && snake1.y[i] == snake1.y[0]) return true; } for (int i = 0; i < snake.len; i++) { if (snake.x[i] == snake1.x[0] && snake.y[i] == snake1.y[0]) return true; } return false;}void MENU ()//打印菜单界面{ printf("\n\n\n\n\t\t\t\t ╔═══════════════════════════════════════╗\n"); printf("\t\t\t\t ║ ║\n"); printf("\t\t\t\t ║ 欢迎来到贪吃蛇 ║\n"); printf("\t\t\t\t ║ ║\n"); printf("\t\t\t\t ║ ║\n"); printf("\t\t\t\t ║ ┏━━┓ ┏━━┓ ┏━━┓ ║\n"); printf("\t\t\t\t ║ 开始:┃ 1┃ 规则:┃ 2┃ 退出:┃ 3┃ ║\n"); printf("\t\t\t\t ║ ┗━━┛ ┗━━┛ ┗━━┛ ║\n"); printf("\t\t\t\t ║ ║\n"); printf("\t\t\t\t ║ ║\n"); printf("\t\t\t\t ╚═══════════════════════════════════════╝\n"); switch(getch()){ case '1': system("cls"); START(); break; case '2': system("cls"); RULE(); MENU(); break; case '3': exit(0); break; default: system("cls"); printf("error"); MENU(); }}void RULE (){ system("cls");//清屏 printf("\t╔══════════════════════════════════════════════════════════════════════════════════════════════════╗\n"); printf("\t║本游戏玩家一(左侧)通过按键W、S、A、D(不区分大小写)四个键分别控制snake1上移、下移、左移和右移。║\n"); printf("\t║玩家二(右侧)过按键8、5、4、6 四个键分别控制snake2上移、下移、左移和右移。 ║\n"); printf("\t║每局游戏两分钟,死亡则直接失败,若时间结束,则分高者获胜。 ║\n"); printf("\t╚══════════════════════════════════════════════════════════════════════════════════════════════════╝\n"); system("pause");//暂停 system("cls");//清屏}void START(){ time_t time_sec = 0; time_t old_sec = 0; MAP(); system("pause"); time(&time_sec); //获取时间 old_sec = time_sec; //保存时间 while (!check()&&!check1()) { OPERATION(); createFood(); createFood1(); Sleep(speed); time(&time_sec); //获取秒数保存到time_t变量 if(time_sec != old_sec) //如果秒数改变(计时达到1秒) { old_sec = time_sec; //更新旧的秒数 if(sec >

0) sec--; / / timing seconds minus 1 else {sec= 59; / / if the original seconds is 0, it becomes 59 min--; / / timing minutes minus 1}} if (min==0&&sec==0) break If (sec > = 8) printf ("\ a"); gotoxy (4Power1); printf ("countdown-DVR d\ r", min, sec);} system ("cls"); printf ("\ n\ n\ t\ t\ tGame Over!\ n"); system ("pause");} void OVER () {system ("cls") Printf ("\ n\ t\ t\ t ╔═══╗\ n"); printf ("\ t\ t ║ ║\ n") Printf ("\ t\ t ║ Game ends ║\ n"); printf ("\ t\ t ║ ║\ n"); printf ("\ t\ t ║ ║\ n") If (check () & &! check1 ()) printf ("\ t\ t ║ player 1 (left) wins and player 2 (right) loses). ║\ n "); else if (! check () & & check1 ()) printf ("\ t\ t ║ player 1 (left), player 2 (right) wins. " ║\ n "); else {printf ("\ t\ t ║ players score:% 4d ║\ n ", sorce1); printf ("\ t\ t ║ player 2 score:% 4d ║\ n ", sorce) If (sorce > sorce1) printf ("\ t\ t ║ player 1 (left) fails and player 2 (right) wins. ║\ n "); else if (sorce1 > sorce) printf ("\ t\ t ║ player 1 (left) wins, player 2 (right) loses. ║\ n "); else printf ("\ t\ t ║ Congratulations on your draw! ║\ n ");} printf ("\ t\ t ║ ║\ n ") Printf ("\ t\ t ║ ║\ n"); printf ("\ t\ t ╚═══╝\ n");} int main () {system ("title double gluttonous Snake") System ("color F0"); MENU (); OVER (); return 0;} [Click and drag to move]

Thank you for reading! This is the end of the article on "how to realize the two-person Snake Game in C language". I hope the above content can be of some help to you, so that you can learn more knowledge. If you think the article is good, you can share it for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report