mirror of
https://github.com/jwetzell/qController.git
synced 2026-07-26 10:38:50 +00:00
82 lines
2.5 KiB
C#
82 lines
2.5 KiB
C#
//Class used for overall Workspace control (ONLY REPRESENTS ONE WORKSPACE)
|
|
//Contains all necessary items to facilitate communication (sending, receiving) to a QLab workspace
|
|
//Also contains the local QWorkspace object which stores all the information that is used in displaying
|
|
//TODO: STILL NEED TO WORK ON PASSWORD PROTECTED WORKSPACES
|
|
using Serilog;
|
|
using qController.QItems;
|
|
|
|
namespace qController.Communication
|
|
{
|
|
public class QController
|
|
{
|
|
|
|
public QUpdater qUpdater;
|
|
public QClient qClient;
|
|
public QWorkspace qWorkspace;
|
|
public string playbackPosition;
|
|
private string ipAddress;
|
|
private int port;
|
|
|
|
public QController(string address, int port)
|
|
{
|
|
this.port = port;
|
|
this.ipAddress = address;
|
|
qClient = new QClient(ipAddress, port);
|
|
qUpdater = new QUpdater(this);
|
|
|
|
}
|
|
|
|
public void Connect(string workspace_id)
|
|
{
|
|
Log.Debug($"QCONTROLLER - Connect Called: {workspace_id}");
|
|
qWorkspace = new QWorkspace(workspace_id);
|
|
qClient.sendTCP("/workspace/"+workspace_id+"/connect");
|
|
}
|
|
|
|
public void Connect(string workspace_id, string passcode)
|
|
{
|
|
Log.Debug($"QCONTROLLER - Connect with Passcode Called: {workspace_id}:{passcode}");
|
|
qWorkspace = new QWorkspace(workspace_id);
|
|
qClient.sendTCP("/workspace/" + workspace_id + "/connect", passcode);
|
|
|
|
}
|
|
|
|
public void Connect(QWorkspace workspace)
|
|
{
|
|
if(workspace.passcode != null)
|
|
Connect(workspace.workspace_id, workspace.passcode);
|
|
else
|
|
Connect(workspace.workspace_id);
|
|
|
|
}
|
|
|
|
public void KickOff()
|
|
{
|
|
Log.Debug($"QCONTROLLER - Searching for workspaces on: {ipAddress}");
|
|
qClient.sendTCP("/workspaces");
|
|
}
|
|
|
|
public void Disconnect()
|
|
{
|
|
Log.Debug($"QCONTROLLER - Disconnecting from: {qWorkspace.workspace_id}");
|
|
qClient.sendTCP("/workspace/"+qWorkspace.workspace_id+"/disconnect");
|
|
}
|
|
|
|
public void Resume()
|
|
{
|
|
//qClient = new QClient(ipAddress, port);
|
|
//qUpdater = new QUpdater(this);
|
|
if(qWorkspace != null)
|
|
{
|
|
Log.Debug($"QCONTROLLER - Resuming: {qWorkspace.workspace_id}");
|
|
}
|
|
}
|
|
|
|
public void Kill(){
|
|
Log.Debug("QCONTROLLER - Killing");
|
|
if (qClient != null)
|
|
qClient.Close();
|
|
}
|
|
}
|
|
}
|