bgfx/examples/common/entry/entry.h

191 lines
3.1 KiB
C
Raw Normal View History

2013-02-22 00:07:31 -05:00
/*
2014-02-11 01:07:04 -05:00
* Copyright 2011-2014 Branimir Karadzic. All rights reserved.
2013-02-22 00:07:31 -05:00
* License: http://www.opensource.org/licenses/BSD-2-Clause
*/
#ifndef ENTRY_H_HEADER_GUARD
#define ENTRY_H_HEADER_GUARD
2013-02-22 00:07:31 -05:00
#include "dbg.h"
#include <bx/bx.h>
2014-05-03 18:18:28 -04:00
namespace bx { struct FileReaderI; struct FileWriterI; }
2014-06-01 15:01:50 -04:00
extern "C" int _main_(int _argc, char** _argv);
2014-09-22 22:34:10 -04:00
#define ENTRY_WINDOW_FLAG_NONE UINT32_C(0x00000000)
#define ENTRY_WINDOW_FLAG_ASPECT_RATIO UINT32_C(0x00000001)
2013-02-22 00:07:31 -05:00
namespace entry
{
2014-09-22 22:34:10 -04:00
struct WindowHandle { uint16_t idx; static const uint16_t invalidHandle; };
inline bool isValid(WindowHandle _handle) { return WindowHandle::invalidHandle != _handle.idx; }
2014-09-19 01:32:33 -04:00
2013-02-22 00:07:31 -05:00
struct MouseButton
{
enum Enum
{
None,
Left,
Middle,
Right,
Count
};
};
struct Modifier
{
enum Enum
{
None = 0,
LeftAlt = 0x01,
RightAlt = 0x02,
LeftCtrl = 0x04,
RightCtrl = 0x08,
LeftShift = 0x10,
RightShift = 0x20,
LeftMeta = 0x40,
RightMeta = 0x80,
};
};
struct Key
{
enum Enum
{
None = 0,
Esc,
Return,
Tab,
Space,
Backspace,
Up,
Down,
Left,
Right,
PageUp,
PageDown,
Home,
End,
Print,
Plus,
Minus,
F1,
F2,
F3,
F4,
F5,
F6,
F7,
F8,
F9,
F10,
F11,
F12,
NumPad0,
NumPad1,
NumPad2,
NumPad3,
NumPad4,
NumPad5,
NumPad6,
NumPad7,
NumPad8,
NumPad9,
Key0,
Key1,
Key2,
Key3,
Key4,
Key5,
Key6,
Key7,
Key8,
Key9,
KeyA,
KeyB,
KeyC,
KeyD,
KeyE,
KeyF,
KeyG,
KeyH,
KeyI,
KeyJ,
KeyK,
KeyL,
KeyM,
KeyN,
KeyO,
KeyP,
KeyQ,
KeyR,
KeyS,
KeyT,
KeyU,
KeyV,
KeyW,
KeyX,
KeyY,
KeyZ,
2014-08-05 20:49:21 -04:00
Count,
2013-02-22 00:07:31 -05:00
};
};
struct MouseState
2013-02-22 00:07:31 -05:00
{
MouseState()
: m_mx(0)
, m_my(0)
2014-08-06 00:13:50 -04:00
, m_mz(0)
2013-02-22 00:07:31 -05:00
{
for (uint32_t ii = 0; ii < entry::MouseButton::Count; ++ii)
{
m_buttons[ii] = entry::MouseButton::None;
}
}
2013-02-22 00:07:31 -05:00
2014-08-06 00:13:50 -04:00
int32_t m_mx;
int32_t m_my;
int32_t m_mz;
uint8_t m_buttons[entry::MouseButton::Count];
2013-02-22 00:07:31 -05:00
};
2014-08-05 20:49:21 -04:00
char keyToAscii(entry::Key::Enum _key, bool _shiftModifier);
2014-09-22 22:34:10 -04:00
bool processEvents(uint32_t& _width, uint32_t& _height, uint32_t& _debug, uint32_t& _reset, MouseState* _mouse = NULL);
2013-02-22 00:07:31 -05:00
2014-08-05 20:49:34 -04:00
bx::FileReaderI* getFileReader();
bx::FileWriterI* getFileWriter();
2014-09-22 22:34:10 -04:00
WindowHandle createWindow(int32_t _x, int32_t _y, uint32_t _width, uint32_t _height, uint32_t _flags = ENTRY_WINDOW_FLAG_NONE, const char* _title = "");
2014-09-19 01:32:33 -04:00
void destroyWindow(WindowHandle _handle);
2014-09-22 22:34:10 -04:00
void setWindowPos(WindowHandle _handle, int32_t _x, int32_t _y);
2014-09-19 01:32:33 -04:00
void setWindowSize(WindowHandle _handle, uint32_t _width, uint32_t _height);
void setWindowTitle(WindowHandle _handle, const char* _title);
void toggleWindowFrame(WindowHandle _handle);
void setMouseLock(WindowHandle _handle, bool _lock);
2014-08-05 15:57:52 -04:00
2014-09-22 22:34:10 -04:00
struct WindowState
{
WindowState()
: m_nwh(NULL)
{
m_handle.idx = UINT16_MAX;
}
WindowHandle m_handle;
uint32_t m_width;
uint32_t m_height;
MouseState m_mouse;
void* m_nwh;
};
bool processWindowEvents(WindowState& _state, uint32_t& _debug, uint32_t& _reset);
2013-02-22 00:07:31 -05:00
} // namespace entry
#endif // ENTRY_H_HEADER_GUARD