Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
PrimContext.hpp
Go to the documentation of this file.
1/*
2 * Author: Sven Gothel <sgothel@jausoft.com>
3 * Copyright Gothel Software e.K.
4 *
5 * SPDX-License-Identifier: MIT
6 *
7 * This Source Code Form is subject to the terms of the MIT License
8 * If a copy of the MIT was not distributed with this file,
9 * you can obtain one at https://opensource.org/license/mit/.
10 */
11
12#ifndef GAMP_RENDER_GL_PRIM_PRIMCONTEXT_HPP_
13#define GAMP_RENDER_GL_PRIM_PRIMCONTEXT_HPP_
14
15#include <cstdio>
16
21
22using namespace jau::math;
23using namespace jau::math::util;
24
25using namespace gamp::wt;
26using namespace gamp::wt::event;
27using namespace gamp::render::gl::glsl;
28using namespace gamp::render::gl::data;
29
31 private:
32 ShaderState m_st;
33 PMVMat4f m_pmvMatrix;
34 GLUniformSyncMatrices4fRef m_pmvMatrixUniform;
35 GLUniformVec4fRef m_colorUniform;
36 jau::math::Recti m_viewport;
37
38 public:
40 : m_st(),
41 m_pmvMatrix(PMVMat4f::INVERSE_PROJECTION | PMVMat4f::INVERSE_MODELVIEW | PMVMat4f::INVERSE_TRANSPOSED_MODELVIEW),
42 m_pmvMatrixUniform(GLUniformSyncMatrices4f::create("pmvMatrix", m_pmvMatrix.getSyncPMvMviMvit())), // P, Mv, Mvi and Mvit
43 m_colorUniform(GLUniformVec4f::create("color", Vec4f(1,1,1,1)))
44 {}
45
46 bool init(const WindowRef& win, const jau::fraction_timespec& when) override {
47 jau::fprintf_td(when.to_ms(), stdout, "RL::init: %s\n", toString().c_str());
49
50 // m_st.setVerbose(true);
51 ShaderCodeRef vp0 = ShaderCode::create(gl, GL_VERTEX_SHADER, "demos/glsl",
52 "demos/glsl/bin", "gears");
53 ShaderCodeRef fp0 = ShaderCode::create(gl, GL_FRAGMENT_SHADER, "demos/glsl",
54 "demos/glsl/bin", "gears");
55 if( !vp0 || !fp0 ) {
56 jau::fprintf_td(when.to_ms(), stdout, "ERROR %s:%d: %s\n", E_FILE_LINE, toString().c_str());
57 win->dispose(when);
58 return false;
59 }
60 vp0->defaultShaderCustomization(gl, true, true);
61 fp0->defaultShaderCustomization(gl, true, true);
63 if( !sp0->add(gl, vp0, true) || !sp0->add(gl, fp0, true) ) {
64 jau::fprintf_td(when.to_ms(), stdout, "ERROR %s:%d: %s\n", E_FILE_LINE, toString().c_str());
65 sp0->destroy(gl);
66 win->dispose(when);
67 return false;
68 }
69 m_st.attachShaderProgram(gl, sp0, true);
70
71 m_gear1.initGL(gl);
72 m_gear2.initGL(gl);
73 m_gear3.initGL(gl);
74
75 // st.attachObject("pmvMatrix", pmvMatrix);
76 m_st.ownUniform(gl, m_pmvMatrixUniform);
77 m_st.pushUniform(gl, m_pmvMatrixUniform);
78
79 GLUniformVec3fRef lightU = GLUniformVec3f::create("lightPos", lightPos);
80 m_st.ownUniform(gl, lightU);
81 m_st.pushUniform(gl, lightU);
82
83 m_colorUniform = GLUniformVec4f::create("color", GearsObjectES2::red);
84 m_st.ownUniform(gl, m_colorUniform);
85 m_st.pushUniform(gl, m_colorUniform);
86
87 if( m_clearBuffers ) {
88 ::glClearColor(m_clearColor.x, m_clearColor.y, m_clearColor.z, m_clearColor.w);
89 }
90 m_initialized = sp0->inUse();
91 m_st.useProgram(gl, false);
92
93 if( m_initialized ) {
94 win->addKeyListener(m_kl);
95 win->addPointerListener(m_pl);
96 } else {
97 jau::fprintf_td(when.to_ms(), stdout, "ERROR %s:%d: %s\n", E_FILE_LINE, toString().c_str());
98 m_st.destroy(gl);
99 win->dispose(when);
100 }
101 return m_initialized;
102 }
103 void dispose(const WindowRef& win, const jau::fraction_timespec& when) override {
104 jau::fprintf_td(when.to_ms(), stdout, "RL::dispose: %s\n", toString().c_str());
105 jau::fprintf_td(when.to_ms(), stdout, "RL::dispose: %s\n", win->toString().c_str());
106 win->removeKeyListener(m_kl);
107 win->removePointerListener(m_pl);
108 GL& gl = GL::downcast(win->renderContext());
109 m_st.useProgram(gl, false);
110 m_gear1.dispose(gl);
111 m_gear2.dispose(gl);
112 m_gear3.dispose(gl);
113 m_st.destroy(gl);
114 m_initialized = false;
115 }
116
117 void reshape(const WindowRef& win, const jau::math::Recti& viewport, const jau::fraction_timespec& when) override {
118 jau::fprintf_td(when.to_ms(), stdout, "RL::reshape: %s\n", toString().c_str());
119 if( !m_initialized ) { return; }
120 m_viewport = viewport;
121 reshapeImpl(win, viewport, float(viewport.width()), float(viewport.height()), when);
122 }
123
124 void reshapeImpl(const WindowRef& win, const jau::math::Recti& viewport, float imageWidth, float imageHeight, const jau::fraction_timespec& when) {
125 const bool msaa = false; // gl.getContext().getGLDrawable().getChosenGLCapabilities().getSampleBuffers();
126 jau::fprintf_td(when.to_ms(), stdout, "GearsES2.reshape %s of %fx%f, swapInterval %d, msaa %d, tileRendererInUse %d\n",
127 viewport.toString().c_str(), imageWidth, imageHeight, m_swapInterval, msaa, false);
128 GL& gl = GL::downcast(win->renderContext());
129 // compute projection parameters 'normal'
130 float left, right, bottom, top;
131 if( imageHeight > imageWidth ) {
132 const float a = (float)imageHeight / (float)imageWidth;
133 left = -1.0f;
134 right = 1.0f;
135 bottom = -a;
136 top = a;
137 } else {
138 const float a = (float)imageWidth / (float)imageHeight;
139 left = -a;
140 right = a;
141 bottom = -1.0f;
142 top = 1.0f;
143 }
144 const float w = right - left;
145 const float h = top - bottom;
146
147 // compute projection parameters 'tiled'
148 const float l = left + float(viewport.x()) * w / imageWidth;
149 const float r = l + float(viewport.width()) * w / imageWidth;
150 const float b = bottom + float(viewport.y()) * h / imageHeight;
151 const float t = b + float(viewport.height()) * h / imageHeight;
152 {
153 const float _w = r - l;
154 const float _h = t - b;
155 jau::fprintf_td(when.to_ms(), stdout, ">> GearsES2 angle %f, [l %f, r %f, b %f, t %f] %fx%f -> [l %f, r %f, b %f, t %f] %fx%f, v-flip %d",
156 m_teethAngle, left, right, bottom, top, w, h, l, r, b, t, _w, _h, m_flipVerticalInGLOrientation);
157 }
158
159 m_pmvMatrix.loadPIdentity();
160 if( m_flipVerticalInGLOrientation && win->isBLOriented() ) {
161 m_pmvMatrix.scaleP(1.0f, -1.0f, 1.0f);
162 }
163 m_pmvMatrix.frustumP(l, r, b, t, m_zNear, m_zFar);
164
165 m_pmvMatrix.loadMvIdentity();
166 m_pmvMatrix.translateMv(0.0f, 0.0f, -m_zViewDist);
167
168 m_st.useProgram(gl, true);
169 m_st.pushUniform(gl, m_pmvMatrixUniform);
170 m_st.useProgram(gl, false);
171 }
172
173};
174
175#endif // #define GAMP_RENDER_GL_PRIM_PRIMCONTEXT_HPP_
#define E_FILE_LINE
static constexpr jau::math::Vec4f red
Definition GearsES2.hpp:57
void reshape(const WindowRef &win, const jau::math::Recti &viewport, const jau::fraction_timespec &when) override
void dispose(const WindowRef &win, const jau::fraction_timespec &when) override
bool init(const WindowRef &win, const jau::fraction_timespec &when) override
void reshapeImpl(const WindowRef &win, const jau::math::Recti &viewport, float imageWidth, float imageHeight, const jau::fraction_timespec &when)
static GLContext & downcast(RenderContext *rc)
Downcast dereferenced given RenderContext* to GLContext&, throws exception if signature doesn't match...
static std::shared_ptr< GLUniformVec3f > create(const string_t &name, const jau::math::Vec3f &v)
static std::shared_ptr< GLUniformVec4f > create(const string_t &name, const jau::math::Vec4f &v)
size_t defaultShaderCustomization(const GL &gl, bool preludeVersion, bool addDefaultPrecision)
Default customization of this shader source code.
static ShaderCodeRef create(GLenum type, size_t count, const source_list_t &sources) noexcept
void destroy(GL &gl) noexcept
Detaches all shader codes and deletes the program.
static ShaderProgramRef create() noexcept
bool add(const ShaderCodeRef &shaderCode) noexcept
Adds a new shader to this program.
constexpr bool inUse() const noexcept
ShaderState allows to sharing data between shader programs, while updating the attribute and uniform ...
const gamp::render::RenderContext * renderContext() const noexcept
Definition Surface.hpp:129
constexpr bool isBLOriented() const noexcept
Returns true if this surface is rendered in OpenGL's coordinate system, origin at bottom left.
Definition Surface.hpp:168
size_t removeKeyListener(const KeyListenerRef &l)
Definition Window.hpp:311
size_t removePointerListener(const PointerListenerRef &l)
Definition Window.hpp:325
void addPointerListener(const PointerListenerRef &l)
Definition Window.hpp:324
void dispose(const jau::fraction_timespec &when) noexcept override
Definition Window.hpp:355
std::string toString() const noexcept
Definition gamp_wt.cpp:145
void addKeyListener(const KeyListenerRef &l)
Definition Window.hpp:310
constexpr value_type y() const noexcept
Definition recti.hpp:111
std::string toString() const noexcept
Definition recti.hpp:129
constexpr value_type height() const noexcept
Definition recti.hpp:113
constexpr value_type x() const noexcept
Definition recti.hpp:110
constexpr value_type width() const noexcept
Definition recti.hpp:112
std::shared_ptr< GLUniformSyncMatrices4f > GLUniformSyncMatrices4fRef
std::shared_ptr< GLUniformVec4f > GLUniformVec4fRef
std::shared_ptr< GLUniformVec3f > GLUniformVec3fRef
std::shared_ptr< ShaderProgram > ShaderProgramRef
std::shared_ptr< ShaderCode > ShaderCodeRef
std::shared_ptr< Window > WindowRef
Definition Event.hpp:36
Vector4F< float > Vec4f
Definition vec4f.hpp:375
RectI< int > Recti
Definition recti.hpp:139
PMVMatrix4< float > PMVMat4f
int fprintf_td(const uint64_t elapsed_ms, FILE *stream, const char *format,...) noexcept
Convenient fprintf() invocation, prepending the given elapsed_ms timestamp.
Definition debug.cpp:270
Timespec structure using int64_t for its components in analogy to struct timespec_t on 64-bit platfor...
constexpr uint64_t to_ms() const noexcept
Returns time in milliseconds.