godotVmcSharp/VmcMessages/VmcExtVrm.cs

106 lines
3.7 KiB
C#
Raw 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 Godot;
using godotOscSharp;
2023-08-17 16:33:10 +02:00
using System.Collections.Generic;
2023-08-16 20:41:23 +02:00
namespace godotVmcSharp
{
public class VmcExtVrm : VmcMessage
{
2023-08-17 21:56:29 +02:00
public string Path { get; }
public string Title { get; }
public string Hash { get; }
2023-08-16 20:41:23 +02:00
2023-08-17 21:56:29 +02:00
public VmcExtVrm(OscMessage m) : base(m.Address)
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:
if (m.Data[0].Type != 's')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "path", 's', m.Data[0].Type));
2023-08-17 16:28:30 +02:00
return;
}
if (m.Data[1].Type != 's')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "title", 's', m.Data[1].Type));
2023-08-17 16:28:30 +02:00
return;
}
2023-08-17 21:56:29 +02:00
Path = (string)m.Data[0].Value;
Title = (string)m.Data[1].Value;
Hash = "";
break;
2023-08-17 16:28:30 +02:00
case 3:
if (m.Data[0].Type != 's')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "path", 's', m.Data[0].Type));
2023-08-17 16:28:30 +02:00
return;
}
if (m.Data[1].Type != 's')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "title", 's', m.Data[1].Type));
2023-08-17 16:28:30 +02:00
return;
}
if (m.Data[2].Type != 's')
{
2023-08-18 00:22:27 +02:00
GD.Print(InvalidArgumentType.GetErrorString(Addr, "hash", 's', m.Data[1].Type));
2023-08-17 16:28:30 +02:00
return;
}
2023-08-17 21:56:29 +02:00
Path = (string)m.Data[0].Value;
Title = (string)m.Data[1].Value;
Hash = (string)m.Data[2].Value;
break;
2023-08-17 16:28:30 +02:00
default:
2023-08-18 00:22:27 +02:00
GD.Print($"Invalid number of arguments for {Addr} message. Expected 2 or 3 but received {m.Data.Count}");
2023-08-17 16:28:30 +02:00
return;
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;
Hash = "";
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>{
2023-08-17 21:56:29 +02:00
new OscArgument(Path, 's'),
new OscArgument(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>{
2023-08-17 21:56:29 +02:00
new OscArgument(Path, 's'),
new OscArgument(Title, 's'),
new OscArgument(Hash, 's')
2023-08-17 16:33:10 +02:00
});
}
2023-08-16 20:41:23 +02:00
}
}