61 PMVMat4fUniform& m_pmvMat;
70 : m_type(
type), m_st(st), m_pmvMat(pmvMatU), m_array(
GLFloatArrayDataServer::createGLSLInterleaved(2*3, false, 4, GL_STATIC_DRAW) )
72 m_array->addGLSLSubArray(
"mgl_Vertex", 3, GL_ARRAY_BUFFER);
73 m_array->addGLSLSubArray(
"mgl_Normal", 3, GL_ARRAY_BUFFER);
74 m_st.ownAttribute(m_array,
true);
77 m_st.ownUniform(m_uColor,
true);
89 const Vec4f&
color() const noexcept {
return m_uColor->vec4f(); }
97 m_pmvMat.m.translateMv(m_position);
99 m_pmvMat.m.rotateMv(m_rotation);
100 m_st.pushUniform(
gl, m_pmvMat.u);
102 m_st.pushUniform(
gl, m_uColor);
104 m_array->enableBuffer(
gl,
true);
105 ::glDrawArrays(m_type, 0, m_array->elemCount());
106 m_array->enableBuffer(
gl,
false);
115 constexpr static float half = 0.5f;
116 constexpr static float qter = 0.25f;
117 constexpr static float zNear= 1.0f;
118 constexpr static float zFar =100.0f;
123 bool m_animating =
true;
127 Shape m_shape1, m_shape2;
132 m_initialized(false),
133 m_shape1(GL_TRIANGLE_STRIP, m_st, m_pmvMat), m_shape2(GL_LINE_STRIP, m_st, m_pmvMat) { }
149 "demos/glsl/bin",
"SingleLight0");
151 "demos/glsl/bin",
"SingleLight0");
158 std::string custom =
"#define MAX_TEXTURE_UNITS 0\n";
166 if( !sp0->
add(
gl, vp0,
true) || !sp0->
add(
gl, fp0,
true) ) {
172 m_st.attachShaderProgram(
gl, sp0,
true);
175 m_pmvMat.m.getP().loadIdentity();
176 m_pmvMat.m.getMv().loadIdentity();
177 m_st.ownUniform(m_pmvMat.u,
true);
180 m_st.ownUniform(lightU,
true);
182 m_st.pushAllUniforms(
gl);
184 const Vec3f frontNormal(0, 0, 1);
185 const Vec3f backNormal(0, 0, -1);
189 v->put3f(-half, half, dz); v->put3f(frontNormal);
190 v->put3f( half, half, dz); v->put3f(frontNormal);
191 v->put3f(-half, -half, dz); v->put3f(frontNormal);
192 v->put3f( half, -half, dz); v->put3f(frontNormal);
195 v->put3f(-half, half, dz); v->put3f(backNormal);
196 v->put3f( half, half, dz); v->put3f(backNormal);
197 v->put3f(-half, -half, dz); v->put3f(backNormal);
198 v->put3f( half, -half, dz); v->put3f(backNormal);
199 m_shape1.seal(
gl,
true);
200 m_shape1.setColor(
Vec4f(0, 1, 0, 1));
201 m_shape1.position().x = 1.5f;
204 const float lineWidth = 1/10.0f;
205 const float tw = 1.0f;
206 const float th = 1.0f;
208 float lwh = lineWidth/2.0f;
213 float ctrX = 0, ctrY = 0;
218 v->put3f(ctrX-lwh, ctrY+thh, ctrZ); v->put3f(frontNormal);
219 v->put3f(ctrX-lwh, ctrY+lwh, ctrZ); v->put3f(frontNormal);
220 v->put3f(ctrX-twh, ctrY+lwh, ctrZ); v->put3f(frontNormal);
221 v->put3f(ctrX-twh, ctrY-lwh, ctrZ); v->put3f(frontNormal);
222 v->put3f(ctrX-lwh, ctrY-lwh, ctrZ); v->put3f(frontNormal);
223 v->put3f(ctrX-lwh, ctrY-thh, ctrZ); v->put3f(frontNormal);
224 v->put3f(ctrX+lwh, ctrY-thh, ctrZ); v->put3f(frontNormal);
225 v->put3f(ctrX+lwh, ctrY-lwh, ctrZ); v->put3f(frontNormal);
226 v->put3f(ctrX+twh, ctrY-lwh, ctrZ); v->put3f(frontNormal);
227 v->put3f(ctrX+twh, ctrY+lwh, ctrZ); v->put3f(frontNormal);
228 v->put3f(ctrX+lwh, ctrY+lwh, ctrZ); v->put3f(frontNormal);
229 v->put3f(ctrX+lwh, ctrY+thh, ctrZ); v->put3f(frontNormal);
230 v->put3f(ctrX-lwh, ctrY+thh, ctrZ); v->put3f(frontNormal);
231 m_shape2.seal(
gl,
true);
232 m_shape2.setColor(
Vec4f(0, 0, 1, 1));
233 m_shape2.position().x = -1.5f;
236 ::glClearColor(1.0f, 1.0f, 1.0f, 0.0f);
237 ::glEnable(GL_DEPTH_TEST);
239 m_initialized = sp0->
inUse();
240 if( !m_initialized ) {
245 return m_initialized;
251 m_initialized =
false;
259 m_pmvMat.m.getP().loadIdentity();
260 const float aspect = 1.0f;
261 const float fovy_deg=45.0f;
262 const float aspect2 = ( (float) m_viewport.width() / (
float) m_viewport.height() ) / aspect;
264 m_st.useProgram(
gl,
true);
265 m_st.pushUniform(
gl, m_pmvMat.u);
266 m_st.useProgram(
gl,
true);
271 if( !m_initialized ) {
275 ::glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
277 m_st.useProgram(
gl,
true);
278 m_pmvMat.m.getMv().loadIdentity();
279 m_pmvMat.m.translateMv(0, 0, -5);
282 constexpr double angle_per_sec = 30;
283 const float rad = (float) ( (when - m_tlast).to_double() * angle_per_sec );
290 m_st.useProgram(
gl,
false);
295 std::string
toStringImpl() const noexcept
override {
return "Primitives01"; }
300 class MyKeyListener :
public KeyListener {
306 void keyPressed(KeyEvent& e,
const KeyboardTracker& kt)
override {
308 if( e.
keySym() == VKeyCode::VK_ESCAPE ) {
313 }
else if( e.
keySym() == VKeyCode::VK_PAUSE || e.
keySym() == VKeyCode::VK_P ) {
314 m_parent.animating() = !m_parent.animating();
315 }
else if( e.
keySym() == VKeyCode::VK_W ) {
320 void keyReleased(KeyEvent& e,
const KeyboardTracker& kt)
override {
324 typedef std::shared_ptr<MyKeyListener> MyKeyListenerRef;
325 MyKeyListenerRef m_kl;
330 m_kl(
std::make_shared<MyKeyListener>(*this)) { }
345int main(
int argc,
char *argv[])
349 return launch(
"Primitives01.cpp",
351 std::make_shared<Example>(), argc, argv);
int launch(std::string_view sfile, const GLLaunchProps &props, const RenderListenerRef &demo, int argc, char *argv[])
int main(int argc, char *argv[])
bool init(const WindowRef &win, const jau::fraction_timespec &when) override
Called by the drawable immediately after the render context is initialized.
void dispose(const WindowRef &win, const jau::fraction_timespec &when) override
Notifies the listener to perform the release of all renderer resources per context,...
void reshape(const WindowRef &win, const jau::math::Recti &viewport, const jau::fraction_timespec &when) override
Called by the drawable during the first repaint after the component has been resized.
PMVMat4f & pmv() noexcept
std::string toStringImpl() const noexcept override
const PMVMat4f & pmv() const noexcept
bool animating() const noexcept
void display(const WindowRef &win, const jau::fraction_timespec &when) override
Called by the drawable to initiate rendering by the client.
const Recti & viewport() const noexcept
bool init(const WindowRef &win, const jau::fraction_timespec &when) override
Called by the drawable immediately after the render context is initialized.
bool & animating() noexcept
Recti & viewport() noexcept
void dispose(const WindowRef &win, const jau::fraction_timespec &when) override
Notifies the listener to perform the release of all renderer resources per context,...
void setColor(const Vec4f &c) noexcept
constexpr const GLFloatArrayDataServerRef & vertices() const noexcept
constexpr Vec3f & position() noexcept
constexpr const Quat4f & rotation() const noexcept
Shape(GLenum type, ShaderState &st, PMVMat4fUniform &pmvMatU)
constexpr const Vec3f & position() const noexcept
constexpr GLFloatArrayDataServerRef & vertices() noexcept
const Vec4f & color() const noexcept
void seal(GL &gl, bool seal)
constexpr Quat4f & rotation() noexcept
static GLContext & downcast(RenderContext *rc)
Downcast dereferenced given RenderContext* to GLContext&, throws exception if signature doesn't match...
Specifies the OpenGL profile.
static constexpr std::string_view GLES2
The embedded OpenGL profile ES 2.x, with x >= 0.
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
size_t insertShaderSource(size_t shaderIdx, stringview_t tag, size_t fromIndex, stringview_t data) noexcept
Adds data after the line containing tag.
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 ...
constexpr RenderListener(Private) noexcept
Private ctor for shared_ptr<RenderListener> instance method w/o public ctor.
std::string toString() const noexcept
const gamp::render::RenderContext * renderContext() const noexcept
size_t removeKeyListener(const KeyListenerRef &l)
void dispose(const jau::fraction_timespec &when) noexcept override
std::string toString() const noexcept
void addKeyListener(const KeyListenerRef &l)
std::string toString() const noexcept
constexpr VKeyCode keySym() const noexcept
Returns the virtual key symbol reflecting the current keyboard layout.
virtual const PressedKeyCodes & pressedKeyCodes() const noexcept=0
constexpr const WindowWeakPtr & source() const noexcept
constexpr const jau::fraction_timespec & when() const noexcept
size_t bitCount() const noexcept
constexpr T adeg_to_rad(const T arc_degree) noexcept
Converts arc-degree to radians.
GLArrayDataServer< float > GLFloatArrayDataServer
GLArrayDataServerRef< float > GLFloatArrayDataServerRef
std::shared_ptr< GLUniformData > GLUniformDataRef
std::shared_ptr< GLUniformVec4f > GLUniformVec4fRef
std::shared_ptr< GLUniformVec3f > GLUniformVec3fRef
std::shared_ptr< ShaderProgram > ShaderProgramRef
std::shared_ptr< ShaderCode > ShaderCodeRef
@ verbose
Verbose operations (debugging).
std::shared_ptr< Window > WindowRef
Quaternion< float > Quat4f
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.
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.