我的编程空间,编程开发者的网络收藏夹
学习永远不晚

C#实现经典飞行棋游戏的示例代码

短信预约 -IT技能 免费直播动态提醒
省份

北京

  • 北京
  • 上海
  • 天津
  • 重庆
  • 河北
  • 山东
  • 辽宁
  • 黑龙江
  • 吉林
  • 甘肃
  • 青海
  • 河南
  • 江苏
  • 湖北
  • 湖南
  • 江西
  • 浙江
  • 广东
  • 云南
  • 福建
  • 海南
  • 山西
  • 四川
  • 陕西
  • 贵州
  • 安徽
  • 广西
  • 内蒙
  • 西藏
  • 新疆
  • 宁夏
  • 兵团
手机号立即预约

请填写图片验证码后获取短信验证码

看不清楚,换张图片

免费获取短信验证码

C#实现经典飞行棋游戏的示例代码

效果展示

主函数  

     static void Main(string[] args)
        {
            int w = 50;
            int h = 30;
            ConsoleInit(w, h);

            E_SceneType nowSceneType = E_SceneType.Begin;
            while (true)
            {
                switch (nowSceneType)
                {
                    case E_SceneType.Begin:
                        Console.Clear();
                        GameEndOrBegin(w, h, ref nowSceneType);
                        break;
                    case E_SceneType.Game:
                        Console.Clear();
                        GameScene(w, h, ref nowSceneType);
                        break;
                    case E_SceneType.End:
                        Console.Clear();
                        GameEndOrBegin(w, h, ref nowSceneType);
                        break;
                    default:
                        break;
                }

            }

        }

场景类型枚举

  enum E_SceneType
    {
        Begin,
        Game,
        End,
    }

控制台基础设置

static void ConsoleInit(int w, int h)
        {

            //控制台设置
            Console.CursorVisible = false;
            Console.SetWindowSize(w, h);
            Console.SetBufferSize(w, h);
        }

开始及结束场景逻辑

        static void GameEndOrBegin(int w, int h, ref E_SceneType nowSceneType)
        {
            Console.ForegroundColor = ConsoleColor.White;
            Console.SetCursorPosition(nowSceneType == E_SceneType.Begin ? w / 2 - 3 : w / 2 - 4, 8);
            Console.Write(nowSceneType == E_SceneType.Begin ? "飞行棋" : "游戏结束");
            
            //当前选项的编号
            int count = 0;
            bool IsOver = false;

            while (true)
            {
                Console.SetCursorPosition(nowSceneType ==E_SceneType.Begin? w/2-4:w/2-5, 11);
                Console.ForegroundColor = count == 0 ? ConsoleColor.Red : ConsoleColor.White;
                Console.Write(nowSceneType == E_SceneType.Begin? "游戏开始":"回到主菜单");

                Console.SetCursorPosition(w/2-4, 13);
                Console.ForegroundColor = count == 1 ? ConsoleColor.Red : ConsoleColor.White;
                Console.Write("退出游戏");

                switch (Console.ReadKey(true).Key)
                {
                    case ConsoleKey.W:
                        --count;
                        if (count < 0)
                        {
                            count = 0;
                        }
                        break;
                    case ConsoleKey.S:
                        ++count;
                        if (count > 1)
                        {
                            count = 1;
                        }
                        break;
                    case ConsoleKey.J:
                        if(count == 0)
                        {
                            nowSceneType = nowSceneType ==E_SceneType.Begin? E_SceneType.Game:E_SceneType.Begin;
                            IsOver = true;
                        }
                        else
                        {
                            Environment.Exit(0);
                        }
                        break;
                }
                if (IsOver)
                    break;
            }

        }

