Files
OpenSpace/modules/volume/tasks/generaterawvolumetask.cpp
2025-02-22 15:28:14 +01:00

187 lines
7.6 KiB
C++

/*****************************************************************************************
* *
* OpenSpace *
* *
* Copyright (c) 2014-2025 *
* *
* Permission is hereby granted, free of charge, to any person obtaining a copy of this *
* software and associated documentation files (the "Software"), to deal in the Software *
* without restriction, including without limitation the rights to use, copy, modify, *
* merge, publish, distribute, sublicense, and/or sell copies of the Software, and to *
* permit persons to whom the Software is furnished to do so, subject to the following *
* conditions: *
* *
* The above copyright notice and this permission notice shall be included in all copies *
* or substantial portions of the Software. *
* *
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, *
* INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A *
* PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT *
* HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF *
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE *
* OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. *
****************************************************************************************/
#include <modules/volume/tasks/generaterawvolumetask.h>
#include <modules/volume/rawvolume.h>
#include <modules/volume/rawvolumemetadata.h>
#include <modules/volume/rawvolumewriter.h>
#include <openspace/documentation/verifier.h>
#include <openspace/util/time.h>
#include <openspace/util/spicemanager.h>
#include <ghoul/filesystem/filesystem.h>
#include <ghoul/filesystem/file.h>
#include <ghoul/format.h>
#include <ghoul/logging/logmanager.h>
#include <ghoul/lua/luastate.h>
#include <ghoul/lua/lua_helper.h>
#include <ghoul/misc/dictionaryluaformatter.h>
#include <ghoul/misc/defer.h>
#include <filesystem>
#include <fstream>
namespace {
struct [[codegen::Dictionary(GenerateRawVolumeTask)]] Parameters {
// The Lua function used to compute the cell values
std::string valueFunction [[codegen::annotation("A Lua expression that returns a "
"function taking three numbers as arguments (x, y, z) and returning a "
"number")]];
// The raw volume file to export data to
std::string rawVolumeOutput [[codegen::annotation("A valid filepath")]];
// The lua dictionary file to export metadata to
std::string dictionaryOutput [[codegen::annotation("A valid filepath")]];
// The timestamp that is written to the metadata of this volume
std::string time;
// A vector representing the number of cells in each dimension
glm::ivec3 dimensions;
// A vector representing the lower bound of the domain
glm::dvec3 lowerDomainBound;
// A vector representing the upper bound of the domain
glm::dvec3 upperDomainBound;
};
#include "generaterawvolumetask_codegen.cpp"
} // namespace
namespace openspace::volume {
documentation::Documentation GenerateRawVolumeTask::Documentation() {
return codegen::doc<Parameters>("generate_raw_volume_task");
}
GenerateRawVolumeTask::GenerateRawVolumeTask(const ghoul::Dictionary& dictionary) {
const Parameters p = codegen::bake<Parameters>(dictionary);
_rawVolumeOutputPath = absPath(p.rawVolumeOutput);
_dictionaryOutputPath = absPath(p.dictionaryOutput);
_dimensions = p.dimensions;
_time = p.time;
_valueFunctionLua = p.valueFunction;
_lowerDomainBound = p.lowerDomainBound;
_upperDomainBound = p.upperDomainBound;
}
std::string GenerateRawVolumeTask::description() {
return std::format(
"Generate a raw volume with dimenstions: ({}, {}, {}). For each cell, set the "
"value by evaluating the lua function: `{}`, with three arguments (x, y, z) "
"ranging from ({}, {}, {}) to ({}, {}, {}). Write raw volume data into '{}' and "
"dictionary with metadata to '{}'",
_dimensions.x, _dimensions.y, _dimensions.z, _valueFunctionLua,
_lowerDomainBound.x, _lowerDomainBound.y, _lowerDomainBound.z,
_upperDomainBound.x, _upperDomainBound.y, _upperDomainBound.z,
_rawVolumeOutputPath, _dictionaryOutputPath
);
}
void GenerateRawVolumeTask::perform(const Task::ProgressCallback& progressCallback) {
// Spice kernel is required for time conversions.
// Todo: Make this dependency less hard coded.
SpiceManager::KernelHandle kernel = SpiceManager::ref().loadKernel(
absPath("${DATA}/assets/spice/naif0012.tls")
);
defer {
SpiceManager::ref().unloadKernel(kernel);
};
volume::RawVolume<float> rawVolume(_dimensions);
progressCallback(0.1f);
ghoul::lua::LuaState state;
ghoul::lua::runScript(state, _valueFunctionLua);
int functionReference = luaL_ref(state, LUA_REGISTRYINDEX);
glm::vec3 domainSize = _upperDomainBound - _lowerDomainBound;
float minVal = std::numeric_limits<float>::max();
float maxVal = std::numeric_limits<float>::min();
rawVolume.forEachVoxel([&](const glm::uvec3& cell, float) {
const glm::vec3 coord = _lowerDomainBound +
glm::vec3(cell) / glm::vec3(_dimensions) * domainSize;
lua_rawgeti(state, LUA_REGISTRYINDEX, functionReference);
lua_pushnumber(state, coord.x);
lua_pushnumber(state, coord.y);
lua_pushnumber(state, coord.z);
if (lua_pcall(state, 3, 1, 0) != LUA_OK) {
return;
}
const float value = static_cast<float>(luaL_checknumber(state, 1));
lua_pop(state, 1);
rawVolume.set(cell, value);
minVal = std::min(minVal, value);
maxVal = std::max(maxVal, value);
});
luaL_unref(state, LUA_REGISTRYINDEX, functionReference);
const std::filesystem::path directory = _rawVolumeOutputPath.parent_path();
if (!std::filesystem::is_directory(directory)) {
std::filesystem::create_directories(directory);
}
volume::RawVolumeWriter<float> writer(_rawVolumeOutputPath);
writer.write(rawVolume);
progressCallback(0.9f);
RawVolumeMetadata metadata;
metadata.time = Time::convertTime(_time);
metadata.dimensions = _dimensions;
metadata.hasDomainUnit = true;
metadata.domainUnit = "m";
metadata.hasValueUnit = true;
metadata.valueUnit = "K";
metadata.gridType = VolumeGridType::Cartesian;
metadata.hasDomainBounds = true;
metadata.lowerDomainBound = _lowerDomainBound;
metadata.upperDomainBound = _upperDomainBound;
metadata.hasValueRange = true;
metadata.minValue = minVal;
metadata.maxValue = maxVal;
const ghoul::Dictionary outputDictionary = metadata.dictionary();
const std::string metadataString = ghoul::formatLua(outputDictionary);
std::fstream f = std::fstream(_dictionaryOutputPath, std::ios::out);
f << "return " << metadataString;
progressCallback(1.f);
}
} // namespace openspace::volume