Files
the-island/unity-client/Assets/Scripts/GameManager.cs
empty 64ed46215f feat: add Unity 6 client with 2.5D visual system
Unity client features:
- WebSocket connection via NativeWebSocket
- 2.5D agent visuals with programmatic placeholder sprites
- Billboard system for sprites and UI elements
- Floating UI panels (name, HP, energy bars)
- Speech bubble system with pop-in animation
- RTS-style camera controller (WASD + scroll zoom)
- Editor tools for prefab creation and scene setup

Scripts:
- NetworkManager: WebSocket singleton
- GameManager: Agent spawning and event handling
- AgentVisual: 2.5D sprite and UI creation
- Billboard: Camera-facing behavior
- SpeechBubble: Animated dialogue display
- CameraController: RTS camera with UI input detection
- UIManager: HUD and command input

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-01 12:17:04 +08:00

496 lines
15 KiB
C#

using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using TMPro;
using TheIsland.Models;
using TheIsland.Network;
using TheIsland.Agents;
using TheIsland.UI;
using TheIsland.Visual;
namespace TheIsland.Core
{
/// <summary>
/// Main game controller.
/// Manages agent spawning, UI updates, and event handling.
/// </summary>
public class GameManager : MonoBehaviour
{
#region Singleton
private static GameManager _instance;
public static GameManager Instance => _instance;
#endregion
#region Configuration
[Header("Agent Spawning")]
[SerializeField] private GameObject agentPrefab;
[SerializeField] private Transform agentContainer;
[SerializeField] private Vector3[] spawnPositions = new Vector3[]
{
new Vector3(-3f, 0f, 0f),
new Vector3(0f, 0f, 0f),
new Vector3(3f, 0f, 0f)
};
[Header("UI References")]
[SerializeField] private TextMeshProUGUI connectionStatus;
[SerializeField] private TextMeshProUGUI tickInfo;
[SerializeField] private TextMeshProUGUI goldDisplay;
[SerializeField] private Button resetButton;
[SerializeField] private TMP_InputField commandInput;
[SerializeField] private Button sendButton;
[Header("Notification Panel")]
[SerializeField] private GameObject notificationPanel;
[SerializeField] private TextMeshProUGUI notificationText;
[SerializeField] private float notificationDuration = 3f;
#endregion
#region Private Fields
private Dictionary<int, AgentController> _agents = new Dictionary<int, AgentController>();
private Dictionary<int, AgentUI> _agentUIs = new Dictionary<int, AgentUI>();
private Dictionary<int, AgentVisual> _agentVisuals = new Dictionary<int, AgentVisual>();
private int _playerGold = 100;
private int _currentTick;
private int _currentDay;
private int _nextSpawnIndex;
#endregion
#region Properties
public int PlayerGold => _playerGold;
public int AliveAgentCount
{
get
{
int count = 0;
// Check AgentVisual first (newest system)
foreach (var visual in _agentVisuals.Values)
{
if (visual.IsAlive) count++;
}
if (count > 0) return count;
// Fallback to AgentUI
foreach (var agentUI in _agentUIs.Values)
{
if (agentUI.IsAlive) count++;
}
if (count > 0) return count;
// Fallback to AgentController (legacy)
foreach (var agent in _agents.Values)
{
if (agent.IsAlive) count++;
}
return count;
}
}
#endregion
#region Unity Lifecycle
private void Awake()
{
if (_instance != null && _instance != this)
{
Destroy(gameObject);
return;
}
_instance = this;
}
private void Start()
{
// Subscribe to network events
SubscribeToNetworkEvents();
// Setup UI
SetupUI();
// Initial connection status
UpdateConnectionStatus(false);
}
private void OnDestroy()
{
// Unsubscribe from network events
UnsubscribeFromNetworkEvents();
// Cleanup UI listeners
CleanupUI();
}
#endregion
#region Network Event Subscription
private void SubscribeToNetworkEvents()
{
var network = NetworkManager.Instance;
if (network == null) return;
network.OnConnected += HandleConnected;
network.OnDisconnected += HandleDisconnected;
network.OnAgentsUpdate += HandleAgentsUpdate;
network.OnAgentSpeak += HandleAgentSpeak;
network.OnAgentDied += HandleAgentDied;
network.OnFeed += HandleFeed;
network.OnTick += HandleTick;
network.OnSystemMessage += HandleSystemMessage;
network.OnUserUpdate += HandleUserUpdate;
}
private void UnsubscribeFromNetworkEvents()
{
var network = NetworkManager.Instance;
if (network == null) return;
network.OnConnected -= HandleConnected;
network.OnDisconnected -= HandleDisconnected;
network.OnAgentsUpdate -= HandleAgentsUpdate;
network.OnAgentSpeak -= HandleAgentSpeak;
network.OnAgentDied -= HandleAgentDied;
network.OnFeed -= HandleFeed;
network.OnTick -= HandleTick;
network.OnSystemMessage -= HandleSystemMessage;
network.OnUserUpdate -= HandleUserUpdate;
}
#endregion
#region UI Setup
private void SetupUI()
{
// Reset button
if (resetButton != null)
{
resetButton.onClick.RemoveAllListeners();
resetButton.onClick.AddListener(OnResetClicked);
}
// Send button
if (sendButton != null)
{
sendButton.onClick.RemoveAllListeners();
sendButton.onClick.AddListener(OnSendClicked);
}
// Command input enter key
if (commandInput != null)
{
commandInput.onSubmit.RemoveAllListeners();
commandInput.onSubmit.AddListener(OnCommandSubmit);
}
// Hide notification initially
if (notificationPanel != null)
{
notificationPanel.SetActive(false);
}
UpdateGoldDisplay();
}
private void CleanupUI()
{
if (resetButton != null)
{
resetButton.onClick.RemoveListener(OnResetClicked);
}
if (sendButton != null)
{
sendButton.onClick.RemoveListener(OnSendClicked);
}
if (commandInput != null)
{
commandInput.onSubmit.RemoveListener(OnCommandSubmit);
}
}
private void UpdateConnectionStatus(bool connected)
{
if (connectionStatus == null) return;
connectionStatus.text = connected ? "Connected" : "Disconnected";
connectionStatus.color = connected ? Color.green : Color.red;
}
private void UpdateTickInfo()
{
if (tickInfo == null) return;
tickInfo.text = $"Day {_currentDay} | Tick {_currentTick} | Alive: {AliveAgentCount}";
}
private void UpdateGoldDisplay()
{
if (goldDisplay == null) return;
goldDisplay.text = $"Gold: {_playerGold}";
}
#endregion
#region Network Event Handlers
private void HandleConnected()
{
Debug.Log("[GameManager] Connected to server");
UpdateConnectionStatus(true);
ShowNotification("Connected to The Island!");
}
private void HandleDisconnected()
{
Debug.Log("[GameManager] Disconnected from server");
UpdateConnectionStatus(false);
ShowNotification("Disconnected from server", isError: true);
}
private void HandleAgentsUpdate(List<AgentData> agentsData)
{
// Null check to prevent exceptions
if (agentsData == null || agentsData.Count == 0)
{
Debug.LogWarning("[GameManager] Received empty agents update");
return;
}
foreach (var data in agentsData)
{
// Check for AgentVisual first (newest system - 2.5D sprites)
if (_agentVisuals.TryGetValue(data.id, out AgentVisual agentVisual))
{
agentVisual.UpdateStats(data);
}
// Check for AgentUI (programmatic UI system)
else if (_agentUIs.TryGetValue(data.id, out AgentUI agentUI))
{
agentUI.UpdateStats(data);
}
// Fallback to AgentController (legacy)
else if (_agents.TryGetValue(data.id, out AgentController controller))
{
controller.UpdateStats(data);
}
else
{
// Spawn new agent
SpawnAgent(data);
}
}
UpdateTickInfo();
}
private void HandleAgentSpeak(AgentSpeakData data)
{
// Check AgentVisual first (newest system - 2.5D sprites)
if (_agentVisuals.TryGetValue(data.agent_id, out AgentVisual agentVisual))
{
agentVisual.ShowSpeech(data.text);
}
// Check AgentUI (programmatic UI system)
else if (_agentUIs.TryGetValue(data.agent_id, out AgentUI agentUI))
{
agentUI.ShowSpeech(data.text);
}
// Fallback to AgentController (legacy)
else if (_agents.TryGetValue(data.agent_id, out AgentController controller))
{
controller.ShowSpeech(data.text);
}
else
{
Debug.LogWarning($"[GameManager] Agent {data.agent_id} not found for speech");
}
}
private void HandleAgentDied(AgentDiedData data)
{
Debug.Log($"[GameManager] Agent died: {data.agent_name}");
ShowNotification(data.message, isError: true);
}
private void HandleFeed(FeedEventData data)
{
Debug.Log($"[GameManager] Feed event: {data.message}");
// Update gold if this was our action
if (data.user == NetworkManager.Instance.Username)
{
_playerGold = data.user_gold;
UpdateGoldDisplay();
}
ShowNotification(data.message);
}
private void HandleTick(TickData data)
{
_currentTick = data.tick;
_currentDay = data.day;
UpdateTickInfo();
}
private void HandleSystemMessage(SystemEventData data)
{
Debug.Log($"[GameManager] System: {data.message}");
ShowNotification(data.message);
}
private void HandleUserUpdate(UserUpdateData data)
{
if (data.user == NetworkManager.Instance.Username)
{
_playerGold = data.gold;
UpdateGoldDisplay();
}
}
#endregion
#region Agent Management
private void SpawnAgent(AgentData data)
{
if (agentPrefab == null)
{
Debug.LogError("[GameManager] Agent prefab not assigned!");
return;
}
// Determine spawn position
Vector3 spawnPos = GetNextSpawnPosition();
// Instantiate prefab
GameObject agentObj = Instantiate(
agentPrefab,
spawnPos,
Quaternion.identity,
agentContainer
);
// Try to get AgentVisual first (newest system - 2.5D sprites)
AgentVisual agentVisual = agentObj.GetComponent<AgentVisual>();
if (agentVisual != null)
{
agentVisual.Initialize(data);
_agentVisuals[data.id] = agentVisual;
Debug.Log($"[GameManager] Spawned agent (AgentVisual): {data.name} at {spawnPos}");
return;
}
// Try to get AgentUI (programmatic UI system)
AgentUI agentUI = agentObj.GetComponent<AgentUI>();
if (agentUI == null)
{
// Add AgentUI component - it will create all UI elements automatically
agentUI = agentObj.AddComponent<AgentUI>();
}
agentUI.Initialize(data);
_agentUIs[data.id] = agentUI;
// Also check for legacy AgentController
AgentController controller = agentObj.GetComponent<AgentController>();
if (controller != null)
{
controller.Initialize(data);
_agents[data.id] = controller;
}
Debug.Log($"[GameManager] Spawned agent: {data.name} at {spawnPos}");
}
private Vector3 GetNextSpawnPosition()
{
if (spawnPositions == null || spawnPositions.Length == 0)
{
return Vector3.zero;
}
Vector3 pos = spawnPositions[_nextSpawnIndex % spawnPositions.Length];
_nextSpawnIndex++;
return pos;
}
/// <summary>
/// Get an agent controller by ID.
/// </summary>
public AgentController GetAgent(int agentId)
{
_agents.TryGetValue(agentId, out AgentController controller);
return controller;
}
/// <summary>
/// Get an agent controller by name.
/// </summary>
public AgentController GetAgentByName(string name)
{
foreach (var agent in _agents.Values)
{
if (agent.CurrentData?.name == name)
{
return agent;
}
}
return null;
}
#endregion
#region UI Actions
private void OnResetClicked()
{
NetworkManager.Instance.ResetGame();
ShowNotification("Reset requested...");
}
private void OnSendClicked()
{
SendCommand();
}
private void OnCommandSubmit(string text)
{
SendCommand();
}
private void SendCommand()
{
if (commandInput == null || string.IsNullOrWhiteSpace(commandInput.text))
return;
NetworkManager.Instance.SendCommand(commandInput.text);
commandInput.text = "";
commandInput.ActivateInputField();
}
/// <summary>
/// Feed a specific agent by name.
/// Called from UI buttons.
/// </summary>
public void FeedAgent(string agentName)
{
NetworkManager.Instance.FeedAgent(agentName);
}
#endregion
#region Notifications
private void ShowNotification(string message, bool isError = false)
{
if (notificationPanel == null || notificationText == null)
return;
notificationText.text = message;
notificationText.color = isError ? Color.red : Color.white;
notificationPanel.SetActive(true);
// Auto-hide
CancelInvoke(nameof(HideNotification));
Invoke(nameof(HideNotification), notificationDuration);
}
private void HideNotification()
{
if (notificationPanel != null)
{
notificationPanel.SetActive(false);
}
}
#endregion
}
}