2014-07-02 23:09:52 +00:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using System.Configuration;
|
|
|
|
|
using System.Collections;
|
|
|
|
|
|
|
|
|
|
namespace SCJMapper_V2
|
|
|
|
|
{
|
|
|
|
|
public sealed class AppConfiguration : ConfigurationSection
|
|
|
|
|
{
|
|
|
|
|
// The collection (property bag) that contains the section properties.
|
|
|
|
|
|
|
|
|
|
private static ConfigurationPropertyCollection _Properties;
|
|
|
|
|
|
|
|
|
|
// The jsSenseLimit property.
|
|
|
|
|
private static readonly ConfigurationProperty _jsSenseLimit =
|
2014-09-19 23:07:53 +00:00
|
|
|
|
new ConfigurationProperty( "jsSenseLimit", typeof( int ), ( int )150, ConfigurationPropertyOptions.None );
|
|
|
|
|
|
2014-11-16 23:36:17 +00:00
|
|
|
|
// The gpSenseLimit property.
|
|
|
|
|
private static readonly ConfigurationProperty _gpSenseLimit =
|
|
|
|
|
new ConfigurationProperty( "gpSenseLimit", typeof( int ), ( int )500, ConfigurationPropertyOptions.None );
|
|
|
|
|
|
2015-12-22 00:47:23 +00:00
|
|
|
|
// The msSenseLimit property. (Mouse)
|
|
|
|
|
private static readonly ConfigurationProperty _msSenseLimit =
|
|
|
|
|
new ConfigurationProperty( "msSenseLimit", typeof( int ), ( int )150, ConfigurationPropertyOptions.None );
|
|
|
|
|
|
2014-07-02 23:09:52 +00:00
|
|
|
|
// ctor
|
|
|
|
|
public AppConfiguration( )
|
|
|
|
|
{
|
|
|
|
|
// initialization
|
|
|
|
|
_Properties = new ConfigurationPropertyCollection( );
|
|
|
|
|
_Properties.Add( _jsSenseLimit );
|
2015-01-13 23:04:04 +00:00
|
|
|
|
_Properties.Add( _gpSenseLimit );
|
2015-12-22 00:47:23 +00:00
|
|
|
|
_Properties.Add( _msSenseLimit );
|
2014-07-02 23:09:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
protected override ConfigurationPropertyCollection Properties
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return _Properties;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
[IntegerValidator( MinValue = 1, MaxValue = 1000, ExcludeRange = false )]
|
|
|
|
|
public int jsSenseLimit
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ( int )this["jsSenseLimit"];
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
this["jsSenseLimit"] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-11-16 23:36:17 +00:00
|
|
|
|
[IntegerValidator( MinValue = 1, MaxValue = 32000, ExcludeRange = false )]
|
|
|
|
|
public int gpSenseLimit
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ( int )this["gpSenseLimit"];
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
this["gpSenseLimit"] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-22 00:47:23 +00:00
|
|
|
|
[IntegerValidator( MinValue = 1, MaxValue = 32000, ExcludeRange = false )]
|
|
|
|
|
public int msSenseLimit
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ( int )this["msSenseLimit"];
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
this["msSenseLimit"] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-09-19 23:07:53 +00:00
|
|
|
|
[StringValidator( InvalidCharacters = " ~!@#$%^&*()[]{}/;'\"|\\", MinLength = 10, MaxLength = 500 )]
|
|
|
|
|
public String scActionmaps
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
return ( String )this["scActionmaps"];
|
|
|
|
|
}
|
|
|
|
|
set
|
|
|
|
|
{
|
|
|
|
|
this["scActionmaps"] = value;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-02 23:09:52 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Provide access to configuration props
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class AppConfig
|
|
|
|
|
{
|
|
|
|
|
static private AppConfiguration GetAppSection( )
|
|
|
|
|
{
|
|
|
|
|
try {
|
|
|
|
|
AppConfiguration appConfiguration = ConfigurationManager.GetSection( "AppConfiguration" ) as AppConfiguration;
|
|
|
|
|
if ( appConfiguration == null )
|
|
|
|
|
Console.WriteLine( "Failed to load AppConfiguration Section." );
|
|
|
|
|
else {
|
|
|
|
|
return appConfiguration;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
catch ( ConfigurationErrorsException err ) {
|
|
|
|
|
Console.WriteLine( err.ToString( ) );
|
|
|
|
|
}
|
|
|
|
|
return null;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
2014-11-16 23:36:17 +00:00
|
|
|
|
/// The Joystick axis detection sense limit
|
2014-07-02 23:09:52 +00:00
|
|
|
|
/// </summary>
|
|
|
|
|
static public int jsSenseLimit
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
AppConfiguration s = GetAppSection( );
|
|
|
|
|
if ( s != null ) return s.jsSenseLimit;
|
|
|
|
|
else return 150; // default if things go wrong...
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-09-19 23:07:53 +00:00
|
|
|
|
|
2014-11-16 23:36:17 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The Gamepad axis detection sense limit
|
|
|
|
|
/// </summary>
|
|
|
|
|
static public int gpSenseLimit
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
AppConfiguration s = GetAppSection( );
|
|
|
|
|
if ( s != null ) return s.gpSenseLimit;
|
|
|
|
|
else return 500; // default if things go wrong...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2015-12-22 00:47:23 +00:00
|
|
|
|
/// <summary>
|
|
|
|
|
/// The Mouse axis detection sense limit
|
|
|
|
|
/// </summary>
|
|
|
|
|
static public int msSenseLimit
|
|
|
|
|
{
|
|
|
|
|
get
|
|
|
|
|
{
|
|
|
|
|
AppConfiguration s = GetAppSection( );
|
|
|
|
|
if ( s != null ) return s.msSenseLimit;
|
|
|
|
|
else return 150; // default if things go wrong...
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2014-07-02 23:09:52 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|