mirror of
https://github.com/SCToolsfactory/SCJMapper-V2.git
synced 2024-11-04 18:00:26 +00:00
c83731f541
fix issue with options don't reset before Grab add GER quick guide
129 lines
3.5 KiB
C#
129 lines
3.5 KiB
C#
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 =
|
|
new ConfigurationProperty( "jsSenseLimit", typeof( int ), ( int )150, ConfigurationPropertyOptions.None );
|
|
|
|
// The scActionmaps property.
|
|
private static String _defaultActionmaps = "multiplayer,singleplayer,player,flycam,vehicle_driver,spaceship_general,spaceship_view,spaceship_movement,spaceship_targeting,spaceship_turret"
|
|
+ ",spaceship_weapons,spaceship_missiles,spaceship_defensive,spaceship_auto_weapons,spaceship_radar,spaceship_hud,IFCS_controls";
|
|
private static readonly ConfigurationProperty _scActionmaps =
|
|
new ConfigurationProperty( "scActionmaps", typeof( String ), (String)_defaultActionmaps, ConfigurationPropertyOptions.None );
|
|
|
|
// ctor
|
|
public AppConfiguration( )
|
|
{
|
|
// initialization
|
|
_Properties = new ConfigurationPropertyCollection( );
|
|
_Properties.Add( _jsSenseLimit );
|
|
_Properties.Add( _scActionmaps );
|
|
}
|
|
|
|
|
|
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;
|
|
}
|
|
}
|
|
|
|
[StringValidator( InvalidCharacters = " ~!@#$%^&*()[]{}/;'\"|\\", MinLength = 10, MaxLength = 500 )]
|
|
public String scActionmaps
|
|
{
|
|
get
|
|
{
|
|
return ( String )this["scActionmaps"];
|
|
}
|
|
set
|
|
{
|
|
this["scActionmaps"] = value;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/// <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>
|
|
/// The axis detection sense limit
|
|
/// </summary>
|
|
static public int jsSenseLimit
|
|
{
|
|
get
|
|
{
|
|
AppConfiguration s = GetAppSection( );
|
|
if ( s != null ) return s.jsSenseLimit;
|
|
else return 150; // default if things go wrong...
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// The actionmaps supported
|
|
/// </summary>
|
|
static public String scActionmaps
|
|
{
|
|
get
|
|
{
|
|
AppConfiguration s = GetAppSection( );
|
|
if ( s != null ) {
|
|
// get rid of blanks and CR,LFs from the config file
|
|
String t = s.scActionmaps.Replace( " ", "" ).Replace( String.Format( "\n" ), "" ).Replace( String.Format( "\r" ), "" );
|
|
return t;
|
|
}
|
|
else return _defaultActionmaps; // default if things go wrong...
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
}
|