Liberi
An exergame built for kids with CP!
MinigameRankingView.cs
1 using UnityEngine;
2 using System.Collections;
3 using System.Collections.Generic;
4 
8 public class MinigameRankingView : MonoBehaviour
9 {
10  static MinigameRankingView _instance;
11 
15  public static MinigameRankingView Instance
16  {
17  get
18  {
19  _instance = _instance ?? FindObjectOfType<MinigameRankingView>();
20  return _instance;
21  }
22  }
23 
27  public float RankSpacing;
28  public AnimationCurve PositionVsScaleCurve;
29 
33  const int OBJ_PIXEL_HEIGHT = 80;
34 
35  List<IRankable> _rankables = new List<IRankable>();
36  Dictionary<IRankable, RankPosition> _guiObjects = new Dictionary<IRankable, RankPosition>();
37 
41  public string LeaderName
42  {
43  get { return _rankables[0].GetName(); }
44  }
45 
49  public void AddAvatar(IRankable toAdd)
50  {
51  RankPosition newRankObject = Sync.SpawnLocal("rank_position", Vector3.zero).GetComponent<RankPosition>();
52  newRankObject.transform.SetParent(transform);
53  newRankObject.transform.localPosition = Vector3.zero;
54  newRankObject.Initialize(toAdd);
55  newRankObject.Visible = true;
56 
57  _rankables.Add(toAdd);
58  _guiObjects.Add(toAdd, newRankObject);
59 
60  Sort();
61  }
62 
66  public void RemoveAvatar(IRankable toRemove)
67  {
68  _rankables.Remove(toRemove);
69  _guiObjects[toRemove].Visible = false;
70  _guiObjects[toRemove].TargetLocalPosition = Vector3.down * 300;
71  Destroy(_guiObjects[toRemove].gameObject, 1);
72  _guiObjects.Remove(toRemove);
73 
74  Sort();
75  }
76 
77  public void ScoreChanged(IRankable toScore)
78  {
79  _guiObjects[toScore].ScoreText = toScore.GetScore().ToString();
80  Sort();
81  }
82 
89  void Sort()
90  {
91  _rankables.Sort((r1, r2) =>
92  {
93  int result = -r1.GetScore().CompareTo(r2.GetScore());
94 
95  if (result == 0)
96  result = r1.GetSecondarySortCriteria().CompareTo(r2.GetSecondarySortCriteria());
97 
98  return result;
99  });
100  SetTargetTransforms();
101  }
102 
106  void SetTargetTransforms()
107  {
108  Vector3 previousRanksPosition = Vector3.zero;
109 
110  for (int i = 0; i < _rankables.Count; i++)
111  {
112  RankPosition rankObject = _guiObjects[_rankables[i]];
113  rankObject.transform.SetSiblingIndex(i);
114 
115  Vector3 rankPosition = previousRanksPosition;
116 
117  if (i > 0)
118  rankPosition += Vector3.down * PositionVsScaleCurve.Evaluate((i - 1) * -OBJ_PIXEL_HEIGHT)
119  * OBJ_PIXEL_HEIGHT + RankSpacing * Vector3.down;
120 
121  rankObject.TargetLocalPosition = rankPosition;
122  rankObject.TargetLocalScale = PositionVsScaleCurve.Evaluate(i * -OBJ_PIXEL_HEIGHT);
123 
124  rankObject.Visible = i < 5;
125 
126  previousRanksPosition = rankPosition;
127  }
128  }
129 }
A collection of helpful methods and properties for dealing with RankPosition GUI Objects.
Definition: RankPosition.cs:8
float RankSpacing
Units (in pixels) to vertically space rank gui objects
static MinigameRankingView Instance
Returns the instance, if the instance is null, find it in the scene using the null-coalescing operato...
A rankable object. Include this on the view script of an Avatar and implement the methods to make the...
Definition: IRankable.cs:8
string LeaderName
Returns the name of the player in the zeroth element of the Rankables array, which is the Leader give...
int GetScore()
Gets the score with which to rank this player. Scores are sorted in descending order.
A visual ranking system for games with a score component.
void RemoveAvatar(IRankable toRemove)
Removes the avatar to the list of ranked avatars. Avatar View scripts should remove themselves inside...
static GameObject SpawnLocal(string prefabId, Vector3 position, UJeli details=null)
Spawn an object locally without propagating onto the network.
Definition: Sync.Static.cs:623
void AddAvatar(IRankable toAdd)
Adds the avatar to the list of ranked avatars. Avatar View scripts should add themselves inside their...
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
Definition: Sync.cs:13