Liberi
An exergame built for kids with CP!
KeyboardControls.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 
12 public class KeyboardControls : Device
13 {
14  public KeyCode UpKey;
15  public KeyCode DownKey;
16  public KeyCode LeftKey;
17  public KeyCode RightKey;
18  public KeyCode PrimaryKey;
19  public KeyCode SecondaryKey;
20  public KeyCode CycleNextKey;
21  public KeyCode CyclePreviousKey;
22  public KeyCode MenuKey;
23  public KeyCode BackKey;
24 
25  void Update()
26  {
27  Vector3 direction = Vector3.zero;
28 
29  if (Input.GetKey(UpKey))
30  direction += Vector3.up;
31  if (Input.GetKey(DownKey))
32  direction -= Vector3.up;
33  if (Input.GetKey(RightKey))
34  direction += Vector3.right;
35  if (Input.GetKey(LeftKey))
36  direction -= Vector3.right;
37 
38  Controls.InjectDirection(direction.normalized);
39 
40  // These lines simulate pedaling fast pedaling when holding Spacebar.
41  // Otherwise any WASD key press simulates fast pedaling.
42  /* Add/remove a leading slash to toggle the commented lines below
43  if (Input.GetKey(KeyCode.Space))
44  Controls.InjectSmoothCadence(direction.magnitude * 1000);
45  else
46  Controls.InjectSmoothCadence(0);
47  /*/
48  Controls.InjectSmoothCadence(direction == Vector3.zero ? 0f : 200f);
49  //*/
50  Controls.InjectActionState(ControlsAction.Primary, Input.GetKey(PrimaryKey));
51  Controls.InjectActionState(ControlsAction.Secondary, Input.GetKey(SecondaryKey));
52  Controls.InjectActionState(ControlsAction.CycleNext, Input.GetKey(CycleNextKey));
53  Controls.InjectActionState(ControlsAction.CyclePrevious, Input.GetKey(CyclePreviousKey));
54  Controls.InjectActionState(ControlsAction.Menu, Input.GetKey(MenuKey));
55  Controls.InjectActionState(ControlsAction.Back, Input.GetKey(BackKey));
56  }
57 }
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 InjectDirection(Vector3 direction)
Injects a direction. Call this from a device script.
Definition: Controls.cs:136
A Device for providing Direction information to the Controls class from keyboard input.
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41