X-Git-Url: https://git.draconx.ca/gitweb/rrace.git/blobdiff_plain/683ddffaa0940d7c8b792d790c617e6950ce7a1a..e9ab90141032c23a97fa82a723a7a751658bce66:/src/motif.h diff --git a/src/motif.h b/src/motif.h index f337618..ae6631d 100644 --- a/src/motif.h +++ b/src/motif.h @@ -19,8 +19,24 @@ #ifndef RRACE_MOTIF_H_ #define RRACE_MOTIF_H_ +#include #include +#include "game.h" -void ui_initialize(Widget shell); +enum { COLOUR_PRIMARY, COLOUR_DARK, COLOUR_LIGHT, COLOUR_MAX }; + +struct app_state { + struct board board; + + Widget game, goal; + + GC tile_gc; + uint_least32_t tile_colour[TILE_MAX-1][3]; +}; + +void ui_initialize(struct app_state *state, Widget shell); +void x11_initialize(struct app_state *state, Screen *screen); +void x11_redraw_goal(struct app_state *state); +void x11_redraw_game(struct app_state *state); #endif