C语言实现骑士飞行棋小游戏

本文实例为大家分享了C语言实现骑士飞行棋的具体代码,供大家参考,具体内容如下

需求分析

游戏规则和传统的飞行棋一样,支持两人对战

采用100格小型游戏棋盘

游戏规则:对战双方轮流掷骰子控制自己的骑兵前进或后退,在游戏棋盘上设置有关卡

普通

地雷

暂停

时空隧道

幸运轮盘(提供两种运气:交换位置和轰炸)

棋盘上的关卡只在骑兵第一次移动遇到时有效

#include<stdio.h>
#include<windows.h> //颜色
#include<string.h>
#include<conio.h> //通过控制台进行数据输入和数据输出的函数
#include<stdlib.h>
#include<time.h>  //定义时间函数
struct node //定义四个人物名
{
  char name[20];
} people[4];
int map[100]=
{
  0,0,0,0,0,2,1,0,0,3,0,0,0,2,0,0,0,2,0,0,4,0,0,1,0,4,0,3,0,0,
  0,0,0,2,0,
  0,0,0,2,0,1,0,0,0,0,4,0,0,0,0,2,0,0,0,0,1,0,0,0,0,3,0,0,4,2,
  0,0,0,0,1,
  0,0,4,0,0,0,0,0,0,0,2,0,0,1,0,0,0,0,4,0,4,0,0,3,2,0,0,0,0,0
}; //地图的数字代码
int number1,number2; //玩家1的选择人物序号
int numstep1,numstep2; //玩家1的选择人物序号
int rand(void);  //伪随机数生成函数
void srand(unsigned int n); //种子函数
void showmap(int map[])  //打印游戏地图
{
  int i,j,k;
  printf("\t\t\t骑 士 飞 行 棋 \n\n");
  printf("'∷'是平地,'¤'是幸运罗盘,'★'是地雷,'■'是暂停,'〓'是时空隧道\n\n");
  for(i=0; i<31; i++)
  {
    if(map[i]==0)
      printf("∷");
    else if(map[i]==1)
      printf("¤");
    else if(map[i]==2)
      printf("★");
    else if(map[i]==3)
      printf("■");
    else if(map[i]==4)
      printf("〓");
    else if(map[i]==10)
      printf("A");
    else if(map[i]==20)
      printf("B");
    else if(map[i]==30)
      printf("@@");
  }
  printf("\n");
  for(k=0; k<4; k++)
  {
    for(j=0; j<30; j++)
    {
      printf(" ");
    }
    if(map[i]==0)
      printf("∷");
    else if(map[i]==1)
      printf("¤");
    else if(map[i]==2)
      printf("★");
    else if(map[i]==3)
      printf("■");
    else if(map[i]==4)
      printf("〓");
    else if(map[i]==10)
      printf("A");
    else if(map[i]==20)
      printf("B");
    else if(map[i]==30)
      printf("@@");
    i++;
    printf("\n");
  }
  for(i=65; i>=35; i--)
  {
    if(map[i]==0)
      printf("∷");
    else if(map[i]==1)
      printf("¤");
    else if(map[i]==2)
      printf("★");
    else if(map[i]==3)
      printf("■");
    else if(map[i]==4)
      printf("〓");
    else if(map[i]==10)
      printf("A");
    else if(map[i]==20)
      printf("B");
    else if(map[i]==30)
      printf("@@");
  }
  printf("\n");
  i=66;
  for(j=0; j<3; j++)
  {
    if(map[i]==0)
      printf("∷");
    else if(map[i]==1)
      printf("¤");
    else if(map[i]==2)
      printf("★");
    else if(map[i]==3)
      printf("■");
    else if(map[i]==4)
      printf("〓");
    else if(map[i]==10)
      printf("A");
    else if(map[i]==20)
      printf("B");
    else if(map[i]==30)
      printf("@@");
    i++;
    printf("\n");
  }
  for(i=69; i<100; i++)
  {
    if(map[i]==0)
      printf("∷");
    else if(map[i]==1)
      printf("¤");
    else if(map[i]==2)
      printf("★");
    else if(map[i]==3)
      printf("■");
    else if(map[i]==4)
      printf("〓");
    else if(map[i]==10)
      printf("A");
    else if(map[i]==20)
      printf("B");
    else if(map[i]==30)
      printf("@@");
  }
  printf("\n");
}
void cleana(int map[]) //清除地图上的标记A,并还原地图
{
  int i;
  for(i=0; i<100; i++)
  {
    if(map[i]==10)
    {
      if(i==6||i==23||i==40||i==55||i==69||i==83) //‘¤'所对应地图上的位置
        map[i]=1;
      else if(i==5||i==13||i==17||i==33||i==38||i==50||i==64||i==80||i==94) //‘★'所对应地图上的位置
        map[i]=2;
      else if(i==9||i==27||i==60||i==93)  //‘■'所对应地图上的位置
        map[i]=3;
      else if(i==20||i==25||i==45||i==63||i==72||i==88||i==90)  //‘〓'所对应地图上的位置
        map[i]=4;
      else
        map[i]=0;
    }
  }
}
void cleanb(int map[])  //清除地图上的标记B,并还原地图
{
  int i;
  for(i=0; i<100; i++)
  {
    if(map[i]==20)
    {
      if(i==6||i==23||i==40||i==55||i==69||i==83)  //‘¤'所对应地图上的位置
        map[i]=1;
      else if(i==5||i==13||i==17||i==33||i==38||i==50||i==64||i==80||i==94) //‘★'所对应地图上的位置
        map[i]=2;
      else if(i==9||i==27||i==60||i==93)  //‘■'所对应地图上的位置
        map[i]=3;
      else if(i==20||i==25||i==45||i==63||i==72||i==88||i==90)  //‘〓'所对应地图上的位置
        map[i]=4;
      else
        map[i]=0;
    }
  }
}
void showprocess(int map[]) //游戏进行的过程
{
  int flag1=2,flag2=2; //控制游戏暂停的标记变量
  numstep1=0;  //玩家1的初始位置
  numstep2=0;  //玩家2的初始位置
  int numtou;  //每回投掷的骰子数
  int t;    //作为幸运罗盘交换位置时的中间变量
  int number;  //作为输入幸运罗盘选择时的变量
  system("cls"); //清屏
  showmap(map);  //调用函数showmap(map)用来输出地图
  printf("\n");
  while(numstep1<100&&numstep2<100) //游戏开始
  {
    system("pause"); //运行时会出现“请按任意键继续 . .
    printf("\n");
    cleana(map);   //清除地图上的标记A
    cleanb(map);   //清除地图上的标记B
    if(flag1==2)   //判断是否为暂停
    {
      if(flag2==0||flag2==1)
      {
        flag2++;
      }
      srand(time(NULL));  //是设置随机数的种子,以当前时间作为随机数的种子
      numtou=rand()%6+1;  //产生随机数
      numstep1+=numtou;
      Sleep(500);     //暂停0.5秒
      printf("\n玩家1掷出的点数为 %d\n\n",numtou);
      if(numstep1>=100)  //步数大于100时跳出循环,游戏结束
      {
        map[99]=10;   //使地图上的最后一个位置为A
        Sleep(1000);   //暂停1秒
        system("cls");  //清屏
        showmap(map);  //调用函数showmap(map)用来输出地图
        printf("\n\n");
        printf("游戏结束!\n");
        break;
      }
      else
      {
        printf("玩家1%s,你当前的位置为 %d\n",people[number1-1].name,numstep1);
        Sleep(800);
        if(map[numstep1-1]==0)   //地图位置上为'∷'
        {
          map[numstep1-1]=10;
          if(numstep1==numstep2) //判断玩家1,玩家2的位置是否相同
          {
            printf("\n玩家2%s被炸飞了!\n",people[number2-1].name);
            numstep2=0;
            printf("玩家2%s,你当前的位置为%d\n",people[number2-1].name,numstep2);
          }
          if(numstep2!=0)
            map[numstep2-1]=20;
          Sleep(1000);   //暂停1秒
          system("cls");  //清屏
          showmap(map);  //打印地图
          printf("\n");
        }
        else if(map[numstep1-1]==1)  //地图位置上为'¤',幸运轮盘
        {
          printf("\n玩家1%s,恭喜你来到幸运罗盘!\n",people[number1-1].name);
          printf("请做出选择:\n");
          printf("1.和对方交换位置\n2.轰炸对方(炸退六步)\n");
          scanf("%d",&number); //输入选择数
          if(number==1)     //交换玩家位置
          {
            t=numstep1;
            numstep1=numstep2;
            numstep2=t;
            printf("玩家1%s,你当前的位置为%d\n",people[number1-1].name,numstep1);
            printf("\n玩家2%s,你当前的位置为%d\n",people[number2-1].name,numstep2);
            if(numstep1==0)
            {
              map[numstep2-1]=20;
            }
            else
            {
              map[numstep1-1]=10;
              map[numstep2-1]=20;
            }
            if(numstep1==numstep2&&numstep1!=0)
            {
              map[numstep1-1]=30;
            }
            Sleep(1800);  //暂停1.8秒
            system("cls"); //清屏
            showmap(map);  //打印地图
            printf("\n");
          }
          else if(number==2)  //对方退六步
          {
            map[numstep1-1]=10;
            if(numstep2>=6)
            {
              numstep2-=6;
            }
            else numstep2=0;
            printf("玩家2%s,你当前的位置为%d\n",people[number2-1].name,numstep2);
            if(numstep2!=0)
            {
              map[numstep2-1]=20;
            }
            if(numstep1==numstep2&&numstep1!=0)
            {
              map[numstep1-1]=30;
            }
            Sleep(1800);   //暂停1.8秒
            system("cls");  //清屏
            showmap(map);   //打印地图
            printf("\n");
          }
        }
        else if(map[numstep1-1]==2)  //地图位置上为'★',地雷
        {
          printf("\nSORRY , 你踩到地雷了 要后退6步●﹏●\n");
          if(numstep1>=6)
            numstep1-=6;
          else numstep1=0;
          printf("\n玩家1%s,你当前的位置为%d\n",people[number1-1].name,numstep1);
          if(numstep1==0&&numstep2!=0)
          {
            map[numstep2-1]=20;
          }
          else if(numstep1!=0&&numstep2==0)
          {
            map[numstep1-1]=10;
          }
          else if(numstep1!=0&&numstep2!=0)
          {
            map[numstep1-1]=10;
            map[numstep2-1]=20;
          }
          if(numstep1==numstep2&&numstep1!=0)
          {
            map[numstep1-1]=30;
          }
          Sleep(1800);   //暂停1.8秒
          system("cls");  //清屏
          showmap(map);  //打印地图
          printf("\n");
        }
        else if(map[numstep1-1]==3)   //地图位置上为'■',暂停一次
        {
          flag1=0;
          printf("\n~~>_<~~ 要停战一局了!\n");
          map[numstep1-1]=10;
          if(numstep2!=0)
          {
            map[numstep2-1]=20;
          }
          if(numstep1==numstep2&&numstep1!=0)
          {
            map[numstep1-1]=30;
          }
          Sleep(1800);   //暂停1.8秒
          system("cls");  //清屏
          showmap(map);   //打印地图
          printf("\n");
        }
        else if(map[numstep1-1]==4)   //地图位置上为'〓',时空隧道
        {
          printf("\nOh My God ,是时空隧道!! 冲啊^_^\n");
          numstep1+=10;
          if(numstep1>=100)
          {
            map[99]=10;
            Sleep(1000);
            system("cls");
            showmap(map);
            printf("\n\n");
            printf("游戏结束!\n");
            break;
          }
          printf("\n玩家1%s,你当前的位置为%d\n",people[number1-1].name,numstep1);
          map[numstep1-1]=10;
          if(numstep2!=0)
          {
            map[numstep2-1]=20;
          }
          if(numstep1==numstep2&&numstep1!=0)
          {
            map[numstep1-1]=30;
          }
          Sleep(1800);   //暂停1.8秒
          system("cls");  //清屏
          showmap(map);   //打印地图
          printf("\n");
        }
      }
    }
    else if(flag1!=2)  //当玩家1为暂停状态
    {
      flag1++;
    }
    system("pause");    //显示"请按任意键继续....."
    printf("\n");
    cleana(map);      //清除地图上的标记A
    cleanb(map);      //清除地图上的标记B
    if(flag2==2)    //判断玩家2是否为暂停状态
    {
      if(flag1==0||flag1==1)
      {
        flag1++;
      }
      srand(time(NULL));     //是设置随机数的种子,以当前时间作为随机数的种子
      numtou=rand()%6+1;     //产生随机数
      numstep2+=numtou;
      Sleep(500);         //暂停0.5秒
      printf("\n玩家2掷出的点数为%d\n\n",numtou);
      if(numstep2>=100)      //步数大于100时跳出循环,游戏结束
      {
        map[99]=20;       //使地图上最后一个位置为B
        Sleep(1000);      //暂停1秒
        system("cls");     //清屏
        showmap(map);      //打印地图
        printf("\n\n");
        printf("游戏结束!\n");
        break;
      }
      else
      {
        printf("玩家2%s,你当前的位置为%d\n",people[number2-1].name,numstep2);
        Sleep(1000);       //暂停1秒
        if(map[numstep2-1]==0)  //地图位置上为'∷'
        {
          map[numstep2-1]=20;
          if(numstep1==numstep2)
          {
            printf("\n玩家1%s被炸飞了!\n",people[number1-1].name);
            numstep1=0;
            printf("玩家1%s,你当前的位置为%d\n",people[number1-1].name,numstep1);
          }
          if(numstep1!=0)
            map[numstep1-1]=10;
          Sleep(1000);
          system("cls");
          showmap(map);
          printf("\n");
        }
        else if(map[numstep2-1]==1)  //地图上位置为'¤',幸运轮盘
        {
          printf("\n玩家2%s,恭喜你来到幸运罗盘!\n",people[number2-1].name);
          printf("请做出选择:\n");
          printf("1.和对方交换位置\n2.轰炸对方(炸退六步)\n");
          scanf("%d",&number);
          if(number==1) //玩家双方交换位置
          {
            t=numstep1;
            numstep1=numstep2;
            numstep2=t;
            printf("\n玩家1%s,你当前的位置为%d\n",people[number1-1].name,numstep1);
            printf("\n玩家2%s,你当前的位置为%d\n",people[number2-1].name,numstep2);
            if(numstep2==0)
            {
              map[numstep1-1]=10;
            }
            else
            {
              map[numstep1-1]=10;
              map[numstep2-1]=20;
            }
            if(numstep1==numstep2&&numstep1!=0)
            {
              map[numstep1-1]=30;
            }
            Sleep(1800);
            system("cls");
            showmap(map);
            printf("\n");
          }
          else if(number==2)  //对方退六步
          {
            map[numstep2-1]=20;
            if(numstep1>=6)
            {
              numstep1-=6;
            }
            else numstep1=0;
            printf("玩家1%s,你当前的位置为%d\n",people[number1-1].name,numstep1);
            if(numstep1!=0)
            {
              map[numstep1-1]=10;
            }
            if(numstep1==numstep2&&numstep1!=0)
            {
              map[numstep1-1]=30;
            }
            Sleep(1800);
            system("cls");
            showmap(map);
            printf("\n");
          }
        }
        else if(map[numstep2-1]==2)  //地图上位置为'★',地雷
        {
          printf("\nSORRY , 你踩到地雷了 要后退6步●﹏●\n");
          if(numstep2>=6)
            numstep2-=6;
          else numstep2=0;
          printf("\n玩家2%s,你当前的位置为%d\n",people[number2-1].name,numstep2);
          if(numstep2==0&&numstep1!=0)
          {
            map[numstep1-1]=10;
          }
          else if(numstep2!=0&&numstep1==0)
          {
            map[numstep2-1]=20;
          }
          else if(numstep1!=0&&numstep2!=0)
          {
            map[numstep1-1]=10;
            map[numstep2-1]=20;
          }
          if(numstep1==numstep2&&numstep1!=0)
          {
            map[numstep1-1]=30;
          }
          Sleep(1800);
          system("cls");
          showmap(map);
          printf("\n");
        }
        else if(map[numstep2-1]==3)  //地图位置上为'■',暂停一次
        {
          flag2=0;
          printf("\n~~>_<~~ 要停战一局了\n");
          map[numstep2-1]=20;
          if(numstep1!=0)
          {
            map[numstep1-1]=10;
          }
          if(numstep1==numstep2&&numstep1!=0)
          {
            map[numstep1-1]=30;
          }
          Sleep(1800);
          system("cls");
          showmap(map);
          printf("\n");
        }
        else if(map[numstep2-1]==4)     //地图位置上为'〓',时空隧道
        {
          printf("\nOh My God ,是时空隧道!! 冲啊^_^\n");
          numstep2+=10;
          if(numstep1>=100)  //步数大于100,跳出循环
          {
            map[99]=10;
            Sleep(1000);
            system("cls");
            showmap(map);
            printf("\n\n");
            printf("游戏结束!\n");
            break;
          }
          printf("\n玩家2%s,你当前的位置为%d\n",people[number2-1].name,numstep2);
          map[numstep2-1]=20;
          if(numstep1!=0)
          {
            map[numstep1-1]=10;
          }
          if(numstep1==numstep2&&numstep1!=0)
          {
            map[numstep1-1]=30;
          }
          Sleep(1800);
          system("cls");
          showmap(map);
          printf("\n");
        }
      }
    }
    else if(flag2!=0)
    {
      flag2++;
    }
  }
  if(numstep1>numstep2) //判断玩家的输赢
    printf("\n恭喜玩家1%s,你赢了!!!!\n",people[number1-1].name);
  else printf("\n恭喜玩家2%s,你赢了!!!!\n",people[number2-1].name);
}
void showready()
{
  int i;
  printf("地图载入中——");
  for(i=0; i<15; i++)
  {
    printf(".");
    Sleep(100);
  }
  system("cls");
  showmap(map);
  printf("\n\n");
  printf("玩家1%s,你当前的位置为 0\n",people[number1-1].name);
  printf("玩家2%s,你当前的位置为 0\n\n",people[number2-1].name);
  system("pause");
  printf("\n游戏开始!\n请玩家1先开始掷骰子\n");
  Sleep(1000);
  showprocess(map);
}
void showstart()  //展示游戏开始界面
{
  int i;
  int choose;
  system("color 71");
  printf("**************************************************\n");
  printf("//                       //\n");
  printf("//                       //\n");
  printf("//        骑 士 飞 行 棋         //\n");
  printf("//                       //\n");
  printf("//                       //\n");
  printf("**************************************************\n");
  for(i=0; i<5; i++)
  {
    printf("\n");
  }
  printf("~~~~~~~~~~~两 人 对 战~~~~~~~~~~~\n\n");
  printf("请选择角色:");
  strcpy(people[0].name,"戴高乐");
  strcpy(people[1].name,"艾森豪威尔");
  strcpy(people[2].name,"麦克阿瑟");
  strcpy(people[3].name,"巴顿");
  for(i=1; i<=4; i++)
  {
    printf("%d.%s ",i,people[i-1].name);
  }
  printf("\n");
  printf("请玩家1选择角色(选择序号):");
  scanf("%d",&number1);
  printf("请玩家2选择角色(选择序号):");
  scanf("%d",&number2);
  printf("\n\n");
  printf("1.直接进行游戏  2.阅读游戏规则\n");
  scanf("%d",&choose);
  if(choose==1)
  {
    showready();
  }
  else if(choose==2)  //展示游戏规则
  {
    system("cls");
    printf("\n~~~~~~~~~~~~~~~~~~~游戏规则如下~~~~~~~~~~~~~~~~~~~~\n\n");
    printf("1.两个玩家轮流掷骰子,如果上轮走到暂停关卡,停掷一次\n\n");
    printf("2.若玩家走到幸运轮盘,则和对方交换位置或者对方后退6步\n\n");
    printf("3.若玩家走到某格,而对方也在此格,则对方退回原点\n\n");
    printf("4.若遇到地雷后退6步\n\n");
    printf("5.若遇到暂停则此玩家下一回合停止掷骰子\n\n");
    printf("6.若遇到时空隧道再前进10步\n\n");
    printf("注意:棋盘上的关卡只在骑兵第一次移动遇到时有效\n\n");
    Sleep(1800);
    system("pause");
    printf("\n");
    showready();
  }
}
int main()
{
  char str[10];
  showstart();
  printf("\n是否再来一局?请选择: (Yes/No)\n");  //判断是否再来一局
  scanf("%s",str);
  if(strcmp(str,"Yes")==0)
  {
    system("cls");
    cleana(map);
    cleanb(map);
    showstart();
  }
  if(strcmp(str,"No")==0)
    return 0;
}

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

