2026-05-27 12:23:23 +10:00
|
|
|
/********************************************************************************
|
|
|
|
|
* *
|
|
|
|
|
* This file is part of IfcOpenShell. *
|
|
|
|
|
* *
|
|
|
|
|
* IfcOpenShell is free software: you can redistribute it and/or modify *
|
|
|
|
|
* it under the terms of the Lesser GNU General Public License as published by *
|
|
|
|
|
* the Free Software Foundation, either version 3.0 of the License, or *
|
|
|
|
|
* (at your option) any later version. *
|
|
|
|
|
* *
|
|
|
|
|
* IfcOpenShell is distributed in the hope that it will be useful, *
|
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
|
|
|
|
|
* Lesser GNU General Public License for more details. *
|
|
|
|
|
* *
|
|
|
|
|
* You should have received a copy of the Lesser GNU General Public License *
|
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>. *
|
|
|
|
|
* *
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
|
|
#include <QApplication>
|
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
|
#include <QMainWindow>
|
|
|
|
|
#include <QWidget>
|
|
|
|
|
#include <QVBoxLayout>
|
|
|
|
|
|
2026-06-05 08:58:45 +10:00
|
|
|
#include "Log.h"
|
|
|
|
|
#include "LogQt.h"
|
2026-06-04 11:11:14 +10:00
|
|
|
#include "ViewportWindow.h"
|
2026-05-27 12:23:23 +10:00
|
|
|
|
|
|
|
|
// Stage-1 driver: opens a single window with the wgpu viewport embedded,
|
|
|
|
|
// clears to background colour, and exits on close. The shape mirrors
|
|
|
|
|
// ifcviewer-minimal so subsequent stages can grow this into a full
|
|
|
|
|
// benchmark-comparable binary.
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
|
|
|
QApplication app(argc, argv);
|
2026-06-04 11:11:14 +10:00
|
|
|
app.setApplicationName("IfcViewerMinimal");
|
2026-05-27 12:23:23 +10:00
|
|
|
app.setOrganizationName("IfcOpenShell");
|
|
|
|
|
|
|
|
|
|
QCommandLineParser parser;
|
|
|
|
|
parser.setApplicationDescription(
|
2026-05-27 13:33:19 +10:00
|
|
|
"IfcOpenShell minimal wgpu IFC viewer");
|
2026-05-27 12:23:23 +10:00
|
|
|
parser.addHelpOption();
|
2026-05-27 12:48:03 +10:00
|
|
|
parser.addPositionalArgument("files",
|
|
|
|
|
"Sidecar (.ifcview) files to load. Stem-based: foo.ifc resolves to foo.ifcview.",
|
|
|
|
|
"[files...]");
|
2026-05-27 13:33:19 +10:00
|
|
|
parser.addOption({{"s", "screenshot"},
|
|
|
|
|
"Render one frame, save to PATH as PNG, exit.", "path"});
|
2026-05-27 14:14:40 +10:00
|
|
|
parser.addOption({{"b", "benchmark"},
|
|
|
|
|
"Render N frames (yaw-sweeping the camera), print stats, exit.", "frames"});
|
2026-05-27 14:58:18 +10:00
|
|
|
parser.addOption({{"c", "camera"},
|
|
|
|
|
"Set camera as tx,ty,tz,dist,yaw,pitch (same format as IfcViewerMinimal).",
|
|
|
|
|
"params"});
|
2026-05-27 19:46:13 +10:00
|
|
|
parser.addOption({"no-hiz",
|
|
|
|
|
"Disable HiZ occlusion culling for perf diagnostics."});
|
2026-05-27 21:05:38 +10:00
|
|
|
parser.addOption({"web-limits",
|
|
|
|
|
"Request the WebGPU mandatory floor limits (128MB max storage binding) "
|
|
|
|
|
"instead of the adapter's actual max. Use to verify scenes fit through "
|
|
|
|
|
"browser constraints."});
|
2026-05-27 12:23:23 +10:00
|
|
|
parser.process(app);
|
|
|
|
|
|
2026-06-04 11:11:14 +10:00
|
|
|
auto* viewport = new ViewportWindow;
|
2026-05-27 12:23:23 +10:00
|
|
|
viewport->resize(1280, 800);
|
2026-05-28 09:15:53 +10:00
|
|
|
if (parser.isSet("no-hiz")) viewport->hiz_enabled_ = false;
|
|
|
|
|
if (parser.isSet("web-limits")) viewport->web_limits_ = true;
|
2026-05-27 12:23:23 +10:00
|
|
|
|
|
|
|
|
QWidget* container = QWidget::createWindowContainer(viewport);
|
|
|
|
|
container->setMinimumSize(320, 240);
|
|
|
|
|
|
|
|
|
|
QMainWindow main_window;
|
2026-05-27 12:48:03 +10:00
|
|
|
main_window.setWindowTitle("IfcViewer (wgpu) — stage 2");
|
2026-05-27 12:23:23 +10:00
|
|
|
main_window.setCentralWidget(container);
|
|
|
|
|
main_window.resize(1280, 800);
|
|
|
|
|
main_window.show();
|
|
|
|
|
|
2026-05-27 12:48:03 +10:00
|
|
|
// Queue sidecars; they're loaded after wgpu init completes in
|
|
|
|
|
// exposeEvent. Ordering matches the command line.
|
|
|
|
|
for (const QString& path : parser.positionalArguments()) {
|
|
|
|
|
viewport->queueLoadSidecar(path);
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-27 14:58:18 +10:00
|
|
|
if (parser.isSet("camera")) {
|
|
|
|
|
const QStringList parts = parser.value("camera").split(',');
|
|
|
|
|
if (parts.size() == 6) {
|
|
|
|
|
bool ok = true;
|
|
|
|
|
float v[6];
|
|
|
|
|
for (int i = 0; i < 6 && ok; ++i) v[i] = parts[i].toFloat(&ok);
|
|
|
|
|
if (ok) {
|
|
|
|
|
viewport->setCamera(v[0], v[1], v[2], v[3], v[4], v[5]);
|
|
|
|
|
} else {
|
2026-06-05 08:58:45 +10:00
|
|
|
Log::warn() << "--camera: failed to parse "
|
|
|
|
|
<< parser.value("camera");
|
2026-05-27 14:58:18 +10:00
|
|
|
}
|
|
|
|
|
} else {
|
2026-06-05 08:58:45 +10:00
|
|
|
Log::warn() << "--camera: expected 6 comma-separated floats, got "
|
|
|
|
|
<< parts.size();
|
2026-05-27 14:58:18 +10:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-05-27 13:33:19 +10:00
|
|
|
if (parser.isSet("screenshot")) {
|
|
|
|
|
viewport->captureNextFrameToPng(parser.value("screenshot"),
|
|
|
|
|
/*quit_after=*/true);
|
|
|
|
|
}
|
2026-05-27 14:14:40 +10:00
|
|
|
if (parser.isSet("benchmark")) {
|
|
|
|
|
viewport->setBenchmarkFrames(parser.value("benchmark").toInt());
|
|
|
|
|
}
|
2026-05-27 13:33:19 +10:00
|
|
|
|
2026-05-27 12:23:23 +10:00
|
|
|
return app.exec();
|
|
|
|
|
}
|