3 using System.Collections.Generic;
9 public enum GamepadCode
26 public GamepadCode PrimaryActionButton;
27 public GamepadCode SecondaryActionButton;
28 public GamepadCode CycleNextButton;
29 public GamepadCode CyclePreviousButton;
30 public GamepadCode MenuButton;
31 public GamepadCode BackButton;
35 Dictionary<int, string> _inputStrings =
new Dictionary<int, string>()
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"},
47 bool GetActionButton()
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]);
60 if (configOptions != null && configOptions.HasChild(
"simulate_power"))
61 _simulatePower = configOptions[
"simulate_power"].BoolValue;
66 var direction =
new Vector3(Input.GetAxis(
"Horizontal"), Input.GetAxis(
"Vertical"));
87 jeli.AddChild(
"simulate_power", _simulatePower);
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.
Abstract class to be extended by devices.
static void InjectSmoothCadence(float cadence)
Injects a power value.
static void InjectDirection(Vector3 direction)
Injects a direction. Call this from a device script.
A Device for providing Direction (and optionally Power) information to the Controls Class...
ClientConfig Config
Gets the configuration for this client.
static GameClient Instance
Gets the sole instance of the game client.
Unity version of Jeli markup class.
Controls class. Allows for controls queries and controls injection from devices.