3 using System.Collections.Generic;
19 _instance = _instance ?? FindObjectOfType<MinigameRankingView>();
28 public AnimationCurve PositionVsScaleCurve;
33 const int OBJ_PIXEL_HEIGHT = 80;
35 List<IRankable> _rankables =
new List<IRankable>();
36 Dictionary<IRankable, RankPosition> _guiObjects =
new Dictionary<IRankable, RankPosition>();
43 get {
return _rankables[0].GetName(); }
52 newRankObject.transform.SetParent(transform);
53 newRankObject.transform.localPosition = Vector3.zero;
54 newRankObject.Initialize(toAdd);
55 newRankObject.Visible =
true;
57 _rankables.Add(toAdd);
58 _guiObjects.Add(toAdd, newRankObject);
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);
77 public void ScoreChanged(
IRankable toScore)
79 _guiObjects[toScore].ScoreText = toScore.
GetScore().ToString();
91 _rankables.Sort((r1, r2) =>
93 int result = -r1.GetScore().CompareTo(r2.GetScore());
96 result = r1.GetSecondarySortCriteria().CompareTo(r2.GetSecondarySortCriteria());
100 SetTargetTransforms();
106 void SetTargetTransforms()
108 Vector3 previousRanksPosition = Vector3.zero;
110 for (
int i = 0; i < _rankables.Count; i++)
113 rankObject.transform.SetSiblingIndex(i);
115 Vector3 rankPosition = previousRanksPosition;
118 rankPosition += Vector3.down * PositionVsScaleCurve.Evaluate((i - 1) * -OBJ_PIXEL_HEIGHT)
119 * OBJ_PIXEL_HEIGHT + RankSpacing * Vector3.down;
121 rankObject.TargetLocalPosition = rankPosition;
122 rankObject.TargetLocalScale = PositionVsScaleCurve.Evaluate(i * -OBJ_PIXEL_HEIGHT);
124 rankObject.Visible = i < 5;
126 previousRanksPosition = rankPosition;
A collection of helpful methods and properties for dealing with RankPosition GUI Objects.
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...
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.
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...