2016-12-06 17:56:20 +08:00
|
|
|
|
//Copyright (c) 2007-2016 ppy Pty Ltd <contact@ppy.sh>.
|
|
|
|
|
//Licensed under the MIT Licence - https://raw.githubusercontent.com/ppy/osu/master/LICENCE
|
|
|
|
|
|
|
|
|
|
using osu.Framework;
|
2016-11-11 06:40:42 +08:00
|
|
|
|
using osu.Framework.Allocation;
|
|
|
|
|
using osu.Framework.Graphics;
|
|
|
|
|
using osu.Framework.Graphics.Sprites;
|
|
|
|
|
using osu.Framework.Graphics.UserInterface;
|
|
|
|
|
using osu.Game.Configuration;
|
|
|
|
|
|
2016-11-08 10:24:41 +08:00
|
|
|
|
namespace osu.Game.Overlays.Options.Online
|
2016-11-03 12:43:05 +08:00
|
|
|
|
{
|
|
|
|
|
public class InGameChatOptions : OptionsSubsection
|
|
|
|
|
{
|
2016-11-12 18:44:16 +08:00
|
|
|
|
private TextBoxOption chatIgnoreList;
|
|
|
|
|
private TextBoxOption chatHighlightWords;
|
2016-11-11 06:40:42 +08:00
|
|
|
|
protected override string Header => "In-game Chat";
|
2016-11-09 11:38:40 +08:00
|
|
|
|
|
2016-11-12 18:44:16 +08:00
|
|
|
|
[BackgroundDependencyLoader]
|
|
|
|
|
private void load(OsuConfigManager config)
|
2016-11-03 12:43:05 +08:00
|
|
|
|
{
|
|
|
|
|
Children = new Drawable[]
|
|
|
|
|
{
|
2016-11-11 06:40:42 +08:00
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Filter offensive words",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.ChatFilter)
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Filter foreign characters",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.ChatRemoveForeign)
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Log private messages",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.LogPrivateMessages)
|
|
|
|
|
},
|
|
|
|
|
new CheckBoxOption
|
|
|
|
|
{
|
|
|
|
|
LabelText = "Block private messages from non-friends",
|
|
|
|
|
Bindable = config.GetBindable<bool>(OsuConfig.BlockNonFriendPM)
|
|
|
|
|
},
|
2016-11-03 12:43:05 +08:00
|
|
|
|
new SpriteText { Text = "Chat ignore list (space-seperated list)" },
|
2016-11-12 18:44:16 +08:00
|
|
|
|
chatIgnoreList = new TextBoxOption {
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Bindable = config.GetBindable<string>(OsuConfig.IgnoreList)
|
|
|
|
|
},
|
2016-11-03 12:43:05 +08:00
|
|
|
|
new SpriteText { Text = "Chat highlight words (space-seperated list)" },
|
2016-11-12 18:44:16 +08:00
|
|
|
|
chatHighlightWords = new TextBoxOption {
|
|
|
|
|
RelativeSizeAxes = Axes.X,
|
|
|
|
|
Bindable = config.GetBindable<string>(OsuConfig.HighlightWords)
|
|
|
|
|
},
|
2016-11-03 12:43:05 +08:00
|
|
|
|
};
|
2016-11-09 11:38:40 +08:00
|
|
|
|
}
|
2016-11-03 12:43:05 +08:00
|
|
|
|
}
|
|
|
|
|
}
|