mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-14 07:49:35 -06:00
123 lines
4.3 KiB
C++
123 lines
4.3 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2016 *
|
|
* *
|
|
* 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. *
|
|
****************************************************************************************/
|
|
|
|
|
|
#define _USE_MATH_DEFINES
|
|
#include <math.h>
|
|
|
|
#include <modules/globebrowsing/rendering/clipmapglobe.h>
|
|
|
|
#include <modules/globebrowsing/rendering/clipmapgeometry.h>
|
|
|
|
// open space includes
|
|
#include <openspace/engine/openspaceengine.h>
|
|
#include <openspace/rendering/renderengine.h>
|
|
#include <openspace/util/spicemanager.h>
|
|
#include <openspace/scene/scenegraphnode.h>
|
|
|
|
// ghoul includes
|
|
#include <ghoul/misc/assert.h>
|
|
|
|
|
|
namespace {
|
|
const std::string _loggerCat = "ClipMapGlobe";
|
|
|
|
const std::string keyFrame = "Frame";
|
|
const std::string keyGeometry = "Geometry";
|
|
const std::string keyShading = "PerformShading";
|
|
|
|
const std::string keyBody = "Body";
|
|
}
|
|
|
|
namespace openspace {
|
|
ClipMapGlobe::ClipMapGlobe(const ghoul::Dictionary& dictionary)
|
|
: _rotation("rotation", "Rotation", 0, 0, 360)
|
|
{
|
|
std::string name;
|
|
bool success = dictionary.getValue(SceneGraphNode::KeyName, name);
|
|
ghoul_assert(success,
|
|
"ClipMapGlobe need the '" << SceneGraphNode::KeyName << "' be specified");
|
|
setName(name);
|
|
|
|
dictionary.getValue(keyFrame, _frame);
|
|
dictionary.getValue(keyBody, _target);
|
|
if (_target != "")
|
|
setBody(_target);
|
|
|
|
size_t numPatches = 5;
|
|
for (size_t i = 0; i < numPatches; i++)
|
|
{
|
|
_patches.push_back(LatLonPatch(
|
|
0.0,
|
|
0.0,
|
|
M_PI / (4 * pow(2, i)),
|
|
M_PI / (4 * pow(2, i))));
|
|
}
|
|
// Mainly for debugging purposes @AA
|
|
addProperty(_rotation);
|
|
|
|
// ---------
|
|
// init Renderer
|
|
auto patchRenderer = new ClipMapPatchRenderer();
|
|
_patchRenderer.reset(patchRenderer);
|
|
}
|
|
|
|
ClipMapGlobe::~ClipMapGlobe() {
|
|
}
|
|
|
|
bool ClipMapGlobe::initialize() {
|
|
return isReady();
|
|
}
|
|
|
|
bool ClipMapGlobe::deinitialize() {
|
|
return true;
|
|
}
|
|
|
|
bool ClipMapGlobe::isReady() const {
|
|
bool ready = true;
|
|
return ready;
|
|
}
|
|
|
|
void ClipMapGlobe::render(const RenderData& data)
|
|
{
|
|
// Set patches to follow camera
|
|
for (size_t i = 0; i < _patches.size(); i++)
|
|
{
|
|
_patches[i].setCenter(LatLon::fromCartesian(data.camera.position().dvec3()));
|
|
}
|
|
// render patches
|
|
for (size_t i = 0; i < _patches.size(); i++)
|
|
{
|
|
_patchRenderer->renderPatch(_patches[i], data, 6.3e6);
|
|
}
|
|
}
|
|
|
|
void ClipMapGlobe::update(const UpdateData& data) {
|
|
// set spice-orientation in accordance to timestamp
|
|
_stateMatrix = SpiceManager::ref().positionTransformMatrix(_frame, "GALACTIC", data.time);
|
|
_time = data.time;
|
|
}
|
|
|
|
} // namespace openspace
|