SCXML 신호등(동적, 위젯)
동적으로 로드된 상태 머신을 사용하여 신호등을 구현하는 위젯 기반 애플리케이션입니다.
신호등은 동적으로 로드된 상태 머신에서 상태의 활성 프로퍼티에 연결하는 방법을 보여줍니다.
UI는 Qt Widgets 를 사용하여 생성됩니다.
예제 실행하기
에서 예제를 실행하려면 Qt Creator에서 Welcome 모드를 열고 Examples 에서 예제를 선택합니다. 자세한 내용은 예제 빌드 및 실행하기를 참조하세요.
상태 머신 동적으로 로드하기
예제의 빌드 파일에 다음 줄을 추가하여 Qt SCXML 모듈에 연결합니다.
qmake를 사용하는 경우 .pro로:
QT += widgets scxml
cmake를 사용하는 경우 CMakeLists.txt에:
find_package(Qt6 REQUIRED COMPONENTS Core Gui Scxml Widgets) target_link_libraries(trafficlight-widgets-dynamic PRIVATE Qt6::Core Qt6::Gui Qt6::Scxml Qt6::Widgets )
trafficlight-widgets-dynamic.cpp에서 상태 머신을 동적으로 생성합니다:
#include "../trafficlight-common/trafficlight.h" #include <QtWidgets/qapplication.h> #include <QtCore/qiodevice.h> #include <QtCore/qtextstream.h> using namespace Qt::Literals::StringLiterals; int main(int argc, char **argv) { QApplication app(argc, argv); QScxmlStateMachine *machine = QScxmlStateMachine::fromFile(u":statemachine.scxml"_s); if (!machine->parseErrors().isEmpty()) { QTextStream errs(stderr, QIODevice::WriteOnly); const auto errors = machine->parseErrors(); for (const QScxmlError &error : errors) { errs << error.toString(); } return -1; }
그리고 인스턴스화합니다:
TrafficLight widget(machine); widget.show(); machine->setParent(&widget); machine->start(); return app.exec(); }
상태에 연결하기
SCXML 파일에서 빨간색, 노란색, 초록색 등 각 신호등에 대한 상태를 지정합니다. <onentry>
요소에서 상태를 입력할 때 전송할 이벤트와 이벤트를 전송하기 전 지연 시간(초)을 지정합니다. <transition>
요소에서는 target
속성에 지정된 상태로의 전환을 트리거하는 이벤트를 지정합니다:
<state id="red"> <onentry> <send event="startGoingGreen" delay="3s"/> </onentry> <transition event="startGoingGreen" target="redGoingGreen"/> </state> <state id="yellow" initial="greenGoingRed"> <state id="redGoingGreen"> <onentry> <send event="goGreen" delay="1s"/> </onentry> <transition event="goGreen" target="green"/> </state> <state id="greenGoingRed"> <onentry> <send event="goRed" delay="1s"/> </onentry> <transition event="goRed" target="red"/> </state> </state> <state id="green"> <onentry> <send event="startGoingRed" delay="3s"/> </onentry> <transition event="startGoingRed" target="greenGoingRed"/> </state>
다음과 같이 상태에 연결합니다:
machine->connectToState(u"red"_s, widget->redLight(), &LightWidget::switchLight); machine->connectToState(u"redGoingGreen"_s, widget->redLight(), &LightWidget::switchLight); machine->connectToState(u"yellow"_s, widget->yellowLight(), &LightWidget::switchLight); machine->connectToState(u"blinking"_s, widget->yellowLight(), &LightWidget::switchLight); machine->connectToState(u"green"_s, widget->greenLight(), &LightWidget::switchLight);
© 2025 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.