OSCQuery is a protocol that makes it easier for OSC apps to find and communicate with each other.
We're developing this implementation of the protocol for OSC app creators integrate into their own projects as we integrate it into VRChat. We're building it in C# targeting .NET 6 and Framework 4.6 so it will work in Unity as well as cross-platform .NET projects.
This library implements almost all of the Core Functionality as described in the proposal:
- Advertises the service type "_oscjson._tcp" on the local network over Zeroconf.
- HTTP 1.1 Server
- Parses request url paths for OSC methods
- Provides JSON objects describing those OSC methods
- Discards fragment of url path
- Returns HTTP Status / Error codes
This library does not yet return limited attributes based on query strings, like only returning the VALUE of an object for a url that ends in "?VALUE", and does not yet return all possible error strings.
- Build vrc-oscquery-lib into vrc-oscquery-lib.dll and add it to your project (will make this a NuGet package once it's ready for wider use).
- Construct a new OSCQuery service with
new OSCQueryServiceBuilder().WithDefaults().Build()
. T optionally passing in the name, TCP port to use for serving HTTP, UDP port that you're using for OSC, and an ILogger if you want logs. - You should now be able to visit
http://localhost:tcpPort
in a browser and see raw JSON describing an empty root node.- You can also visit
http://localhost:tcpPort?explorer
to see an OSCQuery Explorer UI for the OSCQuery service, which should be easier to navigate than the raw JSON.
- You can also visit
- You can also visit
http://localhost:tcpPort?HOST_INFO
to get information about the supported attributes of this OSCQuery Server. - Next, you can call
AddEndpoint
on your service to add information about an available OSC method. Note that this library does not send or receive OSC messages directly, it is up to you to choose and implement an OSC Library. - After you have added an endpoint, you can its information by querying the root node again, or query for your method specifically. If you added an endpoint for the OSC address "/foo/bar", you would query this method directly at
http://localhost:tcpPort/foo/bar
. - To remove the endpoint, call the
RemoveEndpoint()
method on your OSCQueryService instance, passing in the OSC address as a string ("/foo/bar"); - When you are done with the service, call
Dispose
to clean it up.
For a more detailed walkthrough see Getting Started
This functionality will be released in an update soon™. These instructions
After launching the OSCQuery-enabled client, VRChat will start up an OSCQuery Service if you have OSC turned on. Note that we've changed the functionality of the OSC toggle a bit so you may need to turn it on every time you launch for now. VRChat will start a TCP service at http://localhost:9001 by default, or whatever port you have specified with your launch arguments. You can visit this url in a regular web browser to see the plain JSON which is returned for a request to the root namespace.
You can use the Unity App example which is included in this repo as source as well as in the Releases to test automatically connecting to VRChat and sending text to the Chatbox or receiving outgoing data over OSC.
Try opening up two instances of the app to see VRChat send to both automatically.
You can find a Unity Project in Exampless/OSCQueryExplorer-Unity
- you can open this up in Unity 2019.4.31f1.
Latest Release: OSCQueryExplorer-Unity 0.0.5 for Windows
This app has six active scenes, and a "SceneChanger" to switch between them:
- Chatbox-Sender
- Chatbox-Receiver
- Tracker-Sender
- Tracker-Receiver
- Head-&-Wrist-Receiver
- Monitor
- Advertise-&-Find
This scene demonstrates how to find an OSC receiver compatible with your data and send it. It is similar to how VRChat implements its find-and-send logic. All of the code is in a single MonoBehaviour - ChatboxSender.cs.
chatbox-autoconnect.mp4
This scene implements receving ChatBox messages in the same way that VRChat does for easy testing.
This scene uses the same logic to find an OSC receiver compatible with Tracking data and send it.
osc-trackers-explorer.mp4
You can test it using a second window or device, which is running the Tracking-Receiver scene.
To use it with VRChat:
- Start VRChat in VR mode.
- Start OSCQueryExplorer-Unity and press "OSC-Trackers" on the menu page.
- Wait until the app connects to your VRChat client. Leave it on the T-Pose animation.
- In VRChat, open your QuickMenu and press "Calibrate FBT".
- Wait for the avatar to reload, then press both triggers on your VR controllers.
- Back in OSCQueryExplorer, press "Test-Motion" to send some virtual tracker data to VRChat.
Known Issues:
- In a mirror, the movements will look backwards 😛
- Hands are still tracked by controllers, so elbow movements may not do much
- The example video is at potato resolution, sorry
Read more: OSC Trackers for VRChat.
This scene implements receiving Tracking messages in the same way that VRChat does for easy testing.
This scene implements receiving VR system tracking data for the head and wrists that VRChat sends out to aid in things such as pose solving or drift correction in OSC Tracker apps. This scene also implements receiving the OSC bundle timestamp that is made available with the tracking data.
This scene advertises itself as a receiver of OSC data, which VRChat will find and connect to. All of the code is in a single MonoBehaviour - MonitorCanvas.cs
oscquery-receive.mov
This scene advertises randomly named OSC and OSCQuery and Services, and shows the names and ports of any other services it finds on the network. Handy for seeing what's available and testing your own applications. Makes a nice quick phone-to-phone demo as well.
The solution includes three simple examples to demonstrate and test functionality. They are both .NET 6 Console apps and should work on Windows, Mac and Linux, but have only been tested on Windows 10 so far.
vrc-oscquery-example-compressed.mp4
This program simply listens for OSCQuery and OSC Service advertisements on the local network and prints them to the console. For OSCQuery services, it will also print the node tree of the service.
This program will advertise itself as an OSCQuery and OSC Service and provide 10 randomly-named int parameters with random values to test the remote reading of OSC methods and values.
When it starts, it generates a random name, TCP and OSC ports. It is possible that these ports are already occupied or are even the same (though unlikely). You can change the name and ports before pressing "Ok".
After you press ok, it will display the OSC addresses and values of 10 integer parameters. You can press the name of any address to change its value to a new random integer.
This program will start with a list of available OSCQuery services found on your local network. If one is found, you can choose it from the list and press "Connect".
Once connected, the program should display the target OSCQuery service's name and TCP port at the top of its window, and list the methods and their values below that.
It regularly polls for updates and should show value changes soon after they occur on the target Service.
- Support query strings for choosing attributes to return
Internal Discovery and IterationIntegrate into VRChat ClientClosed Beta Release to OSC App Developers- General Release of Library and VRChat Client integration