118 lines
3.9 KiB
C#
118 lines
3.9 KiB
C#
#region Copyright & License Information
|
|
/*
|
|
* Copyright (c) The OpenRA Developers and Contributors
|
|
* This file is part of OpenRA, which is free software. It is made
|
|
* available to you under the terms of the GNU General Public License
|
|
* as published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version. For more
|
|
* information, see COPYING.
|
|
*/
|
|
#endregion
|
|
|
|
using System.Collections.Generic;
|
|
using OpenRA.Primitives;
|
|
using OpenRA.Widgets;
|
|
|
|
namespace OpenRA
|
|
{
|
|
public static class TextNotificationsManager
|
|
{
|
|
public const int SystemClientId = -1;
|
|
static readonly string SystemMessageLabel;
|
|
|
|
public static long ChatDisabledUntil { get; internal set; }
|
|
public static readonly Dictionary<int, bool> MutedPlayers = new();
|
|
|
|
static readonly List<TextNotification> NotificationsCache = new();
|
|
public static IReadOnlyList<TextNotification> Notifications => NotificationsCache;
|
|
|
|
static TextNotificationsManager()
|
|
{
|
|
if (!ChromeMetrics.TryGet("SystemMessageLabel", out SystemMessageLabel))
|
|
SystemMessageLabel = "Battlefield Control";
|
|
}
|
|
|
|
public static void AddTransientLine(Player player, string text)
|
|
{
|
|
if (string.IsNullOrEmpty(text))
|
|
return;
|
|
|
|
if (player == null || player == player.World.LocalPlayer)
|
|
AddTextNotification(TextNotificationPool.Transients, SystemClientId, SystemMessageLabel, FluentProvider.GetString(text));
|
|
}
|
|
|
|
public static void AddFeedbackLine(string text, Dictionary<string, object> arguments = null)
|
|
{
|
|
AddTextNotification(TextNotificationPool.Feedback, SystemClientId, SystemMessageLabel, FluentProvider.GetString(text, arguments));
|
|
}
|
|
|
|
public static void AddMissionLine(string prefix, string text, Color? prefixColor = null)
|
|
{
|
|
AddTextNotification(TextNotificationPool.Mission, SystemClientId, prefix, text, prefixColor);
|
|
}
|
|
|
|
public static void AddPlayerJoinedLine(string text, Dictionary<string, object> arguments = null)
|
|
{
|
|
AddTextNotification(TextNotificationPool.Join, SystemClientId, SystemMessageLabel, FluentProvider.GetString(text, arguments));
|
|
}
|
|
|
|
public static void AddPlayerLeftLine(string text, Dictionary<string, object> arguments = null)
|
|
{
|
|
AddTextNotification(TextNotificationPool.Leave, SystemClientId, SystemMessageLabel, FluentProvider.GetString(text, arguments));
|
|
}
|
|
|
|
public static void AddSystemLine(string text, Dictionary<string, object> arguments = null)
|
|
{
|
|
AddSystemLine(SystemMessageLabel, FluentProvider.GetString(text, arguments));
|
|
}
|
|
|
|
public static void AddSystemLine(string prefix, string text)
|
|
{
|
|
AddTextNotification(TextNotificationPool.System, SystemClientId, prefix, text);
|
|
}
|
|
|
|
public static void AddChatLine(int clientId, string prefix, string text, Color? prefixColor = null, Color? textColor = null)
|
|
{
|
|
AddTextNotification(TextNotificationPool.Chat, clientId, prefix, text, prefixColor, textColor);
|
|
}
|
|
|
|
public static void Debug(string format, params object[] args)
|
|
{
|
|
AddSystemLine("Debug", format.FormatCurrent(args));
|
|
}
|
|
|
|
static void AddTextNotification(TextNotificationPool pool, int clientId, string prefix, string text, Color? prefixColor = null, Color? textColor = null)
|
|
{
|
|
if (IsPoolEnabled(pool))
|
|
{
|
|
var textNotification = new TextNotification(pool, clientId, prefix, text, prefixColor, textColor);
|
|
|
|
NotificationsCache.Add(textNotification);
|
|
Ui.Send(textNotification);
|
|
}
|
|
}
|
|
|
|
static bool IsPoolEnabled(TextNotificationPool pool)
|
|
{
|
|
var filters = Game.Settings.Game.TextNotificationPoolFilters;
|
|
|
|
switch (pool)
|
|
{
|
|
case TextNotificationPool.Transients:
|
|
return filters.HasFlag(TextNotificationPoolFilters.Transients);
|
|
case TextNotificationPool.Feedback:
|
|
return filters.HasFlag(TextNotificationPoolFilters.Feedback);
|
|
default:
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public static void Clear()
|
|
{
|
|
ChatDisabledUntil = Game.RunTime;
|
|
NotificationsCache.Clear();
|
|
MutedPlayers.Clear();
|
|
}
|
|
}
|
|
}
|