├── .gitignore ├── BuildInstaller.bat ├── CHANGELOG.md ├── Docs ├── AnimationPatternMode.md ├── Images │ ├── VAMLaunchServerGUI.PNG │ ├── addplugin.PNG │ ├── advanced.PNG │ ├── connect.PNG │ ├── cover.PNG │ ├── devices.PNG │ ├── emptyatom.PNG │ ├── installer.PNG │ ├── launchposition.PNG │ ├── launchserver.PNG │ ├── loadplugin.PNG │ ├── options.PNG │ ├── osc_midpoints.PNG │ ├── osc_mode.gif │ ├── pattern_mode.gif │ ├── pattern_range.png │ ├── pause.PNG │ ├── pluginadded.PNG │ ├── simulator.PNG │ ├── zone.PNG │ ├── zone_line.PNG │ ├── zone_mode.gif │ ├── zone_target.PNG │ ├── zone_target_set.PNG │ └── zonesize.PNG ├── InfluenceZoneMode.md └── OscilateMode.md ├── LICENSE ├── LaunchServerLib ├── LaunchServerLib.csproj ├── Properties │ └── AssemblyInfo.cs ├── VAMLaunchNetwork.cs └── VAMLaunchServer.cs ├── README.md ├── VAMLaunch.sln ├── VAMLaunch ├── ADD_ME.cslist ├── Properties │ └── AssemblyInfo.cs ├── VAMLaunch.csproj └── src │ ├── LaunchUtils.cs │ ├── MotionSources │ ├── IMotionSource.cs │ ├── OscillateSource.cs │ ├── PatternSource.cs │ └── ZoneSource.cs │ ├── VAMLaunch.cs │ └── VAMLaunchNetwork.cs ├── VaMLaunchGUI ├── AboutControl.xaml ├── AboutControl.xaml.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── IntifaceControl.xaml ├── IntifaceControl.xaml.cs ├── LogControl.xaml ├── LogControl.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── VAMLaunchProperties.Designer.cs ├── VAMLaunchProperties.settings ├── VaMLaunchGUI.csproj └── packages.config └── vamlaunch-installer.iss /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/.gitignore -------------------------------------------------------------------------------- /BuildInstaller.bat: -------------------------------------------------------------------------------- 1 | ISCC vamlaunch-installer.iss 2 | pause -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Docs/AnimationPatternMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/AnimationPatternMode.md -------------------------------------------------------------------------------- /Docs/Images/VAMLaunchServerGUI.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/VAMLaunchServerGUI.PNG -------------------------------------------------------------------------------- /Docs/Images/addplugin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/addplugin.PNG -------------------------------------------------------------------------------- /Docs/Images/advanced.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/advanced.PNG -------------------------------------------------------------------------------- /Docs/Images/connect.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/connect.PNG -------------------------------------------------------------------------------- /Docs/Images/cover.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/cover.PNG -------------------------------------------------------------------------------- /Docs/Images/devices.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/devices.PNG -------------------------------------------------------------------------------- /Docs/Images/emptyatom.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/emptyatom.PNG -------------------------------------------------------------------------------- /Docs/Images/installer.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/installer.PNG -------------------------------------------------------------------------------- /Docs/Images/launchposition.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/launchposition.PNG -------------------------------------------------------------------------------- /Docs/Images/launchserver.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/launchserver.PNG -------------------------------------------------------------------------------- /Docs/Images/loadplugin.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/loadplugin.PNG -------------------------------------------------------------------------------- /Docs/Images/options.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/options.PNG -------------------------------------------------------------------------------- /Docs/Images/osc_midpoints.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/osc_midpoints.PNG -------------------------------------------------------------------------------- /Docs/Images/osc_mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/osc_mode.gif -------------------------------------------------------------------------------- /Docs/Images/pattern_mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/pattern_mode.gif -------------------------------------------------------------------------------- /Docs/Images/pattern_range.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/pattern_range.png -------------------------------------------------------------------------------- /Docs/Images/pause.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/pause.PNG -------------------------------------------------------------------------------- /Docs/Images/pluginadded.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/pluginadded.PNG -------------------------------------------------------------------------------- /Docs/Images/simulator.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/simulator.PNG -------------------------------------------------------------------------------- /Docs/Images/zone.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/zone.PNG -------------------------------------------------------------------------------- /Docs/Images/zone_line.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/zone_line.PNG -------------------------------------------------------------------------------- /Docs/Images/zone_mode.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/zone_mode.gif -------------------------------------------------------------------------------- /Docs/Images/zone_target.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/zone_target.PNG -------------------------------------------------------------------------------- /Docs/Images/zone_target_set.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/zone_target_set.PNG -------------------------------------------------------------------------------- /Docs/Images/zonesize.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/Images/zonesize.PNG -------------------------------------------------------------------------------- /Docs/InfluenceZoneMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/InfluenceZoneMode.md -------------------------------------------------------------------------------- /Docs/OscilateMode.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/Docs/OscilateMode.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/LICENSE -------------------------------------------------------------------------------- /LaunchServerLib/LaunchServerLib.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/LaunchServerLib/LaunchServerLib.csproj -------------------------------------------------------------------------------- /LaunchServerLib/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/LaunchServerLib/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LaunchServerLib/VAMLaunchNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/LaunchServerLib/VAMLaunchNetwork.cs -------------------------------------------------------------------------------- /LaunchServerLib/VAMLaunchServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/LaunchServerLib/VAMLaunchServer.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/README.md -------------------------------------------------------------------------------- /VAMLaunch.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch.sln -------------------------------------------------------------------------------- /VAMLaunch/ADD_ME.cslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/ADD_ME.cslist -------------------------------------------------------------------------------- /VAMLaunch/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VAMLaunch/VAMLaunch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/VAMLaunch.csproj -------------------------------------------------------------------------------- /VAMLaunch/src/LaunchUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/src/LaunchUtils.cs -------------------------------------------------------------------------------- /VAMLaunch/src/MotionSources/IMotionSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/src/MotionSources/IMotionSource.cs -------------------------------------------------------------------------------- /VAMLaunch/src/MotionSources/OscillateSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/src/MotionSources/OscillateSource.cs -------------------------------------------------------------------------------- /VAMLaunch/src/MotionSources/PatternSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/src/MotionSources/PatternSource.cs -------------------------------------------------------------------------------- /VAMLaunch/src/MotionSources/ZoneSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/src/MotionSources/ZoneSource.cs -------------------------------------------------------------------------------- /VAMLaunch/src/VAMLaunch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/src/VAMLaunch.cs -------------------------------------------------------------------------------- /VAMLaunch/src/VAMLaunchNetwork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VAMLaunch/src/VAMLaunchNetwork.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/AboutControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/AboutControl.xaml -------------------------------------------------------------------------------- /VaMLaunchGUI/AboutControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/AboutControl.xaml.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/App.config -------------------------------------------------------------------------------- /VaMLaunchGUI/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/App.xaml -------------------------------------------------------------------------------- /VaMLaunchGUI/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/App.xaml.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/IntifaceControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/IntifaceControl.xaml -------------------------------------------------------------------------------- /VaMLaunchGUI/IntifaceControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/IntifaceControl.xaml.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/LogControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/LogControl.xaml -------------------------------------------------------------------------------- /VaMLaunchGUI/LogControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/LogControl.xaml.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/MainWindow.xaml -------------------------------------------------------------------------------- /VaMLaunchGUI/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/MainWindow.xaml.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/Properties/Resources.resx -------------------------------------------------------------------------------- /VaMLaunchGUI/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/Properties/Settings.settings -------------------------------------------------------------------------------- /VaMLaunchGUI/VAMLaunchProperties.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/VAMLaunchProperties.Designer.cs -------------------------------------------------------------------------------- /VaMLaunchGUI/VAMLaunchProperties.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/VAMLaunchProperties.settings -------------------------------------------------------------------------------- /VaMLaunchGUI/VaMLaunchGUI.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/VaMLaunchGUI.csproj -------------------------------------------------------------------------------- /VaMLaunchGUI/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/VaMLaunchGUI/packages.config -------------------------------------------------------------------------------- /vamlaunch-installer.iss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qdot/VaMSync/HEAD/vamlaunch-installer.iss --------------------------------------------------------------------------------