12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091 |
- #ifndef WINDOW_H
- #define WINDOW_H
- #include "math/Vector.h"
- #include "rendering/WindowOptions.h"
- #include "utils/Clock.h"
- #include "utils/Error.h"
- #include "utils/List.h"
- #include "utils/StringBuffer.h"
- namespace Window {
- typedef bool (*ShouldRun)();
- typedef void (*Tick)();
- typedef void (*Render)(float);
- Error open(const WindowOptions& options);
- void close();
- float getTicksPerSecond();
- float getFramesPerSecond();
- void trapCursor();
- void freeCursor();
- const Size& getSize();
- bool hasSizeChanged();
- void show();
- bool shouldClose();
- Clock::Nanos startFrame();
- void endFrame();
- void tick();
- template<ShouldRun SR, Tick T, Render R>
- void run(Clock::Nanos nanosPerTick) {
- Clock::Nanos lag = 0;
- while(SR()) {
- lag += startFrame();
- while(lag >= nanosPerTick) {
- lag -= nanosPerTick;
- tick();
- T();
- }
- R(static_cast<float>(lag) / nanosPerTick);
- endFrame();
- }
- }
- namespace Input {
- void setLimit(int limit);
- void reset();
- void enable();
- void disable();
- void fill(const char* s);
- int getCursor();
- void setCursor(int index);
- const List<uint32>& getUnicode();
- template<int N>
- void toString(StringBuffer<N>& s) {
- for(uint32 c : getUnicode()) {
- s.appendUnicode(c);
- }
- }
- }
- namespace Controls {
- typedef StringBuffer<32> ButtonName;
- typedef int ButtonId;
- ButtonId add(const ButtonName& name);
- void bindKey(ButtonId id, int key);
- void bindGamepad(ButtonId id, int gamepadButton);
- void bindMouse(ButtonId id, int mouseButton);
- Vector2 getLastMousePosition();
- Vector2 getMousePosition();
- Vector2 getLeftGamepadAxis();
- Vector2 getRightGamepadAxis();
- float getLeftGamepadTrigger();
- float getRightGamepadTrigger();
- bool isDown(ButtonId id);
- int getDownTime(ButtonId id);
- bool wasReleased(ButtonId id);
- const ButtonName& getName(ButtonId id);
- }
- }
- #endif
|