Gamp v0.0.7-36-g24b1eb6
Gamp: Graphics, Audio, Multimedia and Processing
Loading...
Searching...
No Matches
RedSquareES2.cpp
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#include <gamp/Gamp.hpp>
13
14#include <cstdio>
15#include <cmath>
16#include <memory>
17
18#include <jau/basic_types.hpp>
19#include <jau/file_util.hpp>
20#include <jau/float_types.hpp>
21#include <jau/fraction_type.hpp>
22
23#include <gamp/Gamp.hpp>
25
28
29using namespace jau::math;
30using namespace jau::math::util;
31
32using namespace gamp::wt;
33using namespace gamp::wt::event;
34
35class Example : public RedSquareES2 {
36 private:
37 class MyKeyListener : public KeyListener {
38 private:
39 RedSquareES2& m_parent;
40 public:
41 MyKeyListener(RedSquareES2& p) : m_parent(p) {}
42
43 void keyPressed(KeyEvent& e, const KeyboardTracker& kt) override {
44 jau::fprintf_td(e.when().to_ms(), stdout, "KeyPressed: %s; keys %zu\n", e.toString().c_str(), kt.pressedKeyCodes().bitCount());
45 if( e.keySym() == VKeyCode::VK_ESCAPE ) {
46 WindowRef win = e.source().lock();
47 if( win ) {
48 win->dispose(e.when());
49 }
50 } else if( e.keySym() == VKeyCode::VK_PAUSE || e.keySym() == VKeyCode::VK_P ) {
51 m_parent.animating() = !m_parent.animating();
52 } else if( e.keySym() == VKeyCode::VK_W ) {
53 WindowRef win = e.source().lock();
54 jau::fprintf_td(e.when().to_ms(), stdout, "Source: %s\n", win ? win->toString().c_str() : "null");
55 }
56 }
57 void keyReleased(KeyEvent& e, const KeyboardTracker& kt) override {
58 jau::fprintf_td(e.when().to_ms(), stdout, "KeyRelease: %s; keys %zu\n", e.toString().c_str(), kt.pressedKeyCodes().bitCount());
59 }
60 };
61 typedef std::shared_ptr<MyKeyListener> MyKeyListenerRef;
62 MyKeyListenerRef m_kl;
63
64 public:
66 : RedSquareES2(),
67 m_kl(std::make_shared<MyKeyListener>(*this)) { }
68
69 bool init(const WindowRef& win, const jau::fraction_timespec& when) override {
70 if( !RedSquareES2::init(win, when) ) {
71 return false;
72 }
73 win->addKeyListener(m_kl);
74 return true;
75 }
76 void dispose(const WindowRef& win, const jau::fraction_timespec& when) override {
77 win->removeKeyListener(m_kl);
78 RedSquareES2::dispose(win, when);
79 }
80};
81
82int main(int argc, char *argv[]) // NOLINT(bugprone-exception-escape)
83{
84 return launch("RedSquareES2.hpp",
86 std::make_shared<Example>(), argc, argv);
87}
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,...
bool init(const WindowRef &, const jau::fraction_timespec &when) override
Called by the drawable immediately after the render context is initialized.
void dispose(const WindowRef &, const jau::fraction_timespec &) override
Notifies the listener to perform the release of all renderer resources per context,...
Specifies the OpenGL profile.
Definition GLContext.hpp:41
static constexpr std::string_view GLES2
The embedded OpenGL profile ES 2.x, with x >= 0.
Definition GLContext.hpp:64
size_t removeKeyListener(const KeyListenerRef &l)
Definition Window.hpp:311
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
std::string toString() const noexcept
Definition KeyEvent.hpp:855
constexpr VKeyCode keySym() const noexcept
Returns the virtual key symbol reflecting the current keyboard layout.
Definition KeyEvent.hpp:798
virtual const PressedKeyCodes & pressedKeyCodes() const noexcept=0
constexpr const WindowWeakPtr & source() const noexcept
Definition Event.hpp:85
constexpr const jau::fraction_timespec & when() const noexcept
Definition Event.hpp:84
size_t bitCount() const noexcept
Definition bitfield.hpp:176
@ verbose
Verbose operations (debugging).
std::shared_ptr< Window > WindowRef
Definition Event.hpp:36
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
STL namespace.
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.