5 using System.Collections.Generic;
14 enum MinigameOperationType : byte
23 public delegate
void LocalPlayerAssignedHandler (
MinigamePlayer localPlayer);
24 public event LocalPlayerAssignedHandler LocalPlayerAssigned = delegate {};
33 _instance = _instance ?? FindObjectOfType<Minigame>();
56 get {
return _players.ToArray(); }
64 get {
return _humanPlayers.ToArray(); }
72 get {
return _botPlayers.ToArray(); }
80 get {
return (from player in
Players where player.
Avatar != null select player.Avatar).ToArray(); }
88 get {
return (from player in
HumanPlayers where player.
Avatar != null select player.Avatar).ToArray(); }
96 get {
return (from player in
BotPlayers where player.
Avatar != null select player.Avatar).ToArray(); }
104 get {
return _players.Count; }
112 get {
return _humanPlayers.Count; }
120 get {
return _botPlayers.Count; }
128 get {
return _humanPlayers.Select(player => player.PeerIndex).ToArray(); }
136 get {
return _humanPlayers.Select(player => player.PlayerID).ToArray(); }
144 get {
return _humanPlayers.Select(player => player.PlayerProfile).ToArray(); }
152 get {
return _humanPlayers.Select(player => player.PlayerProfile.Basic.Nickname).ToArray(); }
160 get {
return _maxPlayers; }
184 get {
return _localPlayer; }
194 if (_localPlayer == null)
197 return _localPlayer.
Avatar;
216 public String ServerTime
220 if (!_serverStartTime.IsEmpty)
221 return DateTime.ParseExact(_serverStartTime.LastValue,
"yyyy-MM-dd HH:mm:ss",
System.Globalization.CultureInfo.InvariantCulture).AddSeconds(_serverStartTime.Now).ToString(
"HH:mm:ss");
228 List<MinigamePlayer> _players;
229 List<MinigamePlayer> _humanPlayers;
230 List<MinigamePlayer> _botPlayers;
232 Timeline<GameMessage> _teamRequests;
233 Timeline<GameMessage> _summaries;
234 Timeline<GameMessage> _operations;
235 Timeline<string> _serverStartTime;
239 _instance = _instance ??
this;
241 _players =
new List<MinigamePlayer>();
242 _humanPlayers =
new List<MinigamePlayer>();
243 _botPlayers =
new List<MinigamePlayer>();
245 foreach (var team
in Teams)
254 _serverStartTime =
Sync.CreateDiscreteState<
string>();
264 _teamRequests.EntryPassed += OnTeamRequestMessage;
265 _serverStartTime[0] = DateTime.Now.ToString(
"yyyy-MM-dd HH:mm:ss");
267 else if (Game.IsClient)
269 _summaries.EntryPassed += OnSummaryMessage;
279 var matchingPlayers = _humanPlayers.Where(player => player.PlayerID == playerId).ToArray();
281 if (matchingPlayers.Length > 0)
282 return matchingPlayers[0];
293 var matchingPlayers = _humanPlayers.Where(player => player.PeerIndex == peerIndex).ToArray();
295 if (matchingPlayers.Length > 0)
296 return matchingPlayers[0];
306 foreach (var team
in Teams)
308 foreach (var player
in team.Players)
310 if (player.Avatar == avatar)
323 foreach (var team
in Teams)
325 foreach (var player
in team.Players)
327 if (player.Avatar == component.gameObject)
340 return PlayerAvatars.Select(a => a.GetComponent<T>()).ToArray();
348 return HumanAvatars.Select(a => a.GetComponent<T>()).ToArray();
356 return BotAvatars.Select(a => a.GetComponent<T>()).ToArray();
364 var matchingTeams = Teams.Where(team => team.ID == teamId).ToArray();
366 if (matchingTeams.Length > 0)
367 return matchingTeams[0];
383 requestMsg.Write(Game.LocalPeerIndex);
384 requestMsg.Write(teamId);
386 _teamRequests[0] = requestMsg;
427 if (team.IsFullOfHumans)
434 AssignPlayerLocally(player, team.TeamIndex, delayNotification:
true);
436 var spawnPoint = team.GetSpawnPoint(player.
SlotIndex);
438 Vector3 spawnDirection = Vector3.zero;
440 var avatarDirectionMode = team.AvatarPrefab.GetComponent<
Sync>().DirectionMode;
442 if (avatarDirectionMode == DirectionMode.Radial)
443 spawnDirection = spawnPoint.up;
444 else if (avatarDirectionMode == DirectionMode.Flip)
445 spawnDirection =
new Vector3(Mathf.Sign(spawnPoint.localScale.x), 0f, 0f);
447 var avatarDetails =
new UJeli();
451 var avatar =
Sync.
Spawn(team.AvatarPrefab, spawnPoint.position, spawnDirection, player.
PeerIndex, avatarDetails);
455 opMsg.Write((byte)MinigameOperationType.AssignPlayer);
456 opMsg.Write(_players.IndexOf(player));
457 opMsg.Write(team.TeamIndex);
459 opMsg.WriteGameObject(avatar);
461 _operations[0] = opMsg;
479 UnassignPlayerLocally(player);
482 opMsg.Write((byte)MinigameOperationType.UnassignPlayer);
483 opMsg.Write(_players.IndexOf(player));
485 _operations[0] = opMsg;
487 if (player.
Avatar != null)
503 AddPlayerLocally(player);
506 opMsg.Write((byte)MinigameOperationType.AddPlayer);
509 _operations[0] = opMsg;
541 opMsg.Write((byte)MinigameOperationType.RemovePlayer);
542 opMsg.Write(_players.IndexOf(player));
544 _operations[0] = opMsg;
546 RemovePlayerLocally(player);
558 opMsg.Write((byte)MinigameOperationType.Shutdown);
560 _operations[0] = opMsg;
562 StartCoroutine(ShutdownAsync());
569 IEnumerator ShutdownAsync ()
571 yield
return new WaitForSeconds(ShutdownDelay);
574 UnityEditor.EditorApplication.isPlaying =
false;
585 _players.Add(player);
589 _humanPlayers.Add(player);
592 _localPlayer = player;
594 else if (player.
IsBot)
596 _botPlayers.Add(player);
600 private void RemovePlayerLocally (
int playerIndex)
602 if (playerIndex < 0 || _players.Count <= playerIndex)
605 RemovePlayerLocally(_players[playerIndex]);
613 if (player.
Team != null)
614 UnassignPlayerLocally(player);
616 _players.Remove(player);
617 _humanPlayers.Remove(player);
618 _botPlayers.Remove(player);
620 if (player == _localPlayer)
624 private void AssignPlayerLocally (
MinigamePlayer player,
int teamIndex,
int slotIndex = -1,
625 GameObject avatar = null,
bool delayNotification =
false)
633 var team = Teams[teamIndex];
638 if (player.
Team != null)
639 UnassignPlayerLocally(player);
642 slotIndex = team.FirstEmptySlotIndex;
644 team.InsertPlayer(slotIndex, player);
649 if (!delayNotification)
653 LocalPlayerAssigned(player);
661 if (player.
Team == null)
664 player.
Team.RemovePlayer(player);
669 void OnTeamRequestMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
671 var msg = entry.Value;
673 int peerIndex = msg.ReadInt32();
674 string teamId = msg.ReadString();
685 void OnPlayerSynced (
int peerIndex,
string playerId,
PlayerProfile playerProfile)
687 if (playerProfile.Basic.IsMonitor)
689 var monitorSpawnPos = Camera.main.transform.position;
690 monitorSpawnPos.z = 0f;
692 Sync.
Spawn(
"monitor", monitorSpawnPos, Vector3.zero, peerIndex);
698 summaryMsg.Write(_players.Count);
700 foreach (var existingPlayer
in _players)
704 if (existingPlayer.Team != null)
705 teamIndex = existingPlayer.Team.TeamIndex;
707 summaryMsg.Write(existingPlayer.PeerIndex);
708 summaryMsg.Write(teamIndex);
712 summaryMsg.Write(existingPlayer.SlotIndex);
713 summaryMsg.WriteGameObject(existingPlayer.Avatar);
717 _summaries[0] = summaryMsg;
721 PeerIndex = peerIndex,
725 AddPlayerLocally(player);
728 opMsg.Write((byte)MinigameOperationType.AddPlayer);
729 opMsg.Write(peerIndex);
731 _operations[0] = opMsg;
737 void OnPlayerLeftServer (
int peerIndex,
string playerId,
PlayerProfile playerProfile)
739 if (playerProfile.Basic.IsMonitor)
749 RemovePlayerLocally(player);
752 opMsg.Write((byte)MinigameOperationType.RemovePlayer);
753 opMsg.Write(_players.IndexOf(player));
755 if (_humanPlayers.Count == 0)
759 void OnSummaryMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
761 var msg = entry.Value;
763 int numPlayers = msg.ReadInt32();
765 for (
int i = 0; i < numPlayers; i++)
767 int peerIndex = msg.ReadInt32();
768 int teamIndex = msg.ReadInt32();
772 PeerIndex = peerIndex
778 AddPlayerLocally(player);
782 int slotIndex = msg.ReadInt32();
783 var avatar = msg.ReadGameObject();
785 AssignPlayerLocally(player, teamIndex, slotIndex, avatar);
793 _summaries.EntryPassed -= OnSummaryMessage;
794 _operations.EntryPassed += OnOperationMessage;
797 void OnOperationMessage (Timeline<GameMessage> timeline, TimelineEntry<GameMessage> entry)
799 var msg = entry.Value;
801 var opType = (MinigameOperationType)msg.ReadByte();
803 if (opType == MinigameOperationType.AddPlayer)
805 int peerIndex = msg.ReadInt32();
810 PeerIndex = peerIndex,
813 AddPlayerLocally(player);
815 else if (opType == MinigameOperationType.RemovePlayer)
817 int playerIndex = msg.ReadInt32();
819 RemovePlayerLocally(playerIndex);
821 else if (opType == MinigameOperationType.AssignPlayer)
823 int playerIndex = msg.ReadInt32();
824 int teamIndex = msg.ReadInt32();
825 int slotIndex = msg.ReadInt32();
826 var avatar = msg.ReadGameObject();
829 if (playerIndex == -1 || _players.Count <= playerIndex)
832 var player = _players[playerIndex];
837 AssignPlayerLocally(player, teamIndex, slotIndex, avatar);
839 else if (opType == MinigameOperationType.UnassignPlayer)
841 int playerIndex = msg.ReadInt32();
844 if (playerIndex == -1 || _players.Count <= playerIndex)
847 var player = _players[playerIndex];
852 UnassignPlayerLocally(player);
854 else if (opType == MinigameOperationType.Shutdown)
871 if (
this == _instance)
string[] HumanPlayerNicknames
Gets an array containing the nicknames of all human players in this minigame.
static void Despawn(GameObject go)
Despawn the given object.
PlayerProfile PlayerProfile
The profile of this player. Null if the player is a bot.
void RemoveBotPlayer(MinigamePlayer player)
Removes a bot player from the minigame. This will unassign the bot first.
static GameServer Instance
Gets the sole instance of this game server.
bool IsFull
Gets whether or not this minigame is full of players (humans and bots).
void RequestPlayerUnassign()
Requests a team unassignment for the local player.
void UnassignPlayer(MinigamePlayer player)
Unassigns a minigame player from its current team. This will also despawn its avatar.
static Minigame Instance
Gets the sole instance of this minigame.
T[] GetHumanAvatarComponents< T >()
Gets an array containing the components of type T on all human player avatars.
MinigamePlayer GetPlayer(GameObject avatar)
Get the minigame player with the given avatar.
int SlotIndex
Gets the slot index of this player within its team. Returns -1 if the player is not assigned to any t...
MinigamePlayer[] Players
Gets an array containing all players in this minigame (humans and bots).
int NumBotPlayers
Gets the number of bot players in this minigame.
void RequestPlayerAssign(string teamId)
Requests a team assignment for the local player.
MinigameTeam Team
The team to which this player is assigned, if any.
int[] HumanPlayerPeerIndices
Gets an array containing the peer indices of all human players in this minigame.
GameObject LocalAvatar
If this is a game client, returns the avatar of the local player.
Tracks all information for a player in a minigame.
int PeerIndex
The peer index of this player. 0 if the player is a bot.
static GameObject Spawn(string prefabId, Vector3 position, int ownerPeerIndex=0, UJeli details=null)
Spawn an object onto the network.
static void SendEnabledMessage(GameObject go, string message, params object[] args)
Invokes a method on all enabled scripts in the GameObject.
MinigameTeam GetTeam(string teamId)
Get the minigame team with the given ID.
string[] HumanPlayerIDs
Gets an array containing the player IDs of all human players in this minigame.
GameObject[] HumanAvatars
Gets an array containing the avatars for all human players in this minigame.
T[] GetBotAvatarComponents< T >()
Gets an array containing the components of type T on all bot player avatars.
MinigamePlayer AddBotPlayer(string teamId=null)
Adds a new bot player to the minigame.
MinigameTeam DefaultTeam
Gets the default team of this minigame. This is simply the first available team.
Information about a minigame team.
T[] GetPlayerAvatarComponents< T >()
Gets an array containing the components of type T on all player avatars (humans and bots)...
MinigamePlayer[] BotPlayers
Gets an array containing all bot players in this minigame.
void Shutdown()
Begin the minigame shutdown sequence. See ShutdownAsync.
int NumHumanPlayers
Gets the number of human players in this minigame.
GameObject[] BotAvatars
Gets an array containing the avatars for all bot players in this minigame.
bool IsLocal
Whether or not this player is locally controlled.
int MaxPlayers
Gets the maximum player capacity of this minigame.
MinigamePlayer GetPlayer(int peerIndex)
Get the minigame player with the given peer index.
GameObject[] PlayerAvatars
Gets an array containing the avatars for all players in this minigame (humans and bots)...
MinigamePlayer[] HumanPlayers
Gets an array containing all human players in this minigame.
int NumPlayers
Gets the number of players in this minigame (humans and bots).
PlayerSyncedHandler PlayerSynced
Event fired when a player is fully synchronized with this server.
static float ShutdownDelay
The amount of delay between initiating a server shutdown operation and the server process actually te...
static bool IsClientPeerIndex(int peerIndex)
Gets whether or not the given peer index is that of a client.
bool IsHuman
Whether or not this player is a human.
MinigamePlayer GetPlayer(Component component)
Get the minigame player with the given avatar.
Stores data related to the player profile. Loads from a World Data file and provides runtime operatio...
A class for serializing game data into a stream for propagation between objects and peers...
string ID
The ID of this team.
GameObject Avatar
The avatar of this player. Null if the player is not assigned to a team.
bool IsFullOfHumans
Gets whether or not this minigame is full of human players.
Class for general minigame management.
bool IsBot
Whether or not this player is a bot.
GameObject AssignPlayer(MinigamePlayer player, string teamId)
Assign a player's team.
MinigamePlayer LocalPlayer
If this is a game client, returns the local player.
PlayerLeftServerHandler PlayerLeftServer
Event fired when a player leaves this server.
Unity version of Jeli markup class.
MinigameTeam[] Teams
All available teams in this minigame.
MinigamePlayer GetPlayer(string playerId)
Get the minigame player with the given player index.
This class server two main functions: 1) As a MonoBehaviour, it allows for network synchronization of...
PlayerProfile[] HumanPlayerProfiles
Gets an array containing the profiles of all human players in this minigame.