├── .gitignore ├── README.md ├── bin └── copy_ami.py ├── vnc-gtav ├── GTAVController │ ├── .gitignore │ ├── README.md │ ├── VisualStudio │ │ ├── .nuget │ │ │ ├── NuGet.Config │ │ │ ├── NuGet.exe │ │ │ └── NuGet.targets │ │ ├── GTAVController.sln │ │ ├── GTAVController.vcxproj │ │ ├── GTAVController.vcxproj.filters │ │ ├── KeyboardControl.h │ │ └── packages.config │ ├── include │ │ ├── GTAVController.h │ │ ├── GTAVControllerSharedMemory.h │ │ ├── GTAVEnv.h │ │ ├── GTAVKeyboardController.h │ │ ├── GTAVRewardCalculator.h │ │ ├── SharedAgentMemory.h │ │ ├── stdafx.h │ │ └── targetver.h │ ├── inject │ │ ├── injectory.x86.exe │ │ └── wmode.dll │ └── src │ │ ├── GTAVController.cpp │ │ ├── GTAVControllerSharedMemory.cpp │ │ ├── GTAVEnv.cpp │ │ ├── GTAVKeyboardController.cpp │ │ ├── GTAVRewardCalculator.cpp │ │ └── stdafx.cpp ├── GTAVScriptHookProxy │ ├── .gitignore │ ├── VisualStudio │ │ ├── GTAVScriptHookProxy.vcxproj │ │ ├── GTAVScriptHookProxy.vcxproj.filters │ │ └── packages.config │ ├── bin │ │ ├── GTAVScriptHookProxy.asi │ │ ├── ScriptHookV.dev │ │ ├── ScriptHookV.dll │ │ ├── dinput8.dll │ │ ├── universe_log_0.log │ │ └── x360ce_x64.exe │ ├── include │ │ ├── AbstractActor.h │ │ ├── AbstractVehicleActor.h │ │ ├── BringVehicleToHalt.h │ │ ├── DriveToCoordinate.h │ │ ├── IActor.h │ │ ├── ITask.h │ │ ├── Keyboard.h │ │ ├── LightActor.h │ │ ├── PedList.h │ │ ├── PedestrianActor.h │ │ ├── PlayerActor.h │ │ ├── Scenario.h │ │ ├── ScenarioFactory.h │ │ ├── ScenarioManager.h │ │ ├── ScriptHookSharedMemory.h │ │ ├── TaskFactory.h │ │ ├── VehicleActor.h │ │ ├── VehicleList.h │ │ ├── WalkToCoordinate.h │ │ ├── nodes.h │ │ ├── rewards.h │ │ ├── script.h │ │ └── tinyxml2.h │ ├── src │ │ ├── AbstractActor.cpp │ │ ├── AbstractVehicleActor.cpp │ │ ├── Keyboard.cpp │ │ ├── PedestrianActor.cpp │ │ ├── PlayerActor.cpp │ │ ├── Scenario.cpp │ │ ├── ScenarioFactory.cpp │ │ ├── ScenarioManager.cpp │ │ ├── ScriptHookSharedMemory.cpp │ │ ├── TaskFactory.cpp │ │ ├── VehicleActor.cpp │ │ ├── main.cpp │ │ ├── nodes.cpp │ │ ├── rewards.cpp │ │ ├── script.cpp │ │ └── tinyxml2.cpp │ └── vendor │ │ └── ScriptHookV │ │ └── include │ │ ├── enums.h │ │ ├── main.h │ │ ├── nativeCaller.h │ │ ├── natives.h │ │ └── types.h ├── README.md ├── TODO.md ├── bin │ ├── install.bat │ ├── run-skip-reload-pause-for-attach.bat │ ├── run-skip-reload.bat │ ├── run.bat │ └── update.bat ├── enforce_version.py ├── install.py ├── run_vnc_env.py └── update.py ├── vnc-windows ├── CommonController │ ├── .gitignore │ ├── VisualStudio │ │ ├── .nuget │ │ │ ├── NuGet.Config │ │ │ ├── NuGet.exe │ │ │ └── NuGet.targets │ │ ├── CommonController.vcxproj │ │ ├── CommonController.vcxproj.filters │ │ ├── GymWindowsControllers.sln │ │ ├── common.props │ │ └── packages.config │ ├── include │ │ ├── AgentConn.h │ │ ├── Common.h │ │ ├── Env.h │ │ ├── JoystickController.h │ │ ├── Rewarder.h │ │ ├── Utils.h │ │ ├── stdafx.h │ │ └── targetver.h │ ├── src │ │ ├── AgentConn.cpp │ │ ├── JoystickController.cpp │ │ ├── Rewarder.cpp │ │ └── stdafx.cpp │ └── vendor │ │ ├── jsoncpp-0.10.5 │ │ └── dist │ │ │ ├── json │ │ │ ├── json-forwards.h │ │ │ └── json.h │ │ │ └── jsoncpp.cpp │ │ ├── vjoy-2.1.5 │ │ ├── PPJIoctl.h │ │ ├── ReadMe.odt │ │ ├── public.h │ │ ├── vJoyInterface.lib │ │ ├── vjoyinterface.h │ │ └── wrapper.h │ │ └── websocketpp-0.6.0 │ │ └── websocketpp │ │ ├── CMakeLists.txt │ │ ├── base64 │ │ └── base64.hpp │ │ ├── client.hpp │ │ ├── close.hpp │ │ ├── common │ │ ├── asio.hpp │ │ ├── asio_ssl.hpp │ │ ├── chrono.hpp │ │ ├── connection_hdl.hpp │ │ ├── cpp11.hpp │ │ ├── functional.hpp │ │ ├── md5.hpp │ │ ├── memory.hpp │ │ ├── network.hpp │ │ ├── platforms.hpp │ │ ├── random.hpp │ │ ├── regex.hpp │ │ ├── stdint.hpp │ │ ├── system_error.hpp │ │ ├── thread.hpp │ │ ├── time.hpp │ │ └── type_traits.hpp │ │ ├── concurrency │ │ ├── basic.hpp │ │ └── none.hpp │ │ ├── config │ │ ├── asio.hpp │ │ ├── asio_client.hpp │ │ ├── asio_no_tls.hpp │ │ ├── asio_no_tls_client.hpp │ │ ├── boost_config.hpp │ │ ├── core.hpp │ │ ├── core_client.hpp │ │ ├── debug.hpp │ │ ├── debug_asio.hpp │ │ ├── debug_asio_no_tls.hpp │ │ ├── minimal_client.hpp │ │ └── minimal_server.hpp │ │ ├── connection.hpp │ │ ├── connection_base.hpp │ │ ├── endpoint.hpp │ │ ├── endpoint_base.hpp │ │ ├── error.hpp │ │ ├── extensions │ │ ├── extension.hpp │ │ └── permessage_deflate │ │ │ ├── disabled.hpp │ │ │ └── enabled.hpp │ │ ├── frame.hpp │ │ ├── http │ │ ├── constants.hpp │ │ ├── impl │ │ │ ├── parser.hpp │ │ │ ├── request.hpp │ │ │ └── response.hpp │ │ ├── parser.hpp │ │ ├── request.hpp │ │ └── response.hpp │ │ ├── impl │ │ ├── connection_impl.hpp │ │ ├── endpoint_impl.hpp │ │ └── utilities_impl.hpp │ │ ├── logger │ │ ├── basic.hpp │ │ ├── levels.hpp │ │ ├── stub.hpp │ │ └── syslog.hpp │ │ ├── message_buffer │ │ ├── alloc.hpp │ │ ├── message.hpp │ │ └── pool.hpp │ │ ├── processors │ │ ├── base.hpp │ │ ├── hybi00.hpp │ │ ├── hybi07.hpp │ │ ├── hybi08.hpp │ │ ├── hybi13.hpp │ │ └── processor.hpp │ │ ├── random │ │ ├── none.hpp │ │ └── random_device.hpp │ │ ├── roles │ │ ├── client_endpoint.hpp │ │ └── server_endpoint.hpp │ │ ├── server.hpp │ │ ├── sha1 │ │ └── sha1.hpp │ │ ├── transport │ │ ├── asio │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ ├── endpoint.hpp │ │ │ └── security │ │ │ │ ├── base.hpp │ │ │ │ ├── none.hpp │ │ │ │ └── tls.hpp │ │ ├── base │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── iostream │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ └── stub │ │ │ ├── base.hpp │ │ │ ├── connection.hpp │ │ │ └── endpoint.hpp │ │ ├── uri.hpp │ │ ├── utf8_validator.hpp │ │ ├── utilities.hpp │ │ └── version.hpp ├── INSTALL.md ├── README.md ├── gym_windows │ ├── __init__.py │ ├── constants.py │ ├── utils.py │ └── vnc.py └── requirements.txt └── windows-boilerplate ├── new-windows-controller.py └── vnc-windows-template ├── README.md ├── WindowsTemplateController ├── .gitignore ├── README.md ├── VisualStudio │ ├── WindowsTemplateController.vcxproj │ └── WindowsTemplateController.vcxproj.filters ├── include │ ├── WindowsTemplateController.h │ ├── stdafx.h │ └── targetver.h ├── inject │ ├── injectory.x86.exe │ └── wmode.dll └── src │ ├── WindowsTemplateController.cpp │ └── stdafx.cpp ├── run_vnc_env.bat └── run_vnc_env.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/README.md -------------------------------------------------------------------------------- /bin/copy_ami.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/bin/copy_ami.py -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/.gitignore -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/README.md -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/.nuget/NuGet.Config -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/.nuget/NuGet.exe -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/.nuget/NuGet.targets -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/GTAVController.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/GTAVController.sln -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/GTAVController.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/GTAVController.vcxproj -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/GTAVController.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/GTAVController.vcxproj.filters -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/KeyboardControl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/KeyboardControl.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/VisualStudio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/VisualStudio/packages.config -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/GTAVController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/GTAVController.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/GTAVControllerSharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/GTAVControllerSharedMemory.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/GTAVEnv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/GTAVEnv.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/GTAVKeyboardController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/GTAVKeyboardController.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/GTAVRewardCalculator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/GTAVRewardCalculator.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/SharedAgentMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/SharedAgentMemory.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/stdafx.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/include/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/include/targetver.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/inject/injectory.x86.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/inject/wmode.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/src/GTAVController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/src/GTAVController.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/src/GTAVControllerSharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/src/GTAVControllerSharedMemory.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/src/GTAVEnv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/src/GTAVEnv.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/src/GTAVKeyboardController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/src/GTAVKeyboardController.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/src/GTAVRewardCalculator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/src/GTAVRewardCalculator.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVController/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVController/src/stdafx.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/.gitignore -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/VisualStudio/GTAVScriptHookProxy.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/VisualStudio/GTAVScriptHookProxy.vcxproj -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/VisualStudio/GTAVScriptHookProxy.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/VisualStudio/GTAVScriptHookProxy.vcxproj.filters -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/VisualStudio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/VisualStudio/packages.config -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/bin/GTAVScriptHookProxy.asi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/bin/GTAVScriptHookProxy.asi -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/bin/ScriptHookV.dev: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/bin/ScriptHookV.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/bin/ScriptHookV.dll -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/bin/dinput8.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/bin/dinput8.dll -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/bin/universe_log_0.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/bin/universe_log_0.log -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/bin/x360ce_x64.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/bin/x360ce_x64.exe -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/AbstractActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/AbstractActor.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/AbstractVehicleActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/AbstractVehicleActor.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/BringVehicleToHalt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/BringVehicleToHalt.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/DriveToCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/DriveToCoordinate.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/IActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/IActor.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/ITask.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/ITask.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/Keyboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/Keyboard.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/LightActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/LightActor.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/PedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/PedList.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/PedestrianActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/PedestrianActor.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/PlayerActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/PlayerActor.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/Scenario.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/Scenario.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/ScenarioFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/ScenarioFactory.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/ScenarioManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/ScenarioManager.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/ScriptHookSharedMemory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/ScriptHookSharedMemory.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/TaskFactory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/TaskFactory.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/VehicleActor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/VehicleActor.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/VehicleList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/VehicleList.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/WalkToCoordinate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/WalkToCoordinate.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/nodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/nodes.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/rewards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/rewards.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/script.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/script.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/include/tinyxml2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/include/tinyxml2.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/AbstractActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/AbstractActor.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/AbstractVehicleActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/AbstractVehicleActor.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/Keyboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/Keyboard.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/PedestrianActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/PedestrianActor.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/PlayerActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/PlayerActor.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/Scenario.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/Scenario.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/ScenarioFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/ScenarioFactory.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/ScenarioManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/ScenarioManager.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/ScriptHookSharedMemory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/ScriptHookSharedMemory.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/TaskFactory.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/TaskFactory.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/VehicleActor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/VehicleActor.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/main.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/nodes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/nodes.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/rewards.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/rewards.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/script.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/script.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/src/tinyxml2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/src/tinyxml2.cpp -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/enums.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/main.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/nativeCaller.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/nativeCaller.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/natives.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/natives.h -------------------------------------------------------------------------------- /vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/GTAVScriptHookProxy/vendor/ScriptHookV/include/types.h -------------------------------------------------------------------------------- /vnc-gtav/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/README.md -------------------------------------------------------------------------------- /vnc-gtav/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/TODO.md -------------------------------------------------------------------------------- /vnc-gtav/bin/install.bat: -------------------------------------------------------------------------------- 1 | python %UNIVERSE_WINDOWS_ENVS_DIR%\vnc-gtav\install.py 2 | pause -------------------------------------------------------------------------------- /vnc-gtav/bin/run-skip-reload-pause-for-attach.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/bin/run-skip-reload-pause-for-attach.bat -------------------------------------------------------------------------------- /vnc-gtav/bin/run-skip-reload.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/bin/run-skip-reload.bat -------------------------------------------------------------------------------- /vnc-gtav/bin/run.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/bin/run.bat -------------------------------------------------------------------------------- /vnc-gtav/bin/update.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/bin/update.bat -------------------------------------------------------------------------------- /vnc-gtav/enforce_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/enforce_version.py -------------------------------------------------------------------------------- /vnc-gtav/install.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/install.py -------------------------------------------------------------------------------- /vnc-gtav/run_vnc_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/run_vnc_env.py -------------------------------------------------------------------------------- /vnc-gtav/update.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-gtav/update.py -------------------------------------------------------------------------------- /vnc-windows/CommonController/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/.gitignore -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/.nuget/NuGet.Config -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/.nuget/NuGet.exe -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/.nuget/NuGet.targets -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/CommonController.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/CommonController.vcxproj -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/CommonController.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/CommonController.vcxproj.filters -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/GymWindowsControllers.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/GymWindowsControllers.sln -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/common.props -------------------------------------------------------------------------------- /vnc-windows/CommonController/VisualStudio/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/VisualStudio/packages.config -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/AgentConn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/AgentConn.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/Common.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/Env.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/Env.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/JoystickController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/JoystickController.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/Rewarder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/Rewarder.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/Utils.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/stdafx.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/include/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/include/targetver.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/src/AgentConn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/src/AgentConn.cpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/src/JoystickController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/src/JoystickController.cpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/src/Rewarder.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/src/Rewarder.cpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/src/stdafx.cpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/jsoncpp-0.10.5/dist/json/json-forwards.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/jsoncpp-0.10.5/dist/json/json-forwards.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/jsoncpp-0.10.5/dist/json/json.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/jsoncpp-0.10.5/dist/json/json.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/jsoncpp-0.10.5/dist/jsoncpp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/jsoncpp-0.10.5/dist/jsoncpp.cpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/vjoy-2.1.5/PPJIoctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/vjoy-2.1.5/PPJIoctl.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/vjoy-2.1.5/ReadMe.odt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/vjoy-2.1.5/ReadMe.odt -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/vjoy-2.1.5/public.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/vjoy-2.1.5/public.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/vjoy-2.1.5/vJoyInterface.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/vjoy-2.1.5/vJoyInterface.lib -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/vjoy-2.1.5/vjoyinterface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/vjoy-2.1.5/vjoyinterface.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/vjoy-2.1.5/wrapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/vjoy-2.1.5/wrapper.h -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/CMakeLists.txt -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/base64/base64.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/base64/base64.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/client.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/close.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/close.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/asio.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/asio_ssl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/asio_ssl.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/chrono.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/chrono.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/connection_hdl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/connection_hdl.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/cpp11.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/cpp11.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/functional.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/functional.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/md5.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/md5.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/memory.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/memory.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/network.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/network.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/platforms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/platforms.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/random.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/random.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/regex.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/regex.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/stdint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/stdint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/system_error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/system_error.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/thread.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/thread.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/time.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/time.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/type_traits.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/common/type_traits.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/concurrency/basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/concurrency/basic.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/concurrency/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/concurrency/none.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio_client.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio_no_tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio_no_tls.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio_no_tls_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/asio_no_tls_client.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/boost_config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/boost_config.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/core.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/core.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/core_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/core_client.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/debug.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/debug.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/debug_asio.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/debug_asio.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/debug_asio_no_tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/debug_asio_no_tls.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/minimal_client.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/minimal_client.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/minimal_server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/config/minimal_server.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/connection.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/connection_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/connection_base.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/endpoint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/endpoint_base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/endpoint_base.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/error.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/error.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/extensions/extension.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/extensions/extension.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/extensions/permessage_deflate/disabled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/extensions/permessage_deflate/disabled.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/extensions/permessage_deflate/enabled.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/extensions/permessage_deflate/enabled.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/frame.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/frame.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/constants.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/constants.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/impl/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/impl/parser.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/impl/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/impl/request.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/impl/response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/impl/response.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/parser.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/parser.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/request.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/request.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/response.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/http/response.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/impl/connection_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/impl/connection_impl.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/impl/endpoint_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/impl/endpoint_impl.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/impl/utilities_impl.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/impl/utilities_impl.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/basic.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/basic.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/levels.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/levels.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/stub.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/stub.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/syslog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/logger/syslog.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/message_buffer/alloc.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/message_buffer/alloc.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/message_buffer/message.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/message_buffer/message.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/message_buffer/pool.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/message_buffer/pool.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/base.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi00.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi00.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi07.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi07.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi08.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi08.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi13.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/hybi13.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/processor.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/processors/processor.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/random/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/random/none.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/random/random_device.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/random/random_device.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/roles/client_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/roles/client_endpoint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/roles/server_endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/roles/server_endpoint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/server.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/server.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/sha1/sha1.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/sha1/sha1.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/base.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/connection.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/endpoint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/security/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/security/base.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/security/none.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/security/none.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/security/tls.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/asio/security/tls.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/base/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/base/connection.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/base/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/base/endpoint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/iostream/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/iostream/base.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/iostream/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/iostream/connection.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/iostream/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/iostream/endpoint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/stub/base.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/stub/base.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/stub/connection.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/stub/connection.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/stub/endpoint.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/transport/stub/endpoint.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/uri.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/uri.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/utf8_validator.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/utf8_validator.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/utilities.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/utilities.hpp -------------------------------------------------------------------------------- /vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/version.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/CommonController/vendor/websocketpp-0.6.0/websocketpp/version.hpp -------------------------------------------------------------------------------- /vnc-windows/INSTALL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/INSTALL.md -------------------------------------------------------------------------------- /vnc-windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/README.md -------------------------------------------------------------------------------- /vnc-windows/gym_windows/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/gym_windows/__init__.py -------------------------------------------------------------------------------- /vnc-windows/gym_windows/constants.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vnc-windows/gym_windows/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/gym_windows/utils.py -------------------------------------------------------------------------------- /vnc-windows/gym_windows/vnc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/vnc-windows/gym_windows/vnc.py -------------------------------------------------------------------------------- /vnc-windows/requirements.txt: -------------------------------------------------------------------------------- 1 | pypiwin32 2 | requests 3 | six -------------------------------------------------------------------------------- /windows-boilerplate/new-windows-controller.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/new-windows-controller.py -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/README.md: -------------------------------------------------------------------------------- 1 | # Usage 2 | 3 | TODO -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/.gitignore -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/README.md -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/VisualStudio/WindowsTemplateController.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/VisualStudio/WindowsTemplateController.vcxproj -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/VisualStudio/WindowsTemplateController.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/VisualStudio/WindowsTemplateController.vcxproj.filters -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/include/WindowsTemplateController.h: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/include/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/include/stdafx.h -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/include/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/include/targetver.h -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/inject/injectory.x86.exe: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/inject/wmode.dll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/src/WindowsTemplateController.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/src/WindowsTemplateController.cpp -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/WindowsTemplateController/src/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/WindowsTemplateController/src/stdafx.cpp -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/run_vnc_env.bat: -------------------------------------------------------------------------------- 1 | cd %UNIVERSE_WINDOWS_ENVS_DIR% 2 | python .\vnc-{{ proj_lower_case }}\run_vnc_env.py 3 | -------------------------------------------------------------------------------- /windows-boilerplate/vnc-windows-template/run_vnc_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Alpha-Drive/universe-windows-envs/HEAD/windows-boilerplate/vnc-windows-template/run_vnc_env.py --------------------------------------------------------------------------------