osb/source/application/StarRenderer_opengl.hpp

253 lines
7.1 KiB
C++
Raw Normal View History

#pragma once
2023-06-20 04:33:09 +00:00
#include "StarTextureAtlas.hpp"
#include "StarRenderer.hpp"
#include "GL/glew.h"
namespace Star {
STAR_CLASS(OpenGlRenderer);
2023-06-20 04:33:09 +00:00
constexpr size_t FrameBufferCount = 1;
2023-06-20 04:33:09 +00:00
// OpenGL 2.0 implementation of Renderer. OpenGL context must be created and
// active during construction, destruction, and all method calls.
class OpenGlRenderer : public Renderer {
2023-06-20 04:33:09 +00:00
public:
OpenGlRenderer();
~OpenGlRenderer();
2023-06-20 04:33:09 +00:00
String rendererId() const override;
Vec2U screenSize() const override;
void loadConfig(Json const& config) override;
2023-06-29 19:55:41 +00:00
void loadEffectConfig(String const& name, Json const& effectConfig, StringMap<String> const& shaders) override;
2023-06-20 04:33:09 +00:00
void setEffectParameter(String const& parameterName, RenderEffectParameter const& parameter) override;
2024-03-19 14:53:34 +00:00
void setEffectTexture(String const& textureName, ImageView const& image) override;
2023-06-20 04:33:09 +00:00
void setScissorRect(Maybe<RectI> const& scissorRect) override;
2023-06-29 19:55:41 +00:00
bool switchEffectConfig(String const& name) override;
2023-06-20 04:33:09 +00:00
TexturePtr createTexture(Image const& texture, TextureAddressing addressing, TextureFiltering filtering) override;
void setSizeLimitEnabled(bool enabled) override;
void setMultiTexturingEnabled(bool enabled) override;
void setMultiSampling(unsigned multiSampling) override;
2023-06-20 04:33:09 +00:00
TextureGroupPtr createTextureGroup(TextureGroupSize size, TextureFiltering filtering) override;
RenderBufferPtr createRenderBuffer() override;
2023-06-29 18:34:10 +00:00
List<RenderPrimitive>& immediatePrimitives() override;
2023-06-20 04:33:09 +00:00
void render(RenderPrimitive primitive) override;
void renderBuffer(RenderBufferPtr const& renderBuffer, Mat3F const& transformation) override;
void flush(Mat3F const& transformation) override;
2023-06-20 04:33:09 +00:00
void setScreenSize(Vec2U screenSize);
void startFrame();
void finishFrame();
private:
struct GlTextureAtlasSet : public TextureAtlasSet<GLuint> {
public:
GlTextureAtlasSet(unsigned atlasNumCells);
GLuint createAtlasTexture(Vec2U const& size, PixelFormat pixelFormat) override;
void destroyAtlasTexture(GLuint const& glTexture) override;
void copyAtlasPixels(GLuint const& glTexture, Vec2U const& bottomLeft, Image const& image) override;
TextureFiltering textureFiltering;
};
struct GlTextureGroup : enable_shared_from_this<GlTextureGroup>, public TextureGroup {
GlTextureGroup(unsigned atlasNumCells);
~GlTextureGroup();
TextureFiltering filtering() const override;
TexturePtr create(Image const& texture) override;
GlTextureAtlasSet textureAtlasSet;
};
struct GlTexture : public Texture {
virtual GLuint glTextureId() const = 0;
virtual Vec2U glTextureSize() const = 0;
virtual Vec2U glTextureCoordinateOffset() const = 0;
};
struct GlGroupedTexture : public GlTexture {
~GlGroupedTexture();
Vec2U size() const override;
TextureFiltering filtering() const override;
TextureAddressing addressing() const override;
GLuint glTextureId() const override;
Vec2U glTextureSize() const override;
Vec2U glTextureCoordinateOffset() const override;
void incrementBufferUseCount();
void decrementBufferUseCount();
unsigned bufferUseCount = 0;
shared_ptr<GlTextureGroup> parentGroup;
GlTextureAtlasSet::TextureHandle parentAtlasTexture = nullptr;
};
struct GlLoneTexture : public GlTexture {
~GlLoneTexture();
Vec2U size() const override;
TextureFiltering filtering() const override;
TextureAddressing addressing() const override;
GLuint glTextureId() const override;
Vec2U glTextureSize() const override;
Vec2U glTextureCoordinateOffset() const override;
GLuint textureId = 0;
Vec2U textureSize;
TextureAddressing textureAddressing = TextureAddressing::Clamp;
TextureFiltering textureFiltering = TextureFiltering::Nearest;
};
struct GlPackedVertexData {
uint32_t textureIndex : 2;
uint32_t fullbright : 1;
uint32_t rX : 1;
uint32_t rY : 1;
uint32_t unused : 27;
};
2023-06-20 04:33:09 +00:00
struct GlRenderVertex {
Vec2F pos;
Vec2F uv;
2023-06-20 04:33:09 +00:00
Vec4B color;
union Packed {
uint32_t packed;
GlPackedVertexData vars;
} pack;
2023-06-20 04:33:09 +00:00
};
struct GlRenderBuffer : public RenderBuffer {
struct GlVertexBufferTexture {
GLuint texture;
Vec2U size;
};
struct GlVertexBuffer {
List<GlVertexBufferTexture> textures;
GLuint vertexBuffer = 0;
size_t vertexCount = 0;
};
~GlRenderBuffer();
2023-06-29 18:34:10 +00:00
void set(List<RenderPrimitive>& primitives) override;
2023-06-20 04:33:09 +00:00
RefPtr<GlTexture> whiteTexture;
ByteArray accumulationBuffer;
HashSet<TexturePtr> usedTextures;
List<GlVertexBuffer> vertexBuffers;
bool useMultiTexturing{true};
2023-06-20 04:33:09 +00:00
};
struct EffectParameter {
GLint parameterUniform = -1;
VariantTypeIndex parameterType = 0;
2023-06-20 04:33:09 +00:00
Maybe<RenderEffectParameter> parameterValue;
};
struct EffectTexture {
GLint textureUniform = -1;
unsigned textureUnit = 0;
2023-06-20 04:33:09 +00:00
TextureAddressing textureAddressing = TextureAddressing::Clamp;
TextureFiltering textureFiltering = TextureFiltering::Linear;
GLint textureSizeUniform = -1;
RefPtr<GlLoneTexture> textureValue;
};
struct GlFrameBuffer : RefCounter {
GLuint id = 0;
RefPtr<GlLoneTexture> texture;
Json config;
bool blitted = false;
unsigned multisample = 0;
GlFrameBuffer(Json const& config);
~GlFrameBuffer();
};
2023-06-20 04:33:09 +00:00
class Effect {
public:
GLuint program = 0;
2023-06-29 19:55:41 +00:00
Json config;
StringMap<EffectParameter> parameters;
StringMap<EffectTexture> textures;
StringMap<GLuint> attributes;
StringMap<GLuint> uniforms;
GLuint getAttribute(String const& name);
GLuint getUniform(String const& name);
2023-06-29 19:55:41 +00:00
};
2023-06-30 17:58:02 +00:00
static bool logGlErrorSummary(String prefix);
2023-06-20 04:33:09 +00:00
static void uploadTextureImage(PixelFormat pixelFormat, Vec2U size, uint8_t const* data);
2024-03-19 14:53:34 +00:00
static RefPtr<GlLoneTexture> createGlTexture(ImageView const& image, TextureAddressing addressing, TextureFiltering filtering);
2023-06-20 04:33:09 +00:00
shared_ptr<GlRenderBuffer> createGlRenderBuffer();
void flushImmediatePrimitives(Mat3F const& transformation = Mat3F::identity());
2023-06-20 04:33:09 +00:00
void renderGlBuffer(GlRenderBuffer const& renderBuffer, Mat3F const& transformation);
void setupGlUniforms(Effect& effect);
2023-06-29 19:55:41 +00:00
RefPtr<OpenGlRenderer::GlFrameBuffer> getGlFrameBuffer(String const& id);
void blitGlFrameBuffer(RefPtr<OpenGlRenderer::GlFrameBuffer> const& frameBuffer);
void switchGlFrameBuffer(RefPtr<OpenGlRenderer::GlFrameBuffer> const& frameBuffer);
2023-06-20 04:33:09 +00:00
Vec2U m_screenSize;
GLuint m_program = 0;
GLint m_positionAttribute = -1;
GLint m_colorAttribute = -1;
GLint m_texCoordAttribute = -1;
GLint m_dataAttribute = -1;
2023-06-20 04:33:09 +00:00
List<GLint> m_textureUniforms = {};
List<GLint> m_textureSizeUniforms = {};
GLint m_screenSizeUniform = -1;
GLint m_vertexTransformUniform = -1;
Json m_config;
2023-06-29 19:55:41 +00:00
StringMap<Effect> m_effects;
Effect* m_currentEffect;
StringMap<RefPtr<GlFrameBuffer>> m_frameBuffers;
RefPtr<GlFrameBuffer> m_currentFrameBuffer;
2023-06-20 04:33:09 +00:00
RefPtr<GlTexture> m_whiteTexture;
Maybe<RectI> m_scissorRect;
bool m_limitTextureGroupSize;
bool m_useMultiTexturing;
unsigned m_multiSampling; // if non-zero, is enabled and acts as sample count
2023-06-20 04:33:09 +00:00
List<shared_ptr<GlTextureGroup>> m_liveTextureGroups;
List<RenderPrimitive> m_immediatePrimitives;
shared_ptr<GlRenderBuffer> m_immediateRenderBuffer;
};
}