mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-08-11 18:16:40 +00:00
9daa5fe195
Stage 2 of the wgpu port. WgpuViewportWindow gains a queueLoadSidecar API (called from the minimal driver before init) and an applyCachedModel that runs after init: reads via SidecarCache::readSidecar, allocates four wgpu buffers per model (vertex storage, index, mesh-quant storage, instance storage), uploads via wgpuQueueWriteBuffer, retains a CPU mirror of the MeshInfo/InstanceCpu arrays for the cull and picking paths that arrive in later stages. MeshGpu (the per-mesh quantization basis) is derived from MeshInfo on the fly; InstanceGpu (transform + ids) is derived from InstanceCpu and uses the cached float transform — composing from placement_transformation against federation-stage matrices lands when stage 5 wires those. SidecarCache.cpp is compiled into IfcViewerWgpu directly: it's pure C++ with no Qt/OCCT/IFC-parse deps, so dragging in the IfcViewer static lib for one source file would be wasteful. This duplication goes away once src/ifcviewer-core/ is extracted (task #12). Verified on a synthesised v13 sidecar (4 verts, 6 indices, 1 mesh, 1 instance) and a multi-sidecar load that assigns successive model_ids. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
66 lines
3.0 KiB
C++
66 lines
3.0 KiB
C++
/********************************************************************************
|
|
* *
|
|
* 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>
|
|
|
|
#include "WgpuViewportWindow.h"
|
|
|
|
// 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);
|
|
app.setApplicationName("IfcViewerWgpuMinimal");
|
|
app.setOrganizationName("IfcOpenShell");
|
|
|
|
QCommandLineParser parser;
|
|
parser.setApplicationDescription(
|
|
"IfcOpenShell minimal wgpu IFC viewer (stage 2: sidecar load, no draw)");
|
|
parser.addHelpOption();
|
|
parser.addPositionalArgument("files",
|
|
"Sidecar (.ifcview) files to load. Stem-based: foo.ifc resolves to foo.ifcview.",
|
|
"[files...]");
|
|
parser.process(app);
|
|
|
|
auto* viewport = new WgpuViewportWindow;
|
|
viewport->resize(1280, 800);
|
|
|
|
QWidget* container = QWidget::createWindowContainer(viewport);
|
|
container->setMinimumSize(320, 240);
|
|
|
|
QMainWindow main_window;
|
|
main_window.setWindowTitle("IfcViewer (wgpu) — stage 2");
|
|
main_window.setCentralWidget(container);
|
|
main_window.resize(1280, 800);
|
|
main_window.show();
|
|
|
|
// 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);
|
|
}
|
|
|
|
return app.exec();
|
|
}
|