// Copyright (c) ppy Pty Ltd . 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 System.Threading.Tasks; using osu.Framework.Allocation; using osu.Framework.Bindables; using osu.Framework.Extensions; using osu.Framework.Extensions.ObjectExtensions; using osu.Framework.Graphics; using osu.Framework.Graphics.Colour; using osu.Framework.Graphics.Containers; using osu.Framework.Graphics.Cursor; using osu.Framework.Graphics.Shapes; using osu.Framework.Graphics.Sprites; using osu.Framework.Graphics.UserInterface; using osu.Framework.Input.Events; using osu.Framework.Localisation; using osu.Framework.Platform; using osu.Game.Database; using osu.Game.Graphics.Sprites; using osu.Game.Overlays; using osuTK; using osuTK.Graphics; namespace osu.Game.Graphics.UserInterfaceV2 { public partial class FormFileSelector : CompositeDrawable, IHasCurrentValue, ICanAcceptFiles, IHasPopover { public Bindable Current { get => current.Current; set => current.Current = value; } private readonly BindableWithCurrent current = new BindableWithCurrent(); public IEnumerable HandledExtensions => handledExtensions; private readonly string[] handledExtensions; /// /// The initial path to use when displaying the . /// /// /// Uses a value before the first selection is made /// to ensure that the first selection starts at . /// private string? initialChooserPath; private readonly Bindable popoverState = new Bindable(); /// /// Caption describing this file selector, displayed on top of the controls. /// public LocalisableString Caption { get; init; } /// /// Hint text containing an extended description of this file selector, displayed in a tooltip when hovering the caption. /// public LocalisableString HintText { get; init; } /// /// Text displayed in the selector when no file is selected. /// public LocalisableString PlaceholderText { get; init; } public Container PreviewContainer { get; private set; } = null!; private Box background = null!; private FormFieldCaption caption = null!; private OsuSpriteText placeholderText = null!; private OsuSpriteText filenameText = null!; [Resolved] private OverlayColourProvider colourProvider { get; set; } = null!; [Resolved] private OsuGameBase game { get; set; } = null!; public FormFileSelector(params string[] handledExtensions) { this.handledExtensions = handledExtensions; } [BackgroundDependencyLoader] private void load() { RelativeSizeAxes = Axes.X; AutoSizeAxes = Axes.Y; Masking = true; CornerRadius = 5; InternalChildren = new Drawable[] { background = new Box { RelativeSizeAxes = Axes.Both, Colour = colourProvider.Background5, }, PreviewContainer = new Container { RelativeSizeAxes = Axes.X, AutoSizeAxes = Axes.Y, Padding = new MarginPadding { Horizontal = 1.5f, Top = 1.5f, Bottom = 50 }, }, new Container { RelativeSizeAxes = Axes.X, Height = 50, Anchor = Anchor.BottomLeft, Origin = Anchor.BottomLeft, Padding = new MarginPadding(9), Children = new Drawable[] { caption = new FormFieldCaption { Anchor = Anchor.TopLeft, Origin = Anchor.TopLeft, Caption = Caption, TooltipText = HintText, }, placeholderText = new OsuSpriteText { Anchor = Anchor.BottomLeft, Origin = Anchor.BottomLeft, RelativeSizeAxes = Axes.X, Width = 1, Text = PlaceholderText, Colour = colourProvider.Foreground1, }, filenameText = new OsuSpriteText { Anchor = Anchor.BottomLeft, Origin = Anchor.BottomLeft, RelativeSizeAxes = Axes.X, Width = 1, }, new SpriteIcon { Anchor = Anchor.BottomRight, Origin = Anchor.BottomRight, Icon = FontAwesome.Solid.FolderOpen, Size = new Vector2(16), Colour = colourProvider.Light1, } }, }, }; } protected override void LoadComplete() { base.LoadComplete(); popoverState.BindValueChanged(_ => updateState()); current.BindDisabledChanged(_ => updateState()); current.BindValueChanged(_ => { updateState(); onFileSelected(); }, true); FinishTransforms(true); game.RegisterImportHandler(this); } private void onFileSelected() { if (Current.Value != null) this.HidePopover(); initialChooserPath = Current.Value?.DirectoryName; placeholderText.Alpha = Current.Value == null ? 1 : 0; filenameText.Text = Current.Value?.Name ?? string.Empty; background.FlashColour(ColourInfo.GradientVertical(colourProvider.Background5, colourProvider.Dark2), 800, Easing.OutQuint); } protected override bool OnClick(ClickEvent e) { this.ShowPopover(); return true; } protected override bool OnHover(HoverEvent e) { updateState(); return true; } protected override void OnHoverLost(HoverLostEvent e) { base.OnHoverLost(e); updateState(); } private void updateState() { caption.Colour = Current.Disabled ? colourProvider.Foreground1 : colourProvider.Content2; filenameText.Colour = Current.Disabled || Current.Value == null ? colourProvider.Foreground1 : colourProvider.Content1; if (!Current.Disabled) { BorderThickness = IsHovered || popoverState.Value == Visibility.Visible ? 2 : 0; BorderColour = popoverState.Value == Visibility.Visible ? colourProvider.Highlight1 : colourProvider.Light4; if (popoverState.Value == Visibility.Visible) background.Colour = ColourInfo.GradientVertical(colourProvider.Background5, colourProvider.Dark3); else if (IsHovered) background.Colour = ColourInfo.GradientVertical(colourProvider.Background5, colourProvider.Dark4); else background.Colour = colourProvider.Background5; } else { background.Colour = colourProvider.Background4; } } protected override void Dispose(bool isDisposing) { base.Dispose(isDisposing); if (game.IsNotNull()) game.UnregisterImportHandler(this); } Task ICanAcceptFiles.Import(params string[] paths) { Schedule(() => Current.Value = new FileInfo(paths.First())); return Task.CompletedTask; } Task ICanAcceptFiles.Import(ImportTask[] tasks, ImportParameters parameters) => throw new NotImplementedException(); public Popover GetPopover() { var popover = new FileChooserPopover(handledExtensions, Current, initialChooserPath); popoverState.UnbindBindings(); popoverState.BindTo(popover.State); return popover; } private partial class FileChooserPopover : OsuPopover { protected override string PopInSampleName => "UI/overlay-big-pop-in"; protected override string PopOutSampleName => "UI/overlay-big-pop-out"; public FileChooserPopover(string[] handledExtensions, Bindable currentFile, string? chooserPath) : base(false) { Child = new Container { Size = new Vector2(600, 400), // simplest solution to avoid underlying text to bleed through the bottom border // https://github.com/ppy/osu/pull/30005#issuecomment-2378884430 Padding = new MarginPadding { Bottom = 1 }, Child = new OsuFileSelector(chooserPath, handledExtensions) { RelativeSizeAxes = Axes.Both, CurrentFile = { BindTarget = currentFile } }, }; } [BackgroundDependencyLoader] private void load(OverlayColourProvider colourProvider) { Add(new Container { RelativeSizeAxes = Axes.Both, Masking = true, BorderThickness = 2, CornerRadius = 10, BorderColour = colourProvider.Highlight1, Children = new Drawable[] { new Box { Colour = Color4.Transparent, RelativeSizeAxes = Axes.Both, }, } }); } } } }