< Summary

Class:InputManager
Assembly:bamlab.micromissiles
File(s):/github/workspace/Assets/Scripts/Managers/InputManager.cs
Covered lines:66
Uncovered lines:108
Coverable lines:174
Total lines:234
Line coverage:37.9% (66 of 174)
Covered branches:0
Total branches:0
Covered methods:12
Total methods:15
Method coverage:80% (12 of 15)

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
InputManager()0%110100%
Awake()0%2.112070%
Start()0%110100%
Update()0%110100%
Handle3DModeMouseInput()0%4.943040%
HandleInput()0%220100%
Handle3DModeScrollWheelInput()0%2.52050%
HandleTacticalModeScrollWheelInput()0%6200%
HandleTacticalModeMouseInput()0%20400%
Handle3DModeLockableInput()0%49.1212036.36%
HandleTacticalModeLockableInput()0%1561200%
HandleLockableInput()0%6.65060%
HandleNonLockableInput()0%182.2118020.27%

File(s)

/github/workspace/Assets/Scripts/Managers/InputManager.cs

#LineLine coverage
 1using System.Collections;
 2using System.Collections.Generic;
 3using UnityEngine;
 4using System.Linq;
 5
 6public class InputManager : MonoBehaviour {
 27  public static InputManager Instance { get; private set; }
 8
 29  public bool mouseActive = true;
 10  [System.Serializable]
 11  public struct CameraPreset {
 12    public Vector3 position;
 13    public Quaternion rotation;
 14  }
 15
 216  public bool lockUserInput = false;
 17
 118  private void Awake() {
 219    if (Instance == null) {
 120      Instance = this;
 121      DontDestroyOnLoad(gameObject);
 122    } else {
 023      Destroy(gameObject);
 024    }
 125  }
 26
 27  private Vector2 _lastMousePosition;
 228  private bool _isDragging = false;
 29
 30  // Start is called before the first frame update
 231  void Start() {}
 32
 33  // Update is called once per frame.
 2834  void Update() {
 2835    HandleInput();
 2836  }
 37
 2838  private void Handle3DModeMouseInput() {
 2839    if (Input.GetMouseButton(0)) {
 040      CameraController.Instance.OrbitCamera(Input.GetAxis("Mouse X"), Input.GetAxis("Mouse Y"));
 41
 2842    } else if (Input.GetMouseButton(1)) {
 043      CameraController.Instance.RotateCamera(Input.GetAxis("Mouse X"), Input.GetAxis("Mouse Y"));
 044    }
 2845  }
 46
 2847  private void HandleInput() {
 5648    if (!lockUserInput) {
 2849      HandleLockableInput();
 2850    }
 2851    HandleNonLockableInput();
 2852  }
 53
 2854  void Handle3DModeScrollWheelInput() {
 2855    if (Input.GetAxis("Mouse ScrollWheel") != 0) {
 056      CameraController.Instance.ZoomCamera(Input.GetAxis("Mouse ScrollWheel") * 500);
 057    }
 2858  }
 59
 060  void HandleTacticalModeScrollWheelInput() {
 061    if (Input.GetAxis("Mouse ScrollWheel") != 0) {
 062      TacticalPanelController.Instance.ZoomIn(Input.GetAxis("Mouse ScrollWheel") * 0.1f);
 063    }
 064  }
 65
 066  private void HandleTacticalModeMouseInput() {
 67    // Start drag on right mouse button
 068    if (Input.GetMouseButtonDown(1)) {
 069      _isDragging = true;
 070      _lastMousePosition = Input.mousePosition;
 071    }
 72    // End drag when button released
 073    else if (Input.GetMouseButtonUp(1)) {
 074      _isDragging = false;
 075    }
 76
 77    // Handle dragging
 078    if (_isDragging) {
 079      Vector2 currentMousePos = Input.mousePosition;
 080      Vector2 delta = currentMousePos - _lastMousePosition;
 081      TacticalPanelController.Instance.Pan(delta);
 082      _lastMousePosition = currentMousePos;
 083    }
 084  }
 85
 2886  void Handle3DModeLockableInput() {
 2887    if (Input.GetKey(KeyCode.LeftShift)) {
 088      CameraController.Instance.SetCameraSpeed(CameraController.Instance.GetCameraSpeedMax());
 2889    } else {
 2890      CameraController.Instance.SetCameraSpeed(CameraController.Instance.GetCameraSpeedNormal());
 2891    }
 92
 93    // Translational movement.
 2894    if (Input.GetKey(KeyCode.W) || Input.GetKey(KeyCode.UpArrow)) {
 095      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Forward);
 096    }
 2897    if (Input.GetKey(KeyCode.A) || Input.GetKey(KeyCode.LeftArrow)) {
 098      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Left);
 099    }
 28100    if (Input.GetKey(KeyCode.S) || Input.GetKey(KeyCode.DownArrow)) {
 0101      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Back);
 0102    }
 28103    if (Input.GetKey(KeyCode.D) || Input.GetKey(KeyCode.RightArrow)) {
 0104      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Right);
 0105    }
 28106    if (Input.GetKey(KeyCode.Q)) {
 0107      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Up);
 0108    }
 28109    if (Input.GetKey(KeyCode.E)) {
 0110      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Down);
 0111    }
 28112  }
 113
 0114  void HandleTacticalModeLockableInput() {
 115    // Handle keyboard input for panning
 0116    Vector2 keyboardPanDirection = Vector2.zero;
 117
 0118    if (Input.GetKey(KeyCode.W) || Input.GetKey(KeyCode.UpArrow)) {
 0119      keyboardPanDirection.y += -1;
 0120    }
 0121    if (Input.GetKey(KeyCode.S) || Input.GetKey(KeyCode.DownArrow)) {
 0122      keyboardPanDirection.y += 1;
 0123    }
 0124    if (Input.GetKey(KeyCode.D) || Input.GetKey(KeyCode.RightArrow)) {
 0125      keyboardPanDirection.x += -1;
 0126    }
 0127    if (Input.GetKey(KeyCode.A) || Input.GetKey(KeyCode.LeftArrow)) {
 0128      keyboardPanDirection.x += 1;
 0129    }
 130
 0131    if (Input.GetKeyDown(KeyCode.Q)) {
 0132      TacticalPanelController.Instance.CycleRangeUp();
 0133    }
 0134    if (Input.GetKeyDown(KeyCode.E)) {
 0135      TacticalPanelController.Instance.CycleRangeDown();
 0136    }
 137
 0138    if (keyboardPanDirection != Vector2.zero) {
 0139      TacticalPanelController.Instance.PanWithKeyboard(keyboardPanDirection.normalized);
 0140    }
 0141  }
 142
 28143  void HandleLockableInput() {
 56144    if (mouseActive) {
 56145      if (UIManager.Instance.GetUIMode() == UIMode.THREE_DIMENSIONAL) {
 28146        Handle3DModeMouseInput();
 28147        Handle3DModeScrollWheelInput();
 28148      } else {
 0149        HandleTacticalModeMouseInput();
 0150        HandleTacticalModeScrollWheelInput();
 0151      }
 28152    }
 153
 56154    if (UIManager.Instance.GetUIMode() == UIMode.THREE_DIMENSIONAL) {
 28155      Handle3DModeLockableInput();
 28156    } else {
 0157      HandleTacticalModeLockableInput();
 0158    }
 159
 28160    if (Input.GetKeyDown(KeyCode.Tab)) {
 0161      UIManager.Instance.ToggleUIMode();
 0162    }
 28163  }
 164
 28165  void HandleNonLockableInput() {
 28166    if (Input.GetKeyDown(KeyCode.Escape)) {
 0167      SimManager.Instance.QuitSimulation();
 0168    }
 169
 28170    if (Input.GetKeyDown(KeyCode.C)) {}
 171
 28172    if (Input.GetKeyDown(KeyCode.R)) {
 0173      SimManager.Instance.RestartSimulation();
 0174    }
 175
 28176    if (Input.GetKeyDown(KeyCode.L)) {
 0177      UIManager.Instance.ToggleConfigSelectorPanel();
 0178    }
 179
 28180    if (Input.GetKeyDown(KeyCode.C)) {
 0181      ParticleManager.Instance.ClearHitMarkers();
 0182    }
 183
 28184    if (Input.GetKeyDown(KeyCode.Space)) {
 185      // Pause the time.
 186
 0187      if (!SimManager.Instance.IsSimulationPaused()) {
 0188        SimManager.Instance.PauseSimulation();
 0189      } else {
 0190        SimManager.Instance.ResumeSimulation();
 0191      }
 0192    }
 193
 28194    if (Input.GetKeyDown(KeyCode.P)) {
 0195      CameraController.Instance.SetAutoRotate(!CameraController.Instance.IsAutoRotate());
 0196    }
 197
 28198    if (Input.GetKeyDown(KeyCode.Alpha1)) {
 0199      if (Input.GetKey(KeyCode.LeftControl)) {
 0200        CameraController.Instance.FollowNextInterceptorSwarm();
 0201      } else {
 0202        CameraController.Instance.SnapToNextInterceptorSwarm();
 0203      }
 0204    }
 205
 28206    if (Input.GetKeyDown(KeyCode.Alpha2)) {
 0207      if (Input.GetKey(KeyCode.LeftControl)) {
 0208        CameraController.Instance.FollowNextThreatSwarm();
 0209      } else {
 0210        CameraController.Instance.SnapToNextThreatSwarm();
 0211      }
 0212    }
 213
 28214    if (Input.GetKeyDown(KeyCode.Alpha3)) {
 0215      if (Input.GetKey(KeyCode.LeftControl)) {
 0216        CameraController.Instance.FollowCenterAllAgents();
 0217      } else {
 0218        CameraController.Instance.SnapToCenterAllAgents();
 0219      }
 0220    }
 221
 28222    if (Input.GetKeyDown(KeyCode.Alpha4)) {
 223      // Set pre-set view 4.
 0224    }
 225
 28226    if (Input.GetKeyDown(KeyCode.Alpha5)) {
 227      // Set pre-set view 5.
 0228    }
 229
 28230    if (Input.GetKeyDown(KeyCode.Alpha6)) {
 231      // Set pre-set view 6.
 0232    }
 28233  }
 234}