/* 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 . */ using godotOscSharp; namespace godotVmcSharp { public class VmcExtSettingWin : VmcMessage { public readonly int IsTopMost; public readonly int IsTransparent; public readonly int WindowClickThrough; public readonly int HideBorder; public static VmcExtSettingWin CreateFromMessage(OscMessage m) { if (m.Data.Count < 4) { throw new MissingArgumentsException(m.Address, "4", m.Data.Count); } var isTopMost = m.Data[0].GetAsInt32(); var isTransparent = m.Data[1].GetAsInt32(); var windowClickThrough = m.Data[2].GetAsInt32(); var hideBorder = m.Data[3].GetAsInt32(); if (isTopMost < 0 || isTopMost > 1) { throw new DataOutOfRangeException(m.Address, 0, "isTopMost", "{0, 1}", isTopMost); } if (isTransparent < 0 || isTransparent > 1) { throw new DataOutOfRangeException(m.Address, 1, "isTransparent", "{0, 1}", isTransparent); } if (windowClickThrough < 0 || windowClickThrough > 1) { throw new DataOutOfRangeException(m.Address, 2, "windowClickThrough", "{0, 1}", windowClickThrough); } if (hideBorder < 0 || hideBorder > 1) { throw new DataOutOfRangeException(m.Address, 3, "hideBorder", "{0, 1}", hideBorder); } return new VmcExtSettingWin(isTopMost, isTransparent, windowClickThrough, hideBorder); } public static VmcExtSettingWin CreateFromParams(int isTopMost, int isTransparent, int windowClickThrough, int hideBorder) { if (isTopMost < 0 || isTopMost > 1) { throw new DataOutOfRangeException("/VMC/Ext/Setting/Win", 0, "isTopMost", "{0, 1}", isTopMost); } if (isTransparent < 0 || isTransparent > 1) { throw new DataOutOfRangeException("/VMC/Ext/Setting/Win", 1, "isTransparent", "{0, 1}", isTransparent); } if (windowClickThrough < 0 || windowClickThrough > 1) { throw new DataOutOfRangeException("/VMC/Ext/Setting/Win", 2, "windowClickThrough", "{0, 1}", windowClickThrough); } if (hideBorder < 0 || hideBorder > 1) { throw new DataOutOfRangeException("/VMC/Ext/Setting/Win", 3, "hideBorder", "{0, 1}", hideBorder); } return new VmcExtSettingWin(isTopMost, isTransparent, windowClickThrough, hideBorder); } private VmcExtSettingWin(int isTopMost, int isTransparent, int windowClickThrough, int hideBorder) : base(new OscAddress("/VMC/Ext/Setting/Win")) { IsTopMost = isTopMost; IsTransparent = isTransparent; WindowClickThrough = windowClickThrough; HideBorder = hideBorder; } public new OscMessage ToMessage() { return new OscMessage(Addr, new System.Collections.Generic.List{ OscArgument.CreateFromParams(IsTopMost, 'i')!, OscArgument.CreateFromParams(IsTransparent, 'i')!, OscArgument.CreateFromParams(WindowClickThrough, 'i')!, OscArgument.CreateFromParams(HideBorder, 'i')! }); } } }