运行 来自 main 的 Urho3D 和 Qt
Running Urho3D and Qt from main
我正在将 Urho3D 引擎与 Qt 一起用于应用程序。问题是 Urho3D 和 QApplication 都需要来自 main() 的 运行。现在我在单独的进程中使用它,但 IPC 使它变得复杂。
有什么办法可以解决这个问题吗?谢谢
我的平台是 Urho3D 1.5、Qt 4.71 和 Windows 7 x64 和 VS2015 (C++)
我对c++和Urho3D都是新手,但我已经成功实现了。
简单的代码,还没有进一步测试:
awidget.h:
#ifndef AWIDGET_H
#define AWIDGET_H
#include <QWidget>
#include <QPushButton>
#include <Urho3D/Engine/Application.h>
class aWidget : public QWidget
{
Q_OBJECT
public:
explicit aWidget(QWidget *parent = 0)
{
QPushButton *button = new QPushButton(this);
connect(button, SIGNAL(clicked()), this, SLOT(pressed()));
}
public slots:
void pressed()
{
Urho3D::Context* context = new Urho3D::Context();
Urho3D::Application *application = new Urho3D::Application(context);
application->Run();
}
};
#endif // AWIDGET_H
main.cpp:
#include <QApplication>
#include <awidget.h>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
aWidget *widget = new aWidget();
widget->show();
return app.exec();
}
顺便说一下,我正在使用 Qt 5.9.0
所以答案很简单。通过调用
而不是 运行 QApplication
app->exec();
需要从主循环中手动定期调用它:
app->processEvents();
这将处理 Qt 使用的所有事件,并且 QApplication 将相应地做出响应。
示例:
#include <QApplication>
#include <awidget.h>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
bool shallrun = true;
aWidget *widget = new aWidget();
widget->show();
while (shallrun)
{
app->processEvents();
...
}
...
}
我正在将 Urho3D 引擎与 Qt 一起用于应用程序。问题是 Urho3D 和 QApplication 都需要来自 main() 的 运行。现在我在单独的进程中使用它,但 IPC 使它变得复杂。 有什么办法可以解决这个问题吗?谢谢
我的平台是 Urho3D 1.5、Qt 4.71 和 Windows 7 x64 和 VS2015 (C++)
我对c++和Urho3D都是新手,但我已经成功实现了。
简单的代码,还没有进一步测试:
awidget.h:
#ifndef AWIDGET_H
#define AWIDGET_H
#include <QWidget>
#include <QPushButton>
#include <Urho3D/Engine/Application.h>
class aWidget : public QWidget
{
Q_OBJECT
public:
explicit aWidget(QWidget *parent = 0)
{
QPushButton *button = new QPushButton(this);
connect(button, SIGNAL(clicked()), this, SLOT(pressed()));
}
public slots:
void pressed()
{
Urho3D::Context* context = new Urho3D::Context();
Urho3D::Application *application = new Urho3D::Application(context);
application->Run();
}
};
#endif // AWIDGET_H
main.cpp:
#include <QApplication>
#include <awidget.h>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
aWidget *widget = new aWidget();
widget->show();
return app.exec();
}
顺便说一下,我正在使用 Qt 5.9.0
所以答案很简单。通过调用
而不是 运行 QApplicationapp->exec();
需要从主循环中手动定期调用它:
app->processEvents();
这将处理 Qt 使用的所有事件,并且 QApplication 将相应地做出响应。 示例:
#include <QApplication>
#include <awidget.h>
int main(int argc, char* argv[])
{
QApplication app(argc, argv);
bool shallrun = true;
aWidget *widget = new aWidget();
widget->show();
while (shallrun)
{
app->processEvents();
...
}
...
}