Files
IfcOpenShell/src/ifcviewer-full/SessionState.cpp
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

173 lines
6.0 KiB
C++
Raw Normal View History

2026-05-07 17:10:04 +10:00
// This file was generated with the assistance of an AI coding tool.
/********************************************************************************
* *
* 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 "SessionState.h"
2026-05-15 17:08:08 +10:00
#include "ElementRegistry.h"
2026-05-07 17:10:04 +10:00
#include "../ifcviewer/Federation.h"
2026-05-15 17:08:08 +10:00
#include "../ifcviewer/SceneLoader.h"
2026-05-07 17:10:04 +10:00
2026-05-15 07:22:31 +10:00
namespace ifcviewerfull {
2026-05-07 17:10:04 +10:00
SessionState::SessionState(QObject* parent)
: QObject(parent)
2026-05-15 17:08:08 +10:00
, federation_(new Federation(this))
, element_registry_(new ElementRegistry(this))
2026-05-07 17:10:04 +10:00
{
}
2026-05-15 17:08:08 +10:00
void SessionState::createLoader(ViewportWindow* viewport) {
Q_ASSERT(!loader_);
loader_ = new SceneLoader(viewport, this);
element_registry_->bindLoader(loader_);
auto format_elapsed = [](qint64 ms) {
return (ms >= 1000)
? QString::number(ms / 1000.0, 'f', 2) + " s"
: QString::number(ms) + " ms";
};
2026-05-16 17:04:23 +10:00
// Translate low-level loader events into session-level signals, status
// text, and progress so views don't need to subscribe to the loader.
2026-05-15 17:08:08 +10:00
connect(loader_, &SceneLoader::loadStarted, this,
[this](uint32_t, const QString& display_name) {
setStatusMessage("Loading", display_name);
2026-05-16 17:04:23 +10:00
beginProgress(display_name);
2026-05-15 17:08:08 +10:00
});
2026-05-16 17:04:23 +10:00
connect(loader_, &SceneLoader::progressChanged, this, &SessionState::setProgress);
2026-05-15 17:08:08 +10:00
connect(loader_, &SceneLoader::loadedFromSidecar, this,
[this, format_elapsed](uint32_t mid, qint64 elapsed_ms) {
setStatusMessage("Loaded",
QString("%1 from cache in %2")
.arg(loader_->displayName(mid))
.arg(format_elapsed(elapsed_ms)));
2026-05-16 17:04:23 +10:00
endProgress();
2026-05-15 17:08:08 +10:00
emit modelGeometryReady(mid);
});
connect(loader_, &SceneLoader::loadedFromStream, this,
[this, format_elapsed](uint32_t mid, qint64 elapsed_ms) {
setStatusMessage("Loaded",
QString("%1 streamed in %2")
.arg(loader_->displayName(mid))
.arg(format_elapsed(elapsed_ms)));
2026-05-16 17:04:23 +10:00
endProgress();
2026-05-15 17:08:08 +10:00
emit modelGeometryReady(mid);
2026-05-16 17:04:23 +10:00
emit modelGeometryStreamed(mid);
2026-05-15 17:08:08 +10:00
});
connect(loader_, &SceneLoader::loadCancelled, this, [this](uint32_t mid) {
setStatusMessage("Cancelled", loader_->displayName(mid));
2026-05-16 17:04:23 +10:00
endProgress();
2026-05-15 17:08:08 +10:00
});
connect(loader_, &SceneLoader::loadError, this,
[this](uint32_t, const QString& message) {
setStatusMessage("Error", message);
2026-05-16 17:04:23 +10:00
endProgress();
2026-05-15 17:08:08 +10:00
emit loadError(message);
});
connect(loader_, &SceneLoader::allLoadsFinished, this, [this]() {
setStatusMessage("Loaded", QString("%1 model(s)").arg(loader_->modelCount()));
});
2026-05-07 17:10:04 +10:00
}
void SessionState::setSelectedObjectId(uint32_t object_id) {
selected_object_id_ = object_id;
}
void SessionState::setStatusMessage(const QString& mode, const QString& detail) {
status_mode_ = mode;
status_detail_ = detail;
emit statusMessageChanged(status_mode_, status_detail_);
}
2026-05-16 17:04:23 +10:00
void SessionState::beginProgress(const QString& label) {
emit progressBegan(label);
}
void SessionState::setProgress(int percent) {
emit progressChanged(percent);
}
void SessionState::endProgress() {
emit progressEnded();
}
2026-05-07 17:10:04 +10:00
void SessionState::setModelMapping(const QString& fed_id, uint32_t model_id) {
fed_id_to_model_id_[fed_id] = model_id;
model_id_to_fed_id_[model_id] = fed_id;
}
void SessionState::removeModelMappingByFedId(const QString& fed_id) {
auto it = fed_id_to_model_id_.find(fed_id);
if (it == fed_id_to_model_id_.end()) return;
model_id_to_fed_id_.remove(it.value());
fed_id_to_model_id_.erase(it);
}
void SessionState::clearModelMappings() {
fed_id_to_model_id_.clear();
model_id_to_fed_id_.clear();
}
uint32_t SessionState::modelIdForFedId(const QString& fed_id) const {
return fed_id_to_model_id_.value(fed_id, 0);
}
QString SessionState::fedIdForModelId(uint32_t model_id) const {
return model_id_to_fed_id_.value(model_id);
}
QList<uint32_t> SessionState::modelIds() const {
return model_id_to_fed_id_.keys();
}
void SessionState::notifySelectionChanged() {
emit selectionChanged(selected_object_id_);
}
void SessionState::notifyModelsChanged() {
emit modelsChanged();
}
2026-05-15 17:08:08 +10:00
void SessionState::notifyFederationChanged() {
emit federationChanged();
2026-05-07 17:10:04 +10:00
}
void SessionState::notifyVisibilityChanged() {
emit visibilityChanged();
}
2026-05-15 17:08:08 +10:00
void SessionState::notifyModelGeometryReady(uint32_t model_id) {
emit modelGeometryReady(model_id);
}
2026-05-07 17:10:04 +10:00
void SessionState::notifyProjectOpened(const QString& path) {
emit projectOpened(path);
}
2026-05-09 07:11:58 +10:00
void SessionState::notifyProjectSaved(const QString& path) {
emit projectSaved(path);
}
2026-05-07 17:10:04 +10:00
void SessionState::notifyProjectReset() {
emit projectReset();
}
2026-05-15 07:22:31 +10:00
} // namespace ifcviewerfull