2012-12-20 11:24:49 +00:00
|
|
|
/* RetroArch - A frontend for libretro.
|
2013-01-01 00:37:37 +00:00
|
|
|
* Copyright (C) 2010-2013 - Hans-Kristian Arntzen
|
2012-12-20 11:24:49 +00:00
|
|
|
*
|
|
|
|
* RetroArch 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 Found-
|
|
|
|
* ation, either version 3 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* RetroArch 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 RetroArch.
|
|
|
|
* If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "overlay.h"
|
|
|
|
#include "../general.h"
|
|
|
|
#include "../driver.h"
|
|
|
|
#include "../libretro.h"
|
|
|
|
#include "../gfx/image.h"
|
2012-12-22 12:27:00 +00:00
|
|
|
#include "../conf/config_file.h"
|
2013-01-11 15:44:58 +00:00
|
|
|
#include "../compat/posix_string.h"
|
2012-12-22 12:27:00 +00:00
|
|
|
#include "input_common.h"
|
|
|
|
#include "../file.h"
|
|
|
|
#include <stddef.h>
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
enum overlay_hitbox
|
|
|
|
{
|
|
|
|
OVERLAY_HITBOX_RADIAL = 0,
|
|
|
|
OVERLAY_HITBOX_RECT
|
|
|
|
};
|
|
|
|
|
2013-09-05 15:38:00 +00:00
|
|
|
enum overlay_type
|
|
|
|
{
|
|
|
|
OVERLAY_TYPE_BUTTONS = 0,
|
|
|
|
OVERLAY_TYPE_ANALOG_LEFT,
|
|
|
|
OVERLAY_TYPE_ANALOG_RIGHT
|
|
|
|
};
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
struct overlay_desc
|
|
|
|
{
|
|
|
|
float x;
|
|
|
|
float y;
|
|
|
|
|
|
|
|
enum overlay_hitbox hitbox;
|
|
|
|
float range_x, range_y;
|
2013-10-21 10:42:47 +00:00
|
|
|
float range_x_mod, range_y_mod;
|
2013-10-16 14:59:24 +00:00
|
|
|
float mod_x, mod_y, mod_w, mod_h;
|
2012-12-22 12:27:00 +00:00
|
|
|
|
2013-09-05 15:38:00 +00:00
|
|
|
enum overlay_type type;
|
2013-01-11 15:43:12 +00:00
|
|
|
uint64_t key_mask;
|
2013-09-05 22:52:17 +00:00
|
|
|
float analog_saturate_pct;
|
2013-02-23 21:57:39 +00:00
|
|
|
|
|
|
|
unsigned next_index;
|
|
|
|
char next_index_name[64];
|
2013-10-16 14:59:24 +00:00
|
|
|
|
|
|
|
struct video_overlay_image image;
|
|
|
|
unsigned image_index;
|
2013-10-16 16:27:14 +00:00
|
|
|
|
|
|
|
float alpha_mod;
|
2013-10-21 10:42:47 +00:00
|
|
|
float range_mod;
|
2013-12-27 01:37:52 +00:00
|
|
|
|
|
|
|
bool updated;
|
2012-12-22 12:27:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct overlay
|
|
|
|
{
|
|
|
|
struct overlay_desc *descs;
|
|
|
|
size_t size;
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
struct video_overlay_image image;
|
2012-12-22 15:09:15 +00:00
|
|
|
|
2013-02-03 22:35:55 +00:00
|
|
|
bool block_scale;
|
|
|
|
float mod_x, mod_y, mod_w, mod_h;
|
2012-12-22 15:09:15 +00:00
|
|
|
float x, y, w, h;
|
2013-02-03 22:35:55 +00:00
|
|
|
float scale;
|
|
|
|
float center_x, center_y;
|
|
|
|
|
2013-01-11 15:23:04 +00:00
|
|
|
bool full_screen;
|
2013-02-23 21:57:39 +00:00
|
|
|
|
|
|
|
char name[64];
|
2013-10-16 14:59:24 +00:00
|
|
|
|
|
|
|
struct video_overlay_image *load_images;
|
|
|
|
unsigned load_images_size;
|
2012-12-22 12:27:00 +00:00
|
|
|
};
|
2012-12-20 11:24:49 +00:00
|
|
|
|
|
|
|
struct input_overlay
|
|
|
|
{
|
|
|
|
void *iface_data;
|
|
|
|
const video_overlay_interface_t *iface;
|
2012-12-20 14:37:04 +00:00
|
|
|
bool enable;
|
2012-12-22 12:27:00 +00:00
|
|
|
|
2013-02-17 14:00:38 +00:00
|
|
|
bool blocked;
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
struct overlay *overlays;
|
|
|
|
const struct overlay *active;
|
|
|
|
size_t index;
|
|
|
|
size_t size;
|
2013-02-23 21:57:39 +00:00
|
|
|
|
|
|
|
unsigned next_index;
|
2013-10-16 14:59:24 +00:00
|
|
|
char *overlay_path;
|
2012-12-20 11:24:49 +00:00
|
|
|
};
|
|
|
|
|
2013-04-10 02:39:27 +00:00
|
|
|
struct str_to_bind_map
|
|
|
|
{
|
|
|
|
const char *str;
|
|
|
|
unsigned bind;
|
|
|
|
};
|
|
|
|
|
|
|
|
static const struct str_to_bind_map str_to_bind[] = {
|
|
|
|
{ "b", RETRO_DEVICE_ID_JOYPAD_B },
|
|
|
|
{ "y", RETRO_DEVICE_ID_JOYPAD_Y },
|
|
|
|
{ "select", RETRO_DEVICE_ID_JOYPAD_SELECT },
|
|
|
|
{ "start", RETRO_DEVICE_ID_JOYPAD_START },
|
|
|
|
{ "up", RETRO_DEVICE_ID_JOYPAD_UP },
|
|
|
|
{ "down", RETRO_DEVICE_ID_JOYPAD_DOWN },
|
|
|
|
{ "left", RETRO_DEVICE_ID_JOYPAD_LEFT },
|
|
|
|
{ "right", RETRO_DEVICE_ID_JOYPAD_RIGHT },
|
|
|
|
{ "a", RETRO_DEVICE_ID_JOYPAD_A },
|
|
|
|
{ "x", RETRO_DEVICE_ID_JOYPAD_X },
|
|
|
|
{ "l", RETRO_DEVICE_ID_JOYPAD_L },
|
|
|
|
{ "r", RETRO_DEVICE_ID_JOYPAD_R },
|
|
|
|
{ "l2", RETRO_DEVICE_ID_JOYPAD_L2 },
|
|
|
|
{ "r2", RETRO_DEVICE_ID_JOYPAD_R2 },
|
|
|
|
{ "l3", RETRO_DEVICE_ID_JOYPAD_L3 },
|
|
|
|
{ "r3", RETRO_DEVICE_ID_JOYPAD_R3 },
|
|
|
|
{ "turbo", RARCH_TURBO_ENABLE },
|
|
|
|
{ "l_x_plus", RARCH_ANALOG_LEFT_X_PLUS },
|
|
|
|
{ "l_x_minus", RARCH_ANALOG_LEFT_X_MINUS },
|
|
|
|
{ "l_y_plus", RARCH_ANALOG_LEFT_Y_PLUS },
|
|
|
|
{ "l_y_minus", RARCH_ANALOG_LEFT_Y_MINUS },
|
|
|
|
{ "r_x_plus", RARCH_ANALOG_RIGHT_X_PLUS },
|
|
|
|
{ "r_x_minus", RARCH_ANALOG_RIGHT_X_MINUS },
|
|
|
|
{ "r_y_plus", RARCH_ANALOG_RIGHT_Y_PLUS },
|
|
|
|
{ "r_y_minus", RARCH_ANALOG_RIGHT_Y_MINUS },
|
|
|
|
{ "toggle_fast_forward", RARCH_FAST_FORWARD_KEY },
|
|
|
|
{ "hold_fast_forward", RARCH_FAST_FORWARD_HOLD_KEY },
|
|
|
|
{ "load_state", RARCH_LOAD_STATE_KEY },
|
|
|
|
{ "save_state", RARCH_SAVE_STATE_KEY },
|
|
|
|
{ "toggle_fullscreen", RARCH_FULLSCREEN_TOGGLE_KEY },
|
|
|
|
{ "exit_emulator", RARCH_QUIT_KEY },
|
|
|
|
{ "state_slot_increase", RARCH_STATE_SLOT_PLUS },
|
|
|
|
{ "state_slot_decrease", RARCH_STATE_SLOT_MINUS },
|
|
|
|
{ "rewind", RARCH_REWIND },
|
|
|
|
{ "movie_record_toggle", RARCH_MOVIE_RECORD_TOGGLE },
|
|
|
|
{ "pause_toggle", RARCH_PAUSE_TOGGLE },
|
|
|
|
{ "frame_advance", RARCH_FRAMEADVANCE },
|
|
|
|
{ "reset", RARCH_RESET },
|
|
|
|
{ "shader_next", RARCH_SHADER_NEXT },
|
|
|
|
{ "shader_prev", RARCH_SHADER_PREV },
|
|
|
|
{ "cheat_index_plus", RARCH_CHEAT_INDEX_PLUS },
|
|
|
|
{ "cheat_index_minus", RARCH_CHEAT_INDEX_MINUS },
|
|
|
|
{ "cheat_toggle", RARCH_CHEAT_TOGGLE },
|
|
|
|
{ "screenshot", RARCH_SCREENSHOT },
|
|
|
|
{ "dsp_config", RARCH_DSP_CONFIG },
|
|
|
|
{ "audio_mute", RARCH_MUTE },
|
|
|
|
{ "netplay_flip_players", RARCH_NETPLAY_FLIP },
|
|
|
|
{ "slowmotion", RARCH_SLOWMOTION },
|
|
|
|
{ "enable_hotkey", RARCH_ENABLE_HOTKEY },
|
|
|
|
{ "volume_up", RARCH_VOLUME_UP },
|
|
|
|
{ "volume_down", RARCH_VOLUME_DOWN },
|
|
|
|
{ "overlay_next", RARCH_OVERLAY_NEXT },
|
|
|
|
{ "disk_eject_toggle", RARCH_DISK_EJECT_TOGGLE },
|
|
|
|
{ "disk_next", RARCH_DISK_NEXT },
|
|
|
|
{ "grab_mouse_toggle", RARCH_GRAB_MOUSE_TOGGLE },
|
|
|
|
{ "menu_toggle", RARCH_MENU_TOGGLE },
|
|
|
|
};
|
|
|
|
|
|
|
|
static unsigned input_str_to_bind(const char *str)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i < ARRAY_SIZE(str_to_bind); i++)
|
2013-04-10 02:39:27 +00:00
|
|
|
{
|
|
|
|
if (!strcmp(str_to_bind[i].str, str))
|
|
|
|
return str_to_bind[i].bind;
|
|
|
|
}
|
|
|
|
|
|
|
|
return RARCH_BIND_LIST_END;
|
|
|
|
}
|
|
|
|
|
2013-02-03 22:35:55 +00:00
|
|
|
static void input_overlay_scale(struct overlay *overlay, float scale)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2013-02-03 22:35:55 +00:00
|
|
|
if (overlay->block_scale)
|
2013-10-16 14:59:24 +00:00
|
|
|
scale = 1.0f;
|
|
|
|
|
|
|
|
overlay->scale = scale;
|
|
|
|
overlay->mod_w = overlay->w * scale;
|
|
|
|
overlay->mod_h = overlay->h * scale;
|
|
|
|
overlay->mod_x = overlay->center_x + (overlay->x - overlay->center_x) * scale;
|
|
|
|
overlay->mod_y = overlay->center_y + (overlay->y - overlay->center_y) * scale;
|
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < overlay->size; i++)
|
2013-02-03 22:35:55 +00:00
|
|
|
{
|
2013-10-16 14:59:24 +00:00
|
|
|
struct overlay_desc *desc = &overlay->descs[i];
|
2013-10-21 12:26:42 +00:00
|
|
|
|
|
|
|
float scale_w = overlay->mod_w * desc->range_x;
|
|
|
|
float scale_h = overlay->mod_h * desc->range_y;
|
|
|
|
|
|
|
|
desc->mod_w = 2.0f * scale_w;
|
|
|
|
desc->mod_h = 2.0f * scale_h;
|
|
|
|
|
|
|
|
float adj_center_x = overlay->mod_x + desc->x * overlay->mod_w;
|
|
|
|
float adj_center_y = overlay->mod_y + desc->y * overlay->mod_h;
|
|
|
|
desc->mod_x = adj_center_x - scale_w;
|
|
|
|
desc->mod_y = adj_center_y - scale_h;
|
2013-02-03 22:35:55 +00:00
|
|
|
}
|
2013-10-16 14:59:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void input_overlay_set_vertex_geom(input_overlay_t *ol)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2013-10-16 14:59:24 +00:00
|
|
|
if (ol->active->image.image)
|
|
|
|
ol->iface->vertex_geom(ol->iface_data, 0,
|
|
|
|
ol->active->mod_x, ol->active->mod_y, ol->active->mod_w, ol->active->mod_h);
|
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < ol->active->size; i++)
|
2013-02-03 22:35:55 +00:00
|
|
|
{
|
2013-10-16 14:59:24 +00:00
|
|
|
struct overlay_desc *desc = &ol->active->descs[i];
|
|
|
|
if (desc->image.image)
|
|
|
|
ol->iface->vertex_geom(ol->iface_data, desc->image_index,
|
|
|
|
desc->mod_x, desc->mod_y, desc->mod_w, desc->mod_h);
|
2013-02-03 22:35:55 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void input_overlay_set_scale_factor(input_overlay_t *ol, float scale)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < ol->size; i++)
|
2013-02-03 22:35:55 +00:00
|
|
|
input_overlay_scale(&ol->overlays[i], scale);
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
input_overlay_set_vertex_geom(ol);
|
2013-02-03 22:35:55 +00:00
|
|
|
}
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
static void input_overlay_free_overlay(struct overlay *overlay)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < overlay->size; i++)
|
2013-10-16 14:59:24 +00:00
|
|
|
free((void*)overlay->descs[i].image.image);
|
|
|
|
free(overlay->load_images);
|
2012-12-22 12:27:00 +00:00
|
|
|
free(overlay->descs);
|
2013-10-16 14:59:24 +00:00
|
|
|
free((void*)overlay->image.image);
|
2012-12-22 12:27:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void input_overlay_free_overlays(input_overlay_t *ol)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < ol->size; i++)
|
2012-12-22 12:27:00 +00:00
|
|
|
input_overlay_free_overlay(&ol->overlays[i]);
|
|
|
|
free(ol->overlays);
|
|
|
|
}
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
static bool input_overlay_load_desc(input_overlay_t *ol, config_file_t *conf, struct overlay_desc *desc,
|
2012-12-22 12:27:00 +00:00
|
|
|
unsigned ol_index, unsigned desc_index,
|
2013-10-21 10:42:47 +00:00
|
|
|
unsigned width, unsigned height,
|
|
|
|
bool normalized, float alpha_mod, float range_mod)
|
2012-12-22 12:27:00 +00:00
|
|
|
{
|
|
|
|
bool ret = true;
|
|
|
|
char overlay_desc_key[64];
|
|
|
|
snprintf(overlay_desc_key, sizeof(overlay_desc_key), "overlay%u_desc%u", ol_index, desc_index);
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
char overlay_desc_image_key[64];
|
|
|
|
snprintf(overlay_desc_image_key, sizeof(overlay_desc_image_key),
|
|
|
|
"overlay%u_desc%u_overlay", ol_index, desc_index);
|
|
|
|
|
|
|
|
char image_path[PATH_MAX];
|
|
|
|
if (config_get_path(conf, overlay_desc_image_key, image_path, sizeof(image_path)))
|
|
|
|
{
|
|
|
|
char path[PATH_MAX];
|
|
|
|
fill_pathname_resolve_relative(path, ol->overlay_path, image_path, sizeof(path));
|
|
|
|
|
|
|
|
struct texture_image img = {0};
|
|
|
|
if (texture_image_load(path, &img))
|
|
|
|
{
|
|
|
|
desc->image.image = img.pixels;
|
|
|
|
desc->image.width = img.width;
|
|
|
|
desc->image.height = img.height;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
char overlay_desc_normalized_key[64];
|
|
|
|
snprintf(overlay_desc_normalized_key, sizeof(overlay_desc_normalized_key),
|
|
|
|
"overlay%u_desc%u_normalized", ol_index, desc_index);
|
|
|
|
config_get_bool(conf, overlay_desc_normalized_key, &normalized);
|
|
|
|
bool by_pixel = !normalized;
|
2013-10-16 16:27:14 +00:00
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
if (by_pixel && (width == 0 || height == 0))
|
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Base overlay is not set and not using normalized coordinates.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
char overlay[256];
|
|
|
|
if (!config_get_array(conf, overlay_desc_key, overlay, sizeof(overlay)))
|
2013-02-17 00:04:04 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Didn't find key: %s.\n", overlay_desc_key);
|
2012-12-22 12:27:00 +00:00
|
|
|
return false;
|
2013-02-17 00:04:04 +00:00
|
|
|
}
|
2012-12-22 12:27:00 +00:00
|
|
|
|
|
|
|
struct string_list *list = string_split(overlay, ", ");
|
|
|
|
if (!list)
|
2013-02-17 00:04:04 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to split overlay desc.\n");
|
2012-12-22 12:27:00 +00:00
|
|
|
return false;
|
2013-02-17 00:04:04 +00:00
|
|
|
}
|
2012-12-22 12:27:00 +00:00
|
|
|
|
|
|
|
if (list->size < 6)
|
|
|
|
{
|
|
|
|
string_list_free(list);
|
2013-02-17 00:04:04 +00:00
|
|
|
RARCH_ERR("[Overlay]: Overlay desc is invalid. Requires at least 6 tokens.\n");
|
2012-12-22 12:27:00 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
const char *x = list->elems[1].data;
|
|
|
|
const char *y = list->elems[2].data;
|
|
|
|
const char *box = list->elems[3].data;
|
|
|
|
|
2013-01-11 15:43:12 +00:00
|
|
|
char *key = list->elems[0].data;
|
|
|
|
char *save;
|
|
|
|
desc->key_mask = 0;
|
|
|
|
|
2013-09-05 15:38:00 +00:00
|
|
|
if (strcmp(key, "analog_left") == 0)
|
|
|
|
desc->type = OVERLAY_TYPE_ANALOG_LEFT;
|
|
|
|
else if (strcmp(key, "analog_right") == 0)
|
|
|
|
desc->type = OVERLAY_TYPE_ANALOG_RIGHT;
|
|
|
|
else
|
2013-02-23 21:57:39 +00:00
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
const char *tmp;
|
2013-09-05 15:38:00 +00:00
|
|
|
desc->type = OVERLAY_TYPE_BUTTONS;
|
2013-10-22 13:08:17 +00:00
|
|
|
for (tmp = strtok_r(key, "|", &save); tmp; tmp = strtok_r(NULL, "|", &save))
|
2013-10-16 16:27:14 +00:00
|
|
|
{
|
|
|
|
if (strcmp(tmp, "nul") != 0)
|
|
|
|
desc->key_mask |= UINT64_C(1) << input_str_to_bind(tmp);
|
|
|
|
}
|
2013-09-05 15:38:00 +00:00
|
|
|
|
|
|
|
if (desc->key_mask & (UINT64_C(1) << RARCH_OVERLAY_NEXT))
|
|
|
|
{
|
|
|
|
char overlay_target_key[64];
|
|
|
|
snprintf(overlay_target_key, sizeof(overlay_target_key), "overlay%u_desc%u_next_target", ol_index, desc_index);
|
|
|
|
config_get_array(conf, overlay_target_key, desc->next_index_name, sizeof(desc->next_index_name));
|
|
|
|
}
|
2013-02-23 21:57:39 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
float width_mod = by_pixel ? (1.0f / width) : 1.0f;
|
|
|
|
float height_mod = by_pixel ? (1.0f / height) : 1.0f;
|
|
|
|
|
|
|
|
desc->x = (float)strtod(x, NULL) * width_mod;
|
|
|
|
desc->y = (float)strtod(y, NULL) * height_mod;
|
2012-12-22 12:27:00 +00:00
|
|
|
|
|
|
|
if (!strcmp(box, "radial"))
|
|
|
|
desc->hitbox = OVERLAY_HITBOX_RADIAL;
|
|
|
|
else if (!strcmp(box, "rect"))
|
|
|
|
desc->hitbox = OVERLAY_HITBOX_RECT;
|
|
|
|
else
|
|
|
|
{
|
2013-02-17 00:04:04 +00:00
|
|
|
RARCH_ERR("[Overlay]: Hitbox type (%s) is invalid. Use \"radial\" or \"rect\".\n", box);
|
2012-12-22 12:27:00 +00:00
|
|
|
ret = false;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
2013-09-05 22:52:17 +00:00
|
|
|
if (desc->type != OVERLAY_TYPE_BUTTONS)
|
2013-09-05 15:38:00 +00:00
|
|
|
{
|
2013-09-05 22:52:17 +00:00
|
|
|
if (desc->hitbox != OVERLAY_HITBOX_RADIAL)
|
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Analog hitbox type must be \"radial\".\n");
|
|
|
|
ret = false;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
char overlay_analog_saturate_key[64];
|
|
|
|
snprintf(overlay_analog_saturate_key, sizeof(overlay_analog_saturate_key), "overlay%u_desc%u_saturate_pct", ol_index, desc_index);
|
|
|
|
if (!config_get_float(conf, overlay_analog_saturate_key, &desc->analog_saturate_pct))
|
|
|
|
desc->analog_saturate_pct = 1.0f;
|
2013-09-05 15:38:00 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
desc->range_x = (float)strtod(list->elems[4].data, NULL) * width_mod;
|
|
|
|
desc->range_y = (float)strtod(list->elems[5].data, NULL) * height_mod;
|
|
|
|
|
|
|
|
desc->mod_x = desc->x - desc->range_x;
|
|
|
|
desc->mod_w = 2.0f * desc->range_x;
|
|
|
|
desc->mod_y = desc->y - desc->range_y;
|
|
|
|
desc->mod_h = 2.0f * desc->range_y;
|
2012-12-22 12:27:00 +00:00
|
|
|
|
2013-10-21 10:42:47 +00:00
|
|
|
char conf_key[64];
|
|
|
|
snprintf(conf_key, sizeof(conf_key), "overlay%u_desc%u_alpha_mod", ol_index, desc_index);
|
|
|
|
desc->alpha_mod = alpha_mod;
|
|
|
|
config_get_float(conf, conf_key, &desc->alpha_mod);
|
|
|
|
|
|
|
|
snprintf(conf_key, sizeof(conf_key), "overlay%u_desc%u_range_mod", ol_index, desc_index);
|
|
|
|
desc->range_mod = range_mod;
|
|
|
|
config_get_float(conf, conf_key, &desc->range_mod);
|
|
|
|
|
|
|
|
desc->range_x_mod = desc->range_x;
|
|
|
|
desc->range_y_mod = desc->range_y;
|
2013-10-16 16:27:14 +00:00
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
end:
|
|
|
|
if (list)
|
|
|
|
string_list_free(list);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
static bool input_overlay_load_overlay(input_overlay_t *ol, config_file_t *conf, const char *config_path,
|
2012-12-22 12:27:00 +00:00
|
|
|
struct overlay *overlay, unsigned index)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2012-12-22 12:27:00 +00:00
|
|
|
char overlay_path_key[64];
|
2013-02-23 21:57:39 +00:00
|
|
|
char overlay_name_key[64];
|
2012-12-22 12:27:00 +00:00
|
|
|
char overlay_path[PATH_MAX];
|
|
|
|
char overlay_resolved_path[PATH_MAX];
|
|
|
|
|
|
|
|
snprintf(overlay_path_key, sizeof(overlay_path_key), "overlay%u_overlay", index);
|
2013-10-16 16:27:14 +00:00
|
|
|
if (config_get_path(conf, overlay_path_key, overlay_path, sizeof(overlay_path)))
|
2013-02-17 00:04:04 +00:00
|
|
|
{
|
2013-10-16 16:27:14 +00:00
|
|
|
fill_pathname_resolve_relative(overlay_resolved_path, config_path,
|
|
|
|
overlay_path, sizeof(overlay_resolved_path));
|
|
|
|
|
|
|
|
struct texture_image img = {0};
|
|
|
|
if (texture_image_load(overlay_resolved_path, &img))
|
|
|
|
{
|
|
|
|
overlay->image.image = img.pixels;
|
|
|
|
overlay->image.width = img.width;
|
|
|
|
overlay->image.height = img.height;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to load image: %s.\n", overlay_resolved_path);
|
|
|
|
return false;
|
|
|
|
}
|
2013-02-17 00:04:04 +00:00
|
|
|
}
|
2012-12-22 12:27:00 +00:00
|
|
|
|
2013-02-23 21:57:39 +00:00
|
|
|
snprintf(overlay_name_key, sizeof(overlay_name_key), "overlay%u_name", index);
|
|
|
|
config_get_array(conf, overlay_name_key, overlay->name, sizeof(overlay->name));
|
|
|
|
|
2012-12-22 15:09:15 +00:00
|
|
|
// By default, we stretch the overlay out in full.
|
|
|
|
overlay->x = overlay->y = 0.0f;
|
|
|
|
overlay->w = overlay->h = 1.0f;
|
|
|
|
|
|
|
|
char overlay_rect_key[64];
|
|
|
|
snprintf(overlay_rect_key, sizeof(overlay_rect_key), "overlay%u_rect", index);
|
|
|
|
char overlay_rect[256];
|
|
|
|
if (config_get_array(conf, overlay_rect_key, overlay_rect, sizeof(overlay_rect)))
|
|
|
|
{
|
|
|
|
struct string_list *list = string_split(overlay_rect, ", ");
|
|
|
|
if (list->size < 4)
|
2013-02-17 00:04:04 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to split rect \"%s\" into at least four tokens.\n", overlay_rect);
|
2012-12-22 15:09:15 +00:00
|
|
|
return false;
|
2013-02-17 00:04:04 +00:00
|
|
|
}
|
2012-12-22 15:09:15 +00:00
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
overlay->x = (float)strtod(list->elems[0].data, NULL);
|
|
|
|
overlay->y = (float)strtod(list->elems[1].data, NULL);
|
|
|
|
overlay->w = (float)strtod(list->elems[2].data, NULL);
|
|
|
|
overlay->h = (float)strtod(list->elems[3].data, NULL);
|
2012-12-22 15:09:15 +00:00
|
|
|
string_list_free(list);
|
|
|
|
}
|
|
|
|
|
2013-01-11 15:23:04 +00:00
|
|
|
char overlay_full_screen_key[64];
|
|
|
|
snprintf(overlay_full_screen_key, sizeof(overlay_full_screen_key),
|
|
|
|
"overlay%u_full_screen", index);
|
|
|
|
overlay->full_screen = false;
|
|
|
|
config_get_bool(conf, overlay_full_screen_key, &overlay->full_screen);
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
char overlay_descs_key[64];
|
|
|
|
snprintf(overlay_descs_key, sizeof(overlay_descs_key), "overlay%u_descs", index);
|
|
|
|
|
|
|
|
unsigned descs = 0;
|
|
|
|
if (!config_get_uint(conf, overlay_descs_key, &descs))
|
2013-02-17 00:04:04 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to read number of descs from config key: %s.\n", overlay_descs_key);
|
2012-12-22 12:27:00 +00:00
|
|
|
return false;
|
2013-02-17 00:04:04 +00:00
|
|
|
}
|
2012-12-22 12:27:00 +00:00
|
|
|
|
|
|
|
overlay->descs = (struct overlay_desc*)calloc(descs, sizeof(*overlay->descs));
|
|
|
|
if (!overlay->descs)
|
2013-02-17 00:04:04 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to allocate descs.\n");
|
2012-12-22 12:27:00 +00:00
|
|
|
return false;
|
2013-02-17 00:04:04 +00:00
|
|
|
}
|
2012-12-22 12:27:00 +00:00
|
|
|
|
|
|
|
overlay->size = descs;
|
|
|
|
|
2013-10-21 10:42:47 +00:00
|
|
|
char conf_key[64];
|
2013-10-16 16:27:14 +00:00
|
|
|
bool normalized = false;
|
2013-10-21 10:42:47 +00:00
|
|
|
snprintf(conf_key, sizeof(conf_key),
|
2013-10-16 16:27:14 +00:00
|
|
|
"overlay%u_normalized", index);
|
2013-10-21 10:42:47 +00:00
|
|
|
config_get_bool(conf, conf_key, &normalized);
|
|
|
|
|
|
|
|
float alpha_mod = 1.0f;
|
|
|
|
snprintf(conf_key, sizeof(conf_key), "overlay%u_alpha_mod", index);
|
|
|
|
config_get_float(conf, conf_key, &alpha_mod);
|
|
|
|
|
|
|
|
float range_mod = 1.0f;
|
|
|
|
snprintf(conf_key, sizeof(conf_key), "overlay%u_range_mod", index);
|
|
|
|
config_get_float(conf, conf_key, &range_mod);
|
2013-10-16 16:27:14 +00:00
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < overlay->size; i++)
|
2012-12-22 12:27:00 +00:00
|
|
|
{
|
2013-10-16 16:27:14 +00:00
|
|
|
if (!input_overlay_load_desc(ol, conf, &overlay->descs[i], index, i,
|
2013-10-21 10:42:47 +00:00
|
|
|
overlay->image.width, overlay->image.height,
|
|
|
|
normalized, alpha_mod, range_mod))
|
2013-02-17 00:04:04 +00:00
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to load overlay descs for overlay #%u.\n", (unsigned)i);
|
2012-12-22 12:27:00 +00:00
|
|
|
return false;
|
2013-02-17 00:04:04 +00:00
|
|
|
}
|
2012-12-22 12:27:00 +00:00
|
|
|
}
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
// Precache load image array for simplicity.
|
|
|
|
overlay->load_images = (struct video_overlay_image*)calloc(1 + overlay->size, sizeof(struct overlay_desc));
|
|
|
|
if (!overlay->load_images)
|
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to allocate load_images.\n");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (overlay->image.image)
|
|
|
|
overlay->load_images[overlay->load_images_size++] = overlay->image;
|
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < overlay->size; i++)
|
2013-10-16 16:27:14 +00:00
|
|
|
{
|
2013-10-16 14:59:24 +00:00
|
|
|
if (overlay->descs[i].image.image)
|
2013-10-16 16:27:14 +00:00
|
|
|
{
|
|
|
|
overlay->descs[i].image_index = overlay->load_images_size;
|
2013-10-16 14:59:24 +00:00
|
|
|
overlay->load_images[overlay->load_images_size++] = overlay->descs[i].image;
|
2013-10-16 16:27:14 +00:00
|
|
|
}
|
|
|
|
}
|
2013-02-03 22:35:55 +00:00
|
|
|
|
|
|
|
// Assume for now that scaling center is in the middle.
|
|
|
|
// TODO: Make this configurable.
|
|
|
|
overlay->block_scale = false;
|
|
|
|
overlay->center_x = overlay->x + 0.5f * overlay->w;
|
|
|
|
overlay->center_y = overlay->y + 0.5f * overlay->h;
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2013-02-23 21:57:39 +00:00
|
|
|
static ssize_t input_overlay_find_index(const struct overlay *ol, const char *name, size_t size)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
|
|
|
for (i = 0; i < size; i++)
|
2013-02-23 21:57:39 +00:00
|
|
|
{
|
|
|
|
if (strcmp(ol[i].name, name) == 0)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool input_overlay_resolve_targets(struct overlay *ol, size_t index, size_t size)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2013-02-23 21:57:39 +00:00
|
|
|
struct overlay *current = &ol[index];
|
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < current->size; i++)
|
2013-02-23 21:57:39 +00:00
|
|
|
{
|
|
|
|
const char *next = current->descs[i].next_index_name;
|
|
|
|
if (*next)
|
|
|
|
{
|
|
|
|
ssize_t index = input_overlay_find_index(ol, next, size);
|
|
|
|
if (index < 0)
|
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Couldn't find overlay called: \"%s\".\n", next);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
current->descs[i].next_index = index;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
current->descs[i].next_index = (index + 1) % size;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
static bool input_overlay_load_overlays(input_overlay_t *ol, const char *path)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2012-12-22 12:27:00 +00:00
|
|
|
bool ret = true;
|
|
|
|
config_file_t *conf = config_file_new(path);
|
|
|
|
if (!conf)
|
|
|
|
{
|
|
|
|
RARCH_ERR("Failed to load config file: %s.\n", path);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned overlays = 0;
|
|
|
|
if (!config_get_uint(conf, "overlays", &overlays))
|
|
|
|
{
|
|
|
|
RARCH_ERR("overlays variable not defined in config.\n");
|
|
|
|
ret = false;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!overlays)
|
|
|
|
{
|
|
|
|
ret = false;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol->overlays = (struct overlay*)calloc(overlays, sizeof(*ol->overlays));
|
|
|
|
if (!ol->overlays)
|
|
|
|
{
|
|
|
|
ret = false;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
|
|
|
|
ol->size = overlays;
|
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < ol->size; i++)
|
2012-12-22 12:27:00 +00:00
|
|
|
{
|
2013-10-16 14:59:24 +00:00
|
|
|
if (!input_overlay_load_overlay(ol, conf, path, &ol->overlays[i], i))
|
2012-12-22 12:27:00 +00:00
|
|
|
{
|
2013-02-17 00:04:04 +00:00
|
|
|
RARCH_ERR("[Overlay]: Failed to load overlay #%u.\n", (unsigned)i);
|
2012-12-22 12:27:00 +00:00
|
|
|
ret = false;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < ol->size; i++)
|
2013-02-23 21:57:39 +00:00
|
|
|
{
|
|
|
|
if (!input_overlay_resolve_targets(ol->overlays, i, ol->size))
|
|
|
|
{
|
|
|
|
RARCH_ERR("[Overlay]: Failed to resolve next targets.\n");
|
|
|
|
ret = false;
|
|
|
|
goto end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
end:
|
|
|
|
config_file_free(conf);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
static void input_overlay_load_active(input_overlay_t *ol)
|
|
|
|
{
|
|
|
|
ol->iface->load(ol->iface_data, ol->active->load_images, ol->active->load_images_size);
|
|
|
|
|
2013-10-16 16:27:14 +00:00
|
|
|
input_overlay_set_alpha_mod(ol, g_settings.input.overlay_opacity);
|
2013-10-16 14:59:24 +00:00
|
|
|
input_overlay_set_vertex_geom(ol);
|
|
|
|
ol->iface->full_screen(ol->iface_data, ol->active->full_screen);
|
|
|
|
}
|
|
|
|
|
2012-12-20 11:24:49 +00:00
|
|
|
input_overlay_t *input_overlay_new(const char *overlay)
|
|
|
|
{
|
|
|
|
input_overlay_t *ol = (input_overlay_t*)calloc(1, sizeof(*ol));
|
2012-12-20 19:23:53 +00:00
|
|
|
|
2012-12-20 11:24:49 +00:00
|
|
|
if (!ol)
|
|
|
|
goto error;
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
ol->overlay_path = strdup(overlay);
|
|
|
|
if (!ol->overlay_path)
|
|
|
|
{
|
|
|
|
free(ol);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-12-20 11:24:49 +00:00
|
|
|
if (!driver.video->overlay_interface)
|
|
|
|
{
|
|
|
|
RARCH_ERR("Overlay interface is not present in video driver.\n");
|
|
|
|
goto error;
|
|
|
|
}
|
|
|
|
|
|
|
|
video_overlay_interface_func(&ol->iface);
|
|
|
|
ol->iface_data = driver.video_data;
|
|
|
|
|
|
|
|
if (!ol->iface)
|
|
|
|
goto error;
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
if (!input_overlay_load_overlays(ol, overlay))
|
2012-12-20 11:24:49 +00:00
|
|
|
goto error;
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
ol->active = &ol->overlays[0];
|
2012-12-20 11:24:49 +00:00
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
input_overlay_load_active(ol);
|
2012-12-20 11:24:49 +00:00
|
|
|
ol->iface->enable(ol->iface_data, true);
|
2012-12-20 14:37:04 +00:00
|
|
|
ol->enable = true;
|
2012-12-20 11:24:49 +00:00
|
|
|
|
2013-02-02 01:29:33 +00:00
|
|
|
input_overlay_set_alpha_mod(ol, g_settings.input.overlay_opacity);
|
2013-10-21 12:26:42 +00:00
|
|
|
input_overlay_set_scale_factor(ol, g_settings.input.overlay_scale);
|
2013-02-24 11:52:48 +00:00
|
|
|
ol->next_index = (ol->index + 1) % ol->size;
|
2013-01-29 20:53:03 +00:00
|
|
|
|
2012-12-20 11:24:49 +00:00
|
|
|
return ol;
|
|
|
|
|
|
|
|
error:
|
|
|
|
input_overlay_free(ol);
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2012-12-20 14:37:04 +00:00
|
|
|
void input_overlay_enable(input_overlay_t *ol, bool enable)
|
|
|
|
{
|
|
|
|
ol->enable = enable;
|
|
|
|
ol->iface->enable(ol->iface_data, enable);
|
|
|
|
}
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
static bool inside_hitbox(const struct overlay_desc *desc, float x, float y)
|
2012-12-20 11:24:49 +00:00
|
|
|
{
|
2012-12-22 12:27:00 +00:00
|
|
|
switch (desc->hitbox)
|
|
|
|
{
|
|
|
|
case OVERLAY_HITBOX_RADIAL:
|
|
|
|
{
|
|
|
|
// Ellipsis.
|
2013-10-21 10:42:47 +00:00
|
|
|
float x_dist = (x - desc->x) / desc->range_x_mod;
|
|
|
|
float y_dist = (y - desc->y) / desc->range_y_mod;
|
2012-12-22 12:27:00 +00:00
|
|
|
float sq_dist = x_dist * x_dist + y_dist * y_dist;
|
|
|
|
return sq_dist <= 1.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
case OVERLAY_HITBOX_RECT:
|
2013-10-21 10:42:47 +00:00
|
|
|
return (fabs(x - desc->x) <= desc->range_x_mod) &&
|
|
|
|
(fabs(y - desc->y) <= desc->range_y_mod);
|
2012-12-20 11:24:49 +00:00
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
default:
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
2012-12-20 11:24:49 +00:00
|
|
|
|
2013-10-16 16:27:14 +00:00
|
|
|
static inline float clamp(float val, float lower, float upper)
|
|
|
|
{
|
|
|
|
if (val < lower)
|
|
|
|
return lower;
|
|
|
|
else if (val > upper)
|
|
|
|
return upper;
|
|
|
|
else
|
|
|
|
return val;
|
|
|
|
}
|
|
|
|
|
2013-09-05 22:19:07 +00:00
|
|
|
void input_overlay_poll(input_overlay_t *ol, input_overlay_state_t *out, int16_t norm_x, int16_t norm_y)
|
2012-12-20 11:24:49 +00:00
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2013-09-05 22:19:07 +00:00
|
|
|
memset(out, 0, sizeof(*out));
|
|
|
|
|
2012-12-20 14:37:04 +00:00
|
|
|
if (!ol->enable)
|
2013-02-17 14:00:38 +00:00
|
|
|
{
|
|
|
|
ol->blocked = false;
|
2013-09-05 22:19:07 +00:00
|
|
|
return;
|
2013-02-17 14:00:38 +00:00
|
|
|
}
|
2012-12-20 14:37:04 +00:00
|
|
|
|
2012-12-20 11:24:49 +00:00
|
|
|
// norm_x and norm_y is in [-0x7fff, 0x7fff] range, like RETRO_DEVICE_POINTER.
|
|
|
|
float x = (float)(norm_x + 0x7fff) / 0xffff;
|
|
|
|
float y = (float)(norm_y + 0x7fff) / 0xffff;
|
|
|
|
|
2013-05-17 22:18:24 +00:00
|
|
|
x -= ol->active->mod_x;
|
|
|
|
y -= ol->active->mod_y;
|
|
|
|
x /= ol->active->mod_w;
|
|
|
|
y /= ol->active->mod_h;
|
2012-12-22 15:09:15 +00:00
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < ol->active->size; i++)
|
2012-12-20 11:24:49 +00:00
|
|
|
{
|
2013-10-21 10:42:47 +00:00
|
|
|
struct overlay_desc *desc = &ol->active->descs[i];
|
|
|
|
if (!inside_hitbox(desc, x, y))
|
2013-09-05 15:38:00 +00:00
|
|
|
continue;
|
|
|
|
|
2013-12-27 01:37:52 +00:00
|
|
|
desc->updated = true;
|
2013-10-16 16:27:14 +00:00
|
|
|
|
2013-10-21 10:42:47 +00:00
|
|
|
if (desc->type == OVERLAY_TYPE_BUTTONS)
|
2013-02-23 21:57:39 +00:00
|
|
|
{
|
2013-10-21 10:42:47 +00:00
|
|
|
uint64_t mask = desc->key_mask;
|
2013-09-05 22:19:07 +00:00
|
|
|
out->buttons |= mask;
|
2013-02-23 21:57:39 +00:00
|
|
|
|
|
|
|
if (mask & (UINT64_C(1) << RARCH_OVERLAY_NEXT))
|
2013-10-21 10:42:47 +00:00
|
|
|
ol->next_index = desc->next_index;
|
2013-02-23 21:57:39 +00:00
|
|
|
}
|
2013-09-05 15:38:00 +00:00
|
|
|
else
|
|
|
|
{
|
2013-10-21 10:42:47 +00:00
|
|
|
float x_val = (x - desc->x) / desc->range_x_mod / desc->analog_saturate_pct;
|
|
|
|
float y_val = (y - desc->y) / desc->range_y_mod / desc->analog_saturate_pct;
|
2013-09-05 22:52:17 +00:00
|
|
|
|
2013-10-21 10:42:47 +00:00
|
|
|
unsigned int base = (desc->type == OVERLAY_TYPE_ANALOG_RIGHT) ? 2 : 0;
|
2013-10-16 16:27:14 +00:00
|
|
|
out->analog[base + 0] = clamp(x_val, -1.0f, 1.0f) * 32767.0f;
|
|
|
|
out->analog[base + 1] = clamp(y_val, -1.0f, 1.0f) * 32767.0f;
|
2013-09-05 15:38:00 +00:00
|
|
|
}
|
2012-12-20 11:24:49 +00:00
|
|
|
}
|
|
|
|
|
2013-09-05 22:19:07 +00:00
|
|
|
if (!out->buttons)
|
2013-02-17 14:00:38 +00:00
|
|
|
ol->blocked = false;
|
|
|
|
else if (ol->blocked)
|
2013-09-05 22:19:07 +00:00
|
|
|
memset(out, 0, sizeof(*out));
|
2012-12-20 11:24:49 +00:00
|
|
|
}
|
|
|
|
|
2013-12-27 02:39:07 +00:00
|
|
|
void input_overlay_post_poll(input_overlay_t *ol)
|
2013-12-27 01:37:52 +00:00
|
|
|
{
|
|
|
|
size_t i;
|
|
|
|
|
2013-12-27 02:39:07 +00:00
|
|
|
input_overlay_set_alpha_mod(ol, g_settings.input.overlay_opacity);
|
|
|
|
|
2013-12-27 01:37:52 +00:00
|
|
|
for (i = 0; i < ol->active->size; i++)
|
|
|
|
{
|
|
|
|
struct overlay_desc *desc = &ol->active->descs[i];
|
|
|
|
|
|
|
|
if (desc->updated)
|
|
|
|
{
|
|
|
|
// If pressed this frame, change the hitbox.
|
|
|
|
desc->range_x_mod = desc->range_x * desc->range_mod;
|
|
|
|
desc->range_y_mod = desc->range_y * desc->range_mod;
|
2013-12-27 02:39:07 +00:00
|
|
|
|
|
|
|
if (desc->image.image)
|
|
|
|
ol->iface->set_alpha(ol->iface_data, desc->image_index,
|
|
|
|
desc->alpha_mod * g_settings.input.overlay_opacity);
|
2013-12-27 01:37:52 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
desc->range_x_mod = desc->range_x;
|
|
|
|
desc->range_y_mod = desc->range_y;
|
|
|
|
}
|
|
|
|
|
|
|
|
desc->updated = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-17 14:00:38 +00:00
|
|
|
void input_overlay_poll_clear(input_overlay_t *ol)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
size_t i;
|
2013-02-17 14:00:38 +00:00
|
|
|
ol->blocked = false;
|
2013-10-16 16:27:14 +00:00
|
|
|
input_overlay_set_alpha_mod(ol, g_settings.input.overlay_opacity);
|
2013-10-21 10:42:47 +00:00
|
|
|
|
2013-10-22 13:08:17 +00:00
|
|
|
for (i = 0; i < ol->active->size; i++)
|
2013-10-21 10:42:47 +00:00
|
|
|
{
|
|
|
|
struct overlay_desc *desc = &ol->active->descs[i];
|
|
|
|
desc->range_x_mod = desc->range_x;
|
|
|
|
desc->range_y_mod = desc->range_y;
|
2013-12-27 01:37:52 +00:00
|
|
|
desc->updated = false;
|
2013-10-21 10:42:47 +00:00
|
|
|
}
|
2013-02-17 14:00:38 +00:00
|
|
|
}
|
|
|
|
|
2012-12-20 11:24:49 +00:00
|
|
|
void input_overlay_next(input_overlay_t *ol)
|
|
|
|
{
|
2013-02-23 21:57:39 +00:00
|
|
|
ol->index = ol->next_index;
|
2012-12-22 12:27:00 +00:00
|
|
|
ol->active = &ol->overlays[ol->index];
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
input_overlay_load_active(ol);
|
|
|
|
|
2013-02-17 14:00:38 +00:00
|
|
|
ol->blocked = true;
|
2013-02-24 11:52:48 +00:00
|
|
|
ol->next_index = (ol->index + 1) % ol->size;
|
2013-01-11 15:23:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool input_overlay_full_screen(input_overlay_t *ol)
|
|
|
|
{
|
|
|
|
return ol->active->full_screen;
|
2012-12-20 11:24:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void input_overlay_free(input_overlay_t *ol)
|
|
|
|
{
|
|
|
|
if (!ol)
|
|
|
|
return;
|
|
|
|
|
2012-12-22 12:27:00 +00:00
|
|
|
input_overlay_free_overlays(ol);
|
|
|
|
|
2012-12-20 11:24:49 +00:00
|
|
|
if (ol->iface)
|
|
|
|
ol->iface->enable(ol->iface_data, false);
|
|
|
|
|
2013-10-16 14:59:24 +00:00
|
|
|
free(ol->overlay_path);
|
2012-12-20 11:24:49 +00:00
|
|
|
free(ol);
|
|
|
|
}
|
|
|
|
|
2013-01-29 20:51:15 +00:00
|
|
|
void input_overlay_set_alpha_mod(input_overlay_t *ol, float mod)
|
|
|
|
{
|
2013-10-22 13:08:17 +00:00
|
|
|
unsigned i;
|
|
|
|
for (i = 0; i < ol->active->load_images_size; i++)
|
2013-10-16 16:27:14 +00:00
|
|
|
ol->iface->set_alpha(ol->iface_data, i, g_settings.input.overlay_opacity);
|
2013-01-29 20:51:15 +00:00
|
|
|
}
|
|
|
|
|