[Unity Demo]从零开始制作空洞骑士Hollow Knight第二集:通过InControl插件 ...

打印 上一主题 下一主题

主题 704|帖子 704|积分 2112

提示:文章写完后,目次可以自动生成,如何生成可参考右边的帮助文档
  
   文章目次

  

  • 媒介
  • 一、通过InControl插件实现绑定玩家输入
  • 二、制作小骑士移动和空闲动画

    • 1.制作动画
    • 2.玩家移动和翻转图像
    • 3.状态机思想实现动画切换

  • 总结
  

媒介

好久没来CSDN看看,忽然看到前两年自己写的文章从零开始制作空洞骑士只做了一篇就忽然烂尾了,刚好近来开始学习做Unity,我决定重启这个项目,从零开始制作空洞骑士!第一集我们导入了素材和长途git管理项目,OK这期我们就从通过InControl插件实现绑定玩家输入以及制作小骑士移动和空闲动画。


一、通过InControl插件实现绑定玩家输入

着实这一部挺难的,由于InControl插件你在网上绝对不超过五个视频资料,但没办法空洞骑士就是用这个来控制键盘控制器输入的,为了原汁原味就只能翻一下InControl提供的Examples示例里学习。
学习完成后直接来看我写的InputHandler.cs和GameManager.cs

在GameManager.cs中我们临时先只用实现一个单例模式:
  1. using System.Collections;
  2. using System.Collections.Generic;
  3. using UnityEngine;
  4. public class GameManager : MonoBehaviour
  5. {
  6.     private static GameManager _instance;
  7.     public static GameManager instance
  8.     {
  9.         get
  10.         {
  11.             if(_instance == null)
  12.             {
  13.                 _instance = FindObjectOfType<GameManager>();
  14.             }
  15.             if (_instance == null)
  16.             {
  17.                 Debug.LogError("Couldn't find a Game Manager, make sure one exists in the scene.");
  18.             }
  19.             else if (Application.isPlaying)
  20.             {
  21.                 DontDestroyOnLoad(_instance.gameObject);
  22.             }
  23.             return _instance;
  24.         }
  25.     }
  26.     private void Awake()
  27.     {
  28.         if(_instance != this)
  29.         {
  30.             _instance = this;
  31.             DontDestroyOnLoad(this);
  32.             return;
  33.         }
  34.         if(this != _instance)
  35.         {
  36.             Destroy(gameObject);
  37.             return;
  38.         }
  39.     }
  40. }
复制代码
 在来到InputHandler.cs之前,我们还需要创建映射表HeroActions:
  1. using System;
  2. using InControl;
  3. public class HeroActions : PlayerActionSet
  4. {
  5.     public PlayerAction left;
  6.     public PlayerAction right;
  7.     public PlayerAction up;
  8.     public PlayerAction down;
  9.     public PlayerTwoAxisAction moveVector;
  10.     public HeroActions()
  11.     {
  12.         left = CreatePlayerAction("Left");
  13.         left.StateThreshold = 0.3f;
  14.         right = CreatePlayerAction("Right");
  15.         right.StateThreshold = 0.3f;
  16.         up = CreatePlayerAction("Up");
  17.         up.StateThreshold = 0.3f;
  18.         down = CreatePlayerAction("Down");
  19.         down.StateThreshold = 0.3f;
  20.         moveVector = CreateTwoAxisPlayerAction(left, right, up, down);
  21.         moveVector.LowerDeadZone = 0.15f;
  22.         moveVector.UpperDeadZone = 0.95f;
  23.     }
  24. }
