Liberi
An exergame built for kids with CP!
Inspectable.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 
12 [AddComponentMenu("Liberi/Inspectable")]
13 [RequireComponent(typeof(Usable))]
14 [Script(ScriptRole.Client)]
15 public class Inspectable : MonoBehaviour
16 {
17  public bool IsInspecting
18  {
19  get { return _isInspecting; }
20  }
21 
22  public float ScrollProgress
23  {
24  get { return _scrollBuffer.magnitude; }
25  }
26 
27  public float MinScrollPower = .1f;
28  public float ScrollSpeed = 2f;
29  public float ScrollDelay = 0.25f;
30  public AudioClip StartInspectingSound;
31  public AudioClip StopInspectingSound;
32  public AudioClip InspectionMusic;
33 
34  bool _isInspecting;
35  Vector3 _scrollBuffer;
36  bool _canScroll;
37 
38  // Not sure under what circumstances an Inspectable would be destroyed while a player is inspecting it.
39  /*
40  void OnDestroy ()
41  {
42  StopInspecting(true);
43  }
44  */
45 
46  void OnUse ()
47  {
48  StartInspecting();
49  }
50 
51  public void StartInspecting ()
52  {
53  if (_isInspecting)
54  return;
55 
56  var hero = Sync.GetLocalObject<HeroLogic>();
57 
58  if (hero != null)
59  hero.Freeze();
60 
61  _isInspecting = true;
62  _canScroll = true;
63 
64  Study.LogEvent(InspectableLogEvent.StartInspecting, name);
65 
66  if (StartInspectingSound != null)
67  SoundPool.Play(StartInspectingSound);
68 
69  Sync.SendEnabledMessage(this, "OnStartInspecting");
70  }
71 
72  public void StopInspecting (bool isDestroyed = false)
73  {
74  if (!_isInspecting)
75  return;
76 
77  var hero = Sync.GetLocalObject<HeroLogic>();
78 
79  if (hero != null)
80  hero.Unfreeze();
81 
82  _isInspecting = false;
83 
84  Study.LogEvent(InspectableLogEvent.StopInspecting, name);
85 
86  if (StopInspectingSound != null)
87  SoundPool.Play(StopInspectingSound);
88 
89  if (!isDestroyed)
90  {
91  Sync.SendEnabledMessage(this, "OnStopInspecting");
92  }
93  }
94 
95  void Update ()
96  {
97  if (_isInspecting && _canScroll)
98  {
99  var desiredScroll = Controls.Direction;
100 
101  if (desiredScroll.sqrMagnitude >= MinScrollPower)
102  {
103  _scrollBuffer += desiredScroll * ScrollSpeed * Time.deltaTime;
104 
105  if (_scrollBuffer.sqrMagnitude >= 1f)
106  {
107  Vector3 rawScrollDir = _scrollBuffer.normalized;
108  Vector3 scrollDir = Vector3.zero;
109 
110  if (Mathf.Abs(rawScrollDir.x) > Mathf.Abs(rawScrollDir.y))
111  scrollDir = new Vector3(Mathf.Sign(rawScrollDir.x), 0f, 0f);
112  else scrollDir = new Vector3(0f, Mathf.Sign(rawScrollDir.y), 0f);
113 
114  Sync.SendEnabledMessage(this, "OnScroll", scrollDir, rawScrollDir);
115  StartCoroutine(DelayNextScroll());
116  _scrollBuffer = Vector3.zero;
117  }
118  }
119  else
120  {
121  if (_scrollBuffer != Vector3.zero)
122  {
123  _scrollBuffer -= _scrollBuffer.normalized * ScrollSpeed * Time.deltaTime;
124 
125  if (_scrollBuffer.sqrMagnitude <= .01f)
126  _scrollBuffer = Vector3.zero;
127  }
128  }
129  }
130  }
131 
132  IEnumerator DelayNextScroll ()
133  {
134  _canScroll = false;
135  yield return new WaitForSeconds(ScrollDelay);
136  _canScroll = true;
137  }
138 }
A Component that indicates this object can be "used" by the client. A usable object provides an actio...
Definition: Usable.cs:16
static GameObject GetLocalObject()
Gets the first object that is owned by the local peer.
Definition: Sync.Static.cs:419
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 Vector3 Direction
Returns a normalized, abstract direction. Could also be zero.
Definition: Controls.cs:55
Sound pool. Allows on-demand playing of 3D sounds, with sound properties based on prefab...
Definition: SoundPool.cs:11
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 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