bgfx/examples/common/entry/entry_p.h

216 lines
4.2 KiB
C
Raw Normal View History

2013-01-18 01:38:13 -05:00
/*
2014-02-11 01:07:04 -05:00
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
2013-01-18 01:38:13 -05:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#ifndef ENTRY_PRIVATE_H_HEADER_GUARD
#define ENTRY_PRIVATE_H_HEADER_GUARD
2013-01-18 01:38:13 -05:00
#include <bx/spscqueue.h>
#include "entry.h"
2014-11-10 12:08:26 -05:00
#include <string.h> // memcpy
2013-01-18 01:38:13 -05:00
2014-03-29 22:58:24 -04:00
#ifndef ENTRY_CONFIG_USE_SDL
2014-01-30 23:31:49 -05:00
# define ENTRY_CONFIG_USE_SDL 0
2014-03-29 22:58:24 -04:00
#endif // ENTRY_CONFIG_USE_SDL
#if !ENTRY_CONFIG_USE_SDL && \
!defined(ENTRY_CONFIG_USE_NATIVE)
2014-01-30 23:31:49 -05:00
# define ENTRY_CONFIG_USE_NATIVE 1
2014-03-29 22:58:24 -04:00
#else
# define ENTRY_CONFIG_USE_NATIVE 0
2014-01-30 23:31:49 -05:00
#endif // ...
2013-08-15 00:08:46 -04:00
2014-09-19 01:32:33 -04:00
#ifndef ENTRY_CONFIG_MAX_WINDOWS
# define ENTRY_CONFIG_MAX_WINDOWS 8
#endif // ENTRY_CONFIG_MAX_WINDOWS
2013-08-15 00:08:46 -04:00
#if !defined(ENTRY_DEFAULT_WIDTH) && !defined(ENTRY_DEFAULT_HEIGHT)
# define ENTRY_DEFAULT_WIDTH 1280
# define ENTRY_DEFAULT_HEIGHT 720
#elif !defined(ENTRY_DEFAULT_WIDTH) || !defined(ENTRY_DEFAULT_HEIGHT)
# error "Both ENTRY_DEFAULT_WIDTH and ENTRY_DEFAULT_HEIGHT must be defined."
#endif // ENTRY_DEFAULT_WIDTH
2014-09-19 01:32:33 -04:00
#define ENTRY_IMPLEMENT_EVENT(_class, _type) \
_class(WindowHandle _handle) : Event(_type, _handle) {}
2013-01-18 01:38:13 -05:00
namespace entry
{
int main(int _argc, char** _argv);
struct Event
{
enum Enum
{
Exit,
Key,
Char,
Mouse,
Size,
2014-09-19 01:32:33 -04:00
Window,
};
2014-09-19 01:32:33 -04:00
Event(Enum _type)
: m_type(_type)
{
m_handle.idx = UINT16_MAX;
}
Event(Enum _type, WindowHandle _handle)
: m_type(_type)
, m_handle(_handle)
{
}
Event::Enum m_type;
2014-09-19 01:32:33 -04:00
WindowHandle m_handle;
};
struct KeyEvent : public Event
{
2014-09-19 01:32:33 -04:00
ENTRY_IMPLEMENT_EVENT(KeyEvent, Event::Key);
Key::Enum m_key;
uint8_t m_modifiers;
bool m_down;
};
struct CharEvent : public Event
{
ENTRY_IMPLEMENT_EVENT(CharEvent, Event::Char);
uint8_t m_len;
uint8_t m_char[4];
};
struct MouseEvent : public Event
{
2014-09-19 01:32:33 -04:00
ENTRY_IMPLEMENT_EVENT(MouseEvent, Event::Mouse);
int32_t m_mx;
int32_t m_my;
2014-08-06 00:13:50 -04:00
int32_t m_mz;
MouseButton::Enum m_button;
bool m_down;
bool m_move;
};
struct SizeEvent : public Event
{
2014-09-19 01:32:33 -04:00
ENTRY_IMPLEMENT_EVENT(SizeEvent, Event::Size);
uint32_t m_width;
uint32_t m_height;
};
2014-09-19 01:32:33 -04:00
struct WindowEvent : public Event
{
ENTRY_IMPLEMENT_EVENT(WindowEvent, Event::Window);
void* m_nwh;
};
const Event* poll();
2014-09-22 22:34:10 -04:00
const Event* poll(WindowHandle _handle);
void release(const Event* _event);
class EventQueue
{
public:
void postExitEvent()
{
2014-09-19 01:32:33 -04:00
Event* ev = new Event(Event::Exit);
m_queue.push(ev);
}
2014-09-19 01:32:33 -04:00
void postKeyEvent(WindowHandle _handle, Key::Enum _key, uint8_t _modifiers, bool _down)
{
2014-09-19 01:32:33 -04:00
KeyEvent* ev = new KeyEvent(_handle);
ev->m_key = _key;
ev->m_modifiers = _modifiers;
2014-09-19 01:32:33 -04:00
ev->m_down = _down;
m_queue.push(ev);
}
void postCharEvent(WindowHandle _handle, uint8_t _len, const uint8_t _char[4])
{
CharEvent* ev = new CharEvent(_handle);
ev->m_len = _len;
memcpy(ev->m_char, _char, 4);
m_queue.push(ev);
}
2014-09-19 01:32:33 -04:00
void postMouseEvent(WindowHandle _handle, int32_t _mx, int32_t _my, int32_t _mz)
2013-01-18 02:22:38 -05:00
{
2014-09-19 01:32:33 -04:00
MouseEvent* ev = new MouseEvent(_handle);
ev->m_mx = _mx;
ev->m_my = _my;
ev->m_mz = _mz;
2013-01-18 02:22:38 -05:00
ev->m_button = MouseButton::None;
2014-09-19 01:32:33 -04:00
ev->m_down = false;
ev->m_move = true;
2013-01-18 02:22:38 -05:00
m_queue.push(ev);
}
2014-09-19 01:32:33 -04:00
void postMouseEvent(WindowHandle _handle, int32_t _mx, int32_t _my, int32_t _mz, MouseButton::Enum _button, bool _down)
{
2014-09-19 01:32:33 -04:00
MouseEvent* ev = new MouseEvent(_handle);
ev->m_mx = _mx;
ev->m_my = _my;
ev->m_mz = _mz;
ev->m_button = _button;
2014-09-19 01:32:33 -04:00
ev->m_down = _down;
ev->m_move = false;
m_queue.push(ev);
}
2014-09-19 01:32:33 -04:00
void postSizeEvent(WindowHandle _handle, uint32_t _width, uint32_t _height)
{
2014-09-19 01:32:33 -04:00
SizeEvent* ev = new SizeEvent(_handle);
ev->m_width = _width;
ev->m_height = _height;
m_queue.push(ev);
}
2014-09-19 01:32:33 -04:00
void postWindowEvent(WindowHandle _handle, void* _nwh = NULL)
{
WindowEvent* ev = new WindowEvent(_handle);
ev->m_nwh = _nwh;
m_queue.push(ev);
}
const Event* poll()
{
return m_queue.pop();
}
2014-09-22 22:34:10 -04:00
const Event* poll(WindowHandle _handle)
{
if (isValid(_handle) )
{
Event* ev = m_queue.peek();
if (NULL == ev
|| ev->m_handle.idx != _handle.idx)
{
return NULL;
}
}
return poll();
}
void release(const Event* _event) const
{
delete _event;
}
private:
bx::SpScUnboundedQueue<Event> m_queue;
};
2013-01-18 01:38:13 -05:00
} // namespace entry
#endif // ENTRY_PRIVATE_H_HEADER_GUARD