当前位置: 首页 > news >正文

Qt图形视图框架5-状态机框架

1. Qt状态机框架:原理、实现与应用

  • 1. Qt状态机框架:原理、实现与应用
    • 1.1. 状态机框架概述
    • 1.2. 状态机基本概念
    • 1.3. 状态机实现示例
      • 1.3.1. 状态机代码实现
      • 1.3.2. 状态图可视化
    • 1.4. 状态机高级特性
    • 1.5. 状态机框架应用场景
    • 1.6. 总结

状态机是现代软件开发中处理复杂交互逻辑的强大工具,尤其适用于事件驱动的系统。Qt框架提供了完善的状态机API,使开发者能够以图形化模型方式定义和管理应用程序状态,极大简化了复杂逻辑的实现。

1.1. 状态机框架概述

状态机框架为系统如何响应外部激励提供了图形化模型,通过定义系统可能进入的状态以及状态间的转换规则,直观表达系统行为。这种模型的核心优势在于:

  • 事件驱动响应:系统行为不仅依赖当前事件,还与历史状态相关
  • 分层结构设计:状态可以嵌套,形成层次化状态图
  • 信号驱动转换:与Qt元对象系统深度集成,状态转换可由信号触发
  • 异步执行机制:作为应用程序事件循环的一部分运行

1.2. 状态机基本概念

  1. 状态(State):系统在某一时刻的特定条件或模式
  2. 转换(Transition):状态之间的切换规则
  3. 事件(Event):触发状态转换的外部激励
  4. 初始状态:状态机启动后自动进入的状态
  5. 终止状态:导致状态机停止运行的特殊状态

1.3. 状态机实现示例

下面通过一个简单示例演示如何使用Qt状态机框架实现一个由按钮控制的三状态循环系统。

1.3.1. 状态机代码实现

#include <QApplication>
#include <QPushButton>
#include <QStateMachine>
#include <QState>
#include <QFinalState>int main(int argc, char *argv[])
{QApplication a(argc, argv);// 创建按钮和状态机QPushButton button("Click me");button.show();QStateMachine machine;// 创建三个状态QState *s1 = new QState(&machine);QState *s2 = new QState(&machine);QState *s3 = new QState(&machine);// 为每个状态设置按钮文本属性s1->assignProperty(&button, "text", "State 1");s2->assignProperty(&button, "text", "State 2");s3->assignProperty(&button, "text", "State 3");// 定义状态转换(循环切换)s1->addTransition(&button, &QPushButton::clicked, s2);s2->addTransition(&button, &QPushButton::clicked, s3);s3->addTransition(&button, &QPushButton::clicked, s1);// 设置初始状态machine.setInitialState(s1);// 启动状态机machine.start();return a.exec();
}

1.3.2. 状态图可视化

    s1 ────(button.clicked)────► s2▲                          ││                          │└────(button.clicked)─────┘││└───(button.clicked)────► s3│└───────────────────┘

1.4. 状态机高级特性

  1. 状态进入/退出事件

状态机提供了entered()exited()信号,可用于在状态变化时执行特定操作:

// 在进入s3状态时最小化按钮
QObject::connect(s3, &QState::entered, &button, &QPushButton::showMinimized);// 在退出s2状态时打印日志
QObject::connect(s2, &QState::exited, [](){qDebug() << "Exiting state s2";
});
  1. 终止状态设置

若需状态机在完成特定任务后自动停止,可设置终止状态:

QFinalState *finalState = new QFinalState(&machine);
s3->addTransition(&button, &QPushButton::clicked, finalState);// 连接finished信号处理状态机停止事件
QObject::connect(&machine, &QStateMachine::finished, &a, &QApplication::quit);
  1. 分层状态设计

状态可以嵌套形成层次结构,子状态共享父状态的属性:

QState *parentState = new QState(&machine);
QState *childState1 = new QState(parentState);
QState *childState2 = new QState(parentState);parentState->setInitialState(childState1);

