2020-10-06 14:17:15 +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.IO;
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
using osu.Framework.Bindables;
|
|
|
|
using osu.Framework.Graphics;
|
2021-04-04 01:02:33 +08:00
|
|
|
using osu.Framework.Localisation;
|
2020-10-06 14:17:15 +08:00
|
|
|
using osu.Game.Beatmaps;
|
2024-08-28 18:17:39 +08:00
|
|
|
using osu.Game.Graphics.UserInterfaceV2;
|
2020-10-06 14:17:15 +08:00
|
|
|
using osu.Game.Overlays;
|
2022-08-11 01:53:20 +08:00
|
|
|
using osu.Game.Localisation;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
|
|
|
namespace osu.Game.Screens.Edit.Setup
|
|
|
|
{
|
2024-10-03 19:53:21 +08:00
|
|
|
public partial class ResourcesSection : SetupSection
|
2020-10-06 14:17:15 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
private FormFileSelector audioTrackChooser = null!;
|
|
|
|
private FormFileSelector backgroundChooser = null!;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
2022-08-15 23:14:16 +08:00
|
|
|
public override LocalisableString Title => EditorSetupStrings.ResourcesHeader;
|
2021-04-04 01:02:33 +08:00
|
|
|
|
2020-10-06 14:17:15 +08:00
|
|
|
[Resolved]
|
2023-01-07 08:08:02 +08:00
|
|
|
private MusicController music { get; set; } = null!;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
|
|
|
[Resolved]
|
2023-01-07 08:08:02 +08:00
|
|
|
private BeatmapManager beatmaps { get; set; } = null!;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
2021-01-04 15:47:08 +08:00
|
|
|
[Resolved]
|
2023-01-07 08:08:02 +08:00
|
|
|
private IBindable<WorkingBeatmap> working { get; set; } = null!;
|
2021-01-04 15:47:08 +08:00
|
|
|
|
2022-08-01 15:36:12 +08:00
|
|
|
[Resolved]
|
2023-01-07 08:08:02 +08:00
|
|
|
private EditorBeatmap editorBeatmap { get; set; } = null!;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
2023-01-07 00:26:30 +08:00
|
|
|
[Resolved]
|
2023-01-07 08:03:52 +08:00
|
|
|
private Editor? editor { get; set; }
|
2023-01-07 00:26:30 +08:00
|
|
|
|
2024-10-04 17:09:14 +08:00
|
|
|
private SetupScreenHeaderBackground headerBackground = null!;
|
2021-04-04 18:50:50 +08:00
|
|
|
|
2020-10-06 14:17:15 +08:00
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
private void load()
|
|
|
|
{
|
2024-10-04 17:09:14 +08:00
|
|
|
headerBackground = new SetupScreenHeaderBackground
|
|
|
|
{
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
Height = 110,
|
|
|
|
};
|
|
|
|
|
2020-10-06 18:26:57 +08:00
|
|
|
Children = new Drawable[]
|
2020-10-06 14:17:15 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
backgroundChooser = new FormFileSelector(".jpg", ".jpeg", ".png")
|
2021-04-04 18:50:50 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = GameplaySettingsStrings.BackgroundHeader,
|
|
|
|
PlaceholderText = EditorSetupStrings.ClickToSelectBackground,
|
2021-04-04 18:50:50 +08:00
|
|
|
},
|
2024-08-28 18:17:39 +08:00
|
|
|
audioTrackChooser = new FormFileSelector(".mp3", ".ogg")
|
2020-10-06 14:17:15 +08:00
|
|
|
{
|
2024-08-28 18:17:39 +08:00
|
|
|
Caption = EditorSetupStrings.AudioTrack,
|
|
|
|
PlaceholderText = EditorSetupStrings.ClickToSelectTrack,
|
2021-08-23 23:01:01 +08:00
|
|
|
},
|
2020-10-06 14:17:15 +08:00
|
|
|
};
|
|
|
|
|
2024-10-04 17:09:14 +08:00
|
|
|
backgroundChooser.PreviewContainer.Add(headerBackground);
|
|
|
|
|
2022-06-16 00:29:09 +08:00
|
|
|
if (!string.IsNullOrEmpty(working.Value.Metadata.BackgroundFile))
|
|
|
|
backgroundChooser.Current.Value = new FileInfo(working.Value.Metadata.BackgroundFile);
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(working.Value.Metadata.AudioFile))
|
|
|
|
audioTrackChooser.Current.Value = new FileInfo(working.Value.Metadata.AudioFile);
|
|
|
|
|
2022-06-16 23:48:32 +08:00
|
|
|
backgroundChooser.Current.BindValueChanged(backgroundChanged);
|
|
|
|
audioTrackChooser.Current.BindValueChanged(audioTrackChanged);
|
2020-10-06 14:17:15 +08:00
|
|
|
}
|
|
|
|
|
2022-06-16 00:29:09 +08:00
|
|
|
public bool ChangeBackgroundImage(FileInfo source)
|
2020-10-06 14:17:15 +08:00
|
|
|
{
|
2022-06-15 14:02:48 +08:00
|
|
|
if (!source.Exists)
|
2020-10-06 14:17:15 +08:00
|
|
|
return false;
|
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
var beatmap = working.Value.BeatmapInfo;
|
2021-01-04 15:47:08 +08:00
|
|
|
var set = working.Value.BeatmapSetInfo;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
string[] filenames = set.Files.Select(f => f.Filename).Where(f =>
|
|
|
|
f.StartsWith(@"bg", StringComparison.OrdinalIgnoreCase) &&
|
|
|
|
f.EndsWith(source.Extension, StringComparison.OrdinalIgnoreCase)).ToArray();
|
2022-06-15 14:02:48 +08:00
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
string currentFilename = working.Value.Metadata.BackgroundFile;
|
|
|
|
string? newFilename = null;
|
2020-10-06 14:17:15 +08:00
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
var oldFile = set.GetFile(currentFilename);
|
2021-11-29 17:08:02 +08:00
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
if (oldFile != null && set.Beatmaps.Where(b => !b.Equals(beatmap)).All(b => b.Metadata.BackgroundFile != currentFilename))
|
|
|
|
{
|
|
|
|
beatmaps.DeleteFile(set, oldFile);
|
|
|
|
newFilename = currentFilename;
|
2020-10-06 14:17:15 +08:00
|
|
|
}
|
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
newFilename ??= NamingUtils.GetNextBestFilename(filenames, $@"bg{source.Extension}");
|
|
|
|
|
|
|
|
using (var stream = source.OpenRead())
|
|
|
|
beatmaps.AddFile(set, stream, newFilename);
|
|
|
|
|
|
|
|
working.Value.Metadata.BackgroundFile = newFilename;
|
|
|
|
updateAllDifficultiesButton.Enabled.Value = true;
|
|
|
|
|
2022-08-01 15:36:12 +08:00
|
|
|
editorBeatmap.SaveState();
|
|
|
|
|
2024-08-28 18:17:39 +08:00
|
|
|
headerBackground.UpdateBackground();
|
2023-01-07 08:03:52 +08:00
|
|
|
editor?.ApplyToBackground(bg => bg.RefreshBackground());
|
2023-01-07 00:26:30 +08:00
|
|
|
|
2020-10-06 14:17:15 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-06-16 00:29:09 +08:00
|
|
|
public bool ChangeAudioTrack(FileInfo source)
|
2021-04-04 18:50:50 +08:00
|
|
|
{
|
2022-06-15 14:02:48 +08:00
|
|
|
if (!source.Exists)
|
2021-04-04 18:50:50 +08:00
|
|
|
return false;
|
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
var beatmap = working.Value.BeatmapInfo;
|
2021-04-04 18:50:50 +08:00
|
|
|
var set = working.Value.BeatmapSetInfo;
|
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
string[] filenames = set.Files.Select(f => f.Filename).Where(f =>
|
|
|
|
f.StartsWith(@"audio", StringComparison.OrdinalIgnoreCase) &&
|
|
|
|
f.EndsWith(source.Extension, StringComparison.OrdinalIgnoreCase)).ToArray();
|
2022-06-15 14:02:48 +08:00
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
string currentFilename = working.Value.Metadata.AudioFile;
|
|
|
|
string? newFilename = null;
|
2021-04-04 18:50:50 +08:00
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
var oldFile = set.GetFile(currentFilename);
|
2022-06-15 14:02:48 +08:00
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
if (oldFile != null && set.Beatmaps.Where(b => !b.Equals(beatmap)).All(b => b.Metadata.AudioFile != currentFilename))
|
|
|
|
{
|
|
|
|
beatmaps.DeleteFile(set, oldFile);
|
|
|
|
newFilename = currentFilename;
|
2021-04-04 18:50:50 +08:00
|
|
|
}
|
|
|
|
|
2024-11-24 13:32:27 +08:00
|
|
|
newFilename ??= NamingUtils.GetNextBestFilename(filenames, $@"audio{source.Extension}");
|
|
|
|
|
|
|
|
using (var stream = source.OpenRead())
|
|
|
|
beatmaps.AddFile(set, stream, newFilename);
|
|
|
|
|
|
|
|
working.Value.Metadata.AudioFile = newFilename;
|
|
|
|
updateAllDifficultiesButton.Enabled.Value = true;
|
2021-04-04 18:50:50 +08:00
|
|
|
|
2022-08-01 15:36:12 +08:00
|
|
|
editorBeatmap.SaveState();
|
2021-04-04 19:10:12 +08:00
|
|
|
music.ReloadCurrentTrack();
|
2022-08-01 15:36:12 +08:00
|
|
|
|
2021-04-04 18:50:50 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2023-01-07 08:08:02 +08:00
|
|
|
private void backgroundChanged(ValueChangedEvent<FileInfo?> file)
|
2021-04-04 18:50:50 +08:00
|
|
|
{
|
2023-01-07 23:15:57 +08:00
|
|
|
if (file.NewValue == null || !ChangeBackgroundImage(file.NewValue))
|
2022-06-16 23:48:32 +08:00
|
|
|
backgroundChooser.Current.Value = file.OldValue;
|
2021-04-04 18:50:50 +08:00
|
|
|
}
|
|
|
|
|
2023-01-07 08:08:02 +08:00
|
|
|
private void audioTrackChanged(ValueChangedEvent<FileInfo?> file)
|
2020-10-06 14:17:15 +08:00
|
|
|
{
|
2023-01-07 23:15:57 +08:00
|
|
|
if (file.NewValue == null || !ChangeAudioTrack(file.NewValue))
|
2022-06-16 23:48:32 +08:00
|
|
|
audioTrackChooser.Current.Value = file.OldValue;
|
2020-10-06 14:17:15 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|