├── .gitignore ├── Falcon BMS Alternative Launcher Setup └── Falcon BMS Alternative Launcher Setup.vdproj ├── Falcon BMS Alternative Launcher.sln ├── Falcon BMS Alternative Launcher.sln.DotSettings ├── Falcon BMS Alternative Launcher ├── App.config ├── App.xaml ├── App.xaml.cs ├── AppProperties.cs ├── AppRegInfo.cs ├── AutoUpdate.xml ├── CustomAction.cs ├── Diagnostics.cs ├── Falcon BMS Alternative Launcher.csproj ├── Falcon BMS Alternative Launcher.csproj.DotSettings.user ├── Input │ ├── AxAssgn.cs │ ├── AxisName.cs │ ├── CommonConstants.cs │ ├── DetentPosition.cs │ ├── DeviceControl.cs │ ├── DxAssgn.cs │ ├── InGameAxAssgn.cs │ ├── JoyAssgn.cs │ ├── KeyAssgn.cs │ ├── KeyFile.cs │ └── PovAssgn.cs ├── KeytoScancode.cs ├── MAINICON.ico ├── Override │ ├── OverrideSetting.cs │ ├── OverrideSettingFor432.cs │ ├── OverrideSettingFor433.cs │ ├── OverrideSettingFor434.cs │ ├── OverrideSettingFor434U1.cs │ ├── OverrideSettingFor435.cs │ ├── OverrideSettingFor436.cs │ ├── OverrideSettingFor437.cs │ └── OverrideSettingFor438.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── AVC.png │ ├── BMS.png │ ├── BackGround.jpg │ ├── BackGroundAxis.jpg │ ├── BackGround_Header.jpg │ ├── BackGround_Header_Installer.jpg │ ├── CFG.png │ ├── DISX.png │ ├── EDIT.png │ ├── F4RADAR.png │ ├── F4WX.png │ ├── IVCC.png │ ├── IVCS.png │ ├── MAINICON.ico │ ├── MC.png │ ├── NewPilot.jpg │ ├── RTTClient64.png │ ├── RTTServer64.png │ ├── UPD.png │ ├── WC.png │ ├── WDP.png │ └── web_banner.png ├── Starter │ ├── AbstractStarter.cs │ ├── Starter432.cs │ ├── Starter433.cs │ ├── Starter434.cs │ ├── Starter435.cs │ ├── Starter436.cs │ ├── Starter436I.cs │ ├── Starter437.cs │ ├── Starter437I.cs │ └── Starter438I.cs ├── SteamVR.cs ├── Stock │ ├── Setup.v100. VKB-Sim Gladiator NXT R {Stock}.xml │ ├── Setup.v100.CH Fighterstick USB {Stock}.xml │ ├── Setup.v100.CH Pro Throttle USB {Stock}.xml │ ├── Setup.v100.FSSB R3 Warthog {Stock}.xml │ ├── Setup.v100.Flight Control Rudder {Stock}.xml │ ├── Setup.v100.Joystick - HOTAS Warthog {Stock}.xml │ ├── Setup.v100.MFG Crosswind V2 {Stock}.xml │ ├── Setup.v100.Saitek Pro Flight Combat Rudder Pedals {Stock}.xml │ ├── Setup.v100.Saitek Pro Flight Rudder Pedals {Stock}.xml │ ├── Setup.v100.Saitek Pro Flight X-56 Rhino Stick {Stock}.xml │ ├── Setup.v100.Saitek Pro Flight X-56 Rhino Throttle {Stock}.xml │ ├── Setup.v100.Saitek X52 H.O.T.A.S. {Stock}.xml │ ├── Setup.v100.Saitek X52 Pro Flight Controller {Stock}.xml │ ├── Setup.v100.Saitek X65F Flight Controller {Stock}.xml │ ├── Setup.v100.T-Rudder {Stock}.xml │ ├── Setup.v100.T.16000M {Stock}.xml │ ├── Setup.v100.TPR T.Pendular Rudder {Stock}.xml │ ├── Setup.v100.TWCS Throttle {Stock}.xml │ ├── Setup.v100.Throttle - HOTAS Warthog {Stock}.xml │ └── Setup.v100.WINWING Orion Throttle Base II TGRIP-F16 {Stock}.xml ├── TheaterList.cs ├── Viper.pop ├── Windows │ ├── AxisAssignWindow.xaml │ ├── AxisAssignWindow.xaml.cs │ ├── CallsignWindow.xaml │ ├── CallsignWindow.xaml.cs │ ├── KeyMappingWindow.xaml │ ├── KeyMappingWindow.xaml.cs │ ├── MainWindow.xaml │ ├── MainWindow.xaml.cs │ ├── MainWindowAxisAssign.cs │ ├── MainWindowKeyMapping.cs │ └── RSSReader.cs ├── app.manifest └── packages.config ├── LICENSE ├── README.md └── bin ├── Debug └── bms-logcat.exe └── Release ├── UpdateBMS.xml ├── bitswarm.exe └── bms-logcat.exe /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/.gitignore -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher Setup/Falcon BMS Alternative Launcher Setup.vdproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher Setup/Falcon BMS Alternative Launcher Setup.vdproj -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher.sln -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher.sln.DotSettings -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/App.config -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/App.xaml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/App.xaml.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/AppProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/AppProperties.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/AppRegInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/AppRegInfo.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/AutoUpdate.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/AutoUpdate.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/CustomAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/CustomAction.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Diagnostics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Diagnostics.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Falcon BMS Alternative Launcher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Falcon BMS Alternative Launcher.csproj -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Falcon BMS Alternative Launcher.csproj.DotSettings.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Falcon BMS Alternative Launcher.csproj.DotSettings.user -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/AxAssgn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/AxAssgn.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/AxisName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/AxisName.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/CommonConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/CommonConstants.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/DetentPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/DetentPosition.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/DeviceControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/DeviceControl.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/DxAssgn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/DxAssgn.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/InGameAxAssgn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/InGameAxAssgn.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/JoyAssgn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/JoyAssgn.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/KeyAssgn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/KeyAssgn.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/KeyFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/KeyFile.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Input/PovAssgn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Input/PovAssgn.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/KeytoScancode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/KeytoScancode.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/MAINICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/MAINICON.ico -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSetting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSetting.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor432.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor432.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor433.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor433.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor434.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor434.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor434U1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor434U1.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor435.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor435.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor436.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor436.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor437.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor437.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Override/OverrideSettingFor438.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Override/OverrideSettingFor438.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Program.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Properties/Resources.resx -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Properties/Settings.settings -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/AVC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/AVC.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/BMS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/BMS.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/BackGround.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/BackGround.jpg -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/BackGroundAxis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/BackGroundAxis.jpg -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/BackGround_Header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/BackGround_Header.jpg -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/BackGround_Header_Installer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/BackGround_Header_Installer.jpg -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/CFG.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/CFG.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/DISX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/DISX.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/EDIT.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/EDIT.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/F4RADAR.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/F4RADAR.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/F4WX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/F4WX.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/IVCC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/IVCC.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/IVCS.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/IVCS.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/MAINICON.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/MAINICON.ico -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/MC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/MC.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/NewPilot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/NewPilot.jpg -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/RTTClient64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/RTTClient64.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/RTTServer64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/RTTServer64.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/UPD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/UPD.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/WC.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/WC.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/WDP.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/WDP.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Resources/web_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Resources/web_banner.png -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/AbstractStarter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/AbstractStarter.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter432.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter432.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter433.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter433.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter434.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter434.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter435.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter435.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter436.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter436.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter436I.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter436I.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter437.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter437.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter437I.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter437I.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Starter/Starter438I.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Starter/Starter438I.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/SteamVR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/SteamVR.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100. VKB-Sim Gladiator NXT R {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100. VKB-Sim Gladiator NXT R {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.CH Fighterstick USB {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.CH Fighterstick USB {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.CH Pro Throttle USB {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.CH Pro Throttle USB {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.FSSB R3 Warthog {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.FSSB R3 Warthog {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Flight Control Rudder {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Flight Control Rudder {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Joystick - HOTAS Warthog {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Joystick - HOTAS Warthog {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.MFG Crosswind V2 {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.MFG Crosswind V2 {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight Combat Rudder Pedals {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight Combat Rudder Pedals {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight Rudder Pedals {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight Rudder Pedals {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight X-56 Rhino Stick {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight X-56 Rhino Stick {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight X-56 Rhino Throttle {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek Pro Flight X-56 Rhino Throttle {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek X52 H.O.T.A.S. {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek X52 H.O.T.A.S. {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek X52 Pro Flight Controller {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek X52 Pro Flight Controller {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek X65F Flight Controller {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Saitek X65F Flight Controller {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.T-Rudder {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.T-Rudder {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.T.16000M {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.T.16000M {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.TPR T.Pendular Rudder {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.TPR T.Pendular Rudder {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.TWCS Throttle {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.TWCS Throttle {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.Throttle - HOTAS Warthog {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.Throttle - HOTAS Warthog {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Stock/Setup.v100.WINWING Orion Throttle Base II TGRIP-F16 {Stock}.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Stock/Setup.v100.WINWING Orion Throttle Base II TGRIP-F16 {Stock}.xml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/TheaterList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/TheaterList.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Viper.pop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Viper.pop -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/AxisAssignWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/AxisAssignWindow.xaml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/AxisAssignWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/AxisAssignWindow.xaml.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/CallsignWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/CallsignWindow.xaml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/CallsignWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/CallsignWindow.xaml.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/KeyMappingWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/KeyMappingWindow.xaml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/KeyMappingWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/KeyMappingWindow.xaml.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/MainWindow.xaml -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/MainWindowAxisAssign.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/MainWindowAxisAssign.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/MainWindowKeyMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/MainWindowKeyMapping.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/Windows/RSSReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/Windows/RSSReader.cs -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/app.manifest -------------------------------------------------------------------------------- /Falcon BMS Alternative Launcher/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/Falcon BMS Alternative Launcher/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/README.md -------------------------------------------------------------------------------- /bin/Debug/bms-logcat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/bin/Debug/bms-logcat.exe -------------------------------------------------------------------------------- /bin/Release/UpdateBMS.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/bin/Release/UpdateBMS.xml -------------------------------------------------------------------------------- /bin/Release/bitswarm.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/bin/Release/bitswarm.exe -------------------------------------------------------------------------------- /bin/Release/bms-logcat.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/chihirobelmo/FalconBMS-Alternative-Launcher/HEAD/bin/Release/bms-logcat.exe --------------------------------------------------------------------------------