prosperon/source/engine/window.h

46 lines
1,012 B
C
Raw Normal View History

2021-11-30 21:29:18 -06:00
#ifndef WINDOW_H
#define WINDOW_H
2022-02-06 10:14:57 -06:00
#include "render.h"
2021-11-30 21:29:18 -06:00
#include <stdbool.h>
2022-02-06 10:14:57 -06:00
#include <stdint.h>
2021-11-30 21:29:18 -06:00
struct mSDLWindow {
2022-02-06 10:14:57 -06:00
GLFWwindow *window;
2021-11-30 21:29:18 -06:00
int id;
int width;
int height;
/* TODO: Bitfield these */
bool render;
bool mouseFocus;
bool keyboardFocus;
bool fullscreen;
bool minimized;
bool shown;
float projection[16];
};
2022-01-19 16:43:21 -06:00
struct Texture;
2021-11-30 21:29:18 -06:00
2022-02-06 10:14:57 -06:00
extern struct mSDLWindow *mainwin;
2021-11-30 21:29:18 -06:00
struct mSDLWindow *MakeSDLWindow(const char *name, int width, int height,
uint32_t flags);
2022-02-06 10:14:57 -06:00
void window_destroy(struct mSDLWindow *w);
void window_handle_event(struct mSDLWindow *w);
void window_all_handle_events();
2021-11-30 21:29:18 -06:00
void window_makecurrent(struct mSDLWindow *w);
void window_makefullscreen(struct mSDLWindow *w);
void window_togglefullscreen(struct mSDLWindow *w);
void window_swap(struct mSDLWindow *w);
2022-01-19 16:43:21 -06:00
void window_seticon(struct mSDLWindow *w, struct Texture *icon);
int window_hasfocus(struct mSDLWindow *w);
2021-11-30 21:29:18 -06:00
2022-02-06 10:14:57 -06:00
double frame_time();
double elapsed_time();
2022-06-23 11:05:47 -05:00
int elapsed_time_ms();
2022-02-06 10:14:57 -06:00
2021-11-30 21:29:18 -06:00
#endif