mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-25 21:48:41 -06:00
126 lines
4.8 KiB
C++
126 lines
4.8 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. *
|
|
****************************************************************************************/
|
|
|
|
#include <modules/globebrowsing/globes/chunklodglobe.h>
|
|
|
|
#include <modules/globebrowsing/meshes/basicgrid.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>
|
|
|
|
#define _USE_MATH_DEFINES
|
|
#include <math.h>
|
|
|
|
namespace {
|
|
const std::string _loggerCat = "ChunkLodGlobe";
|
|
}
|
|
|
|
namespace openspace {
|
|
|
|
const GeodeticPatch ChunkLodGlobe::LEFT_HEMISPHERE = GeodeticPatch(0, -M_PI/2, M_PI/2, M_PI/2);
|
|
const GeodeticPatch ChunkLodGlobe::RIGHT_HEMISPHERE = GeodeticPatch(0, M_PI/2, M_PI/2, M_PI/2);
|
|
|
|
|
|
ChunkLodGlobe::ChunkLodGlobe(
|
|
const Ellipsoid& ellipsoid,
|
|
std::shared_ptr<TileProviderManager> tileProviderManager)
|
|
: _ellipsoid(ellipsoid)
|
|
, _leftRoot(new ChunkNode(*this, LEFT_HEMISPHERE))
|
|
, _rightRoot(new ChunkNode(*this, RIGHT_HEMISPHERE))
|
|
, minSplitDepth(2)
|
|
, maxSplitDepth(22)
|
|
{
|
|
auto geometry = std::shared_ptr<BasicGrid>(new BasicGrid(
|
|
10,
|
|
10,
|
|
TriangleSoup::Positions::No,
|
|
TriangleSoup::TextureCoordinates::Yes,
|
|
TriangleSoup::Normals::No));
|
|
|
|
_patchRenderer.reset(new LatLonPatchRenderer(geometry, tileProviderManager));
|
|
_frustumCuller = std::shared_ptr<FrustumCuller>(new FrustumCuller());
|
|
}
|
|
|
|
ChunkLodGlobe::~ChunkLodGlobe() {
|
|
|
|
}
|
|
|
|
bool ChunkLodGlobe::initialize() {
|
|
return isReady();
|
|
}
|
|
|
|
bool ChunkLodGlobe::deinitialize() {
|
|
return true;
|
|
}
|
|
|
|
bool ChunkLodGlobe::isReady() const {
|
|
bool ready = true;
|
|
return ready;
|
|
}
|
|
|
|
LatLonPatchRenderer& ChunkLodGlobe::getPatchRenderer() {
|
|
return *_patchRenderer;
|
|
}
|
|
|
|
FrustumCuller& ChunkLodGlobe::getFrustumCuller() {
|
|
return *_frustumCuller;
|
|
}
|
|
|
|
void ChunkLodGlobe::render(const RenderData& data){
|
|
minDistToCamera = INFINITY;
|
|
ChunkNode::renderedPatches = 0;
|
|
|
|
|
|
ChunkIndex leftRootTileIndex = { 0, 0, 1 };
|
|
_leftRoot->render(data, leftRootTileIndex);
|
|
|
|
ChunkIndex rightRootTileIndex = { 1, 0, 1 };
|
|
_rightRoot->render(data, rightRootTileIndex);
|
|
|
|
//LDEBUG("min distnace to camera: " << minDistToCamera);
|
|
|
|
Vec3 cameraPos = data.camera.position().dvec3();
|
|
//LDEBUG("cam pos x: " << cameraPos.x << " y: " << cameraPos.y << " z: " << cameraPos.z);
|
|
|
|
//LDEBUG("ChunkNode count: " << ChunkNode::instanceCount);
|
|
//LDEBUG("RenderedPatches count: " << ChunkNode::renderedPatches);
|
|
}
|
|
|
|
void ChunkLodGlobe::update(const UpdateData& data) {
|
|
_patchRenderer->update();
|
|
}
|
|
|
|
const Ellipsoid& ChunkLodGlobe::ellipsoid() const
|
|
{
|
|
return _ellipsoid;
|
|
}
|
|
|
|
} // namespace openspace
|