godotVmcSharp/VmcMessages/VmcExtSetPeriod.cs

64 lines
2.3 KiB
C#
Raw Permalink 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 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 static VmcExtSetPeriod CreateFromMessage(OscMessage m)
{
if (m.Data.Count < 6)
{
throw new MissingArgumentsException(m.Address, "{6}", m.Data.Count);
}
return new VmcExtSetPeriod(m.Data[0].GetAsInt32(), m.Data[1].GetAsInt32(), m.Data[2].GetAsInt32(), m.Data[3].GetAsInt32(), m.Data[4].GetAsInt32(), m.Data[5].GetAsInt32());
}
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>{
OscArgument.CreateFromParams(Status, 'i')!,
OscArgument.CreateFromParams(Root, 'i')!,
OscArgument.CreateFromParams(Bone, 'i')!,
OscArgument.CreateFromParams(BlendShape, 'i')!,
OscArgument.CreateFromParams(Camera, 'i')!,
OscArgument.CreateFromParams(Devices, 'i')!,
2023-08-17 16:09:53 +02:00
});
}
}
}