Liberi
An exergame built for kids with CP!
GamepadControls.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 using Janus;
5 using System;
6 using System.Linq;
7 using LiberiNet;
8 
9 public enum GamepadCode
10 {
11  A,
12  B,
13  X,
14  Y,
15  LB,
16  RB,
17  Back,
18  Start
19 }
20 
24 public class GamepadControls : Device
25 {
26  public GamepadCode PrimaryActionButton;
27  public GamepadCode SecondaryActionButton;
28  public GamepadCode CycleNextButton;
29  public GamepadCode CyclePreviousButton;
30  public GamepadCode MenuButton;
31  public GamepadCode BackButton;
32 
33  bool _simulatePower;
34 
35  Dictionary<int, string> _inputStrings = new Dictionary<int, string>()
36  {
37  {(int)GamepadCode.A, "A"},
38  {(int)GamepadCode.B, "B"},
39  {(int)GamepadCode.X, "X"},
40  {(int)GamepadCode.Y, "Y"},
41  {(int)GamepadCode.LB, "LB"},
42  {(int)GamepadCode.RB, "RB"},
43  {(int)GamepadCode.Back, "Back"},
44  {(int)GamepadCode.Start, "Start"},
45  };
46 
47  bool GetActionButton()
48  {
49  return Input.GetButton(_inputStrings[(int)GamepadCode.A]) ||
50  Input.GetButton(_inputStrings[(int)GamepadCode.B]) ||
51  Input.GetButton(_inputStrings[(int)GamepadCode.X]) ||
52  Input.GetButton(_inputStrings[(int)GamepadCode.Y]);
53  }
54 
55  void OnEnable()
56  {
57  UJeli configOptions;
58  GameClient.Instance.Config.Devices.Options.TryGetValue(name, out configOptions);
59 
60  if (configOptions != null && configOptions.HasChild("simulate_power"))
61  _simulatePower = configOptions["simulate_power"].BoolValue;
62  }
63 
64  void Update()
65  {
66  var direction = new Vector3(Input.GetAxis("Horizontal"), Input.GetAxis("Vertical"));
67 
68  Controls.InjectDirection(direction);
69 
70  if (_simulatePower)
71  Controls.InjectSmoothCadence(direction.magnitude * 200);
72 
73  // TEMPORARY FOR NOV 8 DESIGN SESSION
74  Controls.InjectActionState(ControlsAction.CycleNext, Input.GetKey(KeyCode.RightBracket));
75  Controls.InjectActionState(ControlsAction.CyclePrevious, Input.GetKey(KeyCode.LeftBracket));
76  // END TEMPORARY CODE
77 
78  Controls.InjectActionState(ControlsAction.Primary, GetActionButton());
79  Controls.InjectActionState(ControlsAction.Secondary, Input.GetButton(_inputStrings[(int)SecondaryActionButton]));
80  Controls.InjectActionState(ControlsAction.Menu, Input.GetButton(_inputStrings[(int)MenuButton]));
81  Controls.InjectActionState(ControlsAction.Back, Input.GetButton(_inputStrings[(int)BackButton]));
82  }
83 
84  public override UJeli GetDeviceSaveOptions()
85  {
86  UJeli jeli = new UJeli();
87  jeli.AddChild("simulate_power", _simulatePower);
88  return jeli;
89  }
90 }
override UJeli GetDeviceSaveOptions()
Returns a jeli containing all the custom options used by a device.
static void InjectActionState(ControlsAction action, bool state)
Injections an action state.
Definition: Controls.cs:147
Abstract class to be extended by devices.
Definition: Device.cs:7
static void InjectSmoothCadence(float cadence)
Injects a power value.
Definition: Controls.cs:109
static void InjectDirection(Vector3 direction)
Injects a direction. Call this from a device script.
Definition: Controls.cs:136
A Device for providing Direction (and optionally Power) information to the Controls Class...
ClientConfig Config
Gets the configuration for this client.
Definition: GameClient.cs:176
static GameClient Instance
Gets the sole instance of the game client.
Definition: GameClient.cs:136
Main game client class.
Definition: GameClient.cs:16
Unity version of Jeli markup class.
Definition: UJeli.cs:10
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41