(0)

相关推荐

  • 纯C语言实现五子棋

    正在考虑增加一个MFC界面.不是人机对战的. 五子棋.c //date 2014年7月7日09:53:24 //willows //五子棋 #define _CRT_SECURE_NO_WARNINGS #include <stdio.h> #include <stdlib.h> #include <assert.h> //棋盘初始化函数 //Chessboard棋盘数组,ln=棋盘大小,成功返回Chessboard,不成功NULL void init_Chessboa

  • C语言实现五子棋游戏

    本文实例为大家分享了C语言实现五子棋的具体代码,供大家参考,具体内容如下 #include <stdio.h> #include <bios.h> #include <ctype.h> #include <conio.h> #include <dos.h> #define CROSSRU 0xbf /*右上角点*/ #define CROSSLU 0xda /*左上角点*/ #define CROSSLD 0xc0 /*左下角点*/ #defin

  • C语言实现三子棋小游戏

    在这里我们要写出一个三子棋的小游戏,能够实现所需要的三字连珠的功能,并且可以使得游戏让玩家进行选择是否继续的功能. 代码: #define _CRT_SECURE_NO_WARNINGS 1 #include<stdio.h> #include<stdlib.h> #include<time.h> #define ROW 3 #define COL 3 void init_board(char arr[ROW][COL]) { int i=0; int j=0; for

  • C语言实现骑士飞行棋

    本文实例为大家分享了C语言实现骑士飞行棋的具体代码,供大家参考,具体内容如下 /* Author Mr.Long * Date 2015年12月2日17:33:17 */ #include<iostream> #include<string> #include<windows.h> #include<stdlib.h> #include<time.h> #define random(x) (rand()%x) using namespace st

  • C语言实现五子棋小游戏

    首先我们先来看一个稍微简单些的实现方式: #include <stdio.h> #include <stdlib.h> #define N 15 int chessboard[N + 1][N + 1] = { 0 }; int whoseTurn = 0; void initGame(void); void printChessboard(void); void playChess(void); int judge(int, int); int main(void) { init

  • C语言实现简单三子棋程序

    使用C语言实现简单的三子棋程序,主要是对二维数组的运用,我们需要一个头文件,两个源文件来实现. game.h //包含函数的声明,宏定义 test.c //包含主函数,函数调用 game.c //包含函数的定义 整体思路 1.要完成一个简单的三子棋程序,首先需要创建一个二维数组,并完成数组初始化. //使用宏定义定义常量,方便之后对数组的使用 #define ROW 3 //行 #define COL 3 //列 char arr[ROW][COL] = { 0 }; Arr_init(arr,

  • C语言实现三子棋

    本文实例为大家分享了C语言实现三子棋的具体代码,供大家参考,具体内容如下 题目:C语言实现三子棋 问题分析:首先用到数组,存储信息.棋盘的信息和棋子的信息 打印棋盘 读取棋子的位置 判断是否连子 打印棋盘 然后重复 代码如下: #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> //数组沙盘 char Global_Gobang[10][10]; int Global_line, Global_p

  • 基于C语言实现五子棋游戏完整实例代码

    本文实例讲述了基于C语言实现五子棋游戏的方法,代码备有比较完整的注释,可以帮助读者更好的加以理解. 五子棋游戏代码如下: /* * 使用键盘的上下左右键移动棋盘,空格键表示下棋,ESC键退出程序 */ #include <stdio.h> #include <stdlib.h> #include <bios.h> #include <graphics.h> #include<malloc.h> /* * 对应键盘键的十六进制数字 */ #defi

  • C语言实现三子棋游戏

    本文实例为大家分享了C语言实现三子棋游戏的具体代码,供大家参考,具体内容如下 #include<stdio.h> #include<stdlib.h> #include<time.h> void chess_board(char arr[3][3]) //打印棋盘 { int i = 0; int j = 0; for (i = 0; i < 3; i++) { printf( " %c | %c | %c \n", arr [i][0], a

  • C语言实现骑士飞行棋小游戏

    本文实例为大家分享了C语言实现骑士飞行棋的具体代码,供大家参考,具体内容如下 需求分析 游戏规则和传统的飞行棋一样,支持两人对战 采用100格小型游戏棋盘 游戏规则:对战双方轮流掷骰子控制自己的骑兵前进或后退,在游戏棋盘上设置有关卡 普通 地雷 暂停 时空隧道 幸运轮盘(提供两种运气:交换位置和轰炸) 棋盘上的关卡只在骑兵第一次移动遇到时有效 #include<stdio.h> #include<windows.h> //颜色 #include<string.h> #i

  • C#实现飞行棋小游戏

    本文实例为大家分享了C#实现飞行棋小游戏的具体代码,供大家参考,具体内容如下 逻辑图 以下是掷色子的一个代码,比较有代表性,里面的逻辑和内容都已注释,可通过注释了解这一方法的运作模式. public static void RowTouZi(int playerPos) //掷色子 { //产生随机数,掷色子的随机数 Random r = new Random(); int num = r.Next(1, 7); //定义一个字符串变量 string msg = ""; //提示用户信

  • C#实现简单飞行棋小游戏

    本文实例为大家分享了C#实现简单飞行棋小游戏的具体代码,供大家参考,具体内容如下 目标:实现飞行棋游戏基础功能 玩家在地图触发道具: 1.获得道具,可以进行一次选择 1–交换位置 2–让对方退随机格子 2.踩到炸弹,让对方暂停一回合 3.乘上了飞机,前进10格 4.进入隧道,将随机从其他隧道口出来 using System; namespace FXQGame { class Program { //储存地图数组 static int[] mMaps = new int[120]; //储存两个

  • C#实现控制台飞行棋小游戏

    本文实例为大家分享了C#实现控制台飞行棋小游戏的具体代码,供大家参考,具体内容如下 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Text.RegularExpressions; using System.Threading.Tasks; namespace 飞行棋小游戏 { class Program { /// <summary> ///

  • C#控制台实现飞行棋小游戏

    本文实例为大家分享了C#控制台实现飞行棋小游戏的具体代码,供大家参考,具体内容如下 游戏标题 static void ShowTitle() { Console.ForegroundColor = ConsoleColor.Cyan; Console.WriteLine("****************************************"); Console.ForegroundColor = ConsoleColor.Green; Console.WriteLine(

  • C#实现简单的飞行棋小游戏

    本文实例为大家分享了C#实现简单飞行棋小游戏的具体代码,供大家参考,具体内容如下 1.玩家姓名的输入 2.对屏幕进行清屏 3.初始化地图 4.玩家A和玩家B玩游戏 using System; namespace homework { class data { //静态字段来模拟全局变量 static int[] Maps = new int[100]; //声明一个静态数组用来存储玩家A跟玩家B的坐标 static int[] PlayerPos = new int[2]; static str

  • C#飞行棋小程序设计分析

    C#小程序飞行棋,程序效果图 1.设计分析 这个程序界面大致分为四部分: ① 最上面游戏名字界面 ②信息提示区 ③游戏界面区 ④游戏操作提示区 2.分区设计实现 一.游戏界面显示区,由于只需要显示出图形即可,因此直接用Console.Writeline()输出即可. 二.信息提示区,此处用于显示 游戏对战双方的姓名等信息,在游戏开始时需要由用户录入对战双方的姓名信息,因此可用Console.Readline()来读取 用户键入的值,<注:需要检查验证对战双方的姓名不可相同!> 三.游戏界面区,

  • C#实现骑士飞行棋

    前言 飞行棋小游戏是学习C#以来,接触的第一个游戏项目,根据小杨老师的思路引导,自己的代码也实现了功能,经过思路的梳理,试着不借助代码自己去实现功能,感触就是不管想的多明白,实践起来完全不一样,所以,还得多多实践,培养严谨的逻辑思维.下面看看我梳理的思路~ 游戏中界面 飞行棋流程思路 掷骰子流程 游戏运行流程 掷骰子代码 public static void RowShaiZi(int xy) { Random r = new Random();//随机数 int num = r.Next(1,

  • C# 骑士飞行棋的源码(分享)

    代码如下所示: 复制代码 代码如下: using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading.Tasks; namespace 骑士飞行棋{    class Program    {        //在下面的数组存储我们游戏地图各各关卡        //数组的下标为0的元素对应地图上的第1格    下标为1的元素对应元素第2格...下标为

随机推荐