游戏场景逻辑

        static void GameScene(int w, int h, ref E_SceneType nowSceneType)
        {
            DrawWall(w, h);
            Map map = new Map(14, 3, 80);
            map.Draw();

            Player player = new Player(0, E_Player_Type.Player);
            Player computer = new Player(0, E_Player_Type.Computer);
            DrawPlayer(map, player, computer);

            while (true)
            {
                if (PlayerRandomMove(w, h, ref player, ref computer, map, ref nowSceneType))
                {
                    break;
                }
                if (PlayerRandomMove(w, h, ref computer, ref player, map, ref nowSceneType))
                {
                    break;
                }
            }

        }

        static bool PlayerRandomMove(int w, int h, ref Player p, ref Player otherP, Map map, ref E_SceneType nowSceneType)
        {
            //之后的游戏逻辑
            //玩家扔色子逻辑
            //检测输入
            Console.ReadKey(true);
            //扔色子的逻辑
            bool isGameOver = RandomMove(w, h, ref p, ref otherP, map);
            //绘制地图
            map.Draw();
            //绘制玩家
            DrawPlayer(map, p, otherP);
            //判断是否要结束游戏
            if(isGameOver)
            {
                //卡住程序 让玩家按任意键
                Console.ReadKey(true);
                nowSceneType = E_SceneType.End;
            }
            return isGameOver;
        }

固定打印的信息

        static void DrawWall(int w, int h)
        {
            Console.ForegroundColor = ConsoleColor.Red;
            //横着的墙
            for (int i = 0; i < w; i+=2)
            {
                //最上面一行
                Console.SetCursorPosition(i, 0);
                Console.Write("■");

                //中间一行
                Console.SetCursorPosition(i, h-6);
                Console.Write("■");
                Console.SetCursorPosition(i, h - 11);
                Console.Write("■");

                //最下面一行
                Console.SetCursorPosition(i, h-1);
                Console.Write("■");
            }

            //竖着的墙
            for(int i = 0; i < h; i++)
            {
                //左边的墙
                Console.SetCursorPosition(0, i);
                Console.Write("■");

                //右边的墙
                Console.SetCursorPosition(w-2, i);
                Console.Write("■");
            }

            Console.SetCursorPosition(2, h - 5);
            Console.ForegroundColor = ConsoleColor.White;
            Console.Write("按任意键开始扔色子");

            Console.SetCursorPosition(2, h - 10);
            Console.Write("□:普通格子");

            Console.SetCursorPosition(2, h - 9);
            Console.ForegroundColor = ConsoleColor.Blue;
            Console.Write("■:暂停,一回合不动");

            Console.SetCursorPosition(22,h - 9);
            Console.ForegroundColor = ConsoleColor.Red;
            Console.Write("●:炸弹,倒退5格");

            Console.SetCursorPosition(2, h - 8);
            Console.ForegroundColor = ConsoleColor.White;
            Console.Write("×:时空隧道,随机倒退,暂停,交换位置");

            Console.SetCursorPosition(2, h - 7);
            Console.ForegroundColor = ConsoleColor.Cyan;
            Console.Write("★:玩家  ");

            Console.SetCursorPosition(11, h - 7);
            Console.ForegroundColor = ConsoleColor.Magenta;
            Console.Write("▲:电脑  ");

            Console.SetCursorPosition(20, h - 7);
            Console.ForegroundColor = ConsoleColor.Blue;
            Console.Write("◎:玩家电脑重合");
        }

格子类型枚举和格子结构体  

    enum E_Grid_Type
    {
        Normal,
        Boom,
        Pause,
        Tunnel,
    }

    /// <summary>
    /// 位置信息结构体
    /// </summary>
    struct Vector2
    {
        public int x;
        public int y;

        public Vector2(int x, int y)
        {
            this.x = x;
            this.y = y;
        }
    }

    struct Grid
    {
        //格子的类型
        public E_Grid_Type _type;
        //格子的位置
        public Vector2 pos;
        //构造函数
        public Grid(int x, int y, E_Grid_Type type)
        {
            pos.x = x;
            pos.y = y;
            _type = type;
        }
        
        //画一个格子
        public void Draw()
        {
            Console.SetCursorPosition(pos.x, pos.y);
            switch(_type)
            {
                case E_Grid_Type.Normal:
                    Console.ForegroundColor = ConsoleColor.White;
                    Console.Write("□");
                    break;
                case E_Grid_Type.Boom:
                    Console.ForegroundColor = ConsoleColor.Red;
                    Console.Write("●");
                    break;
                case E_Grid_Type.Pause:
                    Console.ForegroundColor = ConsoleColor.Blue;
                    Console.Write("■");
                    break;
                case E_Grid_Type.Tunnel:
                    Console.ForegroundColor = ConsoleColor.White;
                    Console.Write("×");
                    break;
            }
        }
    }