下面看一个示例,基于Qt状态机框架实现的打印机状态管理系统示例。这个示例展示了如何使用状态嵌套来管理打印机的各种操作模式,包括待机、打印和维护状态,以及打印过程中的子状态。

  1. 状态层次结构

    • 父状态:PrinterOperation
      • 子状态:IdlePrintingMaintenance
      • 子子状态:HeatingBedExtruding(属于Printing状态)
  2. 属性共享

    • 所有子状态自动继承父状态的属性(如温度设置、打印精度)
    • 特定状态可覆盖父状态的属性值(如加热和挤出状态的温度不同)
  3. 状态转换逻辑

    • 通过信号和槽机制触发状态转换
    • 打印过程自动从加热床状态过渡到挤出材料状态,最后回到待机状态
  4. 状态进入/退出事件

    • 在状态转换时执行相应的打印机操作(如开始/停止打印、加热床等)
  5. 可视化界面

    • 显示当前打印机状态
    • 通过按钮控制打印机操作

这个示例展示了如何使用Qt状态机框架的嵌套状态功能来管理复杂的设备操作流程,同时保持代码的模块化和可维护性。

#include <QApplication>
#include <QStateMachine>
#include <QState>
#include <QFinalState>
#include <QPushButton>
#include <QLabel>
#include <QVBoxLayout>
#include <QWidget>
#include <QDebug>
#include <QObject>
#include <QTimer>// 打印机设备模拟类class Printer : public QObject {Q_OBJECTQ_PROPERTY(int temperature READ temperature WRITE setTemperature NOTIFY temperatureChanged)Q_PROPERTY(double printQuality READ printQuality WRITE setPrintQuality NOTIFY printQualityChanged)Q_PROPERTY(bool heating READ isHeating WRITE setHeating NOTIFY heatingChanged)Q_PROPERTY(bool extruding READ isExtruding WRITE setExtruding NOTIFY extrudingChanged)public:explicit Printer(QObject* parent = nullptr) : QObject(parent),m_temperature(25), m_printQuality(100), m_heating(false), m_extruding(false) {}int temperature() const { return m_temperature; }double printQuality() const { return m_printQuality; }bool isHeating() const { return m_heating; }bool isExtruding() const { return m_extruding; }public slots:void setTemperature(int temp) {if (m_temperature != temp) {m_temperature = temp;emit temperatureChanged(temp);}}void setPrintQuality(double quality) {if (m_printQuality != quality) {m_printQuality = quality;emit printQualityChanged(quality);}}void setHeating(bool heating) {if (m_heating != heating) {m_heating = heating;emit heatingChanged(heating);}}void setExtruding(bool extruding) {if (m_extruding != extruding) {m_extruding = extruding;emit extrudingChanged(extruding);}}// 模拟打印机操作void startPrinting() { qDebug() << "Starting printing process..."; }void stopPrinting() { qDebug() << "Printing stopped."; }void startMaintenance() { qDebug() << "Starting maintenance..."; }void finishMaintenance() { qDebug() << "Maintenance completed."; }void heatBed() { qDebug() << "Heating bed to printing temperature..."; }void extrudeMaterial() { qDebug() << "Extruding material..."; }signals:void temperatureChanged(int temp);void printQualityChanged(double quality);void heatingChanged(bool heating);void extrudingChanged(bool extruding);void printRequested();void maintenanceRequested();void cancelRequested();void bedHeated();void materialExtruded();private:int m_temperature;         // 温度double m_printQuality;     // 打印质量bool m_heating;            // 是否正在加热bool m_extruding;          // 是否正在挤出材料};int main(int argc, char* argv[]) {QApplication a(argc, argv);// 创建主窗口和布局QWidget window;window.setWindowTitle("3D Printer State Machine");QVBoxLayout* layout = new QVBoxLayout(&window);// 创建打印机对象Printer printer;// 创建状态机QStateMachine machine;// 创建父状态: 打印机操作QState* printerOperation = new QState(&machine);// 创建子状态QState* idleState = new QState(printerOperation);QState* printingState = new QState(printerOperation);QState* maintenanceState = new QState(printerOperation);// 在打印状态下创建子子状态QState* heatingBedState = new QState(printingState);QState* extrudingState = new QState(printingState);// 设置初始子状态printerOperation->setInitialState(idleState);printingState->setInitialState(heatingBedState);// 定义状态属性idleState->assignProperty(&printer, "temperature", 25);idleState->assignProperty(&printer, "heating", false);idleState->assignProperty(&printer, "extruding", false);heatingBedState->assignProperty(&printer, "temperature", 60);heatingBedState->assignProperty(&printer, "heating", true);extrudingState->assignProperty(&printer, "temperature", 200);extrudingState->assignProperty(&printer, "heating", true);extrudingState->assignProperty(&printer, "extruding", true);// 状态转换// 待机 -> 打印idleState->addTransition(&printer, &Printer::printRequested, printingState);// 待机 -> 维护idleState->addTransition(&printer, &Printer::maintenanceRequested, maintenanceState);// 打印 -> 待机printingState->addTransition(&printer, &Printer::cancelRequested, idleState);// 维护 -> 待机maintenanceState->addTransition(&printer, &Printer::cancelRequested, idleState);// 打印状态内部转换heatingBedState->addTransition(&printer, &Printer::bedHeated, extrudingState);extrudingState->addTransition(&printer, &Printer::materialExtruded, idleState);// 状态进入事件处理QObject::connect(idleState, &QState::entered, &printer, &Printer::stopPrinting);QObject::connect(printingState, &QState::entered, &printer, &Printer::startPrinting);QObject::connect(maintenanceState, &QState::entered, &printer, &Printer::startMaintenance);QObject::connect(maintenanceState, &QState::exited, &printer, &Printer::finishMaintenance);QObject::connect(heatingBedState, &QState::entered, &printer, &Printer::heatBed);QObject::connect(extrudingState, &QState::entered, &printer, &Printer::extrudeMaterial);// 模拟打印完成QTimer::singleShot(5000, [&printer]() {qDebug() << "Bed heated to target temperature";printer.setHeating(false);emit printer.bedHeated();});QTimer::singleShot(8000, [&printer]() {qDebug() << "Printing completed";printer.setExtruding(false);emit printer.materialExtruded();});// 设置主状态机的初始状态machine.setInitialState(printerOperation);// 启动状态机machine.start();// 创建UI控件QLabel* statusLabel = new QLabel("Printer Status: Idle");layout->addWidget(statusLabel);QPushButton* printButton = new QPushButton("Start Printing");QPushButton* maintenanceButton = new QPushButton("Start Maintenance");QPushButton* cancelButton = new QPushButton("Cancel");layout->addWidget(printButton);layout->addWidget(maintenanceButton);layout->addWidget(cancelButton);// 连接按钮到打印机信号QObject::connect(printButton, &QPushButton::clicked, &printer, &Printer::printRequested);QObject::connect(maintenanceButton, &QPushButton::clicked, &printer, &Printer::maintenanceRequested);QObject::connect(cancelButton, &QPushButton::clicked, &printer, &Printer::cancelRequested);// 显示状态变化QObject::connect(idleState, &QState::entered, [statusLabel]() {statusLabel->setText("Printer Status: Idle");});QObject::connect(printingState, &QState::entered, [statusLabel]() {statusLabel->setText("Printer Status: Printing");});QObject::connect(maintenanceState, &QState::entered, [statusLabel]() {statusLabel->setText("Printer Status: Maintenance");});QObject::connect(heatingBedState, &QState::entered, [statusLabel]() {statusLabel->setText("Printer Status: Heating Bed");});QObject::connect(extrudingState, &QState::entered, [statusLabel]() {statusLabel->setText("Printer Status: Extruding Material");});// 显示窗口window.show();return a.exec();
}#include "main.moc"

