2019-01-24 08:43:03 +00: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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
2021-07-15 03:50:34 +00:00
|
|
|
|
using osu.Framework.Localisation;
|
2019-07-30 14:31:21 +00:00
|
|
|
|
using osu.Framework.Platform;
|
2022-01-12 06:20:48 +00:00
|
|
|
|
using osu.Game.Database;
|
2021-08-12 04:26:42 +00:00
|
|
|
|
using osu.Game.Localisation;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
2021-11-23 04:09:41 +00:00
|
|
|
|
namespace osu.Game.Overlays.Settings.Sections.DebugSettings
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2019-07-30 14:31:21 +00:00
|
|
|
|
public class MemorySettings : SettingsSubsection
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
2021-08-12 04:26:42 +00:00
|
|
|
|
protected override LocalisableString Header => DebugSettingsStrings.MemoryHeader;
|
2018-04-13 09:19:50 +00:00
|
|
|
|
|
|
|
|
|
[BackgroundDependencyLoader]
|
2022-01-15 00:06:39 +00:00
|
|
|
|
private void load(GameHost host, RealmContextFactory realmFactory)
|
2018-04-13 09:19:50 +00:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
|
|
|
|
new SettingsButton
|
|
|
|
|
{
|
2021-08-12 04:26:42 +00:00
|
|
|
|
Text = DebugSettingsStrings.ClearAllCaches,
|
2019-07-30 14:31:21 +00:00
|
|
|
|
Action = host.Collect
|
2018-04-13 09:19:50 +00:00
|
|
|
|
},
|
2022-01-12 06:20:48 +00:00
|
|
|
|
new SettingsButton
|
|
|
|
|
{
|
|
|
|
|
Text = DebugSettingsStrings.CompactRealm,
|
|
|
|
|
Action = () =>
|
|
|
|
|
{
|
|
|
|
|
// Blocking operations implicitly causes a Compact().
|
|
|
|
|
using (realmFactory.BlockAllOperations())
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
2018-04-13 09:19:50 +00:00
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|