1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-23 10:07:25 +08:00
osu-lazer/osu.Game/Graphics/UserInterfaceV2/DirectorySelector.cs

274 lines
8.9 KiB
C#
Raw Normal View History

2020-05-13 17:37:14 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using osu.Framework.Allocation;
using osu.Framework.Bindables;
using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.Shapes;
using osu.Framework.Graphics.Sprites;
using osu.Framework.Input.Events;
using osu.Framework.Platform;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Sprites;
using osuTK;
using osuTK.Graphics;
2020-05-13 17:37:14 +08:00
namespace osu.Game.Graphics.UserInterfaceV2
{
public class DirectorySelector : CompositeDrawable
{
private FillFlowContainer directoryFlow;
[Resolved]
private GameHost host { get; set; }
[Cached]
private readonly Bindable<DirectoryInfo> currentDirectory = new Bindable<DirectoryInfo>();
public DirectorySelector(string initialPath = null)
{
2020-05-13 17:55:06 +08:00
currentDirectory.Value = new DirectoryInfo(initialPath ?? Environment.GetFolderPath(Environment.SpecialFolder.UserProfile));
2020-05-13 17:37:14 +08:00
}
2020-05-13 17:52:10 +08:00
[BackgroundDependencyLoader]
private void load()
2020-05-13 17:37:14 +08:00
{
Padding = new MarginPadding(10);
InternalChildren = new Drawable[]
{
new FillFlowContainer
{
RelativeSizeAxes = Axes.Both,
Direction = FillDirection.Vertical,
Children = new Drawable[]
{
new CurrentDirectoryDisplay
{
RelativeSizeAxes = Axes.X,
Height = 50,
},
new OsuScrollContainer
{
RelativeSizeAxes = Axes.Both,
Child = directoryFlow = new FillFlowContainer
{
AutoSizeAxes = Axes.Y,
RelativeSizeAxes = Axes.X,
Direction = FillDirection.Vertical,
Spacing = new Vector2(2),
}
}
}
},
};
currentDirectory.BindValueChanged(updateDisplay, true);
}
private void updateDisplay(ValueChangedEvent<DirectoryInfo> directory)
{
directoryFlow.Clear();
try
2020-05-13 17:37:14 +08:00
{
if (directory.NewValue == null)
{
var drives = DriveInfo.GetDrives();
2020-05-13 17:37:14 +08:00
foreach (var drive in drives)
directoryFlow.Add(new DirectoryPiece(drive.RootDirectory));
}
else
{
directoryFlow.Add(new ParentDirectoryPiece(currentDirectory.Value.Parent));
foreach (var dir in currentDirectory.Value.GetDirectories().OrderBy(d => d.Name))
{
if ((dir.Attributes & FileAttributes.Hidden) == 0)
directoryFlow.Add(new DirectoryPiece(dir));
}
}
2020-05-13 17:37:14 +08:00
}
catch (Exception)
2020-05-13 17:37:14 +08:00
{
currentDirectory.Value = directory.OldValue;
2020-05-13 17:37:14 +08:00
this.FlashColour(Color4.Red, 300);
2020-05-13 17:37:14 +08:00
}
}
2020-05-13 17:52:10 +08:00
private class CurrentDirectoryDisplay : CompositeDrawable
2020-05-13 17:37:14 +08:00
{
[Resolved]
private Bindable<DirectoryInfo> currentDirectory { get; set; }
2020-05-13 17:52:10 +08:00
private FillFlowContainer flow;
2020-05-13 17:37:14 +08:00
[BackgroundDependencyLoader]
private void load()
{
InternalChildren = new Drawable[]
{
flow = new FillFlowContainer
{
Anchor = Anchor.Centre,
Origin = Anchor.Centre,
RelativeSizeAxes = Axes.X,
Spacing = new Vector2(5),
2020-05-13 17:52:10 +08:00
Height = DirectoryPiece.HEIGHT,
2020-05-13 17:37:14 +08:00
Direction = FillDirection.Horizontal,
},
};
2020-05-13 17:52:10 +08:00
currentDirectory.BindValueChanged(updateDisplay, true);
}
2020-05-13 17:37:14 +08:00
2020-05-13 17:52:10 +08:00
private void updateDisplay(ValueChangedEvent<DirectoryInfo> dir)
{
flow.Clear();
2020-05-13 17:37:14 +08:00
2020-05-13 17:52:10 +08:00
List<DirectoryPiece> pathPieces = new List<DirectoryPiece>();
2020-05-13 17:37:14 +08:00
2020-05-13 17:52:10 +08:00
DirectoryInfo ptr = dir.NewValue;
2020-05-13 17:37:14 +08:00
2020-05-13 17:52:10 +08:00
while (ptr != null)
{
pathPieces.Insert(0, new CurrentDisplayPiece(ptr));
ptr = ptr.Parent;
}
2020-05-13 17:37:14 +08:00
2020-05-13 17:52:10 +08:00
flow.ChildrenEnumerable = new Drawable[]
{
new OsuSpriteText { Text = "Current Directory: ", Font = OsuFont.Default.With(size: DirectoryPiece.HEIGHT), },
new ComputerPiece(),
}.Concat(pathPieces);
2020-05-13 17:37:14 +08:00
}
2020-05-13 17:52:10 +08:00
private class ComputerPiece : CurrentDisplayPiece
2020-05-13 17:37:14 +08:00
{
protected override IconUsage? Icon => null;
2020-05-13 17:37:14 +08:00
2020-05-13 17:52:10 +08:00
public ComputerPiece()
2020-05-13 17:37:14 +08:00
: base(null, "Computer")
{
}
}
2020-05-13 17:52:10 +08:00
private class CurrentDisplayPiece : DirectoryPiece
2020-05-13 17:37:14 +08:00
{
2020-05-13 17:52:10 +08:00
public CurrentDisplayPiece(DirectoryInfo directory, string displayName = null)
2020-05-13 17:37:14 +08:00
: base(directory, displayName)
{
}
[BackgroundDependencyLoader]
private void load()
{
Flow.Add(new SpriteIcon
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Icon = FontAwesome.Solid.ChevronRight,
Size = new Vector2(FONT_SIZE / 2)
});
}
2020-05-13 17:52:10 +08:00
protected override IconUsage? Icon => Directory.Name.Contains(Path.DirectorySeparatorChar) ? base.Icon : null;
2020-05-13 17:37:14 +08:00
}
}
2020-05-13 17:52:10 +08:00
private class ParentDirectoryPiece : DirectoryPiece
2020-05-13 17:37:14 +08:00
{
protected override IconUsage? Icon => FontAwesome.Solid.Folder;
2020-05-13 17:37:14 +08:00
2020-05-13 17:52:10 +08:00
public ParentDirectoryPiece(DirectoryInfo directory)
2020-05-13 17:37:14 +08:00
: base(directory, "..")
{
}
}
2020-05-13 17:52:10 +08:00
private class DirectoryPiece : CompositeDrawable
2020-05-13 17:37:14 +08:00
{
public const float HEIGHT = 20;
protected const float FONT_SIZE = 16;
protected readonly DirectoryInfo Directory;
2020-05-13 17:37:14 +08:00
private readonly string displayName;
protected FillFlowContainer Flow;
[Resolved]
private Bindable<DirectoryInfo> currentDirectory { get; set; }
2020-05-13 17:52:10 +08:00
public DirectoryPiece(DirectoryInfo directory, string displayName = null)
2020-05-13 17:37:14 +08:00
{
Directory = directory;
2020-05-13 17:37:14 +08:00
this.displayName = displayName;
}
[BackgroundDependencyLoader]
private void load(OsuColour colours)
{
AutoSizeAxes = Axes.Both;
Masking = true;
CornerRadius = 5;
InternalChildren = new Drawable[]
{
new Box
{
Colour = colours.GreySeafoamDarker,
RelativeSizeAxes = Axes.Both,
},
Flow = new FillFlowContainer
{
AutoSizeAxes = Axes.X,
Height = 20,
Margin = new MarginPadding { Vertical = 2, Horizontal = 5 },
Direction = FillDirection.Horizontal,
Spacing = new Vector2(5),
}
};
if (Icon.HasValue)
{
Flow.Add(new SpriteIcon
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Icon = Icon.Value,
Size = new Vector2(FONT_SIZE)
});
}
Flow.Add(new OsuSpriteText
{
Anchor = Anchor.CentreLeft,
Origin = Anchor.CentreLeft,
Text = displayName ?? Directory.Name,
2020-05-13 17:37:14 +08:00
Font = OsuFont.Default.With(size: FONT_SIZE)
});
}
protected override bool OnClick(ClickEvent e)
{
currentDirectory.Value = Directory;
2020-05-13 17:37:14 +08:00
return true;
}
2020-05-13 17:52:10 +08:00
protected virtual IconUsage? Icon => Directory.Name.Contains(Path.DirectorySeparatorChar)
? FontAwesome.Solid.Database
: FontAwesome.Regular.Folder;
2020-05-13 17:37:14 +08:00
}
}
}