1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-12 16:58:29 +00:00
CUE.NET/Profiles/CueProfile.cs
2016-02-07 10:06:07 +01:00

83 lines
2.4 KiB
C#

// ReSharper disable MemberCanBePrivate.Global
// ReSharper disable UnusedAutoPropertyAccessor.Global
// ReSharper disable UnusedMember.Global
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Xml.Linq;
using CUE.NET.Brushes;
namespace CUE.NET.Profiles
{
public class CueProfile
{
#region Properties & Fields
private Dictionary<string, CueProfileDevice> _devices;
public string Id { get; }
public string Name { get; }
public IEnumerable<string> Modes
{
get
{
string device = _devices.Keys.FirstOrDefault();
CueProfileDevice cpd;
return (device != null && _devices.TryGetValue(device, out cpd)) ? cpd.Modes : new string[0];
}
}
public ProfileBrush this[string mode]
{
get
{
string device = CueSDK.KeyboardSDK?.KeyboardDeviceInfo?.Model;
CueProfileDevice cpd;
return (device != null && _devices.TryGetValue(device, out cpd)) ? cpd[mode] : null;
}
}
#endregion
#region Constructors
private CueProfile(string id, string name)
{
this.Id = id;
this.Name = name;
}
#endregion
#region Methods
internal static CueProfile Load(string file)
{
// ReSharper disable PossibleNullReferenceException - Just let it fail - no need to check anything here ...
try
{
if (!File.Exists(file)) return null;
XElement profileRoot = XDocument.Load(file).Root;
return new CueProfile(profileRoot.Element("id").Value, profileRoot.Element("name").Value)
{
_devices = profileRoot.Element("devices").Elements("device")
.Select(CueProfileDevice.Load)
.Where(x => x != null)
.ToDictionary(x => x.Name)
};
}
// ReSharper disable once CatchAllClause - I have no idea how the factory pattern should handle such a case - time to read :p
catch
{
return null;
}
// ReSharper restore PossibleNullReferenceException
}
#endregion
}
}