diff --git a/groundStation/gui/MicroCART/MicroCART.pro.user b/groundStation/gui/MicroCART/MicroCART.pro.user index 03f704131d619d5228554eb5694df9f8558c3461..02d705461ac16ceee40bdde0259bfe7acd9bbafc 100644 --- a/groundStation/gui/MicroCART/MicroCART.pro.user +++ b/groundStation/gui/MicroCART/MicroCART.pro.user @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE QtCreatorProject> -<!-- Written by QtCreator 3.2.2, 2017-03-24T14:09:55. --> +<!-- Written by QtCreator 3.2.2, 2017-03-28T12:37:18. --> <qtcreator> <data> <variable>EnvironmentId</variable> diff --git a/groundStation/gui/MicroCART/controlworker.cpp b/groundStation/gui/MicroCART/controlworker.cpp index 5c526c77f87b2e51031bef3eb667d55f06746457..69e74b176abeb6d53a930b870497d9e2b6428393 100644 --- a/groundStation/gui/MicroCART/controlworker.cpp +++ b/groundStation/gui/MicroCART/controlworker.cpp @@ -1,6 +1,86 @@ #include "controlworker.h" +#include "frontend_nodes.h" +#include "frontend_param.h" -controlworker::controlworker(QObject *parent) : - QObject(parent) +ControlWorker::ControlWorker(QObject *parent) : + QObject(parent), conn(NULL) { + +} + +ControlWorker::ControlWorker() : + QObject(), conn(NULL) +{ +} + +ControlWorker::~ControlWorker() +{ + disconnectBackend(); +} + +void ControlWorker::connectBackend() +{ + conn = ucart_backendConnect(); +} + +void ControlWorker::disconnectBackend() +{ + if (conn) { + ucart_backendDisconnect(conn); + conn = NULL; + } +} + +ControlWorker::getNodes() +{ + if (conn) { + frontend_node_data * nd = NULL; + size_t num_nodes = 0; + frontend_getnodes(conn, &nd, &num_nodes); + QStringList nodes; + for (size_t i = 0; i < num_nodes; i++) { + nodes << QString(nd[i].name); + } + frontend_free_node_data(nd, num_nodes); + emit(gotNodes(nodes)); + } +} + +ControlWorker::getParams(QString node) +{ + if (conn) { + frontend_node_data * nd = NULL; + size_t num_nodes = 0; + frontend_getnodes(conn, &nd, &num_nodes); + + for (size_t i = 0; i < num_nodes; i++) { + if (QString(nd[i].name) == node) { + QStringList params; + // TODO: Get list of params based on node type + emit(gotParams(params)); + } + } + fontend_free_node_data(nd, num_nodes); + } +} + + +ControlWorker::getParamValue(QString node, QString param) +{ + if (conn) { + frontend_node_data * nd = NULL; + size_t num_nodes = 0; + frontend_getnodes(conn, &nd, &num_nodes); + + for (size_t i = 0; i < num_nodes; i++) { + if (QString(nd[i].name) == node) { + frontend_param_data pd; + pd.block = nd[i].block; + pd.param = 0; //TODO: Map string param to param ID based on block type? (Might not be needed...) + frontend_getparam(conn, &pd); + emit(gotParamValue(pd.value)); + } + } + fontend_free_node_data(nd, num_nodes); + } } diff --git a/groundStation/gui/MicroCART/controlworker.h b/groundStation/gui/MicroCART/controlworker.h index 4635a1fe725098b30e489a2047fa91abde94dfc4..0568036a05a783006071662d46132c9a56dbc75b 100644 --- a/groundStation/gui/MicroCART/controlworker.h +++ b/groundStation/gui/MicroCART/controlworker.h @@ -4,15 +4,23 @@ #include <QObject> #include "frontend_common.h" -class controlworker : public QObject +class ControlWorker : public QObject { Q_OBJECT public: - explicit controlworker(QObject *parent = 0); + explicit ControlWorker(QObject *parent = 0); signals: + void gotNodes(QStringList nodes); + void gotParams(QStringList params); + void gotParamValue(float value); public slots: + void connectBackend(); + void disconnectBackend(); + void getNodes(); + void getParams(QString node); + void getParamValue(QString node, QString param); private: diff --git a/groundStation/gui/MicroCART/mainwindow.cpp b/groundStation/gui/MicroCART/mainwindow.cpp index 8df17de0b2c2edf292607a0e3cdc8d0526d30db3..8aeecce1aa69976698b9ba69e3359ef361277f0b 100644 --- a/groundStation/gui/MicroCART/mainwindow.cpp +++ b/groundStation/gui/MicroCART/mainwindow.cpp @@ -30,13 +30,17 @@ MainWindow::MainWindow(QWidget *parent) : connect(trackerWorker, SIGNAL (finished(float, float, float, float, float, float)), this, SLOT (updateTracker(float, float, float, float, float, float))); + /* Create another worker for the control graph */ + QThread * cwThread = new QThread(this); + ControlWorker * controlWorker = new ControlWorker(); + controlWorker->moveToThread(cwThread); + /* Connect and disconnect from backend when signals emitted */ connect(this, SIGNAL (connectWorkers()), trackerWorker, SLOT (connectBackend())); connect(this, SIGNAL (disconnectWorkers()), trackerWorker, SLOT (disconnectBackend())); + connect(this, SIGNAL (connectWorkers()), controlWorker, SLOT (connectBackend())); + connect(this, SIGNAL (disconnectWorkers()), controlWorker, SLOT (disconnectBackend())); - /* Create other workers and add them to the worker thread, then connect them */ - - /* Now we can activate the slots of the workers with impunity and not block the UI thread */ /* Connect refresh button and refresh timer to tracker worker */ QTimer * trackerTimer = new QTimer(this); connect(trackerTimer, SIGNAL(timeout()), trackerWorker, SLOT(process())); diff --git a/groundStation/src/frontend/frontend_nodes.h b/groundStation/src/frontend/frontend_nodes.h index 6b0a340624e6245e5cb87129548f6ff90a6e21eb..fa7d57f14c6123ad04f6b07ab114a3deee2006aa 100644 --- a/groundStation/src/frontend/frontend_nodes.h +++ b/groundStation/src/frontend/frontend_nodes.h @@ -3,6 +3,10 @@ #include "frontend_common.h" +#ifdef __cplusplus +extern "C" { +#endif + /* Get the block_id, type_id and name of * all of the nodes in the current comp_graph. * @@ -32,4 +36,8 @@ void frontend_free_node_data( struct frontend_node_data * nd, size_t num_nodes); +#ifdef __cplusplus +} +#endif + #endif /* __FRONTEND_NODES_H */ diff --git a/groundStation/src/frontend/frontend_param.h b/groundStation/src/frontend/frontend_param.h index 26854dd0d7ee104e20edb524a5459a2535794426..392fbd83bf6d02424d0f6d54bb0187c579105eab 100644 --- a/groundStation/src/frontend/frontend_param.h +++ b/groundStation/src/frontend/frontend_param.h @@ -3,6 +3,10 @@ #include "frontend_common.h" +#ifdef __cplusplus +extern "C" { +#endif + /* Get the value of block.param * * Returns 0 on success, 1 on error @@ -19,5 +23,9 @@ int frontend_setparam( struct backend_conn * conn, struct frontend_param_data * param_data); +#ifdef __cplusplus +} +#endif + -#endif /* __FRONTEND_PARAM_H */ \ No newline at end of file +#endif /* __FRONTEND_PARAM_H */