热门标签 | HotTags
当前位置:  开发笔记 > 前端 > 正文

unity实现简单的贪吃蛇游戏

这篇文章主要为大家详细介绍了unity实现简单的贪吃蛇游戏,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

本文实例为大家分享了unity实现简单贪吃蛇游戏的具体代码,供大家参考,具体内容如下

SatUIController代码

using UnityEngine;
using UnityEngine.UI;

public class StartUIController : MonoBehaviour
{
  public Text lastText;
  public Text bestText;
  public Toggle blue;
  public Toggle yellow;
  public Toggle border;
  public Toggle noBorder;

  void Awake()
  {
    lastText.text = "上次:长度" + PlayerPrefs.GetInt("lastl", 0) + ",分数" + PlayerPrefs.GetInt("lasts", 0);
    bestText.text = "最好:长度" + PlayerPrefs.GetInt("bestl", 0) + ",分数" + PlayerPrefs.GetInt("bests", 0);
  }

  void Start()
  {
    if (PlayerPrefs.GetString("sh", "sh01") == "sh01")
    {
      blue.isOn = true;
      PlayerPrefs.SetString("sh", "sh01");
      PlayerPrefs.SetString("sb01", "sb0101");
      PlayerPrefs.SetString("sb02", "sb0102");
    }
    else
    {
      yellow.isOn = true;
      PlayerPrefs.SetString("sh", "sh02");
      PlayerPrefs.SetString("sb01", "sb0201");
      PlayerPrefs.SetString("sb02", "sb0202");
    }
    if (PlayerPrefs.GetInt("border", 1) == 1)
    {
      border.isOn = true;
      PlayerPrefs.SetInt("border", 1);
    }
    else
    {
      noBorder.isOn = true;
      PlayerPrefs.SetInt("border", 0);
    }
  }

  public void BlueSelected(bool isOn)
  {
    if (isOn)
    {
      PlayerPrefs.SetString("sh", "sh01");
      PlayerPrefs.SetString("sb01", "sb0101");
      PlayerPrefs.SetString("sb02", "sb0102");
    }
  }

  public void YellowSelected(bool isOn)
  {
    if (isOn)
    {
      PlayerPrefs.SetString("sh", "sh02");
      PlayerPrefs.SetString("sb01", "sb0201");
      PlayerPrefs.SetString("sb02", "sb0202");
    }
  }

  public void BorderSelected(bool isOn)
  {
    if (isOn)
    {
      PlayerPrefs.SetInt("border", 1);
    }
  }

  public void NoBorderSelected(bool isOn)
  {
    if (isOn)
    {
      PlayerPrefs.SetInt("border", 0);
    }
  }

  public void StartGame()
  {
    UnityEngine.SceneManagement.SceneManager.LoadScene(1);
  }
}

SnakeHead代码

using System.Collections;
using System.Collections.Generic;
//using System.Linq;
using UnityEngine;
using UnityEngine.UI;

public class SnakeHead : MonoBehaviour
{
  public List bodyList = new List();
  public float velocity = 0.35f;
  public int step;
  private int x;
  private int y;
  private Vector3 headPos;
  private Transform canvas;
  private bool isDie = false;

  public AudioClip eatClip;
  public AudioClip dieClip;
  public GameObject dieEffect;
  public GameObject bodyPrefab;
  public Sprite[] bodySprites = new Sprite[2];

  void Awake()
  {
    canvas = GameObject.Find("Canvas").transform;
    //通过Resources.Load(string path)方法加载资源,path的书写不需要加Resources/以及文件扩展名
    gameObject.GetComponent().sprite = Resources.Load(PlayerPrefs.GetString("sh", "sh02"));
    bodySprites[0] = Resources.Load(PlayerPrefs.GetString("sb01", "sb0201"));
    bodySprites[1] = Resources.Load(PlayerPrefs.GetString("sb02", "sb0202"));
  }

  void Start()
  {
    InvokeRepeating("Move", 0, velocity);
    x = 0;y = step;
  }

  void Update()
  {
    if (Input.GetKeyDown(KeyCode.Space) && MainUIController.Instance.isPause == false && isDie == false)
    {
      CancelInvoke();
      InvokeRepeating("Move", 0, velocity - 0.2f);
    }
    if (Input.GetKeyUp(KeyCode.Space) && MainUIController.Instance.isPause == false && isDie == false)
    {
      CancelInvoke();
      InvokeRepeating("Move", 0, velocity);
    }
    if (Input.GetKey(KeyCode.W) && y != -step && MainUIController.Instance.isPause == false && isDie == false)
    {
      gameObject.transform.localRotation = Quaternion.Euler(0, 0, 0);
      x = 0;y = step;
    }
    if (Input.GetKey(KeyCode.S) && y != step && MainUIController.Instance.isPause == false && isDie == false)
    {
      gameObject.transform.localRotation = Quaternion.Euler(0, 0, 180);
      x = 0; y = -step;
    }
    if (Input.GetKey(KeyCode.A) && x != step && MainUIController.Instance.isPause == false && isDie == false)
    {
      gameObject.transform.localRotation = Quaternion.Euler(0, 0, 90);
      x = -step; y = 0;
    }
    if (Input.GetKey(KeyCode.D) && x != -step && MainUIController.Instance.isPause == false && isDie == false)
    {
      gameObject.transform.localRotation = Quaternion.Euler(0, 0, -90);
      x = step; y = 0;
    }
  }

