2024-07-09 00:52:01 +02:00
|
|
|
# VRCOSCRouter
|
|
|
|
|
2024-07-09 00:57:11 +02:00
|
|
|
Simple OSC-Router for OSC-Programs that do not use OSC-Query.
|
2024-07-09 01:01:44 +02:00
|
|
|
Can also translate Endpoint names for programs that have hard-coded parameters.
|
2024-07-09 00:57:11 +02:00
|
|
|
|
2024-07-09 01:01:44 +02:00
|
|
|
## Usage
|
|
|
|
|
|
|
|
Place as many `xxx.json` files as you want in the same folder as the executable.
|
|
|
|
Each file represents a OSC-Program you want to route.
|
|
|
|
|
|
|
|
### Example `Program.json`
|
2024-07-09 00:57:11 +02:00
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"Name": "Program name",
|
|
|
|
"Ip": "127.0.0.1",
|
|
|
|
"SendPort": 8000,
|
|
|
|
"ReceivePort": 8001,
|
|
|
|
"Endpoints": [
|
|
|
|
{
|
|
|
|
"ProgramEndpoint": "/avatar/parameters/What_The_Program_Is_Sending",
|
|
|
|
"VrcEndpoint": "/avatar/parameters/Avatar_Parameter",
|
|
|
|
"Type": "System.Single/System.String/etc."
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
|
|
|
```
|