2017-11-30 21:00:47 +01:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <SDL2/SDL.h>
|
|
|
|
#include <SDL2/SDL_image.h>
|
|
|
|
|
2017-12-19 09:06:21 +01:00
|
|
|
#include "linkedlist.h"
|
2017-11-30 21:00:47 +01:00
|
|
|
#include "player.h"
|
|
|
|
#include "screenresolution.h"
|
|
|
|
#include "dimension.h"
|
2017-12-01 16:03:19 +01:00
|
|
|
#include "camera.h"
|
|
|
|
#include "map.h"
|
2017-12-02 23:32:40 +01:00
|
|
|
#include "map_lua.h"
|
2017-12-05 08:30:08 +01:00
|
|
|
#include "timer.h"
|
2017-12-05 15:03:20 +01:00
|
|
|
#include "roommatrix.h"
|
2017-12-22 06:27:58 +01:00
|
|
|
#include "gamestate.h"
|
2017-12-22 15:15:40 +01:00
|
|
|
#include "gui.h"
|
2018-01-23 22:54:02 +01:00
|
|
|
#include "util.h"
|
2018-01-24 21:14:34 +01:00
|
|
|
#include "item_builder.h"
|
2018-01-31 09:15:33 +01:00
|
|
|
#include "pointer.h"
|
2018-02-02 16:16:55 +01:00
|
|
|
#include "gui_button.h"
|
2018-02-03 23:39:49 +01:00
|
|
|
#include "particle_engine.h"
|
2018-02-08 17:01:38 +01:00
|
|
|
#include "menu.h"
|
2018-02-13 06:44:09 +01:00
|
|
|
#include "keyboard.h"
|
2017-11-30 21:00:47 +01:00
|
|
|
|
|
|
|
static SDL_Window *gWindow = NULL;
|
|
|
|
static SDL_Renderer *gRenderer = NULL;
|
2017-12-12 11:20:08 +01:00
|
|
|
static Player *gPlayer = NULL;
|
2017-12-01 16:03:19 +01:00
|
|
|
static Map *gMap = NULL;
|
2017-12-05 15:03:20 +01:00
|
|
|
static RoomMatrix *gRoomMatrix = NULL;
|
2017-12-22 15:15:40 +01:00
|
|
|
static Gui *gGui = NULL;
|
2018-01-31 09:15:33 +01:00
|
|
|
static Pointer *gPointer = NULL;
|
2018-01-23 12:14:44 +01:00
|
|
|
static unsigned int cLevel = 1;
|
2018-02-03 23:39:49 +01:00
|
|
|
static float deltaTime = 1.0;
|
2018-01-23 12:14:44 +01:00
|
|
|
static double renderScale = 1.0;
|
2018-02-08 17:01:38 +01:00
|
|
|
static Menu *mainMenu = NULL;
|
2018-02-13 06:44:09 +01:00
|
|
|
static Menu *inGameMenu = NULL;
|
2018-02-09 13:27:25 +01:00
|
|
|
static Timer *menuTimer = NULL;
|
2017-12-22 15:15:40 +01:00
|
|
|
static GameState gGameState;
|
2017-12-01 16:03:19 +01:00
|
|
|
static Camera gCamera;
|
2018-01-23 12:14:44 +01:00
|
|
|
static SDL_Rect gameViewport;
|
|
|
|
static SDL_Rect bottomGuiViewport;
|
|
|
|
static SDL_Rect rightGuiViewport;
|
2018-02-09 13:27:25 +01:00
|
|
|
static SDL_Rect menuViewport;
|
2017-11-30 21:00:47 +01:00
|
|
|
|
2018-02-13 06:44:09 +01:00
|
|
|
static SDL_Color C_MENU_DEFAULT = { 255, 255, 0, 0 };
|
|
|
|
static SDL_Color C_MENU_HOVER = { 255, 0, 0, 0 };
|
|
|
|
|
|
|
|
struct MENU_ITEM {
|
|
|
|
char label[20];
|
|
|
|
void (*callback)(void*);
|
|
|
|
};
|
|
|
|
|
2018-02-09 07:26:44 +01:00
|
|
|
static void resetGame(void);
|
2018-02-13 06:44:09 +01:00
|
|
|
static void initMainMenu(void);
|
2018-02-09 07:26:44 +01:00
|
|
|
|
2017-11-30 21:00:47 +01:00
|
|
|
static
|
2017-12-19 21:00:02 +01:00
|
|
|
bool initSDL(void)
|
2017-11-30 21:00:47 +01:00
|
|
|
{
|
|
|
|
int imgFlags = IMG_INIT_PNG;
|
2017-12-03 11:09:57 +01:00
|
|
|
Dimension dim = getScreenDimensions();
|
2017-11-30 21:00:47 +01:00
|
|
|
|
2017-12-22 06:27:58 +01:00
|
|
|
if (dim.height > 1080) {
|
2018-01-24 06:41:37 +01:00
|
|
|
info("Hi resolution screen detected (%u x %u)", dim.width, dim.height);
|
2018-01-24 08:52:50 +01:00
|
|
|
renderScale = ((double) dim.height)/1080;
|
2018-01-24 18:06:10 +01:00
|
|
|
if (renderScale > 2)
|
|
|
|
renderScale = 3;
|
|
|
|
else if (renderScale > 1)
|
|
|
|
renderScale = 2;
|
2018-01-24 06:41:37 +01:00
|
|
|
info("Scaling by %f", renderScale);
|
2017-11-30 21:00:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
if (SDL_Init(SDL_INIT_VIDEO) < 0)
|
|
|
|
{
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Could not initiate SDL2: %s", SDL_GetError());
|
2017-11-30 21:00:47 +01:00
|
|
|
return false;
|
|
|
|
}
|
2017-12-22 06:27:58 +01:00
|
|
|
|
|
|
|
if ( (IMG_Init(imgFlags) & imgFlags) == 0 ) {
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Unable to initiate img loading: %s",
|
2017-12-22 06:27:58 +01:00
|
|
|
IMG_GetError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( TTF_Init() == -1 ) {
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Unable to initiate ttf library: %s",
|
2017-12-22 06:27:58 +01:00
|
|
|
TTF_GetError());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-11-30 21:00:47 +01:00
|
|
|
gWindow = SDL_CreateWindow("Breakhack",
|
|
|
|
SDL_WINDOWPOS_UNDEFINED,
|
|
|
|
SDL_WINDOWPOS_UNDEFINED,
|
2018-01-23 12:14:44 +01:00
|
|
|
(int)(SCREEN_WIDTH * renderScale),
|
2018-01-24 06:41:37 +01:00
|
|
|
(int)(SCREEN_HEIGHT * renderScale),
|
2017-11-30 21:00:47 +01:00
|
|
|
SDL_WINDOW_SHOWN);
|
|
|
|
if (gWindow == NULL)
|
|
|
|
{
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Unable to create window: %s", SDL_GetError());
|
2017-11-30 21:00:47 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
gRenderer = SDL_CreateRenderer(gWindow, -1, SDL_RENDERER_ACCELERATED);
|
|
|
|
if (gRenderer == NULL)
|
|
|
|
{
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Unable to create renderer: %s", SDL_GetError());
|
2017-11-30 21:00:47 +01:00
|
|
|
return false;
|
|
|
|
}
|
2017-12-10 19:51:24 +01:00
|
|
|
if (SDL_SetRenderDrawBlendMode(gRenderer, SDL_BLENDMODE_BLEND) < 0) {
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Unable to set blend mode: %s", SDL_GetError());
|
2017-12-10 19:51:24 +01:00
|
|
|
return false;
|
|
|
|
}
|
2017-11-30 21:00:47 +01:00
|
|
|
if (SDL_RenderSetLogicalSize(gRenderer, SCREEN_WIDTH, SCREEN_HEIGHT) < 0)
|
|
|
|
{
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Unable to initiate scaling: %s",
|
2017-12-15 15:03:29 +01:00
|
|
|
SDL_GetError());
|
2017-11-30 21:00:47 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-01-23 12:14:44 +01:00
|
|
|
static void
|
|
|
|
initViewports(void)
|
|
|
|
{
|
|
|
|
gameViewport = (SDL_Rect) { 0, 0,
|
|
|
|
GAME_VIEW_WIDTH, GAME_VIEW_HEIGHT };
|
|
|
|
|
|
|
|
bottomGuiViewport = (SDL_Rect) { 0, GAME_VIEW_HEIGHT,
|
|
|
|
BOTTOM_GUI_WIDTH, BOTTOM_GUI_WIDTH };
|
|
|
|
|
|
|
|
rightGuiViewport = (SDL_Rect) { GAME_VIEW_WIDTH, 0,
|
|
|
|
RIGHT_GUI_WIDTH, RIGHT_GUI_HEIGHT };
|
2018-02-09 13:27:25 +01:00
|
|
|
|
|
|
|
menuViewport = (SDL_Rect) {
|
|
|
|
(SCREEN_WIDTH - GAME_VIEW_WIDTH)/2,
|
|
|
|
(SCREEN_HEIGHT - GAME_VIEW_HEIGHT)/2,
|
|
|
|
GAME_VIEW_WIDTH,
|
|
|
|
GAME_VIEW_HEIGHT
|
|
|
|
};
|
2018-01-23 12:14:44 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
static bool
|
|
|
|
initGame(void)
|
2017-11-30 21:00:47 +01:00
|
|
|
{
|
2018-02-08 17:01:38 +01:00
|
|
|
initViewports();
|
|
|
|
gCamera.renderer = gRenderer;
|
|
|
|
gRoomMatrix = roommatrix_create();
|
|
|
|
gGui = gui_create(gRenderer);
|
|
|
|
item_builder_init(gRenderer);
|
|
|
|
gPointer = pointer_create(gRenderer);
|
|
|
|
particle_engine_init();
|
2018-02-09 13:27:25 +01:00
|
|
|
menuTimer = timer_create();
|
2018-01-31 09:15:33 +01:00
|
|
|
|
|
|
|
return true;
|
2017-11-30 21:00:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-09 07:26:44 +01:00
|
|
|
static void
|
|
|
|
startGame(void *unused)
|
|
|
|
{
|
|
|
|
UNUSED(unused);
|
2018-02-13 09:50:52 +01:00
|
|
|
cLevel = 1;
|
2018-02-09 07:26:44 +01:00
|
|
|
gGameState = PLAYING;
|
|
|
|
resetGame();
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
exitGame(void *unused)
|
|
|
|
{
|
|
|
|
UNUSED(unused);
|
|
|
|
gGameState = QUIT;
|
|
|
|
}
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
static void
|
2018-02-13 06:44:09 +01:00
|
|
|
toggleInGameMenu(void *unused)
|
2018-02-08 17:01:38 +01:00
|
|
|
{
|
2018-02-13 06:44:09 +01:00
|
|
|
UNUSED(unused);
|
|
|
|
if (gGameState == PLAYING)
|
|
|
|
gGameState = IN_GAME_MENU;
|
|
|
|
else
|
|
|
|
gGameState = PLAYING;
|
|
|
|
}
|
2018-02-08 17:01:38 +01:00
|
|
|
|
2018-02-13 06:44:09 +01:00
|
|
|
static void
|
|
|
|
goToMainMenu(void *unused)
|
|
|
|
{
|
|
|
|
UNUSED(unused);
|
|
|
|
gGameState = MENU;
|
|
|
|
menu_destroy(inGameMenu);
|
|
|
|
inGameMenu = NULL;
|
|
|
|
initMainMenu();
|
|
|
|
}
|
2018-02-09 13:27:25 +01:00
|
|
|
|
2018-02-13 06:44:09 +01:00
|
|
|
static void
|
|
|
|
createMenu(Menu **menu, struct MENU_ITEM menu_items[], unsigned int size)
|
|
|
|
{
|
|
|
|
if (*menu == NULL)
|
|
|
|
*menu = menu_create();
|
2018-02-09 13:27:25 +01:00
|
|
|
|
2018-02-13 06:44:09 +01:00
|
|
|
for (unsigned int i = 0; i < size; ++i) {
|
2018-02-09 13:27:25 +01:00
|
|
|
int hcenter;
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
Sprite *s1 = sprite_create();
|
2018-02-09 13:55:57 +01:00
|
|
|
sprite_load_text_texture(s1, "assets/GUI/SDS_8x8.ttf", 0, 25);
|
2018-02-08 17:01:38 +01:00
|
|
|
texture_load_from_text(s1->textures[0], menu_items[i].label,
|
2018-02-13 06:44:09 +01:00
|
|
|
C_MENU_DEFAULT, gRenderer);
|
2018-02-09 13:27:25 +01:00
|
|
|
|
|
|
|
hcenter = (SCREEN_WIDTH/2) - (s1->textures[0]->dim.width/2);
|
|
|
|
s1->pos = (Position) { hcenter, 200 + (i*50) };
|
2018-02-08 17:01:38 +01:00
|
|
|
s1->fixed = true;
|
|
|
|
|
|
|
|
Sprite *s2 = sprite_create();
|
2018-02-09 13:55:57 +01:00
|
|
|
sprite_load_text_texture(s2, "assets/GUI/SDS_8x8.ttf", 0, 25);
|
2018-02-08 17:01:38 +01:00
|
|
|
texture_load_from_text(s2->textures[0], menu_items[i].label,
|
2018-02-13 06:44:09 +01:00
|
|
|
C_MENU_HOVER, gRenderer);
|
2018-02-09 13:27:25 +01:00
|
|
|
|
|
|
|
s2->pos = (Position) { hcenter, 200 + (i*50) };
|
2018-02-08 17:01:38 +01:00
|
|
|
s2->fixed = true;
|
|
|
|
|
2018-02-13 06:44:09 +01:00
|
|
|
menu_item_add(*menu, s1, s2, menu_items[i].callback);
|
2018-02-08 17:01:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-02-13 06:44:09 +01:00
|
|
|
static void
|
|
|
|
initInGameMenu(void)
|
|
|
|
{
|
|
|
|
struct MENU_ITEM menu_items[] = {
|
|
|
|
{ "RESUME", toggleInGameMenu },
|
|
|
|
{ "MAIN MENU", goToMainMenu },
|
|
|
|
{ "QUIT", exitGame },
|
|
|
|
};
|
|
|
|
|
|
|
|
createMenu(&inGameMenu, menu_items, 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
initMainMenu(void)
|
|
|
|
{
|
|
|
|
struct MENU_ITEM menu_items[] = {
|
|
|
|
{ "PLAY", startGame },
|
|
|
|
{ "QUIT", exitGame },
|
|
|
|
};
|
|
|
|
|
|
|
|
if (gMap)
|
|
|
|
map_destroy(gMap);
|
|
|
|
|
|
|
|
gMap = map_lua_generator_single_room__run(cLevel, gRenderer);
|
|
|
|
|
|
|
|
createMenu(&mainMenu, menu_items, 2);
|
|
|
|
}
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
static void
|
|
|
|
resetGame(void)
|
|
|
|
{
|
2018-02-09 10:18:22 +01:00
|
|
|
SDL_FlushEvents(SDL_FIRSTEVENT, SDL_LASTEVENT);
|
|
|
|
|
2018-02-09 13:55:57 +01:00
|
|
|
if (mainMenu) {
|
|
|
|
menu_destroy(mainMenu);
|
|
|
|
mainMenu = NULL;
|
|
|
|
}
|
|
|
|
|
2018-02-13 09:50:52 +01:00
|
|
|
if (!inGameMenu)
|
|
|
|
initInGameMenu();
|
2018-02-13 06:44:09 +01:00
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
if (gMap)
|
|
|
|
map_destroy(gMap);
|
|
|
|
|
|
|
|
info("Building new map");
|
2018-02-09 09:36:24 +01:00
|
|
|
gMap = map_lua_generator_run(cLevel, gRenderer);
|
2018-02-08 17:01:38 +01:00
|
|
|
gPlayer->sprite->pos = (Position) {
|
|
|
|
TILE_DIMENSION, TILE_DIMENSION };
|
2018-02-09 09:36:24 +01:00
|
|
|
|
|
|
|
map_set_current_room(gMap, &gPlayer->sprite->pos);
|
|
|
|
camera_follow_position(&gCamera, &gPlayer->sprite->pos);
|
2018-02-08 17:01:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
init(void)
|
2017-11-30 21:00:47 +01:00
|
|
|
{
|
|
|
|
bool result = true;
|
|
|
|
result = result && initSDL();
|
|
|
|
result = result && initGame();
|
2018-02-08 17:01:38 +01:00
|
|
|
initMainMenu();
|
2017-12-17 13:43:41 +01:00
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
gCamera.pos = (Position) { 0, 0 };
|
|
|
|
|
|
|
|
gGameState = MENU;
|
2017-12-22 06:27:58 +01:00
|
|
|
|
2017-11-30 21:00:47 +01:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
static void
|
|
|
|
loadMedia(void)
|
2017-11-30 21:00:47 +01:00
|
|
|
{
|
2018-02-02 17:05:41 +01:00
|
|
|
gPlayer = player_create(WARRIOR, gRenderer);
|
2017-11-30 21:00:47 +01:00
|
|
|
}
|
|
|
|
|
2018-02-13 09:50:52 +01:00
|
|
|
static bool
|
|
|
|
handle_main_events(SDL_Event *event)
|
|
|
|
{
|
|
|
|
if (gGameState == PLAYING || gGameState == IN_GAME_MENU) {
|
|
|
|
if (keyboard_press(SDLK_ESCAPE, event)) {
|
|
|
|
toggleInGameMenu(NULL);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool
|
|
|
|
handle_events(void)
|
2017-12-03 11:09:57 +01:00
|
|
|
{
|
|
|
|
static SDL_Event event;
|
|
|
|
bool quit = false;
|
|
|
|
|
|
|
|
while (SDL_PollEvent(&event) != 0) {
|
|
|
|
if (event.type == SDL_QUIT) {
|
|
|
|
quit = true;
|
2018-02-13 09:50:52 +01:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (handle_main_events(&event))
|
|
|
|
continue;
|
|
|
|
|
|
|
|
if (gGameState == PLAYING) {
|
2017-12-15 08:08:45 +01:00
|
|
|
gPlayer->handle_event(gPlayer,
|
|
|
|
gRoomMatrix,
|
|
|
|
&event);
|
2017-12-12 11:20:08 +01:00
|
|
|
camera_follow_position(&gCamera, &gPlayer->sprite->pos);
|
|
|
|
map_set_current_room(gMap, &gPlayer->sprite->pos);
|
2018-02-08 17:01:38 +01:00
|
|
|
roommatrix_handle_event(gRoomMatrix, &event);
|
|
|
|
} else if (gGameState == MENU) {
|
|
|
|
menu_handle_event(mainMenu, &event);
|
2018-02-13 06:44:09 +01:00
|
|
|
} else if (gGameState == IN_GAME_MENU) {
|
|
|
|
menu_handle_event(inGameMenu, &event);
|
2017-12-03 11:09:57 +01:00
|
|
|
}
|
2018-01-31 09:15:33 +01:00
|
|
|
pointer_handle_event(gPointer, &event);
|
2017-12-03 11:09:57 +01:00
|
|
|
}
|
2018-02-02 16:16:55 +01:00
|
|
|
|
2017-12-03 11:09:57 +01:00
|
|
|
return quit;
|
|
|
|
}
|
|
|
|
|
2018-01-30 15:16:14 +01:00
|
|
|
static bool
|
|
|
|
check_if_dead(void)
|
|
|
|
{
|
|
|
|
if (gPlayer->stats.hp <= 0) {
|
|
|
|
gui_log("The dungeon consumed you");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2017-12-22 06:27:58 +01:00
|
|
|
static void
|
|
|
|
check_next_level(void)
|
|
|
|
{
|
|
|
|
Room *room = gMap->rooms[gMap->currentRoom.x][gMap->currentRoom.y];
|
|
|
|
Position pos = position_to_matrix_coords(&gPlayer->sprite->pos);
|
|
|
|
|
|
|
|
MapTile *tile = room->tiles[pos.x][pos.y];
|
|
|
|
if (!tile) {
|
2018-01-24 06:41:37 +01:00
|
|
|
error("Looks like we are out of place");
|
2017-12-22 06:27:58 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (tile->levelExit) {
|
2018-02-09 09:36:24 +01:00
|
|
|
++cLevel;
|
2018-02-08 17:01:38 +01:00
|
|
|
resetGame();
|
2017-12-22 06:27:58 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-12-22 15:15:40 +01:00
|
|
|
static void
|
|
|
|
run_game(void)
|
|
|
|
{
|
|
|
|
map_clear_dead_monsters(gMap);
|
2018-01-24 21:14:34 +01:00
|
|
|
map_clear_collected_items(gMap);
|
2017-12-22 15:15:40 +01:00
|
|
|
roommatrix_populate_from_map(gRoomMatrix, gMap);
|
|
|
|
roommatrix_add_lightsource(gRoomMatrix,
|
2018-01-31 13:52:11 +01:00
|
|
|
&gPlayer->sprite->pos);
|
2018-01-31 09:15:33 +01:00
|
|
|
|
2017-12-22 15:15:40 +01:00
|
|
|
roommatrix_build_lightmap(gRoomMatrix);
|
|
|
|
|
2018-02-01 09:04:19 +01:00
|
|
|
gui_update_player_stats(gGui, gPlayer, gMap, gRenderer);
|
2018-02-03 23:39:49 +01:00
|
|
|
particle_engine_update(deltaTime);
|
2018-01-31 20:59:55 +01:00
|
|
|
|
|
|
|
if (gPlayer->steps >= gPlayer->stats.speed) {
|
2017-12-22 15:15:40 +01:00
|
|
|
player_reset_steps(gPlayer);
|
|
|
|
roommatrix_update_with_player(gRoomMatrix, gPlayer);
|
|
|
|
map_move_monsters(gMap, gRoomMatrix);
|
|
|
|
}
|
|
|
|
|
2018-02-09 09:36:24 +01:00
|
|
|
SDL_SetRenderDrawColor(gRenderer, 0, 0, 0, 0);
|
2017-12-22 15:15:40 +01:00
|
|
|
SDL_RenderClear(gRenderer);
|
|
|
|
|
2018-01-23 12:14:44 +01:00
|
|
|
SDL_RenderSetViewport(gRenderer, &gameViewport);
|
2017-12-22 15:15:40 +01:00
|
|
|
map_render(gMap, &gCamera);
|
2018-02-03 23:39:49 +01:00
|
|
|
particle_engine_render(&gCamera);
|
2017-12-22 15:15:40 +01:00
|
|
|
player_render(gPlayer, &gCamera);
|
2018-02-06 16:47:45 +01:00
|
|
|
|
|
|
|
if (gPlayer->class == MAGE || gPlayer->class == PALADIN)
|
|
|
|
roommatrix_render_mouse_square(gRoomMatrix, &gCamera);
|
2017-12-22 15:15:40 +01:00
|
|
|
roommatrix_render_lightmap(gRoomMatrix, &gCamera);
|
2018-01-23 12:14:44 +01:00
|
|
|
|
|
|
|
SDL_RenderSetViewport(gRenderer, &rightGuiViewport);
|
|
|
|
gui_render_panel(gGui, RIGHT_GUI_WIDTH,
|
|
|
|
RIGHT_GUI_HEIGHT, &gCamera);
|
|
|
|
|
|
|
|
SDL_RenderSetViewport(gRenderer, &bottomGuiViewport);
|
|
|
|
gui_render_log(gGui, BOTTOM_GUI_WIDTH,
|
|
|
|
BOTTOM_GUI_HEIGHT, &gCamera);
|
2017-12-22 15:15:40 +01:00
|
|
|
|
2018-01-31 09:15:33 +01:00
|
|
|
SDL_RenderSetViewport(gRenderer, NULL);
|
2018-02-13 06:44:09 +01:00
|
|
|
if (gGameState == IN_GAME_MENU) {
|
|
|
|
SDL_Rect dimmer = { 0, 0, SCREEN_WIDTH, SCREEN_HEIGHT };
|
|
|
|
SDL_SetRenderDrawColor(gRenderer, 0, 0, 0, 150);
|
|
|
|
SDL_RenderFillRect(gRenderer, &dimmer);
|
|
|
|
menu_render(inGameMenu, &gCamera);
|
|
|
|
}
|
2018-01-31 09:15:33 +01:00
|
|
|
pointer_render(gPointer, &gCamera);
|
|
|
|
|
2017-12-22 15:15:40 +01:00
|
|
|
SDL_RenderPresent(gRenderer);
|
|
|
|
|
2018-01-30 15:16:14 +01:00
|
|
|
if (check_if_dead())
|
|
|
|
gGameState = GAME_OVER;
|
|
|
|
|
2017-12-22 15:15:40 +01:00
|
|
|
check_next_level();
|
|
|
|
}
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
static void
|
|
|
|
run_menu(void)
|
|
|
|
{
|
2018-02-09 13:27:25 +01:00
|
|
|
if (!timer_started(menuTimer))
|
|
|
|
timer_start(menuTimer);
|
|
|
|
|
|
|
|
roommatrix_populate_from_map(gRoomMatrix, gMap);
|
|
|
|
roommatrix_build_lightmap(gRoomMatrix);
|
|
|
|
if (timer_get_ticks(menuTimer) > 1000) {
|
|
|
|
timer_stop(menuTimer);
|
|
|
|
timer_start(menuTimer);
|
|
|
|
map_move_monsters(gMap, gRoomMatrix);
|
|
|
|
}
|
|
|
|
|
2018-02-09 09:36:24 +01:00
|
|
|
SDL_SetRenderDrawColor(gRenderer, 0, 0, 0, 0);
|
2018-02-08 17:01:38 +01:00
|
|
|
SDL_RenderClear(gRenderer);
|
2018-02-09 13:27:25 +01:00
|
|
|
SDL_RenderSetViewport(gRenderer, &menuViewport);
|
|
|
|
map_render(gMap, &gCamera);
|
|
|
|
roommatrix_render_lightmap(gRoomMatrix, &gCamera);
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
SDL_RenderSetViewport(gRenderer, NULL);
|
|
|
|
menu_render(mainMenu, &gCamera);
|
|
|
|
pointer_render(gPointer, &gCamera);
|
2018-02-09 13:27:25 +01:00
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
SDL_RenderPresent(gRenderer);
|
|
|
|
}
|
|
|
|
|
2017-11-30 21:00:47 +01:00
|
|
|
static
|
2017-12-19 21:00:02 +01:00
|
|
|
void run(void)
|
2017-11-30 21:00:47 +01:00
|
|
|
{
|
2018-02-03 23:39:49 +01:00
|
|
|
static int oldTime = 0;
|
|
|
|
static int currentTime = 0;
|
|
|
|
|
2017-11-30 21:00:47 +01:00
|
|
|
bool quit = false;
|
2017-12-05 08:30:08 +01:00
|
|
|
Timer* fpsTimer = timer_create();
|
2017-11-30 21:00:47 +01:00
|
|
|
|
2018-01-25 16:42:57 +01:00
|
|
|
gui_log("The Dungeon Crawl begins!");
|
|
|
|
|
2017-11-30 21:00:47 +01:00
|
|
|
while (!quit)
|
|
|
|
{
|
2017-12-05 08:30:08 +01:00
|
|
|
timer_start(fpsTimer);
|
2017-11-30 21:00:47 +01:00
|
|
|
|
2017-12-03 11:09:57 +01:00
|
|
|
quit = handle_events();
|
2017-11-30 21:00:47 +01:00
|
|
|
|
2017-12-22 15:15:40 +01:00
|
|
|
switch (gGameState) {
|
|
|
|
case PLAYING:
|
2018-02-13 06:44:09 +01:00
|
|
|
case IN_GAME_MENU:
|
2017-12-22 15:15:40 +01:00
|
|
|
run_game();
|
|
|
|
break;
|
|
|
|
case MENU:
|
2018-02-08 17:01:38 +01:00
|
|
|
run_menu();
|
2017-12-22 15:15:40 +01:00
|
|
|
break;
|
|
|
|
case GAME_OVER:
|
2018-01-30 15:16:14 +01:00
|
|
|
fatal("GAME_OVER not implemented");
|
2017-12-22 15:15:40 +01:00
|
|
|
break;
|
2018-02-09 07:26:44 +01:00
|
|
|
case QUIT:
|
|
|
|
quit = true;
|
|
|
|
break;
|
2017-12-22 15:15:40 +01:00
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
2017-12-22 06:27:58 +01:00
|
|
|
|
2017-12-05 08:30:08 +01:00
|
|
|
int ticks = timer_get_ticks(fpsTimer);
|
2017-11-30 21:00:47 +01:00
|
|
|
if (ticks < 1000/60)
|
|
|
|
SDL_Delay((1000/60) - ticks);
|
2017-12-05 08:30:08 +01:00
|
|
|
timer_stop(fpsTimer);
|
2018-02-03 23:39:49 +01:00
|
|
|
|
|
|
|
if (currentTime == 0)
|
|
|
|
currentTime = SDL_GetTicks();
|
|
|
|
else {
|
|
|
|
oldTime = currentTime;
|
|
|
|
currentTime = SDL_GetTicks();
|
|
|
|
deltaTime = (currentTime - oldTime) / 1000.0;
|
|
|
|
}
|
2017-11-30 21:00:47 +01:00
|
|
|
}
|
2017-12-05 08:30:08 +01:00
|
|
|
|
|
|
|
timer_destroy(fpsTimer);
|
2017-11-30 21:00:47 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static
|
2017-12-19 21:00:02 +01:00
|
|
|
void close(void)
|
2017-11-30 21:00:47 +01:00
|
|
|
{
|
2018-02-09 09:36:24 +01:00
|
|
|
if (gPlayer)
|
|
|
|
player_destroy(gPlayer);
|
|
|
|
if (gMap)
|
|
|
|
map_destroy(gMap);
|
|
|
|
if (mainMenu)
|
|
|
|
menu_destroy(mainMenu);
|
2018-02-13 06:44:09 +01:00
|
|
|
if (inGameMenu)
|
|
|
|
menu_destroy(inGameMenu);
|
2018-02-09 09:36:24 +01:00
|
|
|
|
2017-12-06 11:44:17 +01:00
|
|
|
roommatrix_destroy(gRoomMatrix);
|
2017-12-22 15:15:40 +01:00
|
|
|
gui_destroy(gGui);
|
2018-01-31 09:15:33 +01:00
|
|
|
pointer_destroy(gPointer);
|
2018-01-24 21:14:34 +01:00
|
|
|
item_builder_close();
|
2018-02-03 23:39:49 +01:00
|
|
|
particle_engine_close();
|
2018-02-09 13:27:25 +01:00
|
|
|
timer_destroy(menuTimer);
|
2018-02-09 07:26:44 +01:00
|
|
|
|
2017-12-22 15:15:40 +01:00
|
|
|
SDL_DestroyRenderer(gRenderer);
|
2017-11-30 21:00:47 +01:00
|
|
|
SDL_DestroyWindow(gWindow);
|
|
|
|
gWindow = NULL;
|
2017-12-20 18:56:28 +01:00
|
|
|
TTF_Quit();
|
2017-11-30 21:00:47 +01:00
|
|
|
IMG_Quit();
|
|
|
|
SDL_Quit();
|
|
|
|
}
|
|
|
|
|
2017-12-21 11:46:52 +01:00
|
|
|
int main(int argc, char *argv[])
|
2017-11-30 21:00:47 +01:00
|
|
|
{
|
2017-12-21 11:46:52 +01:00
|
|
|
UNUSED(argc);
|
|
|
|
UNUSED(argv);
|
|
|
|
|
2017-11-30 21:00:47 +01:00
|
|
|
if (!init())
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
loadMedia();
|
|
|
|
run();
|
|
|
|
close();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|