/* godotVmcSharp Copyright (C) 2023 Cassandra de la Cruz-Munoz This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . */ using System.Net; using godotOscSharp; using Godot; namespace godotVmcSharp { public class Marionette { private OscReceiver receiver; private OscSender sender; private CameraReceiver cam; private DeviceReceiver devices; private DirectionalLightReceiver lights; public Marionette(int port) { receiver = new OscReceiver(port); receiver.MessageReceived += (sender, e) => { if (sender == null) { sender = new OscSender(IPAddress.Parse(e.IPAddress), port); } GD.Print($"Received a message from {e.IPAddress}:{e.Port}"); ProcessMessage(e.Message); }; receiver.ErrorReceived += (sender, e) => { GD.Print($"Error: {e.ErrorMessage}"); }; devices = new DeviceReceiver(); lights = new DirectionalLightReceiver(); } private void ProcessMessage(OscMessage m) { switch (m.Address.ToString()) { case "/VMC/Ext/OK": new VmcExtOk(m); break; case "/VMC/Ext/T": new VmcExtT(m); break; case "/VMC/Ext/Root/Pos": new VmcExtRootPos(m); break; case "/VMC/Ext/Bone/Pos": new VmcExtBonePos(m); break; case "/VMC/Ext/Blend/Val": new VmcExtBlendVal(m); break; case "/VMC/Ext/Blend/Apply": new VmcMessage(m.Address); break; case "/VMC/Ext/Cam": this.cam.ProcessMessage(new VmcExtCam(m)); break; case "/VMC/Ext/Con": new VmcExtCon(m); break; case "/VMC/Ext/Key": new VmcExtKey(m); break; case "/VMC/Ext/Midi/Note": new VmcExtMidiNote(m); break; case "/VMC/Ext/Midi/CC/Val": new VmcExtMidiCcVal(m); break; case "/VMC/Ext/Midi/CC/Bit": new VmcExtMidiCcBit(m); break; case "/VMC/Ext/Hmd/Pos": case "/VMC/Ext/Con/Pos": case "/VMC/Ext/Tra/Pos": case "/VMC/Ext/Hmd/Pos/Local": case "/VMC/Ext/Con/Pos/Local": case "/VMC/Ext/Tra/Pos/Local": this.devices.ProcessMessage(new VmcExtDevicePos(m)); break; case "/VMC/Ext/Rcv": new VmcExtRcv(m); break; case "/VMC/Ext/Light": this.lights.ProcessMessage(new VmcExtLight(m)); break; case "/VMC/Ext/VRM": new VmcExtVrm(m); break; case "/VMC/Ext/Remote": new VmcExtRemote(m); break; case "/VMC/Ext/Opt": new VmcExtOpt(m); break; case "/VMC/Ext/Setting/Color": new VmcExtSettingColor(m); break; case "/VMC/Ext/Setting/Win": new VmcExtSettingWin(m); break; case "/VMC/Ext/Config": new VmcExtConfig(m); break; } } } }