godotVmcSharp/VmcMessages/VmcExtVrm.cs

76 lines
2.5 KiB
C#
Raw Permalink Normal View History

2023-08-16 20:41:23 +02:00
/*
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;
2023-08-17 16:33:10 +02:00
using System.Collections.Generic;
2023-08-16 20:41:23 +02:00
#nullable enable
2023-08-16 20:41:23 +02:00
namespace godotVmcSharp
{
public class VmcExtVrm : VmcMessage
{
2023-09-24 19:06:26 +02:00
public readonly string Path;
public readonly string Title;
public readonly string? Hash;
2023-08-16 20:41:23 +02:00
public static VmcExtVrm? CreateFromMessage(OscMessage m)
2023-08-16 20:41:23 +02:00
{
2023-08-17 16:28:30 +02:00
switch (m.Data.Count)
2023-08-16 20:41:23 +02:00
{
2023-08-17 16:28:30 +02:00
case 2:
return new VmcExtVrm(m.Data[0].GetAsString(), m.Data[1].GetAsString());
case 1:
case 0:
throw new MissingArgumentsException(m.Address, "2 <= count <= 3", m.Data.Count);
2023-08-17 16:28:30 +02:00
default:
return new VmcExtVrm(m.Data[0].GetAsString(), m.Data[1].GetAsString(), m.Data[2].GetAsString());
2023-08-16 20:41:23 +02:00
}
}
2023-08-17 16:30:13 +02:00
2023-08-17 21:56:29 +02:00
public VmcExtVrm(string path, string title) : base(new OscAddress("/VMC/Ext/VRM"))
2023-08-17 16:30:13 +02:00
{
2023-08-17 21:56:29 +02:00
Path = path;
Title = title;
2023-08-17 16:30:13 +02:00
}
2023-08-17 21:56:29 +02:00
public VmcExtVrm(string path, string title, string hash) : base(new OscAddress("/VMC/Ext/VRM"))
2023-08-17 16:30:13 +02:00
{
2023-08-17 21:56:29 +02:00
Path = path;
Title = title;
Hash = hash;
2023-08-17 16:30:13 +02:00
}
2023-08-17 16:33:10 +02:00
2023-08-17 21:56:29 +02:00
public new OscMessage ToMessage()
2023-08-17 16:33:10 +02:00
{
2023-08-17 21:56:29 +02:00
if (Hash == null)
2023-08-17 16:33:10 +02:00
{
2023-08-18 00:22:27 +02:00
return new OscMessage(Addr, new List<OscArgument>{
OscArgument.CreateFromParams(Path, 's')!,
OscArgument.CreateFromParams(Title, 's')!
2023-08-17 16:33:10 +02:00
});
}
2023-08-18 00:22:27 +02:00
return new OscMessage(Addr, new List<OscArgument>{
OscArgument.CreateFromParams(Path, 's')!,
OscArgument.CreateFromParams(Title, 's')!,
OscArgument.CreateFromParams(Hash, 's')!
2023-08-17 16:33:10 +02:00
});
}
2023-08-16 20:41:23 +02:00
}
}