  void Move()
  {
    headPos = gameObject.transform.localPosition;                        //保存下来蛇头移动前的位置
    gameObject.transform.localPosition = new Vector3(headPos.x + x, headPos.y + y, headPos.z); //蛇头向期望位置移动
    if (bodyList.Count > 0)
    {
      //由于我们是双色蛇身,此方法弃用
      //bodyList.Last().localPosition = headPos;                       //将蛇尾移动到蛇头移动前的位置
      //bodyList.Insert(0, bodyList.Last());                         //将蛇尾在List中的位置更新到最前
      //bodyList.RemoveAt(bodyList.Count - 1);                        //移除List最末尾的蛇尾引用

      //由于我们是双色蛇身,使用此方法达到显示目的
      for (int i = bodyList.Count - 2; i >= 0; i--)                      //从后往前开始移动蛇身
      {
        bodyList[i + 1].localPosition = bodyList[i].localPosition;             //每一个蛇身都移动到它前面一个节点的位置
      }
      bodyList[0].localPosition = headPos;                          //第一个蛇身移动到蛇头移动前的位置
    }
  }

  void Grow()
  {
    AudioSource.PlayClipAtPoint(eatClip, Vector3.zero);
    int index = (bodyList.Count % 2 == 0) ? 0 : 1;
    GameObject body = Instantiate(bodyPrefab, new Vector3(2000, 2000, 0), Quaternion.identity);
    body.GetComponent().sprite = bodySprites[index];
    body.transform.SetParent(canvas, false);
    bodyList.Add(body.transform);
  }

