Liberi
An exergame built for kids with CP!
Usable.cs
1 using UnityEngine;
2 using System;
3 using System.Collections;
4 using System.Collections.Generic;
5 using System.Linq;
6 using System.Net;
7 using Lidgren.Network;
8 
13 [AddComponentMenu("Liberi/Usable")]
14 [RequireComponent(typeof(Collider))]
15 [Script(ScriptRole.Client)]
16 public class Usable : MonoBehaviour, IActionInfoProvider
17 {
21  public string UseCaption;
22 
23  bool _isAvatarOver;
24  string _useCaption;
25  Inspectable _inspectable;
26 
27  public string GetActionCaption (ControlsAction action)
28  {
29  return _useCaption;
30  }
31 
32  public bool IsActionEnabled (ControlsAction action)
33  {
34  if (_inspectable != null)
35  return _inspectable.enabled;
36 
37  return true;
38  }
39 
40  void Awake ()
41  {
42  _inspectable = GetComponent<Inspectable>();
43  }
44 
45  void OnSpawn ()
46  {
47  _useCaption = Localizer.GetString(UseCaption);
48  }
49 
50  void Update ()
51  {
52  if (_isAvatarOver && Controls.GetActionDown(ControlsAction.Primary))
53  {
54  Sync.SendEnabledMessage(this, "OnUse");
55  Study.LogEvent(UsableLogEvent.Use, name);
56  }
57  }
58 
59  void OnTriggerEnter (Collider other)
60  {
61  if (other.tag == "Avatar" && Sync.IsLocal(other))
62  {
63  _isAvatarOver = true;
64  Controls.RegisterActionInfoProvider(ControlsAction.Primary, this);
65  }
66  }
67 
68  void OnTriggerExit (Collider other)
69  {
70  if (_isAvatarOver && other.tag == "Avatar" && Sync.IsLocal(other))
71  {
72  _isAvatarOver = false;
73  Controls.UnregisterActionInfoProvider(ControlsAction.Primary, this);
74  }
75  }
76 
77  void OnDestroy ()
78  {
79  if (_isAvatarOver)
80  {
81  _isAvatarOver = false;
82  Controls.UnregisterActionInfoProvider(ControlsAction.Primary, this);
83  }
84  }
85 }
static string GetString(string key, SystemLanguage language=SystemLanguage.Unknown)
Gets the localized string for the given string key.
Definition: Localizer.cs:55
A Component that indicates this object can be "used" by the client. A usable object provides an actio...
Definition: Usable.cs:16
static void UnregisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Unregister an action info provider.
Definition: Controls.cs:100
Localization manager.
Definition: Localizer.cs:9
static void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
Definition: Sync.Static.cs:740
static bool IsLocal(GameObject go)
Gets whether or not the given object is owned by the local peer.
Definition: Sync.Static.cs:290
static bool GetActionDown(ControlsAction action)
Checks if the given action has just been pressed down.
Definition: Controls.cs:194
string GetActionCaption(ControlsAction action)
Gets the caption to use for the given action.
Definition: Usable.cs:27
Interface for classes which provide information for an action.
Class for managing study-related game components.
Definition: Study.cs:13
Something which can be inspected by the player.
Definition: Inspectable.cs:15
static void RegisterActionInfoProvider(ControlsAction action, IActionInfoProvider actionInfoProvider)
Register an action info provider.
Definition: Controls.cs:90
string UseCaption
The Caption to use. Should be provided as an id for the Localizer class to use.
Definition: Usable.cs:21
static void LogEvent(Enum eventType, params object[] args)
Log a game event.
Definition: Study.cs:57
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13
Controls class. Allows for controls queries and controls injection from devices.
Definition: Controls.cs:41
bool IsActionEnabled(ControlsAction action)
Gets whether or not the given action is enabled.
Definition: Usable.cs:32