2020-11-17 21:39:29 +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.
|
|
|
|
|
2020-11-17 20:19:12 +08:00
|
|
|
using System.IO;
|
2020-12-15 11:37:41 +08:00
|
|
|
using System.Linq;
|
2020-11-17 20:19:12 +08:00
|
|
|
using System.Threading.Tasks;
|
|
|
|
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.Platform;
|
|
|
|
using osu.Framework.Screens;
|
|
|
|
using osu.Game.Graphics;
|
2020-12-15 11:52:38 +08:00
|
|
|
using osu.Game.Graphics.Containers;
|
|
|
|
using osu.Game.Graphics.UserInterface;
|
2020-11-17 20:19:12 +08:00
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
|
|
|
using osuTK;
|
|
|
|
|
|
|
|
namespace osu.Game.Screens.Import
|
|
|
|
{
|
|
|
|
public class FileImportScreen : OsuScreen
|
|
|
|
{
|
|
|
|
public override bool HideOverlaysOnEnter => true;
|
|
|
|
|
2020-12-04 04:10:08 +08:00
|
|
|
private FileSelector fileSelector;
|
|
|
|
private Container contentContainer;
|
2020-11-17 20:19:12 +08:00
|
|
|
private TextFlowContainer currentFileText;
|
2020-12-04 04:10:08 +08:00
|
|
|
|
2020-12-15 11:43:27 +08:00
|
|
|
private TriangleButton importButton;
|
|
|
|
|
2020-12-04 04:10:08 +08:00
|
|
|
private const float duration = 300;
|
|
|
|
private const float button_height = 50;
|
|
|
|
private const float button_vertical_margin = 15;
|
2020-11-17 20:19:12 +08:00
|
|
|
|
|
|
|
[Resolved]
|
2020-12-15 11:37:41 +08:00
|
|
|
private OsuGameBase game { get; set; }
|
2020-11-17 20:19:12 +08:00
|
|
|
|
2020-12-04 04:10:08 +08:00
|
|
|
[Resolved]
|
|
|
|
private OsuColour colours { get; set; }
|
|
|
|
|
2020-11-17 20:19:12 +08:00
|
|
|
[BackgroundDependencyLoader(true)]
|
|
|
|
private void load(Storage storage)
|
|
|
|
{
|
|
|
|
InternalChild = contentContainer = new Container
|
|
|
|
{
|
|
|
|
Masking = true,
|
|
|
|
CornerRadius = 10,
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
Size = new Vector2(0.9f, 0.8f),
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
|
|
|
new Box
|
|
|
|
{
|
2020-12-04 04:10:08 +08:00
|
|
|
Colour = colours.GreySeafoamDark,
|
2020-11-17 20:19:12 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
},
|
2020-12-15 11:52:38 +08:00
|
|
|
fileSelector = new FileSelector(validFileExtensions: game.HandledExtensions.ToArray())
|
2020-11-17 20:19:12 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-12-04 04:10:08 +08:00
|
|
|
Width = 0.65f
|
2020-11-17 20:19:12 +08:00
|
|
|
},
|
|
|
|
new Container
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Width = 0.35f,
|
|
|
|
Anchor = Anchor.TopRight,
|
|
|
|
Origin = Anchor.TopRight,
|
|
|
|
Children = new Drawable[]
|
|
|
|
{
|
2020-12-04 04:10:08 +08:00
|
|
|
new Box
|
|
|
|
{
|
|
|
|
Colour = colours.GreySeafoamDarker,
|
|
|
|
RelativeSizeAxes = Axes.Both
|
|
|
|
},
|
|
|
|
new Container
|
2020-11-17 20:19:12 +08:00
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.Both,
|
2020-12-04 04:10:08 +08:00
|
|
|
Padding = new MarginPadding { Bottom = button_height + button_vertical_margin * 2 },
|
2020-12-15 11:52:38 +08:00
|
|
|
Child = new OsuScrollContainer
|
2020-11-17 20:19:12 +08:00
|
|
|
{
|
2020-12-04 04:10:08 +08:00
|
|
|
RelativeSizeAxes = Axes.Both,
|
|
|
|
Anchor = Anchor.TopCentre,
|
|
|
|
Origin = Anchor.TopCentre,
|
|
|
|
Child = currentFileText = new TextFlowContainer(t => t.Font = OsuFont.Default.With(size: 30))
|
2020-11-17 20:19:12 +08:00
|
|
|
{
|
2020-12-04 04:10:08 +08:00
|
|
|
AutoSizeAxes = Axes.Y,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
TextAnchor = Anchor.Centre
|
2020-11-17 20:19:12 +08:00
|
|
|
},
|
2020-12-15 11:52:38 +08:00
|
|
|
ScrollContent =
|
|
|
|
{
|
|
|
|
Anchor = Anchor.Centre,
|
|
|
|
Origin = Anchor.Centre,
|
|
|
|
}
|
2020-12-04 04:10:08 +08:00
|
|
|
},
|
|
|
|
},
|
2020-12-15 11:43:27 +08:00
|
|
|
importButton = new TriangleButton
|
2020-12-04 04:10:08 +08:00
|
|
|
{
|
|
|
|
Text = "Import",
|
|
|
|
Anchor = Anchor.BottomCentre,
|
|
|
|
Origin = Anchor.BottomCentre,
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = button_height,
|
|
|
|
Width = 0.9f,
|
|
|
|
Margin = new MarginPadding { Vertical = button_vertical_margin },
|
2020-12-15 11:52:38 +08:00
|
|
|
Action = () => startImport(fileSelector.CurrentFile.Value?.FullName)
|
2020-11-24 17:18:19 +08:00
|
|
|
}
|
2020-11-17 20:19:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2020-12-15 11:52:38 +08:00
|
|
|
fileSelector.CurrentFile.BindValueChanged(fileChanged, true);
|
|
|
|
fileSelector.CurrentPath.BindValueChanged(directoryChanged);
|
2020-11-17 20:19:12 +08:00
|
|
|
}
|
2020-11-24 18:04:34 +08:00
|
|
|
|
2020-11-17 20:19:12 +08:00
|
|
|
public override void OnEntering(IScreen last)
|
|
|
|
{
|
|
|
|
base.OnEntering(last);
|
|
|
|
|
2020-12-15 12:02:38 +08:00
|
|
|
contentContainer.ScaleTo(0.95f).ScaleTo(1, duration, Easing.OutQuint);
|
|
|
|
this.FadeInFromZero(duration);
|
2020-11-17 20:19:12 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
public override bool OnExiting(IScreen next)
|
|
|
|
{
|
2020-12-04 04:10:08 +08:00
|
|
|
contentContainer.ScaleTo(0.95f, duration, Easing.OutQuint);
|
|
|
|
this.FadeOut(duration, Easing.OutQuint);
|
2020-11-17 20:19:12 +08:00
|
|
|
|
|
|
|
return base.OnExiting(next);
|
|
|
|
}
|
|
|
|
|
2020-12-15 12:02:38 +08:00
|
|
|
private void directoryChanged(ValueChangedEvent<DirectoryInfo> _)
|
|
|
|
{
|
|
|
|
// this should probably be done by the selector itself, but let's do it here for now.
|
|
|
|
fileSelector.CurrentFile.Value = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
private void fileChanged(ValueChangedEvent<FileInfo> selectedFile)
|
|
|
|
{
|
|
|
|
importButton.Enabled.Value = selectedFile.NewValue != null;
|
|
|
|
currentFileText.Text = selectedFile.NewValue?.Name ?? "Select a file";
|
|
|
|
}
|
|
|
|
|
2020-11-17 20:19:12 +08:00
|
|
|
private void startImport(string path)
|
|
|
|
{
|
|
|
|
if (string.IsNullOrEmpty(path))
|
|
|
|
return;
|
|
|
|
|
2020-12-15 11:57:28 +08:00
|
|
|
Task.Factory.StartNew(async () =>
|
|
|
|
{
|
2021-03-08 11:57:16 +08:00
|
|
|
await game.Import(path).ConfigureAwait(false);
|
2020-11-17 20:19:12 +08:00
|
|
|
|
2020-12-15 11:57:28 +08:00
|
|
|
// some files will be deleted after successful import, so we want to refresh the view.
|
|
|
|
Schedule(() =>
|
|
|
|
{
|
|
|
|
// should probably be exposed as a refresh method.
|
|
|
|
fileSelector.CurrentPath.TriggerChange();
|
2020-12-15 11:52:45 +08:00
|
|
|
});
|
2020-12-15 11:57:28 +08:00
|
|
|
}, TaskCreationOptions.LongRunning);
|
2020-11-17 20:19:12 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|