breakhack/src/gui.h

69 lines
1.6 KiB
C
Raw Normal View History

2018-02-16 18:11:26 +01:00
/*
* BreakHack - A dungeone crawler RPG
* Copyright (C) 2018 Linus Probert <linus.probert@gmail.com>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef GUI_H_
#define GUI_H_
2018-02-03 13:02:39 +01:00
#define LOG_LINES_COUNT 10
2018-01-23 14:11:03 +01:00
#define LOG_FONT_SIZE 8
#define LABEL_FONT_SIZE 8
2018-01-23 14:11:03 +01:00
#include "linkedlist.h"
#include "hashtable.h"
#include "sprite.h"
#include "camera.h"
#include "player.h"
typedef enum Label_e {
LEVEL_LABEL,
CURRENT_XP_LABEL,
GOLD_LABEL,
DUNGEON_LEVEL_LABEL,
2018-02-03 13:02:39 +01:00
HEALTH_POTION_LABEL,
LABEL_COUNT
} LabelIndex;
typedef struct {
LinkedList *sprites;
LinkedList *health;
LinkedList *xp_bar;
Hashtable *textures;
Sprite *labels[LABEL_COUNT];
2018-01-23 14:11:03 +01:00
Texture *log_lines[LOG_LINES_COUNT];
} Gui;
Gui*
gui_create(SDL_Renderer *renderer);
void
gui_update_player_stats(Gui*, Player*, Map*, SDL_Renderer*);
2018-01-23 12:14:44 +01:00
void
gui_render_panel(Gui*, unsigned int width, unsigned int height, Camera*);
void
gui_render_log(Gui*, unsigned int width, unsigned int height, Camera*);
2018-01-23 14:11:03 +01:00
void
gui_log(const char *fmt, ...);
void
gui_destroy(Gui*);
#endif // GUI_H_