0.2.0: Added drag and drop between entries in list and fixed some bugs
This commit is contained in:
parent
dea60c6e4a
commit
1e1736f94a
8 changed files with 150 additions and 38 deletions
|
|
@ -59,6 +59,14 @@ namespace Game.NavigationTool.Editor
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
for (var i = 0; i < entries.Count; i++)
|
||||
{
|
||||
Entry e = entries[i];
|
||||
|
||||
if (e.indentLevel != 0 && e.parent == null)
|
||||
e.indentLevel = 0;
|
||||
}
|
||||
}
|
||||
|
||||
public void Add(string guid, Entry toParent = null)
|
||||
|
|
@ -82,6 +90,9 @@ namespace Game.NavigationTool.Editor
|
|||
|
||||
entries.Add(e);
|
||||
|
||||
if (toParent != null && toParent.isAsset)
|
||||
toParent = toParent.parent;
|
||||
|
||||
if (toParent != null)
|
||||
{
|
||||
e.parent = toParent;
|
||||
|
|
@ -137,7 +148,7 @@ namespace Game.NavigationTool.Editor
|
|||
|
||||
if (!e.isAsset)
|
||||
{
|
||||
for (var i = 0; i < e.children.Count; i++)
|
||||
for (int i = e.children.Count - 1; i >= 0; i--)
|
||||
{
|
||||
InternalRemove(e.children[i].entry);
|
||||
}
|
||||
|
|
@ -191,9 +202,23 @@ namespace Game.NavigationTool.Editor
|
|||
string path = AssetDatabase.GUIDToAssetPath(entry.assetGuid);
|
||||
return AssetDatabase.LoadMainAssetAtPath(path);
|
||||
}
|
||||
|
||||
private void Sort()
|
||||
{
|
||||
entries.Sort((e0, e1) =>
|
||||
{
|
||||
int compare = e0.isAsset.CompareTo(e1.isAsset);
|
||||
|
||||
if (compare == 0)
|
||||
compare = string.Compare(e0.lowerName, e1.lowerName, StringComparison.Ordinal);
|
||||
|
||||
return compare;
|
||||
});
|
||||
}
|
||||
|
||||
public void Save()
|
||||
{
|
||||
Sort();
|
||||
string json = EditorJsonUtility.ToJson(this, false);
|
||||
EditorPrefs.SetString(PREF_ID, json);
|
||||
}
|
||||
|
|
@ -254,7 +279,7 @@ namespace Game.NavigationTool.Editor
|
|||
string path = AssetDatabase.GUIDToAssetPath(assetGuid);
|
||||
name = Path.GetFileNameWithoutExtension(path);
|
||||
lowerName = name.ToLower();
|
||||
valid = !string.IsNullOrEmpty(path);
|
||||
valid = AssetDatabase.LoadMainAssetAtPath(path) != null;
|
||||
content = new GUIContent(name, FavoritesGUIUtility.GetIcon(path), path);
|
||||
}
|
||||
else
|
||||
|
|
@ -267,6 +292,15 @@ namespace Game.NavigationTool.Editor
|
|||
public void AddChild(Entry entry)
|
||||
{
|
||||
children.Add(new Child(entry));
|
||||
children.Sort((c0, c1) =>
|
||||
{
|
||||
int compare = c0.entry.isAsset.CompareTo(c1.entry.isAsset);
|
||||
|
||||
if (compare == 0)
|
||||
compare = string.Compare(c0.entry.lowerName, c1.entry.lowerName, StringComparison.Ordinal);
|
||||
|
||||
return compare;
|
||||
});
|
||||
}
|
||||
|
||||
public void RemoveChild(Entry entry)
|
||||
|
|
|
|||
|
|
@ -10,8 +10,11 @@ namespace Game.NavigationTool.Editor
|
|||
|
||||
public static Favorites.Entry manipulatingEntry;
|
||||
public static EManipulatingState manipulatingState;
|
||||
public static Favorites.Entry hoverEntry;
|
||||
public static Vector2 manipulatingMouseOffset;
|
||||
public static Rect manipulatingRect;
|
||||
|
||||
public static Favorites.Entry hoverEntry;
|
||||
|
||||
public static void DrawEntry(Rect rect, Favorites.Entry entry, Styles styles, bool ignoreIndentLevel = false)
|
||||
{
|
||||
int id = GUIUtility.GetControlID(ENTRY_HASH, FocusType.Passive, rect);
|
||||
|
|
@ -20,15 +23,14 @@ namespace Game.NavigationTool.Editor
|
|||
|
||||
if (intersects)
|
||||
hoverEntry = entry;
|
||||
else if (hoverEntry == entry)
|
||||
hoverEntry = null;
|
||||
|
||||
switch (Event.current.type)
|
||||
{
|
||||
case EventType.MouseDown:
|
||||
if (intersects)
|
||||
{
|
||||
SetManipulating(entry, Event.current.button == 0 ? EManipulatingState.BeginClick : EManipulatingState.BeginContextClick);
|
||||
SetManipulating(rect, entry, Event.current.button == 0 ? EManipulatingState.BeginClick : EManipulatingState.BeginContextClick);
|
||||
manipulatingMouseOffset = Event.current.mousePosition - rect.position;
|
||||
Event.current.Use();
|
||||
}
|
||||
break;
|
||||
|
|
@ -38,16 +40,23 @@ namespace Game.NavigationTool.Editor
|
|||
if (manipulatingState == EManipulatingState.BeginClick)
|
||||
{
|
||||
if (intersects && Event.current.button == 0)
|
||||
SetManipulating(entry, EManipulatingState.PerformedClick);
|
||||
SetManipulating(rect, entry, EManipulatingState.PerformedClick);
|
||||
else
|
||||
SetManipulating(entry, EManipulatingState.EndClick);
|
||||
SetManipulating(rect, entry, EManipulatingState.EndClick);
|
||||
}
|
||||
else if (manipulatingState == EManipulatingState.BeginContextClick)
|
||||
{
|
||||
if (intersects && Event.current.button == 1)
|
||||
SetManipulating(entry, EManipulatingState.PerformedContextClick);
|
||||
SetManipulating(rect, entry, EManipulatingState.PerformedContextClick);
|
||||
else
|
||||
SetManipulating(entry, EManipulatingState.EndContextClick);
|
||||
SetManipulating(rect, entry, EManipulatingState.EndContextClick);
|
||||
}
|
||||
else if (manipulatingState == EManipulatingState.BeginDrag)
|
||||
{
|
||||
if (intersects)
|
||||
SetManipulating(rect, entry, EManipulatingState.EndDrag);
|
||||
else
|
||||
SetManipulating(rect, entry, EManipulatingState.PerformedDrag);
|
||||
}
|
||||
|
||||
Event.current.Use();
|
||||
|
|
@ -55,11 +64,10 @@ namespace Game.NavigationTool.Editor
|
|||
break;
|
||||
case EventType.MouseDrag:
|
||||
if (manipulatingEntry == entry)
|
||||
{
|
||||
SetManipulating(rect, entry, EManipulatingState.BeginDrag);
|
||||
Event.current.Use();
|
||||
break;
|
||||
case EventType.KeyDown:
|
||||
break;
|
||||
case EventType.KeyUp:
|
||||
}
|
||||
break;
|
||||
case EventType.Repaint:
|
||||
if (!ignoreIndentLevel)
|
||||
|
|
@ -67,20 +75,36 @@ namespace Game.NavigationTool.Editor
|
|||
rect.x += entry.indentLevel * 15.0f;
|
||||
rect.width -= entry.indentLevel * 15.0f;
|
||||
}
|
||||
|
||||
|
||||
if (!entry.isAsset)
|
||||
entry.content.image = entry.expanded ? styles.foldoutOut : styles.foldoutIn;
|
||||
|
||||
styles.entry.Draw(rect, entry.content, id, on, intersects);
|
||||
break;
|
||||
case EventType.DragUpdated:
|
||||
break;
|
||||
case EventType.DragPerform:
|
||||
break;
|
||||
case EventType.DragExited:
|
||||
GUIStyle style = entry.valid ? styles.entry : styles.invalidEntry;
|
||||
style.Draw(rect, entry.content, id, on, intersects);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public static void DrawShadowEntry(Rect rect, Favorites.Entry entry, Styles styles)
|
||||
{
|
||||
if (Event.current.type != EventType.Repaint)
|
||||
return;
|
||||
|
||||
if (!entry.isAsset)
|
||||
entry.content.image = entry.expanded ? styles.foldoutOut : styles.foldoutIn;
|
||||
|
||||
int id = GUIUtility.GetControlID(ENTRY_HASH, FocusType.Passive, rect);
|
||||
GUIStyle style = entry.valid ? styles.entry : styles.invalidEntry;
|
||||
|
||||
GUI.enabled = false;
|
||||
style.Draw(rect, entry.content, id, false, false);
|
||||
GUI.enabled = true;
|
||||
}
|
||||
|
||||
public static void EndDraw()
|
||||
{
|
||||
hoverEntry = null;
|
||||
}
|
||||
|
||||
public static Texture2D GetIcon(string path)
|
||||
{
|
||||
|
|
@ -97,15 +121,16 @@ namespace Game.NavigationTool.Editor
|
|||
return AssetDatabase.GetCachedIcon("Assets") as Texture2D;
|
||||
}
|
||||
|
||||
private static void SetManipulating(Favorites.Entry entry, EManipulatingState state)
|
||||
private static void SetManipulating(Rect rect, Favorites.Entry entry, EManipulatingState state)
|
||||
{
|
||||
manipulatingRect = rect;
|
||||
manipulatingEntry = entry;
|
||||
manipulatingState = state;
|
||||
}
|
||||
|
||||
public static void ClearManipulating()
|
||||
{
|
||||
SetManipulating(null, EManipulatingState.None);
|
||||
SetManipulating(Rect.zero, null, EManipulatingState.None);
|
||||
hoverEntry = null;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
17
Editor/Favorites/Utilities/FavoritesPostProcess.cs
Normal file
17
Editor/Favorites/Utilities/FavoritesPostProcess.cs
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
using UnityEditor;
|
||||
|
||||
namespace Game.NavigationTool.Editor
|
||||
{
|
||||
internal sealed class FavoritesPostProcess : AssetPostprocessor
|
||||
{
|
||||
private static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths)
|
||||
{
|
||||
bool isDirty = deletedAssets.Length != 0 ||
|
||||
movedAssets.Length != 0 ||
|
||||
movedFromAssetPaths.Length != 0;
|
||||
|
||||
if (isDirty && FavoritesUtility.IsLoaded())
|
||||
FavoritesUtility.RefreshAll();
|
||||
}
|
||||
}
|
||||
}
|
||||
11
Editor/Favorites/Utilities/FavoritesPostProcess.cs.meta
Normal file
11
Editor/Favorites/Utilities/FavoritesPostProcess.cs.meta
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
fileFormatVersion: 2
|
||||
guid: 522178e7e28db4e4b8bad3b9ae7d1ff4
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
||||
|
|
@ -1,4 +1,5 @@
|
|||
using UnityEditor;
|
||||
using System.Collections.Generic;
|
||||
using UnityEditor;
|
||||
|
||||
namespace Game.NavigationTool.Editor
|
||||
{
|
||||
|
|
@ -16,6 +17,24 @@ namespace Game.NavigationTool.Editor
|
|||
return FAVORITES ?? (FAVORITES = new Favorites());
|
||||
}
|
||||
|
||||
public static bool IsLoaded()
|
||||
{
|
||||
return FAVORITES != null;
|
||||
}
|
||||
|
||||
public static void RefreshAll()
|
||||
{
|
||||
if (FAVORITES == null)
|
||||
return;
|
||||
|
||||
List<Favorites.Entry> entries = FAVORITES.entries;
|
||||
|
||||
for (var i = 0; i < entries.Count; i++)
|
||||
{
|
||||
entries[i].Refresh();
|
||||
}
|
||||
}
|
||||
|
||||
[MenuItem("Tools/Utilities/Favorites/Delete")]
|
||||
public static void DeleteAll()
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue