2014-06-04 14:36:43 +00:00
|
|
|
/****************************************************************************
|
|
|
|
**
|
|
|
|
** Copyright (C) 2014 Klaralvdalens Datakonsult AB (KDAB).
|
|
|
|
** Contact: http://www.qt-project.org/legal
|
|
|
|
**
|
|
|
|
** This file is part of the Qt3D module of the Qt Toolkit.
|
|
|
|
**
|
|
|
|
** $QT_BEGIN_LICENSE:LGPL$
|
|
|
|
** Commercial License Usage
|
|
|
|
** Licensees holding valid commercial Qt licenses may use this file in
|
|
|
|
** accordance with the commercial license agreement provided with the
|
|
|
|
** Software or, alternatively, in accordance with the terms contained in
|
|
|
|
** a written agreement between you and Digia. For licensing terms and
|
|
|
|
** conditions see http://qt.digia.com/licensing. For further information
|
|
|
|
** use the contact form at http://qt.digia.com/contact-us.
|
|
|
|
**
|
|
|
|
** GNU Lesser General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU Lesser
|
|
|
|
** General Public License version 2.1 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.LGPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU Lesser General Public License version 2.1 requirements
|
|
|
|
** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html.
|
|
|
|
**
|
|
|
|
** In addition, as a special exception, Digia gives you certain additional
|
|
|
|
** rights. These rights are described in the Digia Qt LGPL Exception
|
|
|
|
** version 1.1, included in the file LGPL_EXCEPTION.txt in this package.
|
|
|
|
**
|
|
|
|
** GNU General Public License Usage
|
|
|
|
** Alternatively, this file may be used under the terms of the GNU
|
|
|
|
** General Public License version 3.0 as published by the Free Software
|
|
|
|
** Foundation and appearing in the file LICENSE.GPL included in the
|
|
|
|
** packaging of this file. Please review the following information to
|
|
|
|
** ensure the GNU General Public License version 3.0 requirements will be
|
|
|
|
** met: http://www.gnu.org/copyleft/gpl.html.
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** $QT_END_LICENSE$
|
|
|
|
**
|
|
|
|
****************************************************************************/
|
|
|
|
|
2015-01-20 14:37:54 +00:00
|
|
|
#include <Qt3DCore/window.h>
|
2014-10-25 14:47:20 +00:00
|
|
|
#include <Qt3DRenderer/qrenderaspect.h>
|
2015-01-20 14:16:21 +00:00
|
|
|
#include <Qt3DInput/QInputAspect>
|
2015-01-20 14:37:54 +00:00
|
|
|
#include <Qt3DQuick/QQmlAspectEngine>
|
2014-06-04 14:36:43 +00:00
|
|
|
|
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QtQml>
|
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
|
|
|
QGuiApplication app(argc, argv);
|
|
|
|
|
|
|
|
QCommandLineParser parser;
|
|
|
|
parser.addPositionalArgument(QStringLiteral("meshfile"), QStringLiteral("The mesh file to load"));
|
|
|
|
parser.process(app);
|
|
|
|
|
|
|
|
const QStringList meshFileNames = parser.positionalArguments();
|
|
|
|
if (meshFileNames.length() == 0) {
|
|
|
|
std::cerr << "Please specify mesh files to load" << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2015-01-20 14:37:54 +00:00
|
|
|
Qt3D::Window view;
|
2014-10-31 10:35:45 +00:00
|
|
|
Qt3D::Quick::QQmlAspectEngine engine;
|
|
|
|
|
|
|
|
engine.aspectEngine()->registerAspect(new Qt3D::QRenderAspect());
|
2015-01-20 14:16:21 +00:00
|
|
|
engine.aspectEngine()->registerAspect(new Qt3D::QInputAspect());
|
2014-10-31 10:35:45 +00:00
|
|
|
engine.qmlEngine()->rootContext()->setContextProperty("_meshFileNames", meshFileNames);
|
|
|
|
QVariantMap data;
|
|
|
|
data.insert(QStringLiteral("surface"), QVariant::fromValue(static_cast<QSurface *>(&view)));
|
2015-01-20 14:53:29 +00:00
|
|
|
data.insert(QStringLiteral("eventSource"), QVariant::fromValue(&view));
|
2014-10-31 10:35:45 +00:00
|
|
|
engine.aspectEngine()->setData(data);
|
|
|
|
engine.aspectEngine()->initialize();
|
|
|
|
engine.setSource(QUrl("qrc:/main.qml"));
|
2014-06-04 14:36:43 +00:00
|
|
|
view.show();
|
|
|
|
|
|
|
|
return app.exec();
|
|
|
|
}
|