first commit
This commit is contained in:
24
Nitrox.Launcher/Models/Converters/PlatformToIconConverter.cs
Normal file
24
Nitrox.Launcher/Models/Converters/PlatformToIconConverter.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Globalization;
|
||||
using Avalonia.Media.Imaging;
|
||||
using Nitrox.Launcher.Models.Utils;
|
||||
using NitroxModel.Discovery.Models;
|
||||
|
||||
namespace Nitrox.Launcher.Models.Converters;
|
||||
|
||||
public class PlatformToIconConverter : Converter<PlatformToIconConverter>
|
||||
{
|
||||
public override object Convert(object value, Type targetType, object parameter, CultureInfo culture)
|
||||
{
|
||||
return AssetHelper.GetAssetFromStream(GetIconPathForPlatform(value as Platform?), static stream => new Bitmap(stream));
|
||||
}
|
||||
|
||||
private static string GetIconPathForPlatform(Platform? platform) => platform switch
|
||||
{
|
||||
Platform.EPIC => "/Assets/Images/store-icons/epic.png",
|
||||
Platform.STEAM => "/Assets/Images/store-icons/steam.png",
|
||||
Platform.MICROSOFT => "/Assets/Images/store-icons/xbox.png",
|
||||
Platform.DISCORD => "/Assets/Images/store-icons/discord.png",
|
||||
_ => "/Assets/Images/store-icons/missing.png",
|
||||
};
|
||||
}
|
Reference in New Issue
Block a user