I’m building a mobile game. I want to use the Online Subsystem. I am building a test system while I develop. I cannot find API reference how to implement the subsystem protocols on my own API. The docs say the subsystem can be used for Steam, Xbox Live, Facebook, etc - but then fails to say how to use anything except for Steam.
I’m creating a simple NodeJS API for matchmaking. It will fetch the IP address of my dedicated server and return it to Unreal clients so they can join.
This is my planned flow (tell me if it’s wrong):
- Run dedicated server on my high-end PC running on a local IP address
- iPhone apps communicate with my local node server and performs matchmaking (if i can implement the subsystem protocol)
It kind of drives me crazy that Unreal teaches multiplayer through Steam since “magic” is happening under the hood. I simply want the server to point to my own matchmaking service but I cannot find any API docs or instructions on how to use your own service.
I know I can do “Open level: someIPAddress”, but I want matchmaking to deliver this to client. Do I need to just use standard networking in C++ to do this or can I use the subsystem?
What I was hoping for but can’t find (DefaultEngine.ini)
[OnlineSubsystem]
DefaultPlatformService=CustomMatchMaking
[/Script/OnlineSubsystemCustom.CustomNetDriver]
NetConnectionClassName=OnlineSubsystemSteam.CustomNetConnection
Where Custom is my own scripts. Then in Node I implement the proper protocols and then Unreal just talks to my server. But again, no information on this anywhere as far as I can see.