  void Die()
  {
    AudioSource.PlayClipAtPoint(dieClip, Vector3.zero);
    CancelInvoke();
    isDie = true;
    Instantiate(dieEffect);
    PlayerPrefs.SetInt("lastl", MainUIController.Instance.length);
    PlayerPrefs.SetInt("lasts", MainUIController.Instance.score);
    if (PlayerPrefs.GetInt("bests", 0) 

MainUIController

using UnityEngine;
using UnityEngine.UI;

public class MainUIController : MonoBehaviour
{
  private static MainUIController _instance;
  public static MainUIController Instance
  {
    get
    {
      return _instance;
    }
  }

  public bool hasBorder = true;
  public bool isPause = false;
  public int score = 0;
  public int length = 0;
  public Text msgText;
  public Text scoreText;
  public Text lengthText;
  public Image pauseImage;
  public Sprite[] pauseSprites;
  public Image bgImage;
  private Color tempColor;

  void Awake()
  {
    _instance = this;
  }

  void Start()
  {
    if (PlayerPrefs.GetInt("border", 1) == 0)
    {
      hasBorder = false;
      foreach (Transform t in bgImage.gameObject.transform)
      {
        t.gameObject.GetComponent().enabled = false;
      }
    }
  }

  void Update()
  {
    switch (score / 100)
    {
      case 0:
      case 1:
      case 2:
        break;
      case 3:
      case 4:
        ColorUtility.TryParseHtmlString("#CCEEFFFF", out tempColor);
        bgImage.color = tempColor;
        msgText.text = "阶段" + 2;
        break;
      case 5:
      case 6:
        ColorUtility.TryParseHtmlString("#CCFFDBFF", out tempColor);
        bgImage.color = tempColor;
        msgText.text = "阶段" + 3;
        break;
      case 7:
      case 8:
        ColorUtility.TryParseHtmlString("#EBFFCCFF", out tempColor);
        bgImage.color = tempColor;
        msgText.text = "阶段" + 4;
        break;
      case 9:
      case 10:
        ColorUtility.TryParseHtmlString("#FFF3CCFF", out tempColor);
        bgImage.color = tempColor;
        msgText.text = "阶段" + 5;
        break;
      default:
        ColorUtility.TryParseHtmlString("#FFDACCFF", out tempColor);
        bgImage.color = tempColor;
        msgText.text = "无尽阶段";
        break;
    }
  }

  public void UpdateUI(int s = 5, int l = 1)
  {
    score += s;
    length += l;
    scoreText.text = "得分:\n" + score;
    lengthText.text = "长度:\n" + length;
  }

  public void Pause()
  {
    isPause = !isPause;
    if (isPause)
    {
      Time.timeScale = 0;
      pauseImage.sprite = pauseSprites[1];
    }
    else
    {
      Time.timeScale = 1;
      pauseImage.sprite = pauseSprites[0];
    }
  }

  public void Home()
  {
    UnityEngine.SceneManagement.SceneManager.LoadScene(0);
  }
}

FoodMaker代码

using UnityEngine;
using UnityEngine.UI;

public class FoodMaker : MonoBehaviour
{
  private static FoodMaker _instance;
  public static FoodMaker Instance
  {
    get
    {
      return _instance;
    }
  }

  public int xlimit = 21;
  public int ylimit = 11;
  public int xoffset = 7;
  public GameObject foodPrefab;
  public GameObject rewardPrefab;
  public Sprite[] foodSprites;
  private Transform foodHolder;

  void Awake()
  {
    _instance = this;
  }

  void Start()
  {
    foodHolder = GameObject.Find("FoodHolder").transform;
    MakeFood(false);
  }

  public void MakeFood(bool isReward)
  {
    int index = Random.Range(0, foodSprites.Length);
    GameObject food = Instantiate(foodPrefab);
    food.GetComponent().sprite = foodSprites[index];
    food.transform.SetParent(foodHolder, false);
    int x = Random.Range(-xlimit + xoffset, xlimit);
    int y = Random.Range(-ylimit, ylimit);
    food.transform.localPosition = new Vector3(x * 30, y * 30, 0);
    if (isReward)
    {
      GameObject reward = Instantiate(rewardPrefab);
      reward.transform.SetParent(foodHolder, false);
      x = Random.Range(-xlimit + xoffset, xlimit);
      y = Random.Range(-ylimit, ylimit);
      reward.transform.localPosition = new Vector3(x * 30, y * 30, 0);
    }
  }
}

代码放置如下

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


推荐阅读
  • 深入理解 Oracle 存储函数:计算员工年收入
    本文介绍如何使用 Oracle 存储函数查询特定员工的年收入。我们将详细解释存储函数的创建过程,并提供完整的代码示例。 ... [详细]
  • 在 Windows 10 中,F1 至 F12 键默认设置为快捷功能键。本文将介绍几种有效方法来禁用这些快捷键,并恢复其标准功能键的作用。请注意,部分笔记本电脑的快捷键可能无法完全关闭。 ... [详细]
  • 本文总结了2018年的关键成就,包括职业变动、购车、考取驾照等重要事件,并分享了读书、工作、家庭和朋友方面的感悟。同时,展望2019年,制定了健康、软实力提升和技术学习的具体目标。 ... [详细]
  • 在计算机技术的学习道路上,51CTO学院以其专业性和专注度给我留下了深刻印象。从2012年接触计算机到2014年开始系统学习网络技术和安全领域,51CTO学院始终是我信赖的学习平台。 ... [详细]
  • CSS 布局:液态三栏混合宽度布局
    本文介绍了如何使用 CSS 实现液态的三栏布局,其中各栏具有不同的宽度设置。通过调整容器和内容区域的属性,可以实现灵活且响应式的网页设计。 ... [详细]
  • Linux 系统启动故障排除指南:MBR 和 GRUB 问题
    本文详细介绍了 Linux 系统启动过程中常见的 MBR 扇区和 GRUB 引导程序故障及其解决方案,涵盖从备份、模拟故障到恢复的具体步骤。 ... [详细]
  • 本文介绍了如何使用jQuery根据元素的类型(如复选框)和标签名(如段落)来获取DOM对象。这有助于更高效地操作网页中的特定元素。 ... [详细]
  • 本文介绍如何在 Xcode 中使用快捷键和菜单命令对多行代码进行缩进,包括右缩进和左缩进的具体操作方法。 ... [详细]
  • 在Linux系统中配置并启动ActiveMQ
    本文详细介绍了如何在Linux环境中安装和配置ActiveMQ,包括端口开放及防火墙设置。通过本文,您可以掌握完整的ActiveMQ部署流程,确保其在网络环境中正常运行。 ... [详细]
  • 本文介绍如何通过Windows批处理脚本定期检查并重启Java应用程序,确保其持续稳定运行。脚本每30分钟检查一次,并在需要时重启Java程序。同时,它会将任务结果发送到Redis。 ... [详细]
  • 本文介绍如何通过SQL查询从JDE(JD Edwards)系统中提取所有字典数据,涵盖关键表的关联和字段选择。具体包括F0004和F0005系列表的数据提取方法。 ... [详细]
  • 如何高效创建和使用字体图标
    在Web和移动开发中,为什么选择字体图标?主要原因是其卓越的性能,可以显著减少HTTP请求并优化页面加载速度。本文详细介绍了从设计到应用的字体图标制作流程,并提供了专业建议。 ... [详细]
  • 本文详细介绍了如何通过命令行启动MySQL服务,包括打开命令提示符窗口、进入MySQL的bin目录、输入正确的连接命令以及注意事项。文中还提供了更多相关命令的资源链接。 ... [详细]
  • 本文详细介绍了如何解决Uploadify插件在Internet Explorer(IE)9和10版本中遇到的点击失效及JQuery运行时错误问题。通过修改相关JavaScript代码,确保上传功能在不同浏览器环境中的一致性和稳定性。 ... [详细]
  • 本文介绍了如何利用JavaScript或jQuery来判断网页中的文本框是否处于焦点状态,以及如何检测鼠标是否悬停在指定的HTML元素上。 ... [详细]
author-avatar
大帅哥鹏飞lyll
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有