#ifndef _RENDERER_H_ #define _RENDERER_H_ #define LAYER_COUNT 3 #define BIT(x) (1 << (x)) #include #include #include #include class GuiComponent; namespace Renderer { void registerComponent(GuiComponent* comp); void unregisterComponent(GuiComponent* comp); void deleteAll(); void render(); extern SDL_Surface* screen; extern TTF_Font* font; unsigned int getScreenWidth(); unsigned int getScreenHeight(); //drawing commands void drawRect(int x, int y, int w, int h, int color); void drawText(std::string text, int x, int y, int color); void drawCenteredText(std::string text, int y, int color); void loadFonts(); } #endif