From a00da279b7bfd02730ddfb52b347ab93847464b6 Mon Sep 17 00:00:00 2001
From: LukynkaCZE <48604271+LukynkaCZE@users.noreply.github.com>
Date: Tue, 19 Jul 2022 21:38:23 +0200
Subject: [PATCH 1/5] Beatmap Editor Save Toast
---
osu.Game/Localisation/ToastStrings.cs | 11 +++++++++++
osu.Game/Screens/Edit/Editor.cs | 17 ++++++++++++++++-
2 files changed, 27 insertions(+), 1 deletion(-)
diff --git a/osu.Game/Localisation/ToastStrings.cs b/osu.Game/Localisation/ToastStrings.cs
index 52e75425bf..7c5fdb4b22 100644
--- a/osu.Game/Localisation/ToastStrings.cs
+++ b/osu.Game/Localisation/ToastStrings.cs
@@ -34,6 +34,17 @@ namespace osu.Game.Localisation
///
public static LocalisableString RestartTrack => new TranslatableString(getKey(@"restart_track"), @"Restart track");
+ ///
+ /// "Beatmap Editor"
+ /// r
+ public static LocalisableString BeatmapEditor => new TranslatableString(getKey(@"beatmap_editor"), @"Beatmap Editor");
+
+ ///
+ /// "Beatmap Saved"
+ ///
+ public static LocalisableString EditorSaveBeatmap => new TranslatableString(getKey(@"beatmap_editor_save"), @"Beatmap Saved");
+
+
private static string getKey(string key) => $@"{prefix}:{key}";
}
}
diff --git a/osu.Game/Screens/Edit/Editor.cs b/osu.Game/Screens/Edit/Editor.cs
index 48576b81e2..bfc6abfc32 100644
--- a/osu.Game/Screens/Edit/Editor.cs
+++ b/osu.Game/Screens/Edit/Editor.cs
@@ -18,6 +18,7 @@ using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input;
using osu.Framework.Input.Bindings;
using osu.Framework.Input.Events;
+using osu.Framework.Localisation;
using osu.Framework.Logging;
using osu.Framework.Platform;
using osu.Framework.Screens;
@@ -31,10 +32,11 @@ using osu.Game.Database;
using osu.Game.Graphics.Cursor;
using osu.Game.Graphics.UserInterface;
using osu.Game.Input.Bindings;
+using osu.Game.Localisation;
using osu.Game.Online.API;
using osu.Game.Overlays;
using osu.Game.Overlays.Notifications;
-using osu.Game.Resources.Localisation.Web;
+using osu.Game.Overlays.OSD;
using osu.Game.Rulesets;
using osu.Game.Rulesets.Edit;
using osu.Game.Rulesets.Objects;
@@ -50,6 +52,7 @@ using osu.Game.Screens.Play;
using osu.Game.Users;
using osuTK.Graphics;
using osuTK.Input;
+using CommonStrings = osu.Game.Resources.Localisation.Web.CommonStrings;
namespace osu.Game.Screens.Edit
{
@@ -169,6 +172,9 @@ namespace osu.Game.Screens.Edit
[Cached]
private readonly OverlayColourProvider colourProvider = new OverlayColourProvider(OverlayColourScheme.Aquamarine);
+ [Resolved(canBeNull: true)]
+ private OnScreenDisplay onScreenDisplay { get; set; }
+
public Editor(EditorLoader loader = null)
{
this.loader = loader;
@@ -405,6 +411,7 @@ namespace osu.Game.Screens.Edit
// no longer new after first user-triggered save.
isNewBeatmap = false;
updateLastSavedHash();
+ onScreenDisplay?.Display(new BeatmapEditorToast(ToastStrings.EditorSaveBeatmap, editorBeatmap.BeatmapInfo.GetDisplayTitle()));
return true;
}
@@ -934,5 +941,13 @@ namespace osu.Game.Screens.Edit
ControlPointInfo IBeatSyncProvider.ControlPoints => editorBeatmap.ControlPointInfo;
IClock IBeatSyncProvider.Clock => clock;
ChannelAmplitudes? IBeatSyncProvider.Amplitudes => Beatmap.Value.TrackLoaded ? Beatmap.Value.Track.CurrentAmplitudes : null;
+
+
+ private class BeatmapEditorToast : Toast
+ {
+ public BeatmapEditorToast(LocalisableString value, string beatmapDisplayName)
+ : base(ToastStrings.BeatmapEditor, value, beatmapDisplayName) { }
+
+ }
}
}
From 51a0b5afdc4950195363efaa50b9ee1890436623 Mon Sep 17 00:00:00 2001
From: LukynkaCZE <48604271+LukynkaCZE@users.noreply.github.com>
Date: Tue, 19 Jul 2022 22:18:19 +0200
Subject: [PATCH 2/5] Skin Editor
---
osu.Game/Localisation/ToastStrings.cs | 11 +++++++++++
osu.Game/Skinning/Editor/SkinEditor.cs | 16 ++++++++++++++++
2 files changed, 27 insertions(+)
diff --git a/osu.Game/Localisation/ToastStrings.cs b/osu.Game/Localisation/ToastStrings.cs
index 7c5fdb4b22..519c47e7c4 100644
--- a/osu.Game/Localisation/ToastStrings.cs
+++ b/osu.Game/Localisation/ToastStrings.cs
@@ -44,6 +44,17 @@ namespace osu.Game.Localisation
///
public static LocalisableString EditorSaveBeatmap => new TranslatableString(getKey(@"beatmap_editor_save"), @"Beatmap Saved");
+ ///
+ /// "Skin Editor"
+ ///
+ public static LocalisableString SkinEditor => new TranslatableString(getKey(@"skin_editor"), @"Skin Editor");
+
+ ///
+ /// "Skin Saved"
+ ///
+ public static LocalisableString EditorSaveSkin => new TranslatableString(getKey(@"skin_editor_save"), @"Skin Saved");
+
+
private static string getKey(string key) => $@"{prefix}:{key}";
}
diff --git a/osu.Game/Skinning/Editor/SkinEditor.cs b/osu.Game/Skinning/Editor/SkinEditor.cs
index 649b63dda4..02c0350d2c 100644
--- a/osu.Game/Skinning/Editor/SkinEditor.cs
+++ b/osu.Game/Skinning/Editor/SkinEditor.cs
@@ -14,13 +14,16 @@ using osu.Framework.Graphics;
using osu.Framework.Graphics.Containers;
using osu.Framework.Graphics.UserInterface;
using osu.Framework.Input.Events;
+using osu.Framework.Localisation;
using osu.Framework.Testing;
using osu.Game.Database;
using osu.Game.Graphics;
using osu.Game.Graphics.Containers;
using osu.Game.Graphics.Cursor;
using osu.Game.Graphics.UserInterface;
+using osu.Game.Localisation;
using osu.Game.Overlays;
+using osu.Game.Overlays.OSD;
using osu.Game.Screens.Edit.Components;
using osu.Game.Screens.Edit.Components.Menus;
@@ -68,6 +71,9 @@ namespace osu.Game.Skinning.Editor
private EditorSidebar componentsSidebar;
private EditorSidebar settingsSidebar;
+ [Resolved(canBeNull: true)]
+ private OnScreenDisplay onScreenDisplay { get; set; }
+
public SkinEditor()
{
}
@@ -316,6 +322,7 @@ namespace osu.Game.Skinning.Editor
currentSkin.Value.UpdateDrawableTarget(t);
skins.Save(skins.CurrentSkin.Value);
+ onScreenDisplay?.Display(new SkinEditorToast(ToastStrings.EditorSaveSkin, currentSkin.Value.SkinInfo.ToString()));
}
protected override bool OnHover(HoverEvent e) => true;
@@ -395,5 +402,14 @@ namespace osu.Game.Skinning.Editor
game?.UnregisterImportHandler(this);
}
+
+
+ private class SkinEditorToast : Toast
+ {
+ public SkinEditorToast(LocalisableString value, string skinDisplayName)
+ : base(ToastStrings.SkinEditor, value, skinDisplayName) { }
+
+ }
+
}
}
From 5987acfbca821b3e5f71157509382d9bdc0e2a04 Mon Sep 17 00:00:00 2001
From: LukynkaCZE <48604271+LukynkaCZE@users.noreply.github.com>
Date: Tue, 19 Jul 2022 22:59:25 +0200
Subject: [PATCH 3/5] Fixed code formatting
---
osu.Game/Localisation/ToastStrings.cs | 2 --
osu.Game/Screens/Edit/Editor.cs | 2 --
osu.Game/Skinning/Editor/SkinEditor.cs | 3 ---
3 files changed, 7 deletions(-)
diff --git a/osu.Game/Localisation/ToastStrings.cs b/osu.Game/Localisation/ToastStrings.cs
index 519c47e7c4..4169a23798 100644
--- a/osu.Game/Localisation/ToastStrings.cs
+++ b/osu.Game/Localisation/ToastStrings.cs
@@ -54,8 +54,6 @@ namespace osu.Game.Localisation
///
public static LocalisableString EditorSaveSkin => new TranslatableString(getKey(@"skin_editor_save"), @"Skin Saved");
-
-
private static string getKey(string key) => $@"{prefix}:{key}";
}
}
diff --git a/osu.Game/Screens/Edit/Editor.cs b/osu.Game/Screens/Edit/Editor.cs
index bfc6abfc32..bf9785063b 100644
--- a/osu.Game/Screens/Edit/Editor.cs
+++ b/osu.Game/Screens/Edit/Editor.cs
@@ -942,12 +942,10 @@ namespace osu.Game.Screens.Edit
IClock IBeatSyncProvider.Clock => clock;
ChannelAmplitudes? IBeatSyncProvider.Amplitudes => Beatmap.Value.TrackLoaded ? Beatmap.Value.Track.CurrentAmplitudes : null;
-
private class BeatmapEditorToast : Toast
{
public BeatmapEditorToast(LocalisableString value, string beatmapDisplayName)
: base(ToastStrings.BeatmapEditor, value, beatmapDisplayName) { }
-
}
}
}
diff --git a/osu.Game/Skinning/Editor/SkinEditor.cs b/osu.Game/Skinning/Editor/SkinEditor.cs
index 02c0350d2c..326574f2da 100644
--- a/osu.Game/Skinning/Editor/SkinEditor.cs
+++ b/osu.Game/Skinning/Editor/SkinEditor.cs
@@ -403,13 +403,10 @@ namespace osu.Game.Skinning.Editor
game?.UnregisterImportHandler(this);
}
-
private class SkinEditorToast : Toast
{
public SkinEditorToast(LocalisableString value, string skinDisplayName)
: base(ToastStrings.SkinEditor, value, skinDisplayName) { }
-
}
-
}
}
From ed94d7fce84c5cc4eefcabc0585647d270d85129 Mon Sep 17 00:00:00 2001
From: LukynkaCZE <48604271+LukynkaCZE@users.noreply.github.com>
Date: Fri, 22 Jul 2022 02:46:17 +0200
Subject: [PATCH 4/5] Fix requested changes
---
osu.Game/Localisation/ToastStrings.cs | 20 +++++---------------
osu.Game/Screens/Edit/Editor.cs | 4 ++--
osu.Game/Skinning/Editor/SkinEditor.cs | 4 ++--
3 files changed, 9 insertions(+), 19 deletions(-)
diff --git a/osu.Game/Localisation/ToastStrings.cs b/osu.Game/Localisation/ToastStrings.cs
index 4169a23798..9ceee807e6 100644
--- a/osu.Game/Localisation/ToastStrings.cs
+++ b/osu.Game/Localisation/ToastStrings.cs
@@ -35,24 +35,14 @@ namespace osu.Game.Localisation
public static LocalisableString RestartTrack => new TranslatableString(getKey(@"restart_track"), @"Restart track");
///
- /// "Beatmap Editor"
- /// r
- public static LocalisableString BeatmapEditor => new TranslatableString(getKey(@"beatmap_editor"), @"Beatmap Editor");
+ /// "Beatmap saved"
+ ///
+ public static LocalisableString BeatmapSaved => new TranslatableString(getKey(@"beatmap_saved"), @"Beatmap saved");
///
- /// "Beatmap Saved"
+ /// "Skin saved"
///
- public static LocalisableString EditorSaveBeatmap => new TranslatableString(getKey(@"beatmap_editor_save"), @"Beatmap Saved");
-
- ///
- /// "Skin Editor"
- ///
- public static LocalisableString SkinEditor => new TranslatableString(getKey(@"skin_editor"), @"Skin Editor");
-
- ///
- /// "Skin Saved"
- ///
- public static LocalisableString EditorSaveSkin => new TranslatableString(getKey(@"skin_editor_save"), @"Skin Saved");
+ public static LocalisableString SkinSaved => new TranslatableString(getKey(@"skin_saved"), @"Skin saved");
private static string getKey(string key) => $@"{prefix}:{key}";
}
diff --git a/osu.Game/Screens/Edit/Editor.cs b/osu.Game/Screens/Edit/Editor.cs
index bf9785063b..1933076338 100644
--- a/osu.Game/Screens/Edit/Editor.cs
+++ b/osu.Game/Screens/Edit/Editor.cs
@@ -411,7 +411,7 @@ namespace osu.Game.Screens.Edit
// no longer new after first user-triggered save.
isNewBeatmap = false;
updateLastSavedHash();
- onScreenDisplay?.Display(new BeatmapEditorToast(ToastStrings.EditorSaveBeatmap, editorBeatmap.BeatmapInfo.GetDisplayTitle()));
+ onScreenDisplay?.Display(new BeatmapEditorToast(ToastStrings.BeatmapSaved, editorBeatmap.BeatmapInfo.GetDisplayTitle()));
return true;
}
@@ -945,7 +945,7 @@ namespace osu.Game.Screens.Edit
private class BeatmapEditorToast : Toast
{
public BeatmapEditorToast(LocalisableString value, string beatmapDisplayName)
- : base(ToastStrings.BeatmapEditor, value, beatmapDisplayName) { }
+ : base(InputSettingsStrings.EditorSection, value, beatmapDisplayName) { }
}
}
}
diff --git a/osu.Game/Skinning/Editor/SkinEditor.cs b/osu.Game/Skinning/Editor/SkinEditor.cs
index 326574f2da..b02054072b 100644
--- a/osu.Game/Skinning/Editor/SkinEditor.cs
+++ b/osu.Game/Skinning/Editor/SkinEditor.cs
@@ -322,7 +322,7 @@ namespace osu.Game.Skinning.Editor
currentSkin.Value.UpdateDrawableTarget(t);
skins.Save(skins.CurrentSkin.Value);
- onScreenDisplay?.Display(new SkinEditorToast(ToastStrings.EditorSaveSkin, currentSkin.Value.SkinInfo.ToString()));
+ onScreenDisplay?.Display(new SkinEditorToast(ToastStrings.SkinSaved, currentSkin.Value.SkinInfo.ToString()));
}
protected override bool OnHover(HoverEvent e) => true;
@@ -406,7 +406,7 @@ namespace osu.Game.Skinning.Editor
private class SkinEditorToast : Toast
{
public SkinEditorToast(LocalisableString value, string skinDisplayName)
- : base(ToastStrings.SkinEditor, value, skinDisplayName) { }
+ : base(SkinSettingsStrings.SkinLayoutEditor, value, skinDisplayName) { }
}
}
}
From f713253d1b3bf4c959a58cbeebf51edf4742b18e Mon Sep 17 00:00:00 2001
From: Dean Herbert
Date: Fri, 22 Jul 2022 14:00:29 +0900
Subject: [PATCH 5/5] Fix formatting inconsistencies in empty `ctor`s
---
osu.Game/Screens/Edit/Editor.cs | 4 +++-
osu.Game/Skinning/Editor/SkinEditor.cs | 4 +++-
2 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/osu.Game/Screens/Edit/Editor.cs b/osu.Game/Screens/Edit/Editor.cs
index 1933076338..3e3940c5ba 100644
--- a/osu.Game/Screens/Edit/Editor.cs
+++ b/osu.Game/Screens/Edit/Editor.cs
@@ -945,7 +945,9 @@ namespace osu.Game.Screens.Edit
private class BeatmapEditorToast : Toast
{
public BeatmapEditorToast(LocalisableString value, string beatmapDisplayName)
- : base(InputSettingsStrings.EditorSection, value, beatmapDisplayName) { }
+ : base(InputSettingsStrings.EditorSection, value, beatmapDisplayName)
+ {
+ }
}
}
}
diff --git a/osu.Game/Skinning/Editor/SkinEditor.cs b/osu.Game/Skinning/Editor/SkinEditor.cs
index b02054072b..741cad3e57 100644
--- a/osu.Game/Skinning/Editor/SkinEditor.cs
+++ b/osu.Game/Skinning/Editor/SkinEditor.cs
@@ -406,7 +406,9 @@ namespace osu.Game.Skinning.Editor
private class SkinEditorToast : Toast
{
public SkinEditorToast(LocalisableString value, string skinDisplayName)
- : base(SkinSettingsStrings.SkinLayoutEditor, value, skinDisplayName) { }
+ : base(SkinSettingsStrings.SkinLayoutEditor, value, skinDisplayName)
+ {
+ }
}
}
}