2014-11-16 23:36:17 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
|
|
namespace SCJMapper_V2
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Basic device as DXInput device
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract class DeviceCls
|
|
|
|
|
{
|
2017-01-11 23:13:48 +00:00
|
|
|
|
public const string DeviceClass ="UNDEF";
|
|
|
|
|
public const string DeviceID = "NA0_";
|
|
|
|
|
static public bool IsUndefined( string deviceClass )
|
2015-12-22 00:47:23 +00:00
|
|
|
|
{
|
|
|
|
|
return ( deviceClass == DeviceClass );
|
|
|
|
|
}
|
|
|
|
|
|
2017-01-11 23:13:48 +00:00
|
|
|
|
public const string BlendedInput = "~"; // internal used only
|
|
|
|
|
static public bool IsBlendedInput( string input ) { return ( input == BlendedInput ); }
|
2015-12-22 00:47:23 +00:00
|
|
|
|
|
2015-12-22 21:30:57 +00:00
|
|
|
|
|
2017-01-11 23:13:48 +00:00
|
|
|
|
static public bool IsDeviceClass( string deviceClass ) { return false; }
|
|
|
|
|
static public string DeviceClassFromInput( string input ) { return DeviceClass; }
|
|
|
|
|
static public string DevInput( string input ) { return input; }
|
|
|
|
|
static public bool DevMatch( string devInput ) { return false; }
|
2014-11-16 23:36:17 +00:00
|
|
|
|
|
2017-04-14 22:33:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// Return the CIG instance number (which is the jsN number) - 1 based
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract int XmlInstance { get; } // holds the CIG instance to be used throughout
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The DeviceClass of this instance
|
|
|
|
|
/// </summary>
|
2017-01-11 23:13:48 +00:00
|
|
|
|
public abstract string DevClass { get; }
|
2017-04-14 22:33:21 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The DX ProductName property
|
|
|
|
|
/// </summary>
|
2017-01-11 23:13:48 +00:00
|
|
|
|
public abstract string DevName { get; }
|
2017-04-14 22:33:21 +00:00
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The DX instance number of the object (from enum) - 0 based
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract int DevInstance { get; }
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// The DX GUID of the device
|
|
|
|
|
/// </summary>
|
|
|
|
|
public abstract string DevInstanceGUID { get; }
|
|
|
|
|
|
2014-11-16 23:36:17 +00:00
|
|
|
|
public abstract System.Drawing.Color MapColor { get; }
|
2017-01-11 23:13:48 +00:00
|
|
|
|
public virtual List<string> AnalogCommands { get { return new List<string>( ); } } // just return an empty one if not implemented
|
2014-11-16 23:36:17 +00:00
|
|
|
|
|
2017-01-11 23:13:48 +00:00
|
|
|
|
public abstract bool Activated { get; set; }
|
2014-12-22 00:34:09 +00:00
|
|
|
|
public virtual void FinishDX( ) { }
|
|
|
|
|
public virtual void ApplySettings( ) { }
|
2014-11-16 23:36:17 +00:00
|
|
|
|
|
2017-01-11 23:13:48 +00:00
|
|
|
|
public abstract string GetLastChange( );
|
|
|
|
|
public abstract void GetCmdData( string cmd, out int data );
|
2014-11-16 23:36:17 +00:00
|
|
|
|
public abstract void GetData( );
|
2015-12-22 21:30:57 +00:00
|
|
|
|
|
2017-01-11 23:13:48 +00:00
|
|
|
|
static public string toXML( string blendedInput )
|
2015-12-22 21:30:57 +00:00
|
|
|
|
{
|
|
|
|
|
return blendedInput.Replace( BlendedInput, " " ); // must make spaces (tilde is for internal processing only)
|
|
|
|
|
}
|
2017-01-11 23:13:48 +00:00
|
|
|
|
static public string toXMLBlendExtension( string blendedInput )
|
2016-01-02 00:15:58 +00:00
|
|
|
|
{
|
|
|
|
|
return (IsBlendedInput(blendedInput) ? string.Format( "multiTap=\"1\"") : "" ); // blending needs to overwrite potential multitaps (2+)
|
|
|
|
|
}
|
2017-01-11 23:13:48 +00:00
|
|
|
|
static public string fromXML( string blendedInput )
|
2015-12-22 21:30:57 +00:00
|
|
|
|
{
|
|
|
|
|
return blendedInput.Replace( " ", BlendedInput ); // must make tilde (spaces is for external processing only)
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-16 23:36:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|