< Summary

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

Metrics

MethodBranch coverage Crap Score Cyclomatic complexity NPath complexity Sequence coverage
InputManager()0%2100%
Awake()0%6200%
Start()0%2100%
Update()0%2100%
Handle3DModeMouseInput()0%12300%
HandleInput()0%6200%
Handle3DModeScrollWheelInput()0%6200%
HandleTacticalModeScrollWheelInput()0%6200%
HandleTacticalModeMouseInput()0%20400%
Handle3DModeLockableInput()0%1561200%
HandleTacticalModeLockableInput()0%1561200%
HandleLockableInput()0%30500%
HandleNonLockableInput()0%3421800%

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 {
 07  public static InputManager Instance { get; private set; }
 8
 09  public bool mouseActive = true;
 10  [System.Serializable]
 11  public struct CameraPreset {
 12    public Vector3 position;
 13    public Quaternion rotation;
 14  }
 15
 016  public bool lockUserInput = false;
 17
 018  private void Awake() {
 019    if (Instance == null) {
 020      Instance = this;
 021      DontDestroyOnLoad(gameObject);
 022    } else {
 023      Destroy(gameObject);
 024    }
 025  }
 26
 27  private Vector2 _lastMousePosition;
 028  private bool _isDragging = false;
 29
 30  // Start is called before the first frame update
 031  void Start() {}
 32
 33  // Update is called once per frame.
 034  void Update() {
 035    HandleInput();
 036  }
 37
 038  private void Handle3DModeMouseInput() {
 039    if (Input.GetMouseButton(0)) {
 040      CameraController.Instance.OrbitCamera(Input.GetAxis("Mouse X"), Input.GetAxis("Mouse Y"));
 41
 042    } else if (Input.GetMouseButton(1)) {
 043      CameraController.Instance.RotateCamera(Input.GetAxis("Mouse X"), Input.GetAxis("Mouse Y"));
 044    }
 045  }
 46
 047  private void HandleInput() {
 048    if (!lockUserInput) {
 049      HandleLockableInput();
 050    }
 051    HandleNonLockableInput();
 052  }
 53
 054  void Handle3DModeScrollWheelInput() {
 055    if (Input.GetAxis("Mouse ScrollWheel") != 0) {
 056      CameraController.Instance.ZoomCamera(Input.GetAxis("Mouse ScrollWheel") * 500);
 057    }
 058  }
 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
 086  void Handle3DModeLockableInput() {
 087    if (Input.GetKey(KeyCode.LeftShift)) {
 088      CameraController.Instance.SetCameraSpeed(CameraController.Instance.GetCameraSpeedMax());
 089    } else {
 090      CameraController.Instance.SetCameraSpeed(CameraController.Instance.GetCameraSpeedNormal());
 091    }
 92
 93    // Translational movement.
 094    if (Input.GetKey(KeyCode.W) || Input.GetKey(KeyCode.UpArrow)) {
 095      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Forward);
 096    }
 097    if (Input.GetKey(KeyCode.A) || Input.GetKey(KeyCode.LeftArrow)) {
 098      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Left);
 099    }
 0100    if (Input.GetKey(KeyCode.S) || Input.GetKey(KeyCode.DownArrow)) {
 0101      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Back);
 0102    }
 0103    if (Input.GetKey(KeyCode.D) || Input.GetKey(KeyCode.RightArrow)) {
 0104      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Right);
 0105    }
 0106    if (Input.GetKey(KeyCode.Q)) {
 0107      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Up);
 0108    }
 0109    if (Input.GetKey(KeyCode.E)) {
 0110      CameraController.Instance.TranslateCamera(CameraController.TranslationInput.Down);
 0111    }
 0112  }
 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
 0143  void HandleLockableInput() {
 0144    if (mouseActive) {
 0145      if (UIManager.Instance.GetUIMode() == UIMode.THREE_DIMENSIONAL) {
 0146        Handle3DModeMouseInput();
 0147        Handle3DModeScrollWheelInput();
 0148      } else {
 0149        HandleTacticalModeMouseInput();
 0150        HandleTacticalModeScrollWheelInput();
 0151      }
 0152    }
 153
 0154    if (UIManager.Instance.GetUIMode() == UIMode.THREE_DIMENSIONAL) {
 0155      Handle3DModeLockableInput();
 0156    } else {
 0157      HandleTacticalModeLockableInput();
 0158    }
 159
 0160    if (Input.GetKeyDown(KeyCode.Tab)) {
 0161      UIManager.Instance.ToggleUIMode();
 0162    }
 0163  }
 164
 0165  void HandleNonLockableInput() {
 0166    if (Input.GetKeyDown(KeyCode.Escape)) {
 0167      SimManager.Instance.QuitSimulation();
 0168    }
 169
 0170    if (Input.GetKeyDown(KeyCode.C)) {}
 171
 0172    if (Input.GetKeyDown(KeyCode.R)) {
 0173      SimManager.Instance.RestartSimulation();
 0174    }
 175
 0176    if (Input.GetKeyDown(KeyCode.L)) {
 0177      UIManager.Instance.ToggleConfigSelectorPanel();
 0178    }
 179
 0180    if (Input.GetKeyDown(KeyCode.C)) {
 0181      ParticleManager.Instance.ClearHitMarkers();
 0182    }
 183
 0184    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
 0194    if (Input.GetKeyDown(KeyCode.P)) {
 0195      CameraController.Instance.SetAutoRotate(!CameraController.Instance.IsAutoRotate());
 0196    }
 197
 0198    if (Input.GetKeyDown(KeyCode.Alpha1)) {
 0199      if (Input.GetKey(KeyCode.LeftControl)) {
 0200        CameraController.Instance.FollowNextInterceptorSwarm();
 0201      } else {
 0202        CameraController.Instance.SnapToNextInterceptorSwarm();
 0203      }
 0204    }
 205
 0206    if (Input.GetKeyDown(KeyCode.Alpha2)) {
 0207      if (Input.GetKey(KeyCode.LeftControl)) {
 0208        CameraController.Instance.FollowNextThreatSwarm();
 0209      } else {
 0210        CameraController.Instance.SnapToNextThreatSwarm();
 0211      }
 0212    }
 213
 0214    if (Input.GetKeyDown(KeyCode.Alpha3)) {
 0215      if (Input.GetKey(KeyCode.LeftControl)) {
 0216        CameraController.Instance.FollowCenterAllAgents();
 0217      } else {
 0218        CameraController.Instance.SnapToCenterAllAgents();
 0219      }
 0220    }
 221
 0222    if (Input.GetKeyDown(KeyCode.Alpha4)) {
 223      // Set pre-set view 4.
 0224    }
 225
 0226    if (Input.GetKeyDown(KeyCode.Alpha5)) {
 227      // Set pre-set view 5.
 0228    }
 229
 0230    if (Input.GetKeyDown(KeyCode.Alpha6)) {
 231      // Set pre-set view 6.
 0232    }
 0233  }
 234}