地图结构体

    struct Map
    {
        public Grid[] grids;
        public Map(int x, int y, int num)
        {
            grids = new Grid[num];
            int indexX = 0;
            int indexY = 0;
            int stepNum = 2;

            Random r = new Random();
            int randomNum;
            for(int i = 0; i < num; i++)
            {
                randomNum = r.Next(0, 101);
                if(randomNum < 85 || i == 0 || i == num - 1)
                {
                    //普通格子
                    grids[i]._type = E_Grid_Type.Normal;
                }
                else if(randomNum < 90 && randomNum >=85)
                {
                    //炸弹
                    grids[i]._type = E_Grid_Type.Boom;
                }
                else if(randomNum < 95 && randomNum >=90)
                {
                    //暂停
                    grids[i]._type = E_Grid_Type.Pause;
                }
                else
                {
                    //时空隧道
                    grids[i]._type = E_Grid_Type.Tunnel;
                }

                grids[i].pos = new Vector2(x, y);

                if(indexX == 10)
                {
                    y += 1;
                    indexY++;
                    if(indexY == 2)
                    {
                        indexX = 0;
                        indexY = 0;
                        stepNum = -stepNum;
                    }
                }
                else
                {
                    x += stepNum;
                    indexX++;
                }
            }
        }
        public void Draw()
        {
            for (int i = 0; i < grids.Length; i++)
            {
                grids[i].Draw();
            }
        }
    }

玩家和电脑结构体

    enum E_Player_Type
    {
        Player,
        Computer,
    }

    struct Player
    {
        public E_Player_Type type;
        public int nowIndex;
        //是否暂停的标识
        public bool isPause;

        public Player(int index, E_Player_Type type)
        {
            nowIndex = index;
            this.type = type;
            isPause = false;
        }
        
        public void Draw(Map mapInfo)
        {
            //从传入的地图中得到格子信息
            Grid grid = mapInfo.grids[nowIndex];
            Console.SetCursorPosition(grid.pos.x, grid.pos.y);
            switch(type)
            {
                case E_Player_Type.Player:
                    Console.ForegroundColor = ConsoleColor.Cyan;
                    Console.Write("★");
                    break;
                case E_Player_Type.Computer:
                    Console.ForegroundColor = ConsoleColor.Magenta;
                    Console.Write("▲");
                    break;
            }
        }
    }

绘制玩家

        static void DrawPlayer(Map map, Player player, Player computer)
        {
            //重合时
            if(player.nowIndex == computer.nowIndex)
            {
                //得到重合的位置
                Grid grid = map.grids[player.nowIndex];
                Console.SetCursorPosition(grid.pos.x, grid.pos.y);
                Console.ForegroundColor = ConsoleColor.DarkGreen;
                Console.Write("◎");
            }
            //不重合时
            else
            {
                player.Draw(map);
                computer.Draw(map);
            }
        }

