37 class MyKeyListener :
public KeyListener {
43 void keyPressed(KeyEvent& e,
const KeyboardTracker& kt)
override {
45 if( e.
keySym() == VKeyCode::VK_ESCAPE ) {
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 ) {
57 void keyReleased(KeyEvent& e,
const KeyboardTracker& kt)
override {
61 typedef std::shared_ptr<MyKeyListener> MyKeyListenerRef;
62 MyKeyListenerRef m_kl;
67 m_kl(
std::make_shared<MyKeyListener>(*this)) { }
82int main(
int argc,
char *argv[])
84 return launch(
"RedSquareES2.hpp",
86 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,...
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.
static constexpr std::string_view GLES2
The embedded OpenGL profile ES 2.x, with x >= 0.
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
@ verbose
Verbose operations (debugging).
std::shared_ptr< Window > WindowRef
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.