-
Notifications
You must be signed in to change notification settings - Fork 2
/
RemoteLogix.cs
796 lines (705 loc) · 27.9 KB
/
RemoteLogix.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
using System;
using BaseX;
using FrooxEngine;
using FrooxEngine.LogiX.Operators;
using FrooxEngine.LogiX.Input;
using FrooxEngine.LogiX;
using System.Reflection;
namespace VoyageNeosVRPlugin
{
[Category("Voyage")]
public class RemoteLogix : Component
{
/*public readonly SyncRef<SkinnedMeshRenderer> skinRef;
public readonly SyncRef<Slot> otherSlot;
public readonly SyncRef<Slot> testEmotionSlot;*/
public readonly Sync<string> websocketServerAddress;
public readonly Sync<bool> connect;
private readonly string systemAssemblyName = typeof(string).Assembly.FullName;
private readonly string frooxAssemblyName = typeof(FrooxEngine.LogiX.LogixNode).Assembly.FullName;
private readonly string basexAssemblyName = typeof(BaseX.AnimX).Assembly.FullName;
private readonly string codexAssemblyName = typeof(CodeX.AudioX).Assembly.FullName;
private readonly string cloudxAssemblyName = typeof(CloudX.Shared.AssetInfo).Assembly.FullName;
private Slot baseSlot;
private Slot programSlot;
private System.Collections.Generic.Dictionary<string, LogixNode> programNodes;
private WebsocketClient addedClient;
const char scriptFieldSeparator = ' ';
private string[] websocketTextData = new string[32];
private int lastReadTextIdx = 0;
/* Rename this... this isn't the current idx, this
* is the limit
*/
private int currentTextIdx = 0;
private bool WebsocketHasNewData()
{
return lastReadTextIdx != currentTextIdx;
}
private string WebsocketNewData()
{
string toRead = "";
int i = lastReadTextIdx;
while (i != currentTextIdx)
{
toRead += websocketTextData[i];
i += 1;
i &= 31;
}
lastReadTextIdx = i;
return toRead;
}
private void WebsocketSaveMessage(string message)
{
int i = currentTextIdx;
websocketTextData[i] = message;
i += 1;
i &= 31;
currentTextIdx = i;
}
/* Remaining characters captured from the websocket, that
* still doesn't form an entire line that could be parsed.
*/
private string remainsFromWS = "";
protected override void OnAttach()
{
base.OnAttach();
UniLog.Log("Help I'm attached ! Send someone !");
UniLog.Log("My Slot Name is : " + Slot.Name);
if (websocketServerAddress.Value == null || websocketServerAddress.Value == "")
{
websocketServerAddress.Value = "ws://localhost:9080";
}
baseSlot = Slot;
}
protected override void OnDestroy()
{
WebsocketSlotRemove();
}
private void WebsocketSlotAdd(Slot slot, string address)
{
var ws = slot.AttachComponent<WebsocketClient>();
ws.Error += MyyWebsocketError;
ws.Closed += MyyWebsocketClosed;
ws.Connected += MyyWebsocketConnected;
ws.BinaryMessageReceived += MyyWebsocketMessageBinary;
ws.TextMessageReceived += MyyWebsocketMessageText;
ws.URL.Value = new Uri(address);
ws.HandlingUser.Target = ws.LocalUser;
addedClient = ws;
}
private void WebsocketSlotRemove()
{
if (addedClient != null)
{
addedClient.Destroy();
}
}
private DynamicValueVariableDriver<T> AddDynVarDriverFor<T>(
Slot s,
string name,
IField<T> field,
bool forceLink = false)
{
DynamicValueVariableDriver<T> dynVariable =
s.AttachComponent<DynamicValueVariableDriver<T>>();
dynVariable.VariableName.Value = name;
dynVariable.Target.Target = field;
/* If a field is already driven, you can only use ForceLink
* to replace the current driver.
* This is rather dangerous, as that breaks previous links
* and I'm not sure 'Undo' will be able to recover from
* this.
*/
if (dynVariable.Target.Target == null)
{
if (!forceLink)
{
s.RemoveComponent(dynVariable);
dynVariable = null;
}
else
{
/* FIXME ! Untested ! */
dynVariable.Target.ForceLink(field);
}
}
return dynVariable;
}
private DynamicValueVariable<T> AddDynVar<T>(Slot slot, string name)
{
var dynVarSpace = slot.AttachComponent<DynamicVariableSpace>();
dynVarSpace.SpaceName.Value = name;
DynamicValueVariable<T> value = slot.AttachComponent<DynamicValueVariable<T>>();
value.VariableName.Value = name;
return value;
}
Type LogixGetType(string typeFullName)
{
string searchedName = typeFullName + ", " + frooxAssemblyName;
Type ret = Type.GetType(searchedName);
UniLog.Log("Searched for : " + searchedName + "\nGot :\n");
UniLog.Log(ret);
return ret;
}
LogixNode LogixFieldFullName(Slot slot, string nodeClassFullName)
{
/*string searchName =
nodeClassFullName + ", " + logixAssemblyName;
UniLog.Log("LogixField GetType " + searchName);*/
Type logixNodeType = ScriptGetActualNodeType(nodeClassFullName); //Type.GetType(searchName);
LogixNode ret = null;
if (logixNodeType != null)
{
/* FIXME Check if the type is compatible before casting... */
ret = (LogixNode)slot.AttachComponent(logixNodeType);
}
else
{
UniLog.Log("Could not get the type of the node : " + nodeClassFullName);
}
return ret;
}
void LogixConnectInputTo(
LogixNode toNode,
string inputName,
LogixNode fromNode,
string outputName = "*")
{
/* FIXME Check if the type is compatible before casting... */
var input = toNode.TryGetField(inputName);
if (outputName == "*")
{
((ISyncRef)input).TrySet(fromNode);
}
else
{
/* Handle getting output from fromNode */
((ISyncRef)input).TrySet(fromNode.GetSyncMember(outputName));
}
}
void LogixConnectImpulse(
LogixNode fromNode,
string impulseOutputName,
LogixNode toNode,
string toActionName)
{
Action toAction = (Action)Delegate.CreateDelegate(
typeof(Action),
toNode,
toActionName);
/* FIXME Check the type before casting... */
var fromImpulse = fromNode.TryGetField(impulseOutputName);
if (fromImpulse != null)
{
((Impulse)fromImpulse).Target = toAction;
}
}
Slot LogixProgramCreate(Slot mainSlot, string programName)
{
UniLog.Log("LogixProgramCreate");
Slot programSlot = mainSlot.AddSlot(programName);
programSlot.AddSlot("LogiX");
programSlot.AddSlot("DV");
UniLog.Log("End of LogixProgramCreate");
return programSlot;
}
LogixNode LogixProgramAddNode(Slot program, string nodeName, string nodeType)
{
UniLog.Log("LogixProgramAddNode");
Slot logix_slot = program.Find("LogiX");
if (logix_slot == null)
{
UniLog.Log("Cannot add " + nodeName + ", the provided program slot is null");
return null;
}
Slot node_slot = logix_slot.AddSlot(nodeName);
if (node_slot == null)
{
UniLog.Log("Could not add " + nodeName + ". Reason unknown.");
return null;
}
return LogixFieldFullName(node_slot, nodeType);
}
void LogixProgramConnectInput(
Slot program,
LogixNode toNode, string inputSlotName,
LogixNode fromNode, string outputSlotName)
{
LogixConnectInputTo(toNode, inputSlotName, fromNode, outputSlotName);
}
void LogixProgramConnectImpulse(
Slot program,
LogixNode toNode, string inputSlotName,
LogixNode fromNode, string outputSlotName)
{
LogixConnectImpulse(fromNode, outputSlotName, toNode, inputSlotName);
}
void LogixSetPos(Slot program, LogixNode node, float x, float y)
{
node.Slot.LocalPosition = new float3(x, y, 0);
}
private void ParseProgram(string[] instruction)
{
if (instruction.Length < 3)
{
UniLog.Log("Not enough arguments for PROGRAM instruction");
return;
}
foreach (string part in instruction)
{
UniLog.Log(part);
}
string programName = ScriptConvertUserInput(instruction[1]);
UniLog.Log("Program name " + programName);
string fileFormatVersion = instruction[2];
programSlot = LogixProgramCreate(baseSlot, programName);
programNodes = new System.Collections.Generic.Dictionary<string, LogixNode>();
}
private void ParseNode(string[] instruction)
{
if (instruction.Length < 4)
{
UniLog.Log("Not enough arguments for NODE instruction");
return;
}
string id = instruction[1];
string nodeType = ScriptUnquoteString(instruction[2]);
string nodeName = ScriptConvertUserInput(instruction[3]);
LogixNode programNode =
LogixProgramAddNode(programSlot, nodeName, nodeType);
UniLog.Log("Node added ? ");
UniLog.Log(programNode != null);
if (programNode != null)
{
programNodes?.Add(id, programNode);
}
}
private void ParsePos(string[] instruction)
{
if (instruction.Length < 4)
{
UniLog.Log("Not enough arguments for POS instruction");
return;
}
string nodeID = instruction[1];
string posXStr = instruction[2];
string posYStr = instruction[3];
bool node_found =
programNodes.TryGetValue(nodeID, out LogixNode node);
if (!node_found)
{
UniLog.Log("[POS] Could not find node with id : " + nodeID);
return;
}
float.TryParse(posXStr, out float posX);
float.TryParse(posYStr, out float posY);
LogixSetPos(programSlot, node, posX / 1000.0f, - (posY / 1000.0f));
}
private void ParseConnection(string[] instruction)
{
if (instruction.Length < 5)
{
UniLog.Log("Not enough arguments for INPUT or IMPULSE instruction");
return;
}
string toID = instruction[1];
string toInputName = ScriptUnquoteString(instruction[2]);
string fromID = instruction[3];
string fromOutputName = ScriptUnquoteString(instruction[4]);
bool gotTo = programNodes.TryGetValue(toID, out LogixNode toNode);
bool gotFrom = programNodes.TryGetValue(fromID, out LogixNode fromNode);
if (!gotTo || !gotFrom)
{
UniLog.Log("Could not get the nodes with ID : " + toID + ", " + fromID);
UniLog.Log("(" + gotTo + ", " + gotFrom + ")");
return;
}
if (instruction[0] == "INPUT")
{
LogixProgramConnectInput(programSlot, toNode, toInputName, fromNode, fromOutputName);
}
else
{
LogixProgramConnectImpulse(programSlot, toNode, toInputName, fromNode, fromOutputName);
}
}
private void ParseSetConst(string[] instruction)
{
if (instruction.Length < 3)
{
UniLog.Log("Not enough arguments for SETCONST instruction");
return;
}
string nodeID = instruction[1];
string value = ScriptConvertUserInput(instruction[2]);
bool hasNode = programNodes.TryGetValue(nodeID, out LogixNode node);
if (!hasNode)
{
UniLog.Log("Node " + nodeID + " not found !");
return;
}
LogixSetConst(programSlot, node, value);
}
private void ScriptParseLine(string line)
{
UniLog.Log("Parsing :");
UniLog.Log(line);
string[] instruction = line.Split(scriptFieldSeparator);
switch (instruction[0])
{
case "PROGRAM":
{
ParseProgram(instruction);
}
break;
case "NODE":
{
ParseNode(instruction);
}
break;
case "POS":
{
ParsePos(instruction);
}
break;
case "INPUT":
case "IMPULSE":
{
ParseConnection(instruction);
}
break;
case "SETCONST":
{
ParseSetConst(instruction);
}
break;
}
}
protected override void OnCommonUpdate()
{
base.OnCommonUpdate();
if (WebsocketHasNewData())
{
UniLog.Log("Got new data !");
string toParse = remainsFromWS + WebsocketNewData();
UniLog.Log(toParse);
string[] scriptLines = toParse.Split(new[] { '\n' });
/* The last one is always considered as an incomplete line
* and will be affected to remainsFromWS */
int linesToParseCount = scriptLines.Length - 1;
for (int i = 0; i < linesToParseCount; i++)
{
string line = scriptLines[i];
UniLog.Log("Parsing : " + line);
ScriptParseLine(line);
}
remainsFromWS = scriptLines[linesToParseCount];
}
}
void MyyWebsocketError(WebsocketClient client, string error)
{
UniLog.Log("Websocket error with client : ");
UniLog.Log(error);
}
void MyyWebsocketClosed(WebsocketClient client)
{
UniLog.Log("Websocket closed");
}
void MyyWebsocketConnected(WebsocketClient client)
{
UniLog.Log("Websocket connected");
baseSlot = client.Slot;
UniLog.Log("Base slot is now : ");
UniLog.Log(baseSlot);
}
void MyyWebsocketMessageBinary(WebsocketClient client, byte[] data)
{
UniLog.Log("Websocket binary message");
UniLog.Log(data);
}
void MyyWebsocketMessageText(WebsocketClient client, string text)
{
UniLog.Log("Websocket text message");
UniLog.Log(text);
WebsocketSaveMessage(text);
}
/* https://stackoverflow.com/questions/457676/check-if-a-class-is-derived-from-a-generic-class */
static Type IsSubclassOfRawGeneric(Type generic, Type toCheck)
{
while (toCheck != null && toCheck != typeof(object))
{
var cur = toCheck.IsGenericType ? toCheck.GetGenericTypeDefinition() : toCheck;
if (generic == cur)
{
return toCheck;
}
toCheck = toCheck.BaseType;
}
return null;
}
string ScriptUnquoteString(string singleQuoted)
{
return singleQuoted.Trim(new[] { '\'', ' ' }).Replace("''", "'");
}
/* https://stackoverflow.com/questions/11743160/how-do-i-encode-and-decode-a-base64-string */
string ScriptConvertUserInput(string userInputBase64)
{
/* Trim eventual spaces and quote characters */
string unquotedBase64 = userInputBase64.Trim(new[] { '"', ' ' });
string decodedString = "";
try
{
var decodedBytes = System.Convert.FromBase64String(unquotedBase64);
decodedString = System.Text.Encoding.UTF8.GetString(decodedBytes);
}
catch (Exception e)
{
UniLog.Log(
"Converting the following base64 input to String provoked an Exception.\n" +
"Base64 string : " + userInputBase64 + "\n" +
"Exception : " + e.Message);
}
UniLog.Log("Decoded : " + userInputBase64 + " to " + decodedString);
return decodedString;
}
void LogixSetConst(Slot program, LogixNode node, string inputValue)
{
Type nodeType = node.GetType();
string nodeTypeStr = nodeType.FullName;
switch(nodeTypeStr)
{
case "FrooxEngine.LogiX.Input.BoolInput":
{
BoolInput inputNode = (BoolInput)node;
if (RobustParser.TryParse(inputValue, out bool value))
{
inputNode.Value.Value = value;
}
else
{
UniLog.Log("Could not convert " + inputValue + " to bool");
return;
}
}
break;
case "FrooxEngine.LogiX.Input.Bool2Input":
{
Bool2Input inputNode = (Bool2Input)node;
if (RobustParser.TryParse(inputValue, out bool2 value))
{
inputNode.Value.Value = value;
}
else
{
UniLog.Log("Could not convert " + inputValue + " to bool");
return;
}
}
break;
case "FrooxEngine.LogiX.Input.Bool3Input":
{
Bool3Input inputNode = (Bool3Input)node;
if (RobustParser.TryParse(inputValue, out bool3 value))
{
inputNode.Value.Value = value;
}
else
{
UniLog.Log("Could not convert " + inputValue + " to bool");
return;
}
}
break;
case "FrooxEngine.LogiX.Input.Bool4Input":
{
Bool4Input inputNode = (Bool4Input)node;
if (RobustParser.TryParse(inputValue, out bool4 value))
{
inputNode.Value.Value = value;
}
else
{
UniLog.Log("Could not convert " + inputValue + " to bool");
return;
}
}
break;
default:
Type valueTextFieldType =
IsSubclassOfRawGeneric(typeof(ValueTextFieldNodeBase<>), nodeType);
if (valueTextFieldType == null)
{
UniLog.Log(
"[BUG] Don't know how to deal with input of nodes of type : \n" +
nodeTypeStr);
return;
}
LogixSetConstValueText(program, node, inputValue, valueTextFieldType);
break;
}
}
void LogixSetConstValueText(Slot program, LogixNode node, string inputValue, Type valueTextFieldType)
{
UniLog.Log("Setting up the value through reflection");
Type[] genericArgs = valueTextFieldType.GetGenericArguments();
/* FIXME This is a weird check... Verify that this issue can really happen */
if (genericArgs.Length == 0)
{
UniLog.Log(
"[BUG] Cannot get the right generic type to parse the provided values for :\n" +
valueTextFieldType.FullName);
return;
}
Type valueType = genericArgs[0];
System.Reflection.MethodInfo parser = typeof(RobustParser).GetMethod(
nameof(RobustParser.TryParse),
new[] { typeof(string), valueType.MakeByRefType() });
if (parser == null)
{
UniLog.Log(
"[BUG] Could not get a parser for values of type " + valueType.FullName + "\n" +
"For setting the value of a : " + node.GetType().FullName);
return;
}
PropertyInfo currentValueProp = valueTextFieldType.GetProperty("CurrentValue");
if (currentValueProp == null)
{
UniLog.Log(
"[BUG] Could not get the property 'CurrentValue' from node of type :\n" +
node.GetType().FullName + "\n" +
"This is the only way known to setup the value of such fields...");
return;
}
var parameters = new object[] { inputValue, null };
if ((bool)parser.Invoke(null, parameters) == false)
{
UniLog.Log("Could not convert '" + inputValue + "' to " + genericArgs[0].Name);
UniLog.Log("(Base64 version : " + inputValue + ")");
return;
}
object parsedValue = parameters[1];
currentValueProp.SetValue(node, parsedValue);
UniLog.Log("Parsed value : " + parsedValue.ToString() + " (from : " + inputValue + ")");
}
Type ScriptGetActualNodeType(string providedNodeTypeFullName)
{
int bracketPosition = providedNodeTypeFullName.IndexOf('<');
if (bracketPosition < 0)
{
return LogixGetType(providedNodeTypeFullName);
}
else /* Generic types, yay... */
{
int endBracketPosition = providedNodeTypeFullName.IndexOf('>');
if (endBracketPosition == -1)
{
UniLog.Log(
"Missing closing bracket for generic type definition :\n" +
providedNodeTypeFullName);
return null;
}
/* Basically, we'll receive something like :
* FrooxEngine.LogiX.Operators.NotNull<FrooxEngine-Slot>
* or
* FrooxEngine.Logix.Data.ReadDynamicVariable<System-Single>
*/
string genericTypeName = providedNodeTypeFullName.Substring(0, bracketPosition);
int afterStartBracketIdx = bracketPosition + 1;
int betweenBracketsLength =
endBracketPosition - afterStartBracketIdx;
string specialTypeNames =
providedNodeTypeFullName.Substring(afterStartBracketIdx, betweenBracketsLength);
string[] typeTNamesList = specialTypeNames.Split(new[] { ',' });
Type[] specialTypes = new Type[typeTNamesList.Length];
int typesCount = typeTNamesList.Length;
/* It seems that all generics type names are suffixed with '`' followed
* by the amount of generic arguments */
genericTypeName += "`" + typesCount;
Type genericType = LogixGetType(genericTypeName);
if (genericType == null)
{
UniLog.Log("Could not find generic type " + genericTypeName);
return null;
}
for (int i = 0; i < typesCount; i++)
{
string typeTFullName = typeTNamesList[i].Trim();
string assemblyFullName = GetAssemblyNameFrom(typeTFullName);
if (assemblyFullName == "")
{
UniLog.Log("Cannot get the assembly full name of : " + typeTFullName);
UniLog.Log("Complete type passed : " + providedNodeTypeFullName);
return null;
}
string typeTSearchName = typeTFullName + ", " + assemblyFullName;
Type specialType = Type.GetType(typeTSearchName);
if (specialType == null)
{
UniLog.Log("Cannot find type : " + typeTSearchName);
UniLog.Log("For : " + providedNodeTypeFullName);
return null;
}
specialTypes[i] = specialType;
}
Type specializedType = genericType.MakeGenericType(specialTypes);
if (specializedType == null)
{
UniLog.Log(
"Could not specialize " + specializedType.FullName +
" with the following types :");
foreach (Type t in specialTypes)
{
UniLog.Log(t.FullName);
}
UniLog.Log("For : " + providedNodeTypeFullName);
}
/* Could be null if the type was not found */
return specializedType;
}
}
string GetAssemblyNameFrom(string typeFullName)
{
string nmspc = typeFullName.Split(new[] { '.' })[0];
switch (nmspc)
{
case "System":
{
return systemAssemblyName;
}
case "FrooxEngine":
{
return frooxAssemblyName;
}
case "BaseX":
{
return basexAssemblyName;
}
case "CodeX":
{
return codexAssemblyName;
}
case "CloudX":
{
return cloudxAssemblyName;
}
default:
{
UniLog.Log("Cannot find an assemby name for : " + typeFullName);
UniLog.Log("(Splitted version : " + nmspc + ")");
return "";
}
}
}
protected override void OnChanges()
{
if (connect)
{
WebsocketSlotAdd(Slot, websocketServerAddress);
}
else
{
WebsocketSlotRemove();
}
}
}
}