| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287 |
- using System;
- using System.Collections.Generic;
- using System.IO;
- using BansheeEngine;
- namespace BansheeEditor
- {
- internal enum ProjectViewType
- {
- Grid64, Grid48, Grid32, List16
- }
- internal sealed class ProjectWindow : EditorWindow
- {
- private class ContentInfo
- {
- public ContentInfo(ProjectWindow window, ProjectViewType viewType)
- {
- GUIPanel parentPanel = window.scrollAreaPanel;
- GUIPanel contentPanel = parentPanel.AddPanel(1);
- overlay = parentPanel.AddPanel(0);
- underlay = parentPanel.AddPanel(2);
- main = contentPanel.AddLayoutY();
- if (viewType == ProjectViewType.List16)
- {
- tileSize = 16;
- gridLayout = false;
- }
- else
- {
- switch (viewType)
- {
- case ProjectViewType.Grid64:
- tileSize = 64;
- break;
- case ProjectViewType.Grid48:
- tileSize = 48;
- break;
- case ProjectViewType.Grid32:
- tileSize = 32;
- break;
- }
- gridLayout = true;
- }
- this.window = window;
- }
- public GUILayout main;
- public GUIPanel overlay;
- public GUIPanel underlay;
- public ProjectWindow window;
- public int tileSize;
- public bool gridLayout;
- }
- private class ElementEntry
- {
- // Note: Order of these is relevant
- enum UnderlayState
- {
- None, Hovered, Selected, Pinged
- }
- public int index;
- public string path;
- public GUITexture icon;
- public GUILabel label;
- public Rect2I bounds;
- private GUITexture underlay;
- private ContentInfo info;
- private UnderlayState underlayState;
- public ElementEntry(ContentInfo info, GUILayout parent, LibraryEntry entry, int index)
- {
- GUILayout entryLayout;
- if (info.gridLayout)
- entryLayout = parent.AddLayoutY();
- else
- entryLayout = parent.AddLayoutX();
- SpriteTexture iconTexture = GetIcon(entry);
- icon = new GUITexture(iconTexture, GUIImageScaleMode.ScaleToFit,
- true, GUIOption.FixedHeight(info.tileSize), GUIOption.FixedWidth(info.tileSize));
- label = null;
- if (info.gridLayout)
- {
- int labelWidth = info.tileSize + LABEL_EXTRA_WIDTH;
- label = new GUILabel(entry.Name, EditorStyles.MultiLineLabel,
- GUIOption.FixedWidth(labelWidth), GUIOption.FlexibleHeight(0, MAX_LABEL_HEIGHT));
- }
- else
- {
- label = new GUILabel(entry.Name);
- }
- entryLayout.AddElement(icon);
- entryLayout.AddElement(label);
- this.info = info;
- this.index = index;
- this.path = entry.Path;
- this.bounds = new Rect2I();
- this.underlay = null;
- }
- public void Initialize()
- {
- bounds = icon.Bounds;
- Rect2I labelBounds = label.Bounds;
- bounds.x = MathEx.Min(bounds.x, labelBounds.x);
- bounds.y = MathEx.Min(bounds.y, labelBounds.y);
- bounds.width = MathEx.Max(bounds.x + bounds.width,
- labelBounds.x + labelBounds.width) - bounds.x;
- bounds.height = MathEx.Max(bounds.y + bounds.height,
- labelBounds.y + labelBounds.height) - bounds.y;
- ProjectWindow hoistedWindow = info.window;
- string hoistedPath = path;
- GUIButton overlayBtn = new GUIButton("", EditorStyles.Blank);
- overlayBtn.Bounds = bounds;
- overlayBtn.OnClick += () => hoistedWindow.OnEntryClicked(hoistedPath);
- overlayBtn.OnDoubleClick += () => hoistedWindow.OnEntryDoubleClicked(hoistedPath);
- overlayBtn.SetContextMenu(info.window.entryContextMenu);
- info.overlay.AddElement(overlayBtn);
- }
- public Rect2I Bounds
- {
- get { return bounds; }
- }
- public void MarkAsCut(bool enable)
- {
- if (enable)
- icon.SetTint(CUT_COLOR);
- else
- icon.SetTint(Color.White);
- }
- public void MarkAsSelected(bool enable)
- {
- if ((int)underlayState > (int) UnderlayState.Selected)
- return;
- if (enable)
- {
- CreateUnderlay();
- underlay.SetTint(SELECTION_COLOR);
- }
- else
- ClearUnderlay();
- underlayState = UnderlayState.Selected;
- }
- public void MarkAsPinged(bool enable)
- {
- if ((int)underlayState > (int)UnderlayState.Pinged)
- return;
- if (enable)
- {
- CreateUnderlay();
- underlay.SetTint(PING_COLOR);
- }
- else
- ClearUnderlay();
- underlayState = UnderlayState.Pinged;
- }
- public void MarkAsHovered(bool enable)
- {
- if ((int)underlayState > (int)UnderlayState.Hovered)
- return;
- if (enable)
- {
- CreateUnderlay();
- underlay.SetTint(HOVER_COLOR);
- }
- else
- ClearUnderlay();
- underlayState = UnderlayState.Hovered;
- }
- private void ClearUnderlay()
- {
- if (underlay != null)
- {
- underlay.Destroy();
- underlay = null;
- }
- underlayState = UnderlayState.None;
- }
- private void CreateUnderlay()
- {
- if (underlay == null)
- {
- underlay = new GUITexture(Builtin.WhiteTexture);
- underlay.Bounds = Bounds;
- info.underlay.AddElement(underlay);
- }
- }
- private static SpriteTexture GetIcon(LibraryEntry entry)
- {
- if (entry.Type == LibraryEntryType.Directory)
- {
- return EditorBuiltin.FolderIcon;
- }
- else
- {
- FileEntry fileEntry = (FileEntry)entry;
- switch (fileEntry.ResType)
- {
- case ResourceType.Font:
- return EditorBuiltin.FontIcon;
- case ResourceType.Mesh:
- return EditorBuiltin.MeshIcon;
- case ResourceType.Texture:
- return EditorBuiltin.TextureIcon;
- case ResourceType.PlainText:
- return EditorBuiltin.PlainTextIcon;
- case ResourceType.ScriptCode:
- return EditorBuiltin.ScriptCodeIcon;
- case ResourceType.SpriteTexture:
- return EditorBuiltin.SpriteTextureIcon;
- case ResourceType.Shader:
- return EditorBuiltin.ShaderIcon;
- case ResourceType.Material:
- return EditorBuiltin.MaterialIcon;
- }
- }
- return null;
- }
- }
- enum MoveDirection
- {
- Up, Down, Left, Right
- }
- private const int GRID_ENTRY_SPACING = 15;
- private const int LIST_ENTRY_SPACING = 7;
- private const int MAX_LABEL_HEIGHT = 50;
- private const int LABEL_EXTRA_WIDTH = 10;
- private const int DRAG_SCROLL_HEIGHT = 20;
- private const int DRAG_SCROLL_AMOUNT_PER_SECOND = 100;
- private const int FOLDER_BUTTON_WIDTH = 20;
- private const int FOLDER_SEPARATOR_WIDTH = 7;
- private static readonly Color PING_COLOR = Color.BansheeOrange;
- private static readonly Color SELECTION_COLOR = Color.DarkCyan;
- private static readonly Color HOVER_COLOR = new Color(Color.DarkCyan.r, Color.DarkCyan.g, Color.DarkCyan.b, 0.5f);
- private static readonly Color CUT_COLOR = new Color(1.0f, 1.0f, 1.0f, 0.5f);
- private bool hasContentFocus = false;
- private bool HasContentFocus { get { return HasFocus && hasContentFocus; } }
- private string searchQuery;
- private bool IsSearchActive { get { return !string.IsNullOrEmpty(searchQuery); } }
- private ProjectViewType viewType = ProjectViewType.Grid32;
- private string currentDirectory = "";
- private List<string> selectionPaths = new List<string>();
- private int selectionAnchorStart = -1;
- private int selectionAnchorEnd = -1;
- private string pingPath = "";
- private string hoverHighlightPath = "";
- private GUIScrollArea contentScrollArea;
- private GUIPanel scrollAreaPanel;
- private GUILayoutX searchBarLayout;
- private GUIButton optionsButton;
- private GUILayout folderBarLayout;
- private GUILayout folderListLayout;
- private ContextMenu entryContextMenu;
- private ProjectDropTarget dropTarget;
- private List<ElementEntry> entries = new List<ElementEntry>();
- private Dictionary<string, ElementEntry> entryLookup = new Dictionary<string, ElementEntry>();
- private int elementsPerRow;
- private int autoScrollAmount;
- // Cut/Copy/Paste
- private List<string> copyPaths = new List<string>();
- private List<string> cutPaths = new List<string>();
- internal ProjectViewType ViewType
- {
- get { return viewType; }
- set { viewType = value; Refresh(); }
- }
- [MenuItem("Windows/Project", ButtonModifier.Ctrl, ButtonCode.P)]
- private static void OpenProjectWindow()
- {
- OpenWindow<ProjectWindow>();
- }
- private void OnInitialize()
- {
- ProjectLibrary.OnEntryAdded += OnEntryChanged;
- ProjectLibrary.OnEntryRemoved += OnEntryChanged;
- GUILayoutY contentLayout = GUI.AddLayoutY();
- searchBarLayout = contentLayout.AddLayoutX();
- GUITextField searchField = new GUITextField();
- searchField.OnChanged += OnSearchChanged;
- GUIButton clearSearchBtn = new GUIButton("C");
- clearSearchBtn.OnClick += ClearSearch;
- clearSearchBtn.SetWidth(40);
- optionsButton = new GUIButton("O");
- optionsButton.OnClick += OpenOptionsWindow;
- optionsButton.SetWidth(40);
- searchBarLayout.AddElement(searchField);
- searchBarLayout.AddElement(clearSearchBtn);
- searchBarLayout.AddElement(optionsButton);
- folderBarLayout = contentLayout.AddLayoutX();
- GUIButton homeButton = new GUIButton("H", GUIOption.FixedWidth(FOLDER_BUTTON_WIDTH));
- homeButton.OnClick += OnHomeClicked;
- GUIButton upButton = new GUIButton("U", GUIOption.FixedWidth(FOLDER_BUTTON_WIDTH));
- upButton.OnClick += OnUpClicked;
- folderBarLayout.AddElement(homeButton);
- folderBarLayout.AddElement(upButton);
- contentScrollArea = new GUIScrollArea(GUIOption.FlexibleWidth(), GUIOption.FlexibleHeight());
- contentLayout.AddElement(contentScrollArea);
- contentLayout.AddFlexibleSpace();
- entryContextMenu = new ContextMenu();
- entryContextMenu.AddItem("Cut", CutSelection, new ShortcutKey(ButtonModifier.Ctrl, ButtonCode.X));
- entryContextMenu.AddItem("Copy", CopySelection, new ShortcutKey(ButtonModifier.Ctrl, ButtonCode.C));
- entryContextMenu.AddItem("Duplicate", DuplicateSelection, new ShortcutKey(ButtonModifier.Ctrl, ButtonCode.D));
- entryContextMenu.AddItem("Paste", PasteToSelection, new ShortcutKey(ButtonModifier.Ctrl, ButtonCode.V));
- Reset();
- dropTarget = new ProjectDropTarget(this);
- dropTarget.Bounds = contentScrollArea.Bounds;
- dropTarget.OnStart += DoOnDragStart;
- dropTarget.OnDrag += DoOnDragMove;
- dropTarget.OnLeave += DoOnDragLeave;
- dropTarget.OnDrop += DoOnDragDropped;
- }
- private ElementEntry FindElementAt(Vector2I windowPos)
- {
- Rect2I scrollBounds = contentScrollArea.Layout.Bounds;
- Vector2I scrollPos = windowPos;
- scrollPos.x -= scrollBounds.x;
- scrollPos.y -= scrollBounds.y;
- foreach (var element in entries)
- {
- if (element.bounds.Contains(scrollPos))
- return element;
- }
- return null;
- }
- private void DoOnDragStart(Vector2I windowPos)
- {
- ElementEntry underCursorElem = FindElementAt(windowPos);
- if (underCursorElem == null)
- return;
- if (!selectionPaths.Contains(underCursorElem.path))
- Select(underCursorElem.path);
- ResourceDragDropData dragDropData = new ResourceDragDropData(selectionPaths.ToArray());
- DragDrop.StartDrag(dragDropData);
- }
- private void DoOnDragMove(Vector2I windowPos)
- {
- ElementEntry underCursorElem = FindElementAt(windowPos);
-
- if (underCursorElem == null)
- {
- ClearHoverHighlight();
- }
- else
- {
- if (underCursorElem.path != hoverHighlightPath)
- {
- ClearHoverHighlight();
- hoverHighlightPath = underCursorElem.path;
- underCursorElem.MarkAsHovered(true);
- }
- }
- Rect2I scrollAreaBounds = contentScrollArea.Bounds;
- int scrollAreaTop = scrollAreaBounds.y;
- int scrollAreaBottom = scrollAreaBounds.y + scrollAreaBounds.height;
- if (windowPos.y > scrollAreaTop && windowPos.y <= (scrollAreaTop + DRAG_SCROLL_HEIGHT))
- autoScrollAmount = -DRAG_SCROLL_AMOUNT_PER_SECOND;
- else if (windowPos.y >= (scrollAreaBottom - DRAG_SCROLL_HEIGHT) && windowPos.y < scrollAreaBottom)
- autoScrollAmount = DRAG_SCROLL_AMOUNT_PER_SECOND;
- else
- autoScrollAmount = 0;
- }
- private void DoOnDragLeave()
- {
- ClearHoverHighlight();
- autoScrollAmount = 0;
- }
- private void DoOnDragDropped(Vector2I windowPos, string[] paths)
- {
- string resourceDir = ProjectLibrary.ResourceFolder;
- string destinationFolder = Path.Combine(resourceDir, currentDirectory);
- ElementEntry underCursorElement = FindElementAt(windowPos);
- if (underCursorElement != null)
- {
- LibraryEntry entry = ProjectLibrary.GetEntry(underCursorElement.path);
- if (entry != null && entry.Type == LibraryEntryType.Directory)
- destinationFolder = Path.Combine(resourceDir, entry.Path);
- }
- if (paths != null)
- {
- foreach (var path in paths)
- {
- if (path == null)
- continue;
- string absolutePath = path;
- if (!Path.IsPathRooted(absolutePath))
- absolutePath = Path.Combine(resourceDir, path);
- if (string.IsNullOrEmpty(absolutePath))
- continue;
- if (PathEx.IsPartOf(destinationFolder, absolutePath) || PathEx.Compare(absolutePath, destinationFolder))
- continue;
- string destination = Path.Combine(destinationFolder, Path.GetFileName(absolutePath));
- if (ProjectLibrary.Exists(path))
- ProjectLibrary.Move(path, destination, true);
- else
- ProjectLibrary.Copy(path, destination, true);
- }
- }
- ClearHoverHighlight();
- autoScrollAmount = 0;
- }
- private void ClearHoverHighlight()
- {
- if (!string.IsNullOrEmpty(hoverHighlightPath))
- {
- ElementEntry previousUnderCursorElem;
- if (entryLookup.TryGetValue(hoverHighlightPath, out previousUnderCursorElem))
- previousUnderCursorElem.MarkAsHovered(false);
- }
- hoverHighlightPath = "";
- }
- public void Ping(Resource resource)
- {
- if (!string.IsNullOrEmpty(pingPath))
- {
- ElementEntry entry;
- if (entryLookup.TryGetValue(pingPath, out entry))
- entry.MarkAsPinged(false);
- }
- if (resource != null)
- pingPath = ProjectLibrary.GetPath(resource);
- else
- pingPath = "";
- if (!string.IsNullOrEmpty(pingPath))
- {
- ElementEntry entry;
- if (entryLookup.TryGetValue(pingPath, out entry))
- entry.MarkAsPinged(true);
- ScrollToEntry(pingPath);
- }
- }
- private void DeselectAll()
- {
- SetSelection(new List<string>());
- selectionAnchorStart = -1;
- selectionAnchorEnd = -1;
- }
- private void Select(string path)
- {
- ElementEntry entry;
- if (!entryLookup.TryGetValue(path, out entry))
- return;
- bool ctrlDown = Input.IsButtonHeld(ButtonCode.LeftControl) || Input.IsButtonHeld(ButtonCode.RightControl);
- bool shiftDown = Input.IsButtonHeld(ButtonCode.LeftShift) || Input.IsButtonHeld(ButtonCode.RightShift);
- if (shiftDown)
- {
- if (selectionAnchorStart != -1 && selectionAnchorStart < entries.Count)
- {
- int start = Math.Min(entry.index, selectionAnchorStart);
- int end = Math.Max(entry.index, selectionAnchorStart);
- List<string> newSelection = new List<string>();
- for(int i = start; i <= end; i++)
- newSelection.Add(entries[i].path);
- SetSelection(newSelection);
- selectionAnchorEnd = entry.index;
- }
- else
- {
- SetSelection(new List<string>() {path});
- selectionAnchorStart = entry.index;
- selectionAnchorEnd = entry.index;
- }
- }
- else if (ctrlDown)
- {
- List<string> newSelection = new List<string>(selectionPaths);
- if (selectionPaths.Contains(path))
- {
- newSelection.Remove(path);
- if (newSelection.Count == 0)
- DeselectAll();
- else
- {
- if (selectionAnchorStart == entry.index)
- {
- ElementEntry newAnchorEntry;
- if (!entryLookup.TryGetValue(newSelection[0], out newAnchorEntry))
- selectionAnchorStart = -1;
- else
- selectionAnchorStart = newAnchorEntry.index;
- }
- if (selectionAnchorEnd == entry.index)
- {
- ElementEntry newAnchorEntry;
- if (!entryLookup.TryGetValue(newSelection[newSelection.Count - 1], out newAnchorEntry))
- selectionAnchorEnd = -1;
- else
- selectionAnchorEnd = newAnchorEntry.index;
- }
- SetSelection(newSelection);
- }
- }
- else
- {
- newSelection.Add(path);
- SetSelection(newSelection);
- selectionAnchorEnd = entry.index;
- }
- }
- else
- {
- SetSelection(new List<string>() { path });
- selectionAnchorStart = entry.index;
- selectionAnchorEnd = entry.index;
- }
- }
- private void MoveSelection(MoveDirection dir)
- {
- string newPath = "";
- if (selectionPaths.Count == 0 || selectionAnchorEnd == -1)
- {
- // Nothing is selected so we arbitrarily select first or last element
- if (entries.Count > 0)
- {
- switch (dir)
- {
- case MoveDirection.Left:
- case MoveDirection.Up:
- newPath = entries[0].path;
- break;
- case MoveDirection.Right:
- case MoveDirection.Down:
- newPath = entries[entries.Count - 1].path;
- break;
- }
- }
- }
- else
- {
- switch (dir)
- {
- case MoveDirection.Left:
- if (selectionAnchorEnd - 1 > 0)
- newPath = entries[selectionAnchorEnd - 1].path;
- break;
- case MoveDirection.Up:
- if (selectionAnchorEnd - elementsPerRow > 0)
- newPath = entries[selectionAnchorEnd - elementsPerRow].path;
- break;
- case MoveDirection.Right:
- if (selectionAnchorEnd + 1 < entries.Count)
- newPath = entries[selectionAnchorEnd + 1].path;
- break;
- case MoveDirection.Down:
- if (selectionAnchorEnd + elementsPerRow > 0)
- newPath = entries[selectionAnchorEnd + elementsPerRow].path;
- break;
- }
- }
- if (!string.IsNullOrEmpty(newPath))
- {
- Select(newPath);
- ScrollToEntry(newPath);
- }
- }
- private void SetSelection(List<string> paths)
- {
- if (selectionPaths != null)
- {
- foreach (var path in selectionPaths)
- {
- ElementEntry entry;
- if (entryLookup.TryGetValue(path, out entry))
- entry.MarkAsSelected(false);
- }
- }
- selectionPaths = paths;
- if (selectionPaths != null)
- {
- foreach (var path in selectionPaths)
- {
- ElementEntry entry;
- if (entryLookup.TryGetValue(path, out entry))
- entry.MarkAsSelected(true);
- }
- }
- Ping(null);
- if (selectionPaths != null)
- Selection.resourcePaths = selectionPaths.ToArray();
- else
- Selection.resourcePaths = new string[0];
- }
- private void EnterDirectory(string directory)
- {
- currentDirectory = directory;
- DeselectAll();
- Refresh();
- }
- private void Cut(IEnumerable<string> sourcePaths)
- {
- foreach (var path in cutPaths)
- {
- ElementEntry entry;
- if (entryLookup.TryGetValue(path, out entry))
- entry.MarkAsCut(false);
- }
- cutPaths.Clear();
- cutPaths.AddRange(sourcePaths);
- foreach (var path in cutPaths)
- {
- ElementEntry entry;
- if (entryLookup.TryGetValue(path, out entry))
- entry.MarkAsCut(true);
- }
- copyPaths.Clear();
- }
- private void Copy(IEnumerable<string> sourcePaths)
- {
- copyPaths.Clear();
- copyPaths.AddRange(sourcePaths);
- foreach (var path in cutPaths)
- {
- ElementEntry entry;
- if (entryLookup.TryGetValue(path, out entry))
- entry.MarkAsCut(false);
- }
- cutPaths.Clear();
- }
- private void Duplicate(IEnumerable<string> sourcePaths)
- {
- foreach (var source in sourcePaths)
- {
- int idx = 0;
- string destination;
- do
- {
- destination = source + "_" + idx;
- idx++;
- } while (!ProjectLibrary.Exists(destination));
- ProjectLibrary.Copy(source, destination);
- }
- }
- private void Paste(string destinationFolder)
- {
- if (copyPaths.Count > 0)
- {
- for (int i = 0; i < copyPaths.Count; i++)
- {
- string destination = Path.Combine(destinationFolder, Path.GetFileName(copyPaths[i]));
- ProjectLibrary.Copy(copyPaths[i], destination, true);
- }
- Refresh();
- }
- else if (cutPaths.Count > 0)
- {
- for (int i = 0; i < cutPaths.Count; i++)
- {
- string destination = Path.Combine(destinationFolder, Path.GetFileName(cutPaths[i]));
- ProjectLibrary.Move(cutPaths[i], destination, true);
- }
- cutPaths.Clear();
- Refresh();
- }
- }
- private void EditorUpdate()
- {
- if (HasContentFocus)
- {
- if (Input.IsButtonHeld(ButtonCode.LeftControl) || Input.IsButtonHeld(ButtonCode.RightControl))
- {
- if (Input.IsButtonUp(ButtonCode.C))
- {
- CopySelection();
- }
- else if (Input.IsButtonUp(ButtonCode.X))
- {
- CutSelection();
- }
- else if (Input.IsButtonUp(ButtonCode.D))
- {
- DuplicateSelection();
- }
- else if (Input.IsButtonUp(ButtonCode.V))
- {
- PasteToSelection();
- }
- }
- if (Input.IsButtonDown(ButtonCode.Return))
- {
- if (selectionPaths.Count == 1)
- {
- LibraryEntry entry = ProjectLibrary.GetEntry(selectionPaths[0]);
- if (entry != null && entry.Type == LibraryEntryType.Directory)
- {
- EnterDirectory(entry.Path);
- }
- }
- }
- else if (Input.IsButtonDown(ButtonCode.Back))
- {
- LibraryEntry entry = ProjectLibrary.GetEntry(currentDirectory);
- if (entry != null && entry.Parent != null)
- {
- EnterDirectory(entry.Parent.Path);
- }
- }
- else if (Input.IsButtonDown(ButtonCode.Up))
- {
- MoveSelection(MoveDirection.Up);
- }
- else if (Input.IsButtonDown(ButtonCode.Down))
- {
- MoveSelection(MoveDirection.Down);
- }
- else if (Input.IsButtonDown(ButtonCode.Left))
- {
- MoveSelection(MoveDirection.Left);
- }
- else if (Input.IsButtonDown(ButtonCode.Right))
- {
- MoveSelection(MoveDirection.Right);
- }
- }
- if (autoScrollAmount != 0)
- {
- Rect2I contentBounds = contentScrollArea.ContentBounds;
- float scrollPct = autoScrollAmount / (float)contentBounds.height;
- contentScrollArea.VerticalScroll += scrollPct * Time.FrameDelta;
- }
- dropTarget.Update();
- }
- private void OnEntryChanged(string entry)
- {
- Refresh();
- }
- private void ScrollToEntry(string path)
- {
- ElementEntry entryGUI;
- if (!entryLookup.TryGetValue(path, out entryGUI))
- return;
- Rect2I entryBounds = entryGUI.Bounds;
- Rect2I contentBounds = contentScrollArea.Layout.Bounds;
- entryBounds.x += contentBounds.x;
- entryBounds.y += contentBounds.y;
- Rect2I scrollAreaBounds = scrollAreaPanel.Bounds;
- bool requiresScroll = entryBounds.y < scrollAreaBounds.y ||
- (entryBounds.y + entryBounds.height) > (scrollAreaBounds.y + scrollAreaBounds.height);
- if (!requiresScroll)
- return;
- float percent = (entryBounds.y - entryBounds.height * 0.5f - scrollAreaBounds.height * 0.5f) / contentBounds.height;
- percent = MathEx.Clamp01(percent);
- contentScrollArea.VerticalScroll = percent;
- }
- private void Refresh()
- {
- LibraryEntry[] entriesToDisplay = new LibraryEntry[0];
- if (IsSearchActive)
- {
- entriesToDisplay = ProjectLibrary.Search(searchQuery);
- }
- else
- {
- DirectoryEntry entry = ProjectLibrary.GetEntry(currentDirectory) as DirectoryEntry;
- if (entry == null)
- {
- currentDirectory = ProjectLibrary.Root.Path;
- entry = ProjectLibrary.GetEntry(currentDirectory) as DirectoryEntry;
- }
- if(entry != null)
- entriesToDisplay = entry.Children;
- }
- if (scrollAreaPanel != null)
- scrollAreaPanel.Destroy();
- entries.Clear();
- entryLookup.Clear();
- scrollAreaPanel = contentScrollArea.Layout.AddPanel();
- if (entriesToDisplay.Length == 0)
- return;
- ContentInfo contentInfo = new ContentInfo(this, viewType);
- Rect2I scrollBounds = contentScrollArea.Bounds;
- int availableWidth = scrollBounds.width;
-
- if (viewType == ProjectViewType.List16)
- {
- for (int i = 0; i < entriesToDisplay.Length; i++)
- {
- ElementEntry guiEntry = new ElementEntry(contentInfo, contentInfo.main, entriesToDisplay[i], i);
- entries.Add(guiEntry);
- entryLookup[guiEntry.path] = guiEntry;
- if (i != entriesToDisplay.Length - 1)
- contentInfo.main.AddSpace(LIST_ENTRY_SPACING);
- }
- contentInfo.main.AddFlexibleSpace();
- elementsPerRow = 1;
- }
- else
- {
- int tileSize = 64;
- switch (viewType)
- {
- case ProjectViewType.Grid64: tileSize = 64; break;
- case ProjectViewType.Grid48: tileSize = 48; break;
- case ProjectViewType.Grid32: tileSize = 32; break;
- }
- GUILayoutX rowLayout = contentInfo.main.AddLayoutX();
- rowLayout.AddFlexibleSpace();
- int elemSize = tileSize + GRID_ENTRY_SPACING;
- elementsPerRow = (availableWidth - GRID_ENTRY_SPACING * 2) / elemSize;
- int numRows = MathEx.CeilToInt(entriesToDisplay.Length / (float)elementsPerRow);
- int neededHeight = numRows*(elemSize);
- bool requiresScrollbar = neededHeight > scrollBounds.height;
- if (requiresScrollbar)
- {
- availableWidth -= contentScrollArea.ScrollBarWidth;
- elementsPerRow = (availableWidth - GRID_ENTRY_SPACING * 2) / elemSize;
- }
- int elemsInRow = 0;
- for (int i = 0; i < entriesToDisplay.Length; i++)
- {
- if (elemsInRow == elementsPerRow && elemsInRow > 0)
- {
- rowLayout = contentInfo.main.AddLayoutX();
- contentInfo.main.AddSpace(GRID_ENTRY_SPACING);
- rowLayout.AddFlexibleSpace();
- elemsInRow = 0;
- }
- ElementEntry guiEntry = new ElementEntry(contentInfo, rowLayout, entriesToDisplay[i], i);
- entries.Add(guiEntry);
- entryLookup[guiEntry.path] = guiEntry;
- rowLayout.AddFlexibleSpace();
- elemsInRow++;
- }
- int extraElements = elementsPerRow - elemsInRow;
- for (int i = 0; i < extraElements; i++)
- {
- rowLayout.AddSpace(tileSize);
- rowLayout.AddFlexibleSpace();
- }
- contentInfo.main.AddFlexibleSpace();
- }
- for (int i = 0; i < entries.Count; i++)
- {
- ElementEntry guiEntry = entries[i];
- guiEntry.Initialize();
- if (cutPaths.Contains(guiEntry.path))
- guiEntry.MarkAsCut(true);
- if (selectionPaths.Contains(guiEntry.path))
- guiEntry.MarkAsSelected(true);
- else if (pingPath == guiEntry.path)
- guiEntry.MarkAsPinged(true);
- }
- Rect2I contentBounds = contentInfo.main.Bounds;
- Rect2I minimalBounds = GetScrollAreaBounds();
- contentBounds.height = Math.Max(contentBounds.height, minimalBounds.height);
- GUIButton catchAll = new GUIButton("", EditorStyles.Blank);
- catchAll.Bounds = contentBounds;
- catchAll.OnClick += OnCatchAllClicked;
- catchAll.SetContextMenu(entryContextMenu);
- catchAll.OnFocusChanged += OnContentsFocusChanged;
- contentInfo.underlay.AddElement(catchAll);
- RefreshDirectoryBar();
- }
- private void RefreshDirectoryBar()
- {
- if (folderListLayout != null)
- {
- folderListLayout.Destroy();
- folderListLayout = null;
- }
- folderListLayout = folderBarLayout.AddLayoutX();
- string[] folders = null;
- string[] fullPaths = null;
- if (IsSearchActive)
- {
- folders = new[] {searchQuery};
- fullPaths = new[] {""};
- }
- else
- {
- folders = currentDirectory.Split(new[] { Path.DirectorySeparatorChar, Path.AltDirectorySeparatorChar },
- StringSplitOptions.RemoveEmptyEntries);
- fullPaths = new string[folders.Length];
- }
- for (int i = 0; i < folders.Length; i++)
- {
- if (i == 0)
- fullPaths[i] = folders[i];
- else
- fullPaths[i] = Path.Combine(fullPaths[i - 1], folders[i]);
- }
- int availableWidth = folderBarLayout.Bounds.width - FOLDER_BUTTON_WIDTH * 2;
- int numFolders = 0;
- for (int i = folders.Length - 1; i >= 0; i--)
- {
- GUIButton folderButton = new GUIButton(folders[i]);
- if (!IsSearchActive)
- {
- string fullPath = fullPaths[i];
- folderButton.OnClick += () => OnFolderButtonClicked(fullPath);
- }
- GUILabel separator = new GUILabel("/", GUIOption.FixedWidth(FOLDER_SEPARATOR_WIDTH));
- folderListLayout.InsertElement(0, separator);
- folderListLayout.InsertElement(0, folderButton);
- numFolders++;
- Rect2I folderListBounds = folderListLayout.Bounds;
- if (folderListBounds.width > availableWidth)
- {
- if (numFolders > 2)
- {
- separator.Destroy();
- folderButton.Destroy();
- break;
- }
- }
- }
- }
- private void OnFolderButtonClicked(string path)
- {
- EnterDirectory(path);
- }
- private void OnContentsFocusChanged(bool focus)
- {
- hasContentFocus = focus;
- }
- private void OnEntryClicked(string path)
- {
- Select(path);
- }
- private void OnEntryDoubleClicked(string path)
- {
- LibraryEntry entry = ProjectLibrary.GetEntry(path);
- if (entry != null && entry.Type == LibraryEntryType.Directory)
- {
- EnterDirectory(path);
- }
- }
- private void OnCatchAllClicked()
- {
- DeselectAll();
- }
- private void OnHomeClicked()
- {
- currentDirectory = ProjectLibrary.Root.Path;
- Refresh();
- }
- private void OnUpClicked()
- {
- string parent = Path.GetDirectoryName(currentDirectory);
- if (!string.IsNullOrEmpty(parent))
- {
- currentDirectory = parent;
- Refresh();
- }
- }
- private void CutSelection()
- {
- if (selectionPaths.Count > 0)
- Cut(selectionPaths);
- }
- private void CopySelection()
- {
- if (selectionPaths.Count > 0)
- Copy(selectionPaths);
- }
- private void DuplicateSelection()
- {
- if (selectionPaths.Count > 0)
- Duplicate(selectionPaths);
- }
- private void PasteToSelection()
- {
- DirectoryEntry selectedDirectory = null;
- if (selectionPaths.Count == 1)
- {
- LibraryEntry entry = ProjectLibrary.GetEntry(selectionPaths[0]);
- if (entry != null && entry.Type == LibraryEntryType.Directory)
- selectedDirectory = (DirectoryEntry) entry;
- }
- if(selectedDirectory != null)
- Paste(selectedDirectory.Path);
- else
- Paste(currentDirectory);
- }
- private void OnSearchChanged(string newValue)
- {
- searchQuery = newValue;
- Refresh();
- }
- private void ClearSearch()
- {
- searchQuery = "";
- Refresh();
- }
- private void OpenOptionsWindow()
- {
- Vector2I openPosition;
- Rect2I buttonBounds = GUILayoutUtility.CalculateBounds(optionsButton, GUI);
- openPosition.x = buttonBounds.x + buttonBounds.width / 2;
- openPosition.y = buttonBounds.y + buttonBounds.height / 2;
- ProjectDropDown dropDown = DropDownWindow.Open<ProjectDropDown>(this, openPosition);
- dropDown.SetParent(this);
- }
- private void Reset()
- {
- currentDirectory = ProjectLibrary.Root.Path;
- selectionAnchorStart = -1;
- selectionAnchorEnd = -1;
- selectionPaths.Clear();
- pingPath = "";
- hoverHighlightPath = "";
- Refresh();
- }
- private Rect2I GetScrollAreaBounds()
- {
- Rect2I bounds = GUI.Bounds;
- Rect2I searchBarBounds = searchBarLayout.Bounds;
- bounds.y += searchBarBounds.height;
- bounds.height -= searchBarBounds.height;
- return bounds;
- }
- protected override void WindowResized(int width, int height)
- {
- base.WindowResized(width, height);
- Refresh();
- dropTarget.Bounds = contentScrollArea.Bounds;
- }
- }
- internal class ProjectDropDown : DropDownWindow
- {
- private ProjectWindow parent;
- public ProjectDropDown()
- :base(150, 30)
- { }
- internal void SetParent(ProjectWindow parent)
- {
- this.parent = parent;
- GUIToggleGroup group = new GUIToggleGroup();
- GUIToggle list16 = new GUIToggle("16", group, EditorStyles.Button, GUIOption.FixedWidth(30));
- GUIToggle grid32 = new GUIToggle("32", group, EditorStyles.Button, GUIOption.FixedWidth(30));
- GUIToggle grid48 = new GUIToggle("48", group, EditorStyles.Button, GUIOption.FixedWidth(30));
- GUIToggle grid64 = new GUIToggle("64", group, EditorStyles.Button, GUIOption.FixedWidth(30));
- ProjectViewType activeType = parent.ViewType;
- switch (activeType)
- {
- case ProjectViewType.List16:
- list16.ToggleOn();
- break;
- case ProjectViewType.Grid32:
- grid32.ToggleOn();
- break;
- case ProjectViewType.Grid48:
- grid48.ToggleOn();
- break;
- case ProjectViewType.Grid64:
- grid64.ToggleOn();
- break;
- }
- list16.OnToggled += (active) =>
- {
- if (active)
- ChangeViewType(ProjectViewType.List16);
- };
- grid32.OnToggled += (active) =>
- {
- if (active)
- ChangeViewType(ProjectViewType.Grid32);
- };
- grid48.OnToggled += (active) =>
- {
- if (active)
- ChangeViewType(ProjectViewType.Grid48);
- };
- grid64.OnToggled += (active) =>
- {
- if (active)
- ChangeViewType(ProjectViewType.Grid64);
- };
- GUILayoutY vertLayout = GUI.AddLayoutY();
- vertLayout.AddFlexibleSpace();
- GUILayoutX contentLayout = vertLayout.AddLayoutX();
- contentLayout.AddFlexibleSpace();
- contentLayout.AddElement(list16);
- contentLayout.AddElement(grid32);
- contentLayout.AddElement(grid48);
- contentLayout.AddElement(grid64);
- contentLayout.AddFlexibleSpace();
- vertLayout.AddFlexibleSpace();
- }
- private void ChangeViewType(ProjectViewType viewType)
- {
- parent.ViewType = viewType;
- }
- }
- }
|