e7cf44504c
## 架构升级:Service Registry + Bridge 模式 - 新增 PluginSDK/IPluginServices.h:10 个纯虚服务接口(IDataProvider/ILinkProvider/...) - 新增 MavLinkServiceBridge:单 QObject 实现全部服务,隔离 MavLinkNode 依赖 - 升级 PluginManifest:支持 plugin.json 的 provides/consumes 声明式依赖 - 实现 ExtensionHost::autoWire():元对象自省自动连接信号槽 - 集成到 AppController:initModules() 中创建桥接器并注册到 ServiceRegistry - CockpitPlugin 演示服务发现:initialize() 中通过 PluginContext 查找服务 ## 代码清理 - Plugins/opmap:~280 行死代码(waypointsetting 100行注释块/tilematrix 54行/等27个文件) - Plugins/MavLinkNode:~200 行 GBK 乱码注释翻译为 UTF-8 + 12 行注释死代码 - Plugins/ToolsUI:~222 行死代码(ECU.cpp 82行/INS.cpp 113行/Parse/ToolsUI 等) - StatusUI/Setting/MissionUI:~65 行注释死代码 - Cockpit/leftladder.cpp:10 处 GBK 乱码翻译为中文 - 清理头文件注释掉的 #include(19 处)、空 if-else 分支、注释变量声明 ## 编译验证 - [100%] Built target GCS 零错误 - 运行时 timeout 3s 正常退出,无崩溃
136 lines
2.8 KiB
C++
136 lines
2.8 KiB
C++
#ifndef PARAMETERPROCESS_H
|
||
#define PARAMETERPROCESS_H
|
||
|
||
#include <QObject>
|
||
|
||
#include "QDebug"
|
||
#include "QThread"
|
||
#include "mavlink.h"
|
||
#include "QTimer"
|
||
#include "QTime"
|
||
#include <QtEndian>
|
||
|
||
#include "ThreadTemplet.h"
|
||
|
||
#ifdef QtMavlinkNode
|
||
#include <mavlinknodeglobal.h>
|
||
class MAVLINKNODESHARED_EXPORT ParameterProcess : public ThreadTemplet{
|
||
#else
|
||
class ParameterProcess : public ThreadTemplet
|
||
{
|
||
#endif
|
||
Q_OBJECT
|
||
|
||
|
||
enum _modetype {
|
||
Nop_Mode = 0,
|
||
RecieveMode,
|
||
TransmitMode
|
||
};
|
||
|
||
enum _readtype {
|
||
All = 0,
|
||
One = 1
|
||
};
|
||
|
||
|
||
typedef struct {
|
||
bool isWaitingforValue;
|
||
|
||
_readtype type;
|
||
|
||
}_recieve;
|
||
|
||
typedef struct {
|
||
uint32_t count;
|
||
|
||
bool isWaitingforValue;
|
||
}_transmit;
|
||
|
||
typedef struct
|
||
{
|
||
_recieve recieve;
|
||
_transmit transmit;
|
||
|
||
|
||
_modetype m_Mode;
|
||
|
||
}_parameter_;
|
||
|
||
|
||
public:
|
||
explicit ParameterProcess(QObject *parent = nullptr);
|
||
~ParameterProcess();
|
||
|
||
_parameter_ status;
|
||
|
||
|
||
public slots:
|
||
|
||
|
||
//读取和写入指令
|
||
void ReadCmd(uint8_t m_sysid, uint8_t m_compid, uint8_t type);
|
||
void WriteCmd(uint8_t m_sysid, uint8_t m_compid , const char *id, uint8_t type, float value);
|
||
void WriteCmd2(uint8_t m_sysid, uint8_t m_compid ,QVariant id,QVariant type,QVariant value);
|
||
|
||
|
||
//线程对外接口
|
||
|
||
void Parse(mavlink_message_t msg);
|
||
|
||
QVariant setvalue(mavlink_param_value_t param);
|
||
float getvalue(QVariant param,uint8_t type);
|
||
|
||
QVariant settype(mavlink_param_value_t param);
|
||
uint8_t gettype(QVariant type);
|
||
|
||
QString setid(char *id);
|
||
char * getid(QString id);
|
||
|
||
|
||
private slots:
|
||
//线程私有接口
|
||
void process();
|
||
|
||
//状态机
|
||
void ReadStateMachine(void);
|
||
void WriteStateMachine(void);
|
||
|
||
|
||
//所有的相关函数
|
||
void set(const char *id, uint8_t type, float value);
|
||
void value(float value);
|
||
void ext_ack(float value);
|
||
void ext_set(const char *id, uint8_t type, float value);
|
||
void ext_value(float value);
|
||
void request_list(void);
|
||
void request_read(const char *id, int16_t index);
|
||
|
||
signals:
|
||
void RecieveValue(mavlink_message_t msg);
|
||
|
||
private:
|
||
//超时时间(ms)
|
||
int readTimeout = 3000;
|
||
int sendTimeout = 3000;
|
||
|
||
mavlink_param_set_t param_set;//
|
||
mavlink_param_union_t param_union;
|
||
mavlink_param_value_t param_value;//
|
||
mavlink_param_map_rc_t param_map;
|
||
mavlink_param_ext_ack_t param_ext_ack;
|
||
mavlink_param_ext_set_t param_ext_set;
|
||
mavlink_param_ext_value_t param_ext_value;
|
||
mavlink_param_request_list_t param_request_list;//
|
||
mavlink_param_request_read_t param_request_read;//
|
||
mavlink_param_union_double_t param_union_double;
|
||
mavlink_param_ext_request_list_t param_ext_request_list;
|
||
mavlink_param_ext_request_read_t param_ext_request_read;
|
||
|
||
QList<int> indexlist;
|
||
QList<int> lostIndex;
|
||
|
||
};
|
||
|
||
#endif // PARAMETERPROCESS_H
|