Improve Messaging.

This commit is contained in:
Ottermandias 2023-10-05 16:00:53 +02:00
parent 5ad1be30a7
commit 520fc58e95
20 changed files with 100 additions and 67 deletions

View file

@ -2,6 +2,7 @@
using System.Collections.Generic;
using System.IO;
using Dalamud.Interface.Internal.Notifications;
using OtterGui.Classes;
namespace Glamourer.Unlocks;
@ -47,8 +48,7 @@ public static class UnlockDictionaryHelpers
revertEndian = true;
break;
default:
Glamourer.Chat.NotificationMessage($"Loading unlocked {type}s failed: Invalid magic number.", "Warning",
NotificationType.Warning);
Glamourer.Messager.NotificationMessage($"Loading unlocked {type}s failed: Invalid magic number.", NotificationType.Warning);
return -1;
}
@ -80,12 +80,12 @@ public static class UnlockDictionaryHelpers
}
if (skips > 0)
Glamourer.Chat.NotificationMessage($"Skipped {skips} unlocked {type}s while loading unlocked {type}s.", "Warning",
Glamourer.Messager.NotificationMessage($"Skipped {skips} unlocked {type}s while loading unlocked {type}s.",
NotificationType.Warning);
break;
default:
Glamourer.Chat.NotificationMessage($"Loading unlocked {type}s failed: Version {version} is unknown.", "Warning",
Glamourer.Messager.NotificationMessage($"Loading unlocked {type}s failed: Version {version} is unknown.",
NotificationType.Warning);
return version;
}
@ -95,8 +95,8 @@ public static class UnlockDictionaryHelpers
}
catch (Exception ex)
{
Glamourer.Chat.NotificationMessage(ex, $"Loading unlocked {type}s failed: Unknown Error.", $"Loading unlocked {type}s failed:\n",
"Error", NotificationType.Error);
Glamourer.Messager.NotificationMessage(ex, $"Loading unlocked {type}s failed: Unknown Error.",
$"Loading unlocked {type}s failed:\n", NotificationType.Error);
return -1;
}