扔骰子逻辑

        //擦除提示的函数
        static void ClearInfo(int h)
        {
            Console.SetCursorPosition(2, h - 5);
            Console.Write("                                             ");
            Console.SetCursorPosition(2, h - 4);
            Console.Write("                                             ");
            Console.SetCursorPosition(2, h - 3);
            Console.Write("                                             ");
            Console.SetCursorPosition(2, h - 2);
            Console.Write("                                             ");
        }

        /// <summary>
        /// 扔色子函数
        /// </summary>>
        /// <param name="w">窗口的宽</param>
        /// <param name="h">窗口的高</param>
        /// <param name="p">扔色子的对象</param>
        /// <param name="map">地图信息</param>
        /// <returns>默认返回false 代表没有结束</returns>
        static bool RandomMove(int w, int h, ref Player p, ref Player otherP, Map map)
        {
            //擦除之前显示的提示信息
            ClearInfo(h);
            //根据扔色子的玩家类型,决定信息的颜色
            Console.ForegroundColor = p.type == E_Player_Type.Player ? ConsoleColor.Cyan : ConsoleColor.Magenta;

            //扔色子之前判断玩家是否处于暂停状态
            if(p.isPause)
            {
                Console.SetCursorPosition(2, h - 5);
                Console.Write("处于暂停状态,{0}需要暂停一回合", p.type == E_Player_Type.Player ? "你" : "电脑");
                Console.SetCursorPosition(2, h - 4);
                Console.Write("请按任意键,让{0}开始扔色子", p.type == E_Player_Type.Player ? "电脑" : "你");
                //停止暂停
                p.isPause = false;
                return false;
            }

            //扔色子目的是改变玩家或电脑的位置 计算位置的变化
            //扔色子 随机一个1到6的数字,加上去
            Random r = new Random();
            int randomNum = r.Next(1, 7);
            p.nowIndex += randomNum;

            //打印扔的点数
            Console.SetCursorPosition(2, h - 5);
            Console.Write("{0}扔出的点数为:{1}", p.type == E_Player_Type.Player ? "你" : "电脑", randomNum);

            //首先判断是否到终点了
            if(p.nowIndex >= map.grids.Length - 1)
            {
                p.nowIndex = map.grids.Length - 1;
                Console.SetCursorPosition(2, h - 4);
                if(p.type == E_Player_Type.Player)
                {
                    Console.Write("恭喜你,率先到达了终点");
                }
                else
                {
                    Console.Write("很遗憾,电脑率先到达了终点");
                }
                Console.SetCursorPosition(2, h - 3);
                Console.Write("请按任意键结束");
                return true;
            }
            else
            {
                //没有到终点 就判断当前对象到了一个什么类型的格子
                Grid grid = map.grids[p.nowIndex];

                switch(grid._type)
                {
                    case E_Grid_Type.Normal:
                        Console.SetCursorPosition(2, h - 4);
                        Console.Write("{0}到达了一个安全位置", p.type == E_Player_Type.Player ? "你" : "电脑");
                        Console.SetCursorPosition(2, h - 3);
                        Console.Write("请按任意键,让{0}开始扔色子", p.type == E_Player_Type.Player ? "电脑" : "你");
                        break;
                    case E_Grid_Type.Boom:
                        p.nowIndex -= 5;
                        if(p.nowIndex < 0)
                        {
                            p.nowIndex = 0;
                        }
                        Console.SetCursorPosition(2, h - 4);
                        Console.Write("{0}踩到了炸弹,退后5格", p.type == E_Player_Type.Player ? "你" : "电脑");
                        Console.SetCursorPosition(2, h - 3);
                        Console.Write("请按任意键,让{0}开始扔色子", p.type == E_Player_Type.Player ? "电脑" : "你");
                        break;
                    case E_Grid_Type.Pause:
                        p.isPause = true;
                        Console.SetCursorPosition(2, h - 4);
                        Console.Write("{0}到达了暂停点,你需要暂停一回合", p.type == E_Player_Type.Player ? "你" : "电脑");
                        Console.SetCursorPosition(2, h - 3);
                        Console.Write("请按任意键,让{0}开始扔色子", p.type == E_Player_Type.Player ? "电脑" : "你");
                        break;
                    case E_Grid_Type.Tunnel:
                        Console.SetCursorPosition(2, h - 4);
                        Console.Write("{0}踩到了时空隧道", p.type == E_Player_Type.Player ? "你" : "电脑");

                        //随机
                        randomNum = r.Next(1, 91);
                        if(randomNum <= 30)
                        {
                            //倒退
                            p.nowIndex -= 5;
                            if(p.nowIndex < 0)
                            {
                                p.nowIndex = 0;
                            }
                            Console.SetCursorPosition(2, h - 5);
                            Console.Write("触发倒退5格");
                        }
                        else if(randomNum <= 60)
                        {
                            p.isPause = true;
                            Console.SetCursorPosition(2, h - 3);
                            Console.Write("触发暂停一回合");
                        }
                        else
                        {
                            int tmp = p.nowIndex;
                            p.nowIndex = otherP.nowIndex;
                            otherP.nowIndex = tmp;
                            Console.SetCursorPosition(2, h - 3);
                            Console.Write("惊喜,双方交换位置");
                        }

                        Console.SetCursorPosition(2, h - 2);
                        Console.Write("请按任意键,让{0}开始扔色子", p.type == E_Player_Type.Player ? "电脑" : "你");
                        break;
                }
            }

            //默认没有结束
            return false;
        }

以上就是C#实现经典飞行棋游戏的示例代码的详细内容,更多关于C#飞行棋的资料请关注编程网其它相关文章!

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

