- API 15
- Migrate config for API 15 - Migrate database for API 15 - Allow usage of new target source - Implement first tell target option
This commit is contained in:
+118
-106
@@ -3,135 +3,147 @@ using ChatTwo.Resources;
|
||||
|
||||
namespace ChatTwo.Util;
|
||||
|
||||
internal static class TabsUtil
|
||||
public static class TabsUtil
|
||||
{
|
||||
internal static Dictionary<ChatType, ChatSource> AllChannels()
|
||||
public static Dictionary<ChatType, (ChatSource, ChatSource)> AllChannels()
|
||||
{
|
||||
var channels = new Dictionary<ChatType, ChatSource>();
|
||||
var channels = new Dictionary<ChatType, (ChatSource, ChatSource)>();
|
||||
foreach (var chatType in Enum.GetValues<ChatType>())
|
||||
channels[chatType] = ChatSourceExt.All;
|
||||
channels[chatType] = (ChatSourceExt.All, ChatSourceExt.All);
|
||||
|
||||
return channels;
|
||||
}
|
||||
|
||||
internal static Tab VanillaGeneral => new()
|
||||
public static Tab VanillaGeneral => new()
|
||||
{
|
||||
Name = Language.Tabs_Presets_General,
|
||||
ChatCodes = new Dictionary<ChatType, ChatSource>
|
||||
SelectedChannels = new Dictionary<ChatType, (ChatSource, ChatSource)>
|
||||
{
|
||||
// Special
|
||||
[ChatType.Debug] = ChatSourceExt.All,
|
||||
[ChatType.Urgent] = ChatSourceExt.All,
|
||||
[ChatType.Notice] = ChatSourceExt.All,
|
||||
[ChatType.Debug] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Urgent] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Notice] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
// Chat
|
||||
[ChatType.Say] = ChatSourceExt.All,
|
||||
[ChatType.Yell] = ChatSourceExt.All,
|
||||
[ChatType.Shout] = ChatSourceExt.All,
|
||||
[ChatType.TellIncoming] = ChatSourceExt.All,
|
||||
[ChatType.TellOutgoing] = ChatSourceExt.All,
|
||||
[ChatType.Party] = ChatSourceExt.All,
|
||||
[ChatType.CrossParty] = ChatSourceExt.All,
|
||||
[ChatType.Alliance] = ChatSourceExt.All,
|
||||
[ChatType.FreeCompany] = ChatSourceExt.All,
|
||||
[ChatType.PvpTeam] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell1] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell2] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell3] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell4] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell5] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell6] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell7] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell8] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell1] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell2] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell3] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell4] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell5] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell6] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell7] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell8] = ChatSourceExt.All,
|
||||
[ChatType.NoviceNetwork] = ChatSourceExt.All,
|
||||
[ChatType.StandardEmote] = ChatSourceExt.All,
|
||||
[ChatType.CustomEmote] = ChatSourceExt.All,
|
||||
[ChatType.Say] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Yell] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Shout] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.TellIncoming] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.TellOutgoing] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Party] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossParty] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Alliance] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.FreeCompany] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.PvpTeam] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell1] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell2] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell3] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell4] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell5] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell6] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell7] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell8] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell1] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell2] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell3] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell4] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell5] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell6] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell7] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell8] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.NoviceNetwork] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.StandardEmote] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CustomEmote] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
// Announcements
|
||||
[ChatType.System] = ChatSourceExt.All,
|
||||
[ChatType.GatheringSystem] = ChatSourceExt.All,
|
||||
[ChatType.Error] = ChatSourceExt.All,
|
||||
[ChatType.Echo] = ChatSourceExt.All,
|
||||
[ChatType.NoviceNetworkSystem] = ChatSourceExt.All,
|
||||
[ChatType.FreeCompanyAnnouncement] = ChatSourceExt.All,
|
||||
[ChatType.PvpTeamAnnouncement] = ChatSourceExt.All,
|
||||
[ChatType.FreeCompanyLoginLogout] = ChatSourceExt.All,
|
||||
[ChatType.PvpTeamLoginLogout] = ChatSourceExt.All,
|
||||
[ChatType.RetainerSale] = ChatSourceExt.All,
|
||||
[ChatType.NpcAnnouncement] = ChatSourceExt.All,
|
||||
[ChatType.LootNotice] = ChatSourceExt.All,
|
||||
[ChatType.Progress] = ChatSourceExt.All,
|
||||
[ChatType.LootRoll] = ChatSourceExt.All,
|
||||
[ChatType.Crafting] = ChatSourceExt.All,
|
||||
[ChatType.Gathering] = ChatSource.Self,
|
||||
[ChatType.PeriodicRecruitmentNotification] = ChatSourceExt.All,
|
||||
[ChatType.Sign] = ChatSourceExt.All,
|
||||
[ChatType.RandomNumber] = ChatSourceExt.All,
|
||||
[ChatType.Orchestrion] = ChatSourceExt.All,
|
||||
[ChatType.MessageBook] = ChatSourceExt.All,
|
||||
[ChatType.Alarm] = ChatSourceExt.All,
|
||||
[ChatType.GlamourNotifications] = ChatSourceExt.All,
|
||||
[ChatType.System] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.GatheringSystem] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Error] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Echo] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.NoviceNetworkSystem] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.FreeCompanyAnnouncement] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.PvpTeamAnnouncement] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.FreeCompanyLoginLogout] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.PvpTeamLoginLogout] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.RetainerSale] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.NpcAnnouncement] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.LootNotice] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Progress] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.LootRoll] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Crafting] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Gathering] = (ChatSource.LocalPlayer, ChatSource.LocalPlayer),
|
||||
[ChatType.PeriodicRecruitmentNotification] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Sign] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.RandomNumber] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Orchestrion] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.MessageBook] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Alarm] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.GlamourNotifications] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
}
|
||||
};
|
||||
|
||||
internal static Tab VanillaEvent => new()
|
||||
public static Tab VanillaEvent => new()
|
||||
{
|
||||
Name = Language.Tabs_Presets_Event,
|
||||
ChatCodes = new Dictionary<ChatType, ChatSource> { [ChatType.NpcDialogue] = ChatSourceExt.All, },
|
||||
SelectedChannels = new Dictionary<ChatType, (ChatSource, ChatSource)> { [ChatType.NpcDialogue] = (ChatSourceExt.All, ChatSourceExt.All), },
|
||||
};
|
||||
|
||||
internal static Dictionary<ChatType, ChatSource> MostlyPlayer => new()
|
||||
public static Tab VanillaTellExclusive => new()
|
||||
{
|
||||
Name = Language.Tabs_Presets_Tell,
|
||||
SelectedChannels = new Dictionary<ChatType, (ChatSource, ChatSource)>
|
||||
{
|
||||
[ChatType.TellIncoming] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.TellOutgoing] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
},
|
||||
Channel = InputChannel.Tell,
|
||||
AllSenderMessages = true,
|
||||
};
|
||||
|
||||
public static Dictionary<ChatType, (ChatSource, ChatSource)> MostlyPlayer => new()
|
||||
{
|
||||
// Special
|
||||
[ChatType.Debug] = ChatSourceExt.All,
|
||||
[ChatType.Urgent] = ChatSourceExt.All,
|
||||
[ChatType.Notice] = ChatSourceExt.All,
|
||||
[ChatType.Debug] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Urgent] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Notice] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
// Chat
|
||||
[ChatType.Say] = ChatSourceExt.All,
|
||||
[ChatType.Yell] = ChatSourceExt.All,
|
||||
[ChatType.Shout] = ChatSourceExt.All,
|
||||
[ChatType.TellIncoming] = ChatSourceExt.All,
|
||||
[ChatType.TellOutgoing] = ChatSourceExt.All,
|
||||
[ChatType.Party] = ChatSourceExt.All,
|
||||
[ChatType.CrossParty] = ChatSourceExt.All,
|
||||
[ChatType.Alliance] = ChatSourceExt.All,
|
||||
[ChatType.FreeCompany] = ChatSourceExt.All,
|
||||
[ChatType.PvpTeam] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell1] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell2] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell3] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell4] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell5] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell6] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell7] = ChatSourceExt.All,
|
||||
[ChatType.CrossLinkshell8] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell1] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell2] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell3] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell4] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell5] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell6] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell7] = ChatSourceExt.All,
|
||||
[ChatType.Linkshell8] = ChatSourceExt.All,
|
||||
[ChatType.NoviceNetwork] = ChatSourceExt.All,
|
||||
[ChatType.StandardEmote] = ChatSourceExt.All,
|
||||
[ChatType.CustomEmote] = ChatSourceExt.All,
|
||||
[ChatType.Say] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Yell] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Shout] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.TellIncoming] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.TellOutgoing] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Party] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossParty] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Alliance] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.FreeCompany] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.PvpTeam] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell1] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell2] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell3] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell4] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell5] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell6] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell7] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CrossLinkshell8] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell1] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell2] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell3] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell4] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell5] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell6] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell7] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Linkshell8] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.NoviceNetwork] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.StandardEmote] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.CustomEmote] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
// Announcements
|
||||
[ChatType.System] = ChatSourceExt.All,
|
||||
[ChatType.Error] = ChatSourceExt.All,
|
||||
[ChatType.Echo] = ChatSourceExt.All,
|
||||
[ChatType.NoviceNetworkSystem] = ChatSourceExt.All,
|
||||
[ChatType.FreeCompanyAnnouncement] = ChatSourceExt.All,
|
||||
[ChatType.PvpTeamAnnouncement] = ChatSourceExt.All,
|
||||
[ChatType.FreeCompanyLoginLogout] = ChatSourceExt.All,
|
||||
[ChatType.PvpTeamLoginLogout] = ChatSourceExt.All,
|
||||
[ChatType.RandomNumber] = ChatSourceExt.All,
|
||||
[ChatType.MessageBook] = ChatSourceExt.All,
|
||||
[ChatType.System] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Error] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.Echo] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.NoviceNetworkSystem] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.FreeCompanyAnnouncement] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.PvpTeamAnnouncement] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.FreeCompanyLoginLogout] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.PvpTeamLoginLogout] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.RandomNumber] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
[ChatType.MessageBook] = (ChatSourceExt.All, ChatSourceExt.All),
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user