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/>.
|
|
|
|
*/
|
|
|
|
|
2018-02-09 09:39:31 +01:00
|
|
|
#include <stdlib.h>
|
2018-02-08 17:01:38 +01:00
|
|
|
#include <stdbool.h>
|
|
|
|
#include "menu.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "sprite.h"
|
|
|
|
#include "defines.h"
|
2018-02-09 06:53:06 +01:00
|
|
|
#include "gui_button.h"
|
2018-02-12 10:55:36 +01:00
|
|
|
#include "keyboard.h"
|
2018-02-14 16:04:40 +01:00
|
|
|
#include "mixer.h"
|
2018-05-20 17:25:53 +02:00
|
|
|
#include "collisions.h"
|
2018-02-08 17:01:38 +01:00
|
|
|
|
2018-07-31 23:08:34 +02:00
|
|
|
typedef struct MenuItems {
|
2018-02-08 17:01:38 +01:00
|
|
|
Sprite *sprite;
|
|
|
|
Sprite *hsprite;
|
2018-02-09 06:53:06 +01:00
|
|
|
GuiButton *button;
|
2018-02-08 17:01:38 +01:00
|
|
|
} MenuItem;
|
|
|
|
|
|
|
|
Menu *
|
|
|
|
menu_create(void)
|
|
|
|
{
|
|
|
|
Menu *menu = ec_malloc(sizeof(Menu));
|
|
|
|
menu->items = linkedlist_create();
|
|
|
|
menu->selected = 0;
|
|
|
|
return menu;
|
|
|
|
}
|
|
|
|
|
2018-05-20 17:25:53 +02:00
|
|
|
static bool
|
2018-05-20 00:02:39 +02:00
|
|
|
handle_keyboard_input(Menu *m, Input *input)
|
2018-02-08 17:01:38 +01:00
|
|
|
{
|
2018-02-14 23:14:30 +01:00
|
|
|
int lastSelect = -1;
|
2018-02-09 06:53:06 +01:00
|
|
|
|
2018-05-20 00:02:39 +02:00
|
|
|
if (input_key_is_pressed(input, KEY_UP)) {
|
2018-02-14 23:14:30 +01:00
|
|
|
lastSelect = m->selected;
|
2018-02-12 10:55:36 +01:00
|
|
|
m->selected--;
|
2018-05-20 00:02:39 +02:00
|
|
|
} else if (input_key_is_pressed(input, KEY_DOWN)) {
|
2018-02-14 23:14:30 +01:00
|
|
|
lastSelect = m->selected;
|
2018-02-12 10:55:36 +01:00
|
|
|
m->selected++;
|
2018-05-20 00:02:39 +02:00
|
|
|
} else if (input_key_is_pressed(input, KEY_ENTER)) {
|
2018-02-09 10:18:22 +01:00
|
|
|
MenuItem *item = linkedlist_get(&m->items, m->selected);
|
|
|
|
if (item->button->event)
|
|
|
|
item->button->event(item->button->usrdata);
|
2018-05-20 17:25:53 +02:00
|
|
|
return true;
|
2018-02-14 23:14:30 +01:00
|
|
|
} else {
|
2018-05-20 17:25:53 +02:00
|
|
|
return false;
|
2018-02-09 10:18:22 +01:00
|
|
|
}
|
2018-02-14 23:14:30 +01:00
|
|
|
m->selected = m->selected % linkedlist_size(m->items);
|
2018-02-09 10:18:22 +01:00
|
|
|
|
2018-02-14 23:14:30 +01:00
|
|
|
if (lastSelect != -1)
|
2018-02-14 16:04:40 +01:00
|
|
|
mixer_play_effect(CLICK);
|
|
|
|
|
2018-02-14 23:14:30 +01:00
|
|
|
((MenuItem*) linkedlist_get(&m->items, lastSelect))->button->hover = false;
|
|
|
|
((MenuItem*) linkedlist_get(&m->items, m->selected))->button->hover = true;
|
2018-05-20 17:25:53 +02:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
handle_mouse_motion(Menu *m, Input *input)
|
|
|
|
{
|
|
|
|
if (!input_mouse_moved(input))
|
|
|
|
return;
|
|
|
|
|
|
|
|
Position p = { input->mouseX, input->mouseY };
|
|
|
|
|
|
|
|
LinkedList *items = m->items;
|
|
|
|
int index = 0;
|
|
|
|
while (items) {
|
|
|
|
MenuItem *item = items->data;
|
|
|
|
items = items->next;
|
|
|
|
|
|
|
|
if (position_in_rect(&p, &item->button->area)) {
|
|
|
|
m->selected = index;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
index++;
|
|
|
|
}
|
|
|
|
|
2018-02-14 23:14:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2018-05-20 00:02:39 +02:00
|
|
|
menu_update(Menu *m, Input *input)
|
2018-02-14 23:14:30 +01:00
|
|
|
{
|
2018-05-20 17:25:53 +02:00
|
|
|
if (handle_keyboard_input(m, input)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
handle_mouse_motion(m, input);
|
|
|
|
|
|
|
|
LinkedList *items = m->items;
|
|
|
|
while (items) {
|
|
|
|
MenuItem *item = items->data;
|
|
|
|
items = items->next;
|
|
|
|
|
|
|
|
Position p = { input->mouseX, input->mouseY };
|
|
|
|
if (position_in_rect(&p, &item->button->area)
|
|
|
|
&& input_mousebutton_is_pressed(input, MBUTTON_LEFT))
|
|
|
|
{
|
|
|
|
item->button->event(NULL);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
2018-02-14 23:14:30 +01:00
|
|
|
}
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
void
|
2018-02-09 07:26:44 +01:00
|
|
|
menu_item_add(Menu *m, Sprite *s1, Sprite *s2, void (*event)(void*))
|
2018-02-08 17:01:38 +01:00
|
|
|
{
|
|
|
|
MenuItem *item = ec_malloc(sizeof(MenuItem));
|
|
|
|
item->sprite = s1;
|
|
|
|
item->hsprite = s2;
|
2018-02-09 06:53:06 +01:00
|
|
|
|
|
|
|
SDL_Rect area = {
|
|
|
|
item->sprite->pos.x,
|
|
|
|
item->sprite->pos.y,
|
|
|
|
item->sprite->textures[0]->dim.width,
|
|
|
|
item->sprite->textures[0]->dim.height
|
|
|
|
};
|
2018-02-09 07:26:44 +01:00
|
|
|
item->button = gui_button_create(area, event, NULL);
|
2018-02-14 23:14:30 +01:00
|
|
|
if (linkedlist_size(m->items) == 0)
|
|
|
|
item->button->hover = true;
|
2018-02-08 17:01:38 +01:00
|
|
|
linkedlist_append(&m->items, item);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
menu_render(Menu *m, Camera *cam)
|
|
|
|
{
|
|
|
|
LinkedList *items = m->items;
|
|
|
|
|
2018-05-20 17:25:53 +02:00
|
|
|
int index = 0;
|
2018-02-08 17:01:38 +01:00
|
|
|
while (items) {
|
|
|
|
MenuItem *item = items->data;
|
2018-02-09 09:36:24 +01:00
|
|
|
items = items->next;
|
2018-05-20 17:25:53 +02:00
|
|
|
if (m->selected == index)
|
2018-02-09 06:53:06 +01:00
|
|
|
sprite_render(item->hsprite, cam);
|
|
|
|
else
|
|
|
|
sprite_render(item->sprite, cam);
|
2018-05-20 17:25:53 +02:00
|
|
|
index++;
|
2018-02-08 17:01:38 +01:00
|
|
|
}
|
2018-02-09 09:36:24 +01:00
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
menu_item_destroy(MenuItem *item)
|
|
|
|
{
|
2018-02-09 06:53:06 +01:00
|
|
|
if (item->sprite)
|
|
|
|
sprite_destroy(item->sprite);
|
|
|
|
if (item->hsprite)
|
|
|
|
sprite_destroy(item->hsprite);
|
|
|
|
gui_button_destroy(item->button);
|
2018-02-08 17:01:38 +01:00
|
|
|
free(item);
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
menu_destroy(Menu *m)
|
|
|
|
{
|
2018-02-09 09:36:24 +01:00
|
|
|
while (m->items)
|
|
|
|
menu_item_destroy(linkedlist_pop(&m->items));
|
|
|
|
|
2018-02-08 17:01:38 +01:00
|
|
|
free(m);
|
|
|
|
}
|
|
|
|
|