Files
OpenSpace/modules/space/rendering/renderableorbitalkepler.h
Adam Rohdin 4306387f69 Faster rendering for renderableOrbitalKepler (#3739)
* Faster rendering for renderableOrbitalKepler
- Computes relevant vertices on CPU rather than filtering all vertices on the GPU
- Removes geometry shader for trails rendering
- Changed GUI name of RenderingMode "Points+Trails" to "Points and Trails"
2025-07-09 11:33:27 +02:00

137 lines
6.1 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. *
****************************************************************************************/
#ifndef __OPENSPACE_MODULE_SPACE___RENDERABLEORBITALKEPLER___H__
#define __OPENSPACE_MODULE_SPACE___RENDERABLEORBITALKEPLER___H__
#include <openspace/rendering/renderable.h>
#include <modules/base/rendering/renderabletrail.h>
#include <modules/space/kepler.h>
#include <modules/space/translation/keplertranslation.h>
#include <openspace/properties/misc/stringproperty.h>
#include <openspace/properties/scalar/uintproperty.h>
#include <ghoul/glm.h>
#include <ghoul/misc/objectmanager.h>
#include <ghoul/opengl/programobject.h>
namespace openspace {
namespace documentation { struct Documentation; }
class RenderableOrbitalKepler : public Renderable {
public:
explicit RenderableOrbitalKepler(const ghoul::Dictionary& dictionary);
void initializeGL() override;
void deinitializeGL() override;
bool isReady() const override;
void update(const UpdateData& data) override;
void render(const RenderData& data, RendererTasks& rendererTask) override;
static documentation::Documentation Documentation();
private:
struct Appearance : properties::PropertyOwner {
Appearance();
/// Specifies the base color of the line/point
properties::Vec3Property color;
/// Line width for the line rendering part
properties::FloatProperty trailWidth;
/// Point size exponent for the point rendering part
properties::FloatProperty pointSizeExponent;
/// The option determining which rendering method to use
properties::BoolProperty enableMaxSize;
/// The option enables or disables Max Angular Size limit
properties::FloatProperty maxSize;
/// Max angular size between vector cameraToPoint and edge of the point
properties::OptionProperty renderingModes;
/// Specifies a multiplicative factor that fades out the trail line
properties::FloatProperty trailFade;
/// Specifies if the point outline should be enabled
properties::BoolProperty enableOutline;
/// Specifies the color of the point outline
properties::Vec3Property outlineColor;
/// Specifies how much if the point should be covered by the outline
properties::FloatProperty outlineWidth;
};
void updateBuffers();
void calculateSegmentsForPoints(const RenderData& data);
void calculateSegmentsForTrails(const RenderData& data);
bool _updateDataBuffersAtNextRender = false;
long long _numObjects = 0;
GLsizei _lineDrawCount = 0;
properties::UIntProperty _segmentQuality;
properties::UIntProperty _startRenderIdx;
properties::UIntProperty _sizeRender;
std::vector<GLint> _segmentSizeRaw;
std::vector<GLint> _startIndexPoints;
std::vector<GLint> _segmentSizePoints;
std::vector<GLint> _startIndexTrails;
std::vector<GLint> _segmentSizeTrails;
std::vector<kepler::Parameters> _parameters;
/// The layout of the VBOs
struct TrailVBOLayout {
float x = 0.f;
float y = 0.f;
float z = 0.f;
float time = 0.f;
double epoch = 0.0;
double period = 0.0;
};
/// The backend storage for the vertex buffer object containing all points
std::vector<TrailVBOLayout> _vertexBufferData;
GLuint _vertexArray = 0;
GLuint _vertexBuffer = 0;
ghoul::opengl::ProgramObject* _trailProgram = nullptr;
ghoul::opengl::ProgramObject* _pointProgram = nullptr;
properties::StringProperty _path;
properties::BoolProperty _contiguousMode;
kepler::Format _format;
RenderableOrbitalKepler::Appearance _appearance;
// Line cache
UniformCache(modelViewTransform, projectionTransform, trailFadeExponent,
colorFadeCutoffValue, inGameTime, color, opacity)
_uniformTrailCache;
// Point cache
UniformCache(modelTransform, viewTransform, projectionTransform,
cameraPositionWorld, cameraUpWorld, inGameTime, color,
pointSizeExponent, enableMaxSize, maxSize, enableOutline,
outlineColor, outlineWeight, opacity)
_uniformPointCache;
};
} // namespace openspace
#endif // __OPENSPACE_MODULE_SPACE___RENDERABLEORBITALKEPLER___H__