DragonECS-Unity/src/Internal/Editor/UnityEditorUtility.cs

471 lines
16 KiB
C#
Raw Normal View History

2024-04-29 22:12:51 +08:00
using DCFApixels.DragonECS.Unity.Internal;
2024-03-07 21:22:48 +08:00
using System;
using System.Collections.Generic;
2024-09-12 01:35:37 +08:00
using System.Linq;
2024-03-07 03:18:00 +08:00
using System.Runtime.InteropServices;
using System.Text;
using UnityEditor;
using UnityEngine;
namespace DCFApixels.DragonECS.Unity.Editors
{
2024-04-29 22:12:51 +08:00
internal static partial class UnityEditorUtility
2024-03-07 03:18:00 +08:00
{
#region TransformFieldName
2024-03-10 04:56:29 +08:00
public static string TransformToUpperName(string name)
{
if (name.Length <= 0)
{
return name;
}
StringBuilder b = new StringBuilder();
bool nextWorld = true;
bool prewIsUpper = false;
for (int i = 0; i < name.Length; i++)
{
char c = name[i];
if (char.IsLetter(c) == false)
{
nextWorld = true;
prewIsUpper = false;
continue;
}
bool isUpper = char.IsUpper(c);
if (isUpper)
{
if (nextWorld == false && prewIsUpper == false)
{
b.Append('_');
}
}
b.Append(char.ToUpper(c));
nextWorld = false;
prewIsUpper = isUpper;
}
return b.ToString();
}
2024-03-07 03:18:00 +08:00
public static string TransformFieldName(string name)
{
if (name.Length <= 0)
{
return name;
}
StringBuilder b = new StringBuilder();
bool nextWorld = true;
bool prewIsUpper = false;
for (int i = 0; i < name.Length; i++)
{
char c = name[i];
if (char.IsLetter(c) == false)
{
nextWorld = true;
prewIsUpper = false;
continue;
}
bool isUpper = char.IsUpper(c);
if (isUpper)
{
if (nextWorld == false && prewIsUpper == false)
{
b.Append(' ');
nextWorld = true;
}
}
if (nextWorld)
{
b.Append(char.ToUpper(c));
}
else
{
b.Append(c);
}
nextWorld = false;
prewIsUpper = isUpper;
}
return b.ToString();
}
#endregion
2024-04-29 22:12:51 +08:00
}
}
#if UNITY_EDITOR
namespace DCFApixels.DragonECS.Unity.Editors
{
[InitializeOnLoad]
internal static partial class UnityEditorUtility
{
static UnityEditorUtility()
{
colorBoxeStyles = new SparseArray<GUIStyle>();
}
private static SparseArray<GUIStyle> colorBoxeStyles = new SparseArray<GUIStyle>();
2024-05-04 01:43:39 +08:00
private static GUIContent _singletonIconContent = null;
2024-04-29 22:12:51 +08:00
private static GUIContent _singletonContent = null;
2024-05-13 19:20:07 +08:00
private static GUIStyle _inputFieldCenterAnhor = null;
2024-04-29 23:19:54 +08:00
2024-06-15 16:53:28 +08:00
private static Dictionary<Type, MonoScript> scriptsAssets = new Dictionary<Type, MonoScript>(256);
internal static void ResetValues(this SerializedProperty property, bool isExpand = false)
{
property.isExpanded = isExpand;
switch (property.propertyType)
{
case SerializedPropertyType.Generic:
try
//TODO хз как с этим работать, но это говно постоянно кидает
//InvalidOperationException: The operation is not possible when moved past all properties (Next returned false)
//и не дает инструментов и шансов этого избежать
{
while (property.Next(true))
{
property.ResetValues(isExpand);
}
}
catch (Exception) { }
break;
case SerializedPropertyType.Integer:
property.intValue = default;
break;
case SerializedPropertyType.Boolean:
property.boolValue = default;
break;
case SerializedPropertyType.Float:
property.floatValue = default;
break;
case SerializedPropertyType.String:
property.stringValue = string.Empty;
break;
case SerializedPropertyType.Color:
property.colorValue = default;
break;
case SerializedPropertyType.ObjectReference:
property.objectReferenceValue = null;
break;
case SerializedPropertyType.LayerMask:
property.intValue = default;
break;
case SerializedPropertyType.Enum:
property.enumValueIndex = default;
break;
case SerializedPropertyType.Vector2:
property.vector2Value = default;
break;
case SerializedPropertyType.Vector3:
property.vector3Value = default;
break;
case SerializedPropertyType.Vector4:
property.vector4Value = default;
break;
case SerializedPropertyType.Rect:
property.rectValue = default;
break;
case SerializedPropertyType.ArraySize:
property.ClearArray();
break;
case SerializedPropertyType.Character:
property.intValue = default;
break;
case SerializedPropertyType.AnimationCurve:
property.animationCurveValue = new AnimationCurve();
break;
case SerializedPropertyType.Bounds:
property.boundsValue = default;
break;
case SerializedPropertyType.Gradient:
#if UNITY_2022_1_OR_NEWER
property.gradientValue = new Gradient();;
#else
Debug.LogWarning($"Unsupported SerializedPropertyType: {property.propertyType}");
#endif
break;
case SerializedPropertyType.Quaternion:
property.quaternionValue = Quaternion.identity;
break;
case SerializedPropertyType.ExposedReference:
property.objectReferenceValue = null;
break;
case SerializedPropertyType.FixedBufferSize:
for (int i = 0, iMax = property.fixedBufferSize; i < iMax; i++)
{
property.GetFixedBufferElementAtIndex(i).intValue = default;
}
break;
case SerializedPropertyType.Vector2Int:
property.vector2IntValue = default;
break;
case SerializedPropertyType.Vector3Int:
property.vector3IntValue = default;
break;
case SerializedPropertyType.RectInt:
property.rectIntValue = default;
break;
case SerializedPropertyType.BoundsInt:
property.boundsIntValue = default;
break;
case SerializedPropertyType.ManagedReference:
property.managedReferenceValue = default;
break;
case SerializedPropertyType.Hash128:
property.hash128Value = default;
break;
default:
Debug.LogWarning($"Unsupported SerializedPropertyType: {property.propertyType}");
break;
}
}
2024-06-15 16:53:28 +08:00
internal static bool TryGetScriptAsset(Type type, out MonoScript script)
{
if (scriptsAssets.TryGetValue(type, out script) == false)
{
script = null;
2024-06-15 19:45:31 +08:00
string name = type.Name;
int indexOf = name.LastIndexOf('`');
2024-09-10 19:13:31 +08:00
if (indexOf >= 0)
2024-06-15 19:45:31 +08:00
{
name = name.Substring(0, indexOf);
}
var guids = AssetDatabase.FindAssets($"{name} t:MonoScript");
2024-06-15 16:53:28 +08:00
for (var i = 0; i < guids.Length; i++)
{
MonoScript textAsset = AssetDatabase.LoadAssetAtPath<MonoScript>(AssetDatabase.GUIDToAssetPath(guids[i]));
2024-06-15 19:45:31 +08:00
if (textAsset != null && textAsset.name == name)
2024-06-15 16:53:28 +08:00
{
script = textAsset;
break;
}
}
scriptsAssets.Add(type, script);
}
return script != null;
}
2024-03-07 03:18:00 +08:00
#region Label
2024-05-13 19:20:07 +08:00
public static GUIStyle GetInputFieldCenterAnhor()
{
if (_inputFieldCenterAnhor == null)
{
GUIStyle style = new GUIStyle(EditorStyles.numberField);
style.alignment = TextAnchor.MiddleCenter;
style.font = EditorStyles.boldFont;
_inputFieldCenterAnhor = style;
}
return _inputFieldCenterAnhor;
}
2024-03-10 08:10:58 +08:00
public static GUIContent GetLabelTemp()
{
if (_singletonContent == null)
{
_singletonContent = new GUIContent();
}
return _singletonContent;
}
2024-03-07 03:18:00 +08:00
public static GUIContent GetLabel(string name, string tooltip = null)
{
if (_singletonContent == null)
{
_singletonContent = new GUIContent();
}
_singletonContent.text = name;
2024-03-09 09:42:04 +08:00
_singletonContent.image = null;
_singletonContent.tooltip = tooltip;
return _singletonContent;
}
public static GUIContent GetLabel(Texture image, string tooltip = null)
{
2024-05-04 01:43:39 +08:00
if (_singletonIconContent == null)
2024-03-09 09:42:04 +08:00
{
2024-05-04 01:43:39 +08:00
_singletonIconContent = new GUIContent();
2024-03-09 09:42:04 +08:00
}
2024-05-04 01:43:39 +08:00
_singletonIconContent.text = string.Empty;
_singletonIconContent.image = image;
_singletonIconContent.tooltip = tooltip;
return _singletonIconContent;
2024-03-07 03:18:00 +08:00
}
#endregion
#region GetStyle
public static GUIStyle GetStyle(Color color, float alphaMultiplier)
{
color.a *= alphaMultiplier;
return GetStyle(color);
}
public static GUIStyle GetStyle(Color32 color32)
{
int colorCode = new Color32Union(color32).colorCode;
if (colorBoxeStyles.TryGetValue(colorCode, out GUIStyle style))
{
if (style == null || style.normal.background == null)
{
style = CreateStyle(color32, colorCode);
colorBoxeStyles[colorCode] = style;
}
return style;
}
style = CreateStyle(color32, colorCode);
colorBoxeStyles.Add(colorCode, style);
return style;
}
private static GUIStyle CreateStyle(Color32 color32, int colorCode)
{
GUIStyle result = new GUIStyle(GUI.skin.box);
Color componentColor = color32;
Texture2D texture2D = CreateTexture(2, 2, componentColor);
result.hover.background = texture2D;
2024-05-02 21:02:16 +08:00
result.hover.scaledBackgrounds = Array.Empty<Texture2D>();
2024-03-07 03:18:00 +08:00
result.focused.background = texture2D;
2024-05-02 21:02:16 +08:00
result.focused.scaledBackgrounds = Array.Empty<Texture2D>();
2024-03-07 03:18:00 +08:00
result.active.background = texture2D;
2024-05-02 21:02:16 +08:00
result.active.scaledBackgrounds = Array.Empty<Texture2D>();
2024-03-07 03:18:00 +08:00
result.normal.background = texture2D;
2024-05-02 21:02:16 +08:00
result.normal.scaledBackgrounds = Array.Empty<Texture2D>();
2024-03-07 03:18:00 +08:00
return result;
}
private static Texture2D CreateTexture(int width, int height, Color color)
{
var pixels = new Color[width * height];
for (var i = 0; i < pixels.Length; ++i)
pixels[i] = color;
var result = new Texture2D(width, height);
result.SetPixels(pixels);
result.Apply();
return result;
}
#endregion
#region Utils
[StructLayout(LayoutKind.Explicit, Pack = 1, Size = 4)]
private readonly ref struct Color32Union
{
[FieldOffset(0)]
public readonly int colorCode;
[FieldOffset(0)]
public readonly byte r;
[FieldOffset(1)]
public readonly byte g;
[FieldOffset(2)]
public readonly byte b;
[FieldOffset(3)]
public readonly byte a;
public Color32Union(byte r, byte g, byte b, byte a) : this()
{
this.r = r;
this.g = g;
this.b = b;
this.a = a;
}
public Color32Union(Color32 color) : this()
{
r = color.r;
g = color.g;
b = color.b;
a = color.a;
}
}
#endregion
}
2024-03-07 21:22:48 +08:00
internal static class RuntimeComponentsUtility
{
public struct WorldData
{
2024-09-12 01:35:37 +08:00
public RuntimeComponentDropDown addComponentGenericMenu;
2024-03-07 21:22:48 +08:00
public int poolsCount;
2024-09-12 01:35:37 +08:00
public WorldData(RuntimeComponentDropDown addComponentGenericMenu, int poolsCount)
2024-03-07 21:22:48 +08:00
{
this.addComponentGenericMenu = addComponentGenericMenu;
this.poolsCount = poolsCount;
}
}
//world id
private static Dictionary<EcsWorld, WorldData> _worldDatas = new Dictionary<EcsWorld, WorldData>();
2024-09-12 01:35:37 +08:00
public static RuntimeComponentDropDown GetAddComponentGenericMenu(EcsWorld world)
2024-03-07 21:22:48 +08:00
{
if (_worldDatas.TryGetValue(world, out WorldData data))
{
if (data.poolsCount != world.PoolsCount)
{
data = CreateWorldData(world);
_worldDatas[world] = data;
}
}
else
{
data = CreateWorldData(world);
_worldDatas[world] = data;
world.AddListener(new Listener(world));
}
return data.addComponentGenericMenu;
}
private static WorldData CreateWorldData(EcsWorld world)
{
2024-09-12 01:35:37 +08:00
IEnumerable<IEcsPool> pools = world.AllPools.ToArray().Where(o => o.IsNullOrDummy() == false);
RuntimeComponentDropDown genericMenu = new RuntimeComponentDropDown(pools);
2024-03-07 21:22:48 +08:00
2024-09-12 01:35:37 +08:00
//var pools = world.AllPools;
//for (int i = 0; i < pools.Length; i++)
//{
// var pool = pools[i];
// if (pool.IsNullOrDummy())
// {
// continue;
// }
// var meta = pool.ComponentType.ToMeta();
// string name = meta.Group.Name + meta.Name;
// genericMenu.AddItem(new GUIContent(name, meta.Description.Text), false, OnAddComponent, pool);
//}
2024-03-07 21:22:48 +08:00
return new WorldData(genericMenu, world.PoolsCount);
}
public static int CurrentEntityID = 0;
private static void OnAddComponent(object userData)
{
IEcsPool pool = (IEcsPool)userData;
if (pool.World.IsUsed(CurrentEntityID) == false)
{
return;
}
if (pool.Has(CurrentEntityID) == false)
{
pool.AddRaw(CurrentEntityID, Activator.CreateInstance(pool.ComponentType));
}
else
{
Debug.LogWarning($"Entity({CurrentEntityID}) already has component {EcsDebugUtility.GetGenericTypeName(pool.ComponentType)}.");
}
}
private class Listener : IEcsWorldEventListener
{
private EcsWorld _world;
public Listener(EcsWorld world)
{
_world = world;
}
public void OnReleaseDelEntityBuffer(ReadOnlySpan<int> buffer) { }
public void OnWorldDestroy()
{
_worldDatas.Remove(_world);
}
public void OnWorldResize(int newSize) { }
}
}
2024-03-07 03:18:00 +08:00
}
2024-03-07 21:22:48 +08:00
#endif