c# - Send keyboard & mouse events to server application -
i have 2 application. 1 written in c# , runs on laptop (the client), , other written in c++ (it's unreal engine 4 application) , runs on amazon web services instance (the server).
i have written both applications , have full control of them.
i'd direct user input on client device application running on server (ue4 application). record user input events on client, serialize them json, transmit on network, deserialize , map ever function want within ue4 application, cumbersome , in no way ideal, since ue4 has built-in input event listeners...
essentially, want control ue4 application (running on server) if running locally (on laptop, client).
does here know how can direct keyboard & mouse events client server application?
i solved writing application runs on client , listens key down
event. key down
event sent on network via udp application runs on server (as ue4 application). used method described here pass incoming message target application in case, ue4.
Comments
Post a Comment