1.5. 状态机框架应用场景

  1. 用户界面状态管理:管理复杂界面的不同显示模式
  2. 游戏逻辑控制:实现游戏角色状态、关卡转换等
  3. 通信协议实现:处理网络协议中的各种状态转换
  4. 工作流引擎:定义和执行复杂业务流程

1.6. 总结

Qt状态机框架提供了一种直观且高效的方式来管理事件驱动系统中的复杂状态逻辑。通过图形化模型表达系统行为,开发者可以更清晰地设计和实现复杂交互逻辑,同时提高代码的可维护性和可测试性。

状态机框架的核心优势在于其与Qt元对象系统的深度集成,允许状态转换直接由信号触发,无缝融入Qt应用程序的事件循环体系。通过合理运用分层状态、信号连接和属性分配等机制,可以构建出既强大又灵活的应用程序状态管理系统。


文章转载自:
http://acathisia.sxnf.com.cn
http://blintz.sxnf.com.cn
http://bough.sxnf.com.cn
http://choreographist.sxnf.com.cn
http://assertive.sxnf.com.cn
http://celesta.sxnf.com.cn
http://anteprohibition.sxnf.com.cn
http://bedtiime.sxnf.com.cn
http://chainwale.sxnf.com.cn
http://bestially.sxnf.com.cn
http://autocoherer.sxnf.com.cn
http://autistic.sxnf.com.cn
http://busload.sxnf.com.cn
http://bivouacked.sxnf.com.cn
http://automat.sxnf.com.cn
http://behave.sxnf.com.cn
http://chanel.sxnf.com.cn
http://ambrose.sxnf.com.cn
http://asphyxia.sxnf.com.cn
http://activise.sxnf.com.cn
http://baccalaureate.sxnf.com.cn
http://brabanconne.sxnf.com.cn
http://cardioscope.sxnf.com.cn
http://cardiotoxic.sxnf.com.cn
http://cathodograph.sxnf.com.cn
http://acupuncture.sxnf.com.cn
http://beeline.sxnf.com.cn
http://benmost.sxnf.com.cn
http://appendicular.sxnf.com.cn
http://alphabetical.sxnf.com.cn
http://www.dtcms.com/a/281690.html

