diff --git a/src/NTwain/CapabilitiesExt.cs b/src/NTwain/CapabilitiesExt.cs new file mode 100644 index 0000000..c6c6aa7 --- /dev/null +++ b/src/NTwain/CapabilitiesExt.cs @@ -0,0 +1,137 @@ +using NTwain.Data; +using System; +using System.Collections.Generic; + +namespace NTwain +{ + public class CapabilitiesExt : Capabilities + { + private IDataSource _source; + public CapabilitiesExt(IDataSource dataSource) : base(dataSource) { _source = dataSource; } + + private List _custom; + + public List CustomCapabilities + { + get + { + return _custom ?? LoadCustomCapabilities(); + } + } + + private List LoadCustomCapabilities() + { + List custom = new List(); + foreach (CapabilityId capId in CapSupportedCaps.GetValues()) + { + var capName = capId.ToString(); + var wrapper = GetType().GetProperty(capName); + + // not defined in Capabilites + if (wrapper == null) + { + custom.Add(capId); + } + } + return custom; + } + + + private Func boolFunc = value => new TWOneValue + { + Item = (uint)value, + ItemType = ItemType.Bool + }; + + private Func intFunc = value => new TWOneValue + { + Item = (uint)value, + ItemType = ItemType.UInt16 + }; + + private Func byteFunc = value => new TWOneValue + { + Item = value, + ItemType = ItemType.UInt8 + }; + + private Func uintFunc = value => new TWOneValue + { + Item = value, + ItemType = ItemType.UInt32 + }; + + + public object GetCap (CapabilityId Capability) + { + QuerySupports? s = QuerySupport(Capability); + bool readOnly = true; + byte b = 0; + if (s != null) + { + b = (byte)s; + if ((b & (1 << 2)) != 0) + { + readOnly = false; + } + } + + if (typeof(TValue) == typeof(string)) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToString, readOnly); + } + else if (typeof(TValue) == typeof(int)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, intFunc); + } + else if (typeof(TValue) == typeof(byte)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, byteFunc); + } + else if (typeof(TValue) == typeof(uint)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, uintFunc); + } + else if (typeof(TValue) == typeof(TWFrame)) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToFrame, readOnly); + } + else if (typeof(TValue) == typeof(BoolType)) + { + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, true); + } + + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToEnum, boolFunc); + } + else if (typeof(TValue) == typeof(TWFix32)) + { + + if (readOnly) + { + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToFix32, true); + } + return new CapWrapper(_source, Capability, ValueExtensions.ConvertToFix32, value => value.ToOneValue()); + + + } + else + { + throw new Exception($"Unknown defintion for type of {typeof(TValue)} in GetCap"); + } + } + } +} diff --git a/src/NTwain/DataSource.cs b/src/NTwain/DataSource.cs index d9aff4a..59351e7 100644 --- a/src/NTwain/DataSource.cs +++ b/src/NTwain/DataSource.cs @@ -255,7 +255,7 @@ namespace NTwain // } //} - private Capabilities _caps; + private CapabilitiesExt _caps; /// /// Gets the capabilities for this data source. @@ -265,7 +265,7 @@ namespace NTwain /// public ICapabilities Capabilities { - get { return _caps ?? (_caps = new Capabilities(this)); } + get { return _caps ?? (_caps = new CapabilitiesExt(this)); } }