|
@@ -1,4 +1,5 @@
|
|
|
using Aitex.Core.RT.Event;
|
|
|
+using Aitex.Core.RT.SCCore;
|
|
|
using Aitex.Core.Util;
|
|
|
using DocumentFormat.OpenXml.Wordprocessing;
|
|
|
using FurnaceRT.Equipments.PMs;
|
|
@@ -32,6 +33,10 @@ namespace FurnaceRT.Extraction
|
|
|
private RTCommunicator_TLV communicator = new RTCommunicator_TLV();
|
|
|
public void Initialize(string ip = "127.0.0.1", int port = 50052)
|
|
|
{
|
|
|
+ if (SC.GetValue<bool>("System.IsSimulatorMode"))
|
|
|
+ {
|
|
|
+ return;
|
|
|
+ }
|
|
|
communicator.Initialize(this);
|
|
|
SWJConnectedMinics(ip, port);
|
|
|
|