mirror of
https://github.com/GTA-ASM/SanAndreasUnity
synced 2024-11-15 16:48:00 +00:00
96 lines
2 KiB
C#
96 lines
2 KiB
C#
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
using System.Linq;
|
|
using SanAndreasUnity.Behaviours;
|
|
using SanAndreasUnity.Utilities;
|
|
|
|
namespace SanAndreasUnity.UI {
|
|
|
|
public class TeleportWindow : PauseMenuWindow {
|
|
|
|
// spawn locations
|
|
private List<TransformDataStruct> _spawns = new List<TransformDataStruct>();
|
|
public List<TransformDataStruct> Spawns { get { return this._spawns; } }
|
|
private List<string> _spawnNames = new List<string>();
|
|
|
|
|
|
|
|
TeleportWindow() {
|
|
|
|
// set default parameters
|
|
|
|
this.windowName = "Teleport";
|
|
this.useScrollView = true;
|
|
|
|
}
|
|
|
|
void OnSceneChanged (SceneChangedMessage msg) {
|
|
|
|
_spawns.Clear ();
|
|
_spawnNames.Clear();
|
|
|
|
if (!GameManager.IsInStartupScene)
|
|
FindSpawnPlacesInternal();
|
|
|
|
this.AdjustWindowRect ();
|
|
|
|
}
|
|
|
|
void Start () {
|
|
|
|
this.RegisterButtonInPauseMenu ();
|
|
|
|
this.AdjustWindowRect ();
|
|
}
|
|
|
|
|
|
private void FindSpawnPlacesInternal()
|
|
{
|
|
var spawnPlaces = FindSpawnPlaces ();
|
|
_spawns = spawnPlaces.Select(tr => new TransformDataStruct(tr)).ToList();
|
|
_spawnNames = spawnPlaces.Select(tr => tr.name).ToList();
|
|
}
|
|
|
|
public static Transform[] FindSpawnPlaces ()
|
|
{
|
|
var obj = GameObject.Find("Player Spawns");
|
|
if (obj)
|
|
return obj.GetComponentsInChildren<Transform> ();
|
|
return new Transform[0];
|
|
}
|
|
|
|
|
|
private void AdjustWindowRect ()
|
|
{
|
|
float width = 260;
|
|
float height = Mathf.Min( 0.7f * Screen.height, 10 + 25 * _spawns.Count );
|
|
this.windowRect = new Rect(Screen.width - width - 10, 10, width, height);
|
|
}
|
|
|
|
protected override void OnWindowGUI ()
|
|
{
|
|
|
|
if (null == Ped.Instance) {
|
|
GUILayout.Label ("No local ped");
|
|
return;
|
|
}
|
|
|
|
|
|
for (int i = 1; i < _spawns.Count; i++)
|
|
{
|
|
var spawnLocation = _spawns [i];
|
|
|
|
if (GUILayout.Button (_spawnNames[i]))
|
|
{
|
|
if (Utilities.NetUtils.IsServer)
|
|
Ped.Instance.Teleport (spawnLocation.position, spawnLocation.rotation);
|
|
else if (Net.PlayerRequests.Local != null)
|
|
Net.PlayerRequests.Local.RequestTeleport(spawnLocation.position, spawnLocation.rotation);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|