Liberi
An exergame built for kids with CP!
CutsceneManager.cs
1 using UnityEngine;
2 using System.Linq;
3 using System.Collections;
4 using System.Collections.Generic;
5 using Janus;
6 
7 public delegate void CutsceneStartedHandler (Vector3 focus);
8 public delegate void CutsceneFinishedHandler ();
9 
14 public class CutsceneManager: MonoBehaviour
15 {
16  public event CutsceneStartedHandler CutsceneStarted;
17  public event CutsceneFinishedHandler CutsceneFinished;
18 
19  public static CutsceneManager Instance
20  {
21  get { return _instance; }
22  }
23 
24  public bool IsInCutscene
25  {
26  get { return _isInCutscene; }
27  }
28 
29  static CutsceneManager _instance;
30 
31  Timeline<GameMessage> _cutsceneMsgs;
32  GameObject _prevCamTarget;
33  bool _isInCutscene;
34  const float MAX_CUTSCENE_DIST = 20.0f;
35 
36  void Awake ()
37  {
38  _instance = this;
39 
40  _cutsceneMsgs = Sync.CreateEvent<GameMessage>();
41  }
42 
43  void OnSpawn ()
44  {
45  if (Game.IsClient)
46  _cutsceneMsgs.EntryPassed += OnCutsceneStateChanged;
47  }
48 
49  public void StartCutscene (Vector3 focus)
50  {
51  if (!Game.IsServer)
52  return;
53 
54  var startMsg = new GameMessage();
55  startMsg.Write(true);
56  startMsg.Write(focus);
57 
58  _cutsceneMsgs[0] = startMsg;
59  _isInCutscene = true;
60 
61  if (CutsceneStarted != null)
62  CutsceneStarted(focus);
63  }
64 
65  public void StopCutscene ()
66  {
67  if (!Game.IsServer)
68  return;
69 
70  var stopMsg = new GameMessage();
71  stopMsg.Write(false);;
72 
73  _cutsceneMsgs[0] = stopMsg;
74  _isInCutscene = false;
75 
76  if (CutsceneFinished != null)
77  CutsceneFinished();
78  }
79 
80  void OnCutsceneStateChanged (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
81  {
82  var msg = entry.Value;
83  bool start = msg.ReadBoolean();
84 
85  if (start)
86  {
87  var focus = msg.ReadVector3();
88  transform.position = focus;
89 
90  if (Vector2.Distance((Vector2)Cameraman.Instance.transform.position, (Vector2)transform.position) > MAX_CUTSCENE_DIST)
91  return;
92 
93  _prevCamTarget = Cameraman.Instance.Target;
94  Cameraman.Instance.Follow(this);
95 
96  if (!entry.IsNew)
97  Cameraman.Instance.SnapToTarget();
98 
99  _isInCutscene = true;
100 
101  if (CutsceneStarted != null)
102  CutsceneStarted(focus);
103  }
104  else
105  {
106  if (!_isInCutscene)
107  return;
108 
109  if (_prevCamTarget != null)
110  Cameraman.Instance.Follow(_prevCamTarget);
111  else Cameraman.Instance.StopFollowing();
112 
113  _isInCutscene = false;
114 
115  if (CutsceneFinished != null)
116  CutsceneFinished();
117  }
118 
119  msg.FinishReading();
120  }
121 
122  void OnDestroy ()
123  {
124  if (_instance == this)
125  _instance = null;
126  }
127 }
A class to start cutscenes by taking control of the camera and returning it to the player when the cu...
void SnapToTarget()
Bring the camera to the desired position immediately without smooth following.
Definition: Cameraman.cs:159
GameObject Target
Gets or sets the target for this cameraman to follow.
Definition: Cameraman.cs:28
void StopFollowing()
Stop following the target.
Definition: Cameraman.cs:145
void Follow(GameObject go)
Make this cameraman follow the given object.
Definition: Cameraman.cs:101
A class for serializing game data into a stream for propagation between objects and peers...
Definition: GameMessage.cs:14
Standard cameraman for the game.
Definition: Cameraman.cs:12
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13