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