C#实现经典飞行棋游戏的示例代码

下载Word文档到电脑,方便收藏和打印~

下载Word文档

猜你喜欢

C语言实现经典小游戏井字棋的示例代码

这个三子棋游戏是在学习C语言的过程中自己编写的一个小游戏,现在将自己的思路(主要以流程图形式和代码中的注释表达)和具体代码以及运行结果分享出来以供大家学习参考,希望对大家有所帮助
2022-11-13

C#实现经典飞行棋游戏的脚本怎么写

今天小编给大家分享一下C#实现经典飞行棋游戏的脚本怎么写的相关知识点,内容详细,逻辑清晰,相信大部分人都还太了解这方面的知识,所以分享这篇文章给大家参考一下,希望大家阅读完这篇文章后有所收获,下面我们一起来了解一下吧。效果展示主函数
2023-06-29

C语言实现经典windows游戏扫雷的示例代码

今天我们会用C语言实现一个经典的windows小游戏:扫雷。扫雷是一款单机小游戏,每次通关最高难度的关卡都会开心好一阵。现在学会了C语言,总算可以自己实现扫雷了。话不多说,咱们开始吧
2022-11-13

100行C#代码实现经典扫雷游戏

这篇文章主要为大家详细介绍了如何用100行C#代码实现经典的扫雷游戏,文中的示例代码讲解详细,具有一定的借鉴价值,需要的可以参考一下
2023-02-27

C语言实现经典扫雷小游戏的示例代码

扫雷游戏是在一个指定的二维空间里,随机布置雷,把不是雷的位置都找出来,在你点一个位置的时候它会显示它周围全部雷的个数,根据这个线索去找,会更容易赢。本文将用C语言实现这一经典游戏,感兴趣的可以尝试一下
2022-11-13

C#如何用代码实现飞行棋简单小游戏

本篇内容主要讲解“C#如何用代码实现飞行棋简单小游戏”,感兴趣的朋友不妨来看看。本文介绍的方法操作简单快捷,实用性强。下面就让小编来带大家学习“C#如何用代码实现飞行棋简单小游戏”吧!目标:实现飞行棋游戏基础功能玩家在地图触发道具:1、获得
2023-06-14

C语言实现三子棋游戏的示例代码

今天我们将会用C语言实现三子棋。所谓三子棋,就是三行三列的棋盘,玩家可以和电脑下棋,率先连成三个的获胜。话不多说,我们开始吧
2022-11-13

编程热搜

  • Python 学习之路 - Python
    一、安装Python34Windows在Python官网(https://www.python.org/downloads/)下载安装包并安装。Python的默认安装路径是:C:\Python34配置环境变量:【右键计算机】--》【属性】-
    Python 学习之路 - Python
  • chatgpt的中文全称是什么
    chatgpt的中文全称是生成型预训练变换模型。ChatGPT是什么ChatGPT是美国人工智能研究实验室OpenAI开发的一种全新聊天机器人模型,它能够通过学习和理解人类的语言来进行对话,还能根据聊天的上下文进行互动,并协助人类完成一系列
    chatgpt的中文全称是什么
  • C/C++中extern函数使用详解
  • C/C++可变参数的使用
    可变参数的使用方法远远不止以下几种,不过在C,C++中使用可变参数时要小心,在使用printf()等函数时传入的参数个数一定不能比前面的格式化字符串中的’%’符号个数少,否则会产生访问越界,运气不好的话还会导致程序崩溃
    C/C++可变参数的使用
  • css样式文件该放在哪里
  • php中数组下标必须是连续的吗
  • Python 3 教程
    Python 3 教程 Python 的 3.0 版本,常被称为 Python 3000,或简称 Py3k。相对于 Python 的早期版本,这是一个较大的升级。为了不带入过多的累赘,Python 3.0 在设计的时候没有考虑向下兼容。 Python
    Python 3 教程
  • Python pip包管理
    一、前言    在Python中, 安装第三方模块是通过 setuptools 这个工具完成的。 Python有两个封装了 setuptools的包管理工具: easy_install  和  pip , 目前官方推荐使用 pip。    
    Python pip包管理
  • ubuntu如何重新编译内核
  • 改善Java代码之慎用java动态编译

目录