godotVmcSharp/VmcMessages/VmcExtSetPeriod.cs

64 lines
2.3 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 godotOscSharp;
namespace godotVmcSharp
{
public class VmcExtSetPeriod : VmcMessage
{
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;
}
public new OscMessage ToMessage()
{
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')!,
});
}
}
}