相关文章:

  • Springboot儿童认知图文辅助系统6yhkv(程序+源码+数据库+调试部署+开发环境)带论文文档1万字以上,文末可获取,系统界面在最后面。
  • 再见吧,Windows自带记事本,这个轻量级文本编辑器太香了
  • 基于mybatis的基础操作的思路
  • C++-linux系统编程 8.进程(二)exec函数族详解
  • 终端安全管理系统为什么需要使用,企业需要的桌面管理软件
  • X 射线探伤证考试核心:辐射安全基础知识点梳理
  • golang二级缓存示例
  • HC165并转串
  • js分支语句和循环语句
  • 如何写一份有效的技术简历?
  • vscode输出中文乱码问题的解决
  • QTableView鼠标双击先触发单击信号
  • Vue 常用的 ESLint 规则集
  • resources为什么是类的根目录
  • Linux 基本操作与服务器部署
  • 【高等数学】第三章 微分中值定理与导数的应用——第一节 不定积分的概念与性质
  • Android 图片压缩
  • 21.映射字典的值
  • 【强化学习】Reinforcement Learning基础概述
  • 如何进行 Docker 数据目录迁移
  • 三轴云台之深度学习算法篇
  • vscode配置运行完整C代码项目
  • QGIS新手教程9:字段计算器进阶用法与批量处理技巧
  • onecode 3.0 微内核引擎 基础注解驱动的速查手册(服务治理及通讯)
  • Altium Designer(AD)25软件下载及安装教程(7.9)
  • Axios方法完成图书管理页面完整版
  • Redis Desktop Manager(RDM)下载与安装使用教程
  • JavaScript中关于环境对象的拓展
  • 【Qt】 设计模式
  • Docker 镜像推送至 Coding 制品仓库超时问题排查与解决