mirror of
https://github.com/RHeavenStudioPlus/HeavenStudioPlus.git
synced 2024-11-10 19:55:09 +00:00
dcb2a71b98
needs fixes for some types
154 lines
No EOL
4.6 KiB
C#
154 lines
No EOL
4.6 KiB
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
using UnityEngine;
|
|
|
|
using HeavenStudio.Editor.Track;
|
|
|
|
namespace HeavenStudio.Editor
|
|
{
|
|
public class EventParameterManager : MonoBehaviour
|
|
{
|
|
[Header("General References")]
|
|
[SerializeField] private GameObject eventSelector;
|
|
[SerializeField] private GridGameSelector gridGameSelector;
|
|
|
|
[Header("Property Prefabs")]
|
|
[SerializeField] private GameObject IntegerP;
|
|
[SerializeField] private GameObject FloatP;
|
|
[SerializeField] private GameObject BooleanP;
|
|
[SerializeField] private GameObject DropdownP;
|
|
[SerializeField] private GameObject ColorP;
|
|
[SerializeField] private GameObject StringP;
|
|
|
|
public DynamicBeatmap.DynamicEntity entity;
|
|
|
|
public bool active;
|
|
|
|
private int childCountAtStart;
|
|
|
|
public bool canDisable = true;
|
|
|
|
public static EventParameterManager instance { get; set; }
|
|
|
|
private void Awake()
|
|
{
|
|
instance = this;
|
|
}
|
|
|
|
private void Start()
|
|
{
|
|
childCountAtStart = transform.childCount;
|
|
}
|
|
|
|
private void Update()
|
|
{
|
|
if (Input.GetMouseButtonDown(0))
|
|
{
|
|
if (canDisable && active)
|
|
{
|
|
Disable();
|
|
}
|
|
}
|
|
canDisable = true;
|
|
}
|
|
|
|
public void Disable()
|
|
{
|
|
active = false;
|
|
eventSelector.SetActive(true);
|
|
|
|
DestroyParams();
|
|
Editor.instance.SetGameEventTitle($"Select game event for {gridGameSelector.SelectedMinigame.Replace("\n", "")}");
|
|
}
|
|
|
|
public void StartParams(DynamicBeatmap.DynamicEntity entity)
|
|
{
|
|
active = true;
|
|
AddParams(entity);
|
|
}
|
|
|
|
private void AddParams(DynamicBeatmap.DynamicEntity entity)
|
|
{
|
|
var minigame = EventCaller.instance.GetMinigame(entity.datamodel.Split(0));
|
|
int actionIndex = minigame.actions.IndexOf(minigame.actions.Find(c => c.actionName == entity.datamodel.Split(1)));
|
|
Minigames.GameAction action = minigame.actions[actionIndex];
|
|
|
|
if (action.parameters != null)
|
|
{
|
|
eventSelector.SetActive(false);
|
|
this.entity = entity;
|
|
|
|
Editor.instance.SetGameEventTitle($"Properties for {entity.datamodel} at beat {entity.beat}");
|
|
|
|
DestroyParams();
|
|
|
|
for (int i = 0; i < action.parameters.Count; i++)
|
|
{
|
|
object param = action.parameters[i].parameter;
|
|
string caption = action.parameters[i].propertyCaption;
|
|
string propertyName = action.parameters[i].propertyName;
|
|
string tooltip = action.parameters[i].tooltip;
|
|
|
|
AddParam(propertyName, param, caption, tooltip);
|
|
}
|
|
|
|
active = true;
|
|
}
|
|
}
|
|
|
|
private void AddParam(string propertyName, object type, string caption, string tooltip = "")
|
|
{
|
|
GameObject prefab = IntegerP;
|
|
|
|
var objType = type.GetType();
|
|
|
|
if (objType == typeof(EntityTypes.Integer))
|
|
{
|
|
prefab = IntegerP;
|
|
}
|
|
else if (objType == typeof(EntityTypes.Float))
|
|
{
|
|
prefab = FloatP;
|
|
}
|
|
else if(type is bool)
|
|
{
|
|
prefab = BooleanP;
|
|
}
|
|
else if (objType.IsEnum)
|
|
{
|
|
prefab = DropdownP;
|
|
}
|
|
else if (objType == typeof(Color) || objType == typeof(EntityTypes.SerializableColor))
|
|
{
|
|
prefab = ColorP;
|
|
}
|
|
else if(objType == typeof(string))
|
|
{
|
|
prefab = StringP;
|
|
}
|
|
|
|
GameObject input = Instantiate(prefab);
|
|
input.transform.SetParent(this.gameObject.transform);
|
|
input.SetActive(true);
|
|
input.transform.localScale = Vector2.one;
|
|
|
|
if(tooltip != "")
|
|
{
|
|
Tooltip.AddTooltip(input, "", tooltip);
|
|
}
|
|
|
|
var property = input.GetComponent<EventPropertyPrefab>();
|
|
property.SetProperties(propertyName, type, caption);
|
|
}
|
|
|
|
private void DestroyParams()
|
|
{
|
|
Editor.instance.editingInputField = false;
|
|
active = false;
|
|
for (int i = childCountAtStart; i < transform.childCount; i++)
|
|
{
|
|
Destroy(transform.GetChild(i).gameObject);
|
|
}
|
|
}
|
|
}
|
|
} |