mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 06:57:39 +08:00
42 lines
1.3 KiB
C#
42 lines
1.3 KiB
C#
// Copyright (c) 2007-2018 ppy Pty Ltd <contact@ppy.sh>.
|
|
// Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using osu.Game.Database;
|
|
|
|
namespace osu.Game.Configuration
|
|
{
|
|
public class SettingsStore : DatabaseBackedStore
|
|
{
|
|
public event Action SettingChanged;
|
|
|
|
public SettingsStore(DatabaseContextFactory contextFactory)
|
|
: base(contextFactory)
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// Retrieve <see cref="DatabasedSetting"/>s for a specified ruleset/variant content.
|
|
/// </summary>
|
|
/// <param name="rulesetId">The ruleset's internal ID.</param>
|
|
/// <param name="variant">An optional variant.</param>
|
|
/// <returns></returns>
|
|
public List<DatabasedSetting> Query(int? rulesetId = null, int? variant = null) =>
|
|
ContextFactory.Get().DatabasedSetting.Where(b => b.RulesetID == rulesetId && b.Variant == variant).ToList();
|
|
|
|
public void Update(DatabasedSetting setting)
|
|
{
|
|
using (ContextFactory.GetForWrite())
|
|
{
|
|
var newValue = setting.Value;
|
|
Refresh(ref setting);
|
|
setting.Value = newValue;
|
|
}
|
|
|
|
SettingChanged?.Invoke();
|
|
}
|
|
}
|
|
}
|