godotVmcSharp/VmcMessages/VmcExtSetPeriod.cs

100 lines
3.5 KiB
C#
Raw Normal View History

/*
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 Godot;
using godotOscSharp;
namespace godotVmcSharp
{
public class VmcExtSetPeriod : VmcMessage
{
2023-09-24 19:06:26 +02:00
public readonly int Status;
public readonly int Root;
public readonly int Bone;
public readonly int BlendShape;
public readonly int Camera;
public readonly int Devices;
public VmcExtSetPeriod(OscMessage m) : base(m.Address)
{
if (m.Data.Count != 6)
{
2023-08-18 00:22:27 +02:00
GD.Print($"Invalid number of arguments for {Addr}. Expecting 6, received {m.Data.Count}");
2023-08-16 21:39:14 +02:00
return;
}
if (m.Data[0].Type != 'i')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "status", 'i', m.Data[0].Type));
return;
}
if (m.Data[1].Type != 'i')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "root", 'i', m.Data[1].Type));
return;
}
if (m.Data[2].Type != 'i')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "bone", 'i', m.Data[2].Type));
return;
}
if (m.Data[3].Type != 'i')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "blendShape", 'i', m.Data[3].Type));
return;
}
if (m.Data[4].Type != 'i')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "camera", 'i', m.Data[4].Type));
return;
}
if (m.Data[5].Type != 'i')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "devices", 'i', m.Data[5].Type));
return;
}
Status = (int)m.Data[0].Value;
Root = (int)m.Data[1].Value;
Bone = (int)m.Data[2].Value;
BlendShape = (int)m.Data[3].Value;
Camera = (int)m.Data[4].Value;
Devices = (int)m.Data[5].Value;
}
public VmcExtSetPeriod(int status, int root, int bone, int blendShape, int camera, int devices) : base(new OscAddress("/VMC/Ext/Set/Period"))
{
Status = status;
Root = root;
Bone = bone;
BlendShape = blendShape;
Camera = camera;
Devices = devices;
}
2023-08-17 16:09:53 +02:00
public new OscMessage ToMessage()
2023-08-17 16:09:53 +02:00
{
2023-08-18 00:22:27 +02:00
return new OscMessage(Addr, new System.Collections.Generic.List<OscArgument>{
new OscArgument(Status, 'i'),
new OscArgument(Root, 'i'),
new OscArgument(Bone, 'i'),
new OscArgument(BlendShape, 'i'),
new OscArgument(Camera, 'i'),
new OscArgument(Devices, 'i'),
2023-08-17 16:09:53 +02:00
});
}
}
}