复制代码
OK到了最关键的InputHandler.cs了:
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using GlobalEnums;
  5. using InControl;
  6. using UnityEngine;
  7. public class InputHandler : MonoBehaviour
  8. {
  9.     public InputDevice gameController;
  10.     public HeroActions inputActions;
  11.     public void Awake()
  12.     {
  13.             inputActions = new HeroActions();
  14.     }
  15.     public void Start()
  16.     {
  17.             MapKeyboardLayoutFromGameSettings();
  18.             if(InputManager.ActiveDevice != null && InputManager.ActiveDevice.IsAttached)
  19.             {
  20.             }
  21.             else
  22.             {
  23.                 gameController = InputDevice.Null;
  24.             }
  25.             Debug.LogFormat("Input Device set to {0}.", new object[]
  26.             {
  27.                 gameController.Name
  28.             });
  29.     }
  30. //暂时没有GameSettings后续会创建的,这里是指将键盘按键绑定到HeroActions 中
  31.     private void MapKeyboardLayoutFromGameSettings()
  32.     {
  33.             AddKeyBinding(inputActions.up, "W");
  34.             AddKeyBinding(inputActions.down, "S");
  35.             AddKeyBinding(inputActions.left, "A");
  36.             AddKeyBinding(inputActions.right, "D");
  37.     }
  38.     private static void AddKeyBinding(PlayerAction action, string savedBinding)
  39.     {
  40.         Mouse mouse = Mouse.None;
  41.         Key key;
  42.         if (!Enum.TryParse(savedBinding, out key) && !Enum.TryParse(savedBinding, out mouse))
  43.         {
  44.             return;
  45.         }
  46.         if (mouse != Mouse.None)
  47.         {
  48.             action.AddBinding(new MouseBindingSource(mouse));
  49.             return;
  50.         }
  51.         action.AddBinding(new KeyBindingSource(new Key[]
  52.         {
  53.                         key
  54.         }));
  55.     }
  56. }
复制代码
 给我们的小骑士创建一个HeroController.cs,检测输入最关键的是一行代码:

move_input = inputHandler.inputActions.moveVector.Vector.x;

  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using HutongGames.PlayMaker;
  5. using GlobalEnums;
  6. using UnityEngine;
  7. public class HeroController : MonoBehaviour
  8. {
  9.     public ActorStates hero_state;
  10.     public ActorStates prev_hero_state;
  11.     public bool acceptingInput = true;
  12.     public float move_input;
  13.     public float RUN_SPEED = 5f;
  14.     private Rigidbody2D rb2d;
  15.     private BoxCollider2D col2d;
  16.     private GameManager gm;
  17.     private InputHandler inputHandler;
  18.     private void Awake()
  19.     {
  20.         SetupGameRefs();
  21.     }
  22.     private void SetupGameRefs()
  23.     {
  24.         rb2d = GetComponent<Rigidbody2D>();
  25.         col2d = GetComponent<BoxCollider2D>();
  26.         gm = GameManager.instance;
  27.         inputHandler = gm.GetComponent<InputHandler>();
  28.     }
  29.     void Start()
  30.     {
  31.         
  32.     }
  33.     void Update()
  34.     {
  35.         orig_Update();
  36.     }
  37.     private void orig_Update()
  38.     {
  39.         if (hero_state == ActorStates.no_input)
  40.             {
  41.             }
  42.         else if(hero_state != ActorStates.no_input)
  43.             {
  44.             LookForInput();
  45.             }
  46.     }
  47.     private void FixedUpdate()
  48.     {
  49.         if (hero_state != ActorStates.no_input)
  50.             {
  51.             Move(move_input);
  52.             }
  53.     }
  54.     private void Move(float move_direction)
  55.     {
  56.         if(acceptingInput)
  57.             {
  58.             rb2d.velocity = new Vector2(move_direction * RUN_SPEED, rb2d.velocity.y);
  59.             }
  60.     }
  61.     private void LookForInput()
  62.     {
  63.         if (acceptingInput)
  64.         {
  65.             move_input = inputHandler.inputActions.moveVector.Vector.x;
  66.         }
  67.     }
  68. }
  69. [Serializable]
  70. public class HeroControllerStates
  71. {
  72.     public bool facingRight;
  73.     public bool onGround;
  74.     public HeroControllerStates()
  75.     {
  76.         facingRight = true;
  77.         onGround = false;
  78.     }
  79. }
复制代码
记得一句话:FixedUpdate()处理处罚物理移动,Update()处理处罚逻辑 
二、制作小骑士移动和空闲动画

1.制作动画

        素材找到Idle和Walk文件夹,创建两个同名animation,sprite往上面一放自己就做好了。
        大概你注意到我没有给这两个动画连线,着实是我想做个动画状态机,通过核心代码
        animator.Play()来管理动画的切换。

