60 lines
2.0 KiB
C#
60 lines
2.0 KiB
C#
|
/*
|
||
|
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 <https://www.gnu.org/licenses/>.
|
||
|
*/
|
||
|
|
||
|
using System;
|
||
|
using System.Net;
|
||
|
using Godot;
|
||
|
using godotOscSharp;
|
||
|
|
||
|
namespace godotVmcSharp
|
||
|
{
|
||
|
public class Performer
|
||
|
{
|
||
|
private godotOscSharp.OscReceiver receiver;
|
||
|
private godotOscSharp.OscSender sender;
|
||
|
public Performer(IPAddress host, int port)
|
||
|
{
|
||
|
receiver = new godotOscSharp.OscReceiver(port);
|
||
|
sender = new godotOscSharp.OscSender(host, port);
|
||
|
receiver.MessageReceived += (sender, e) =>
|
||
|
{
|
||
|
GD.Print($"Received a message from {e.IPAddress}:{e.Port}");
|
||
|
ProcessMessage(e.Message);
|
||
|
};
|
||
|
receiver.ErrorReceived += (sender, e) =>
|
||
|
{
|
||
|
GD.Print($"Error: {e.ErrorMessage}");
|
||
|
};
|
||
|
}
|
||
|
private void ProcessMessage(godotOscSharp.OscMessage m)
|
||
|
{
|
||
|
switch (m.Address.ToString())
|
||
|
{
|
||
|
case "/VMC/Ext/Blend/Val":
|
||
|
new VmcExtBlendVal(m);
|
||
|
break;
|
||
|
case "/VMC/Ext/Blend/Apply":
|
||
|
new VmcMessage(m.Address);
|
||
|
break;
|
||
|
case "/VMC/Ext/Cam":
|
||
|
new VmcExtCam(m);
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|