├── .gitignore ├── Devices ├── HidApiDevice.cs ├── InstrumentMapperDevice.cs └── XInputDevice.cs ├── EpicLauncherDetection.cs ├── FestivalInstrumentMapper.csproj ├── FestivalInstrumentMapper.sln ├── HeroicLauncherDetection.cs ├── HidHideConfigWindow.Designer.cs ├── HidHideConfigWindow.cs ├── HidHideConfigWindow.resx ├── LICENSE.txt ├── MainWindow ├── MainWindow.Designer.cs ├── MainWindow.cs ├── MainWindow.resx └── MapperThread.cs ├── Native ├── GipSyntheticEx.cs ├── HidDeviceStream.cs ├── PDPJaguarValues.cs ├── SyntheticController.cs ├── ToGip.cs └── XInput.cs ├── NativeMethods.txt ├── Program.cs ├── README.md ├── app.manifest └── festivalinstrumentmapper.ico /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/.gitignore -------------------------------------------------------------------------------- /Devices/HidApiDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Devices/HidApiDevice.cs -------------------------------------------------------------------------------- /Devices/InstrumentMapperDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Devices/InstrumentMapperDevice.cs -------------------------------------------------------------------------------- /Devices/XInputDevice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Devices/XInputDevice.cs -------------------------------------------------------------------------------- /EpicLauncherDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/EpicLauncherDetection.cs -------------------------------------------------------------------------------- /FestivalInstrumentMapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/FestivalInstrumentMapper.csproj -------------------------------------------------------------------------------- /FestivalInstrumentMapper.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/FestivalInstrumentMapper.sln -------------------------------------------------------------------------------- /HeroicLauncherDetection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/HeroicLauncherDetection.cs -------------------------------------------------------------------------------- /HidHideConfigWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/HidHideConfigWindow.Designer.cs -------------------------------------------------------------------------------- /HidHideConfigWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/HidHideConfigWindow.cs -------------------------------------------------------------------------------- /HidHideConfigWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/HidHideConfigWindow.resx -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MainWindow/MainWindow.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/MainWindow/MainWindow.Designer.cs -------------------------------------------------------------------------------- /MainWindow/MainWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/MainWindow/MainWindow.cs -------------------------------------------------------------------------------- /MainWindow/MainWindow.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/MainWindow/MainWindow.resx -------------------------------------------------------------------------------- /MainWindow/MapperThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/MainWindow/MapperThread.cs -------------------------------------------------------------------------------- /Native/GipSyntheticEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Native/GipSyntheticEx.cs -------------------------------------------------------------------------------- /Native/HidDeviceStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Native/HidDeviceStream.cs -------------------------------------------------------------------------------- /Native/PDPJaguarValues.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Native/PDPJaguarValues.cs -------------------------------------------------------------------------------- /Native/SyntheticController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Native/SyntheticController.cs -------------------------------------------------------------------------------- /Native/ToGip.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Native/ToGip.cs -------------------------------------------------------------------------------- /Native/XInput.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Native/XInput.cs -------------------------------------------------------------------------------- /NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/NativeMethods.txt -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/Program.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/README.md -------------------------------------------------------------------------------- /app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/app.manifest -------------------------------------------------------------------------------- /festivalinstrumentmapper.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/InvoxiPlayGames/FestivalInstrumentMapper/HEAD/festivalinstrumentmapper.ico --------------------------------------------------------------------------------