2.玩家移动和翻转图像

我们还需要给小骑士添加更多的功能比如翻转图像:
  1. using System;
  2. using System.Collections;
  3. using System.Collections.Generic;
  4. using HutongGames.PlayMaker;
  5. using GlobalEnums;
  6. using UnityEngine;
  7. public class HeroController : MonoBehaviour
  8. {
  9.     public ActorStates hero_state;
  10.     public ActorStates prev_hero_state;
  11.     public bool acceptingInput = true;
  12.     public float move_input;
  13.     public float RUN_SPEED = 5f;
  14.     private Rigidbody2D rb2d;
  15.     private BoxCollider2D col2d;
  16.     private GameManager gm;
  17.     private InputHandler inputHandler;
  18.     public HeroControllerStates cState;
  19.     private HeroAnimatorController animCtrl;
  20.     private void Awake()
  21.     {
  22.         SetupGameRefs();
  23.     }
  24.     private void SetupGameRefs()
  25.     {
  26.         if (cState == null)
  27.             cState = new HeroControllerStates();
  28.         rb2d = GetComponent<Rigidbody2D>();
  29.         col2d = GetComponent<BoxCollider2D>();
  30.         animCtrl = GetComponent<HeroAnimatorController>();
  31.         gm = GameManager.instance;
  32.         inputHandler = gm.GetComponent<InputHandler>();
  33.     }
  34.     void Start()
  35.     {
  36.         
  37.     }
  38.     void Update()
  39.     {
  40.         orig_Update();
  41.     }
  42.     private void orig_Update()
  43.     {
  44.         if (hero_state == ActorStates.no_input)
  45.         {
  46.         }
  47.         else if(hero_state != ActorStates.no_input)
  48.         {
  49.             LookForInput();
  50.         }
  51.     }
  52.     private void FixedUpdate()
  53.     {
  54.         if (hero_state != ActorStates.no_input)
  55.         {
  56.             Move(move_input);
  57.             if(move_input > 0f && !cState.facingRight )
  58.             {
  59.                 FlipSprite();
  60.             }
  61.             else if(move_input < 0f && cState.facingRight)
  62.             {
  63.                 FlipSprite();
  64.             }
  65.         }
  66.     }
  67.     private void Move(float move_direction)
  68.     {
  69.         if (cState.onGround)
  70.         {
  71.             SetState(ActorStates.grounded);
  72.         }
  73.         if(acceptingInput)
  74.         {
  75.             rb2d.velocity = new Vector2(move_direction * RUN_SPEED, rb2d.velocity.y);
  76.         }
  77.     }
  78.     public void FlipSprite()
  79.     {
  80.         cState.facingRight = !cState.facingRight;
  81.         Vector3 localScale = transform.localScale;
  82.         localScale.x *= -1f;
  83.         transform.localScale = localScale;
  84.     }
  85.     private void LookForInput()
  86.     {
  87.         if (acceptingInput)
  88.         {
  89.             move_input = inputHandler.inputActions.moveVector.Vector.x;
  90.         }
  91.     }
  92.     /// <summary>
  93.     /// 设置玩家的ActorState的新类型
  94.     /// </summary>
  95.     /// <param name="newState"></param>
  96.     private void SetState(ActorStates newState)
  97.     {
  98.         if(newState == ActorStates.grounded)
  99.         {
  100.             if(Mathf.Abs(move_input) > Mathf.Epsilon)
  101.             {
  102.                 newState  = ActorStates.running;
  103.             }
  104.             else
  105.             {
  106.                 newState = ActorStates.idle;
  107.             }
  108.         }
  109.         else if(newState == ActorStates.previous)
  110.         {
  111.             newState = prev_hero_state;
  112.         }
  113.         if(newState != hero_state)
  114.         {
  115.             prev_hero_state = hero_state;
  116.             hero_state = newState;
  117.             animCtrl.UpdateState(newState);
  118.         }
  119.     }
  120.     private void OnCollisionEnter2D(Collision2D collision)
  121.     {
  122.         if(collision.gameObject.layer == LayerMask.NameToLayer("Wall"))
  123.         {
  124.             cState.onGround = true;
  125.         }
  126.     }
  127.     private void OnCollisionStay2D(Collision2D collision)
  128.     {
  129.         if (collision.gameObject.layer == LayerMask.NameToLayer("Wall"))
  130.         {
  131.             cState.onGround = true;
  132.         }
  133.     }
  134.     private void OnCollisionExit2D(Collision2D collision)
  135.     {
  136.         if (collision.gameObject.layer == LayerMask.NameToLayer("Wall"))
  137.         {
  138.             cState.onGround = false;
  139.         }
  140.     }
  141. }
  142. [Serializable]
  143. public class HeroControllerStates
  144. {
  145.     public bool facingRight;
  146.     public bool onGround;
  147.     public HeroControllerStates()
  148.     {
  149.         facingRight = true;
  150.         onGround = false;
  151.     }
  152. }
复制代码
创建命名空间GlobalEnums,创建一个新的摆列范例: 
  1. using System;
  2. namespace GlobalEnums
  3. {
  4.     public enum ActorStates
  5.     {
  6.         grounded,
  7.         idle,
  8.         running,
  9.         airborne,
  10.         wall_sliding,
  11.         hard_landing,
  12.         dash_landing,
  13.         no_input,
  14.         previous
  15.     }
  16. }
复制代码

3.状态机思想实现动画切换

有了这些我们就可以有效控制动画切换,创建一个新的脚本给Player:

可以看到我们创建了两个属性纪录当前的actorState和上一个actorState来实现动画切换(后面会用到的)
  1. using System;
  2. using GlobalEnums;
  3. using UnityEngine;
  4. public class HeroAnimatorController : MonoBehaviour
  5. {
  6.     private Animator animator;
  7.     private AnimatorClipInfo[] info;
  8.     private HeroController heroCtrl;
  9.     private HeroControllerStates cState;
  10.     private string clipName;
  11.     private float currentClipLength;
  12.     public ActorStates actorStates { get; private set; }
  13.     public ActorStates prevActorState { get; private set; }
  14.     private void Start()
  15.     {
  16.         animator = GetComponent<Animator>();
  17.         heroCtrl = GetComponent<HeroController>();
  18.         actorStates = heroCtrl.hero_state;
  19.         PlayIdle();
  20.     }
  21.     private void Update()
  22.     {
  23.         UpdateAnimation();
  24.     }
  25.     private void UpdateAnimation()
  26.     {
  27.         //info = animator.GetCurrentAnimatorClipInfo(0);
  28.         //currentClipLength = info[0].clip.length;
  29.         //clipName = info[0].clip.name;
  30.         if(actorStates == ActorStates.no_input)
  31.         {
  32.             //TODO:
  33.         }
  34.         else if(actorStates == ActorStates.idle)
  35.         {
  36.             //TODO:
  37.             PlayIdle();
  38.         }
  39.         else if(actorStates == ActorStates.running)
  40.         {
  41.             PlayRun();
  42.         }
  43.     }
  44.     private void PlayRun()
  45.     {
  46.         animator.Play("Run");
  47.     }
  48.     public void PlayIdle()
  49.     {
  50.         animator.Play("Idle");
  51.     }
  52.     public void UpdateState(ActorStates newState)
  53.     {
  54.         if(newState != actorStates)
  55.         {
  56.             prevActorState = actorStates;
  57.             actorStates = newState;
  58.         }
  59.     }
  60. }
复制代码


总结

最后给大伙看看效果怎么样,可以看到运行游戏后cState,hero_state和prev_hero_state都没有题目,动画也正常播放:


累死我了我去睡个觉顺便上传到github,OK大伙晚安醒来接着更新。 

免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作!更多信息从访问主页:qidao123.com:ToB企服之家,中国第一个企服评测及商务社交产业平台。
回复

使用道具 举报

0 个回复

倒序浏览

快速回复

您需要登录后才可以回帖 登录 or 立即注册

本版积分规则

郭卫东

金牌会员
这个人很懒什么都没写!

标签云

快速回复 返回顶部 返回列表