(Menu widgets) Add HAVE_CHEEVOS ifdefs

(retroarch.c) command_reply is now still used regardless of HAVE_CHEEVOS
being defined or not
This commit is contained in:
twinaphex 2020-02-16 18:11:50 +01:00
parent 808a54e217
commit e7149effa7
2 changed files with 24 additions and 13 deletions

View File

@ -86,6 +86,7 @@ static float menu_widgets_pure_white[16] = {
/* FPS */ /* FPS */
static char menu_widgets_fps_text[255] = {0}; static char menu_widgets_fps_text[255] = {0};
#ifdef HAVE_CHEEVOS
/* Achievement notification */ /* Achievement notification */
static char *cheevo_title = NULL; static char *cheevo_title = NULL;
static menu_texture_item cheevo_badge = 0; static menu_texture_item cheevo_badge = 0;
@ -96,6 +97,7 @@ static menu_timer_t cheevo_timer;
static float cheevo_y = 0.0f; static float cheevo_y = 0.0f;
static unsigned cheevo_width = 0; static unsigned cheevo_width = 0;
static unsigned cheevo_height = 0; static unsigned cheevo_height = 0;
#endif
/* Load content animation */ /* Load content animation */
#define ANIMATION_LOAD_CONTENT_DURATION 333 #define ANIMATION_LOAD_CONTENT_DURATION 333
@ -560,8 +562,8 @@ static void menu_widgets_msg_queue_move(void)
{ {
int i; int i;
float y = 0; float y = 0;
/* there should always be one and only one unfolded message */
menu_widget_msg_t *unfold = NULL; /* there should always be one and only one unfolded message */ menu_widget_msg_t *unfold = NULL;
if (current_msgs->size == 0) if (current_msgs->size == 0)
return; return;
@ -740,7 +742,6 @@ static void menu_widgets_draw_icon(
gfx_display_draw(&draw, video_info); gfx_display_draw(&draw, video_info);
} }
static void menu_widgets_draw_icon_blend( static void menu_widgets_draw_icon_blend(
video_frame_info_t *video_info, video_frame_info_t *video_info,
unsigned icon_width, unsigned icon_width,
@ -1536,6 +1537,7 @@ void menu_widgets_frame(void *data)
); );
} }
#ifdef HAVE_CHEEVOS
/* Achievement notification */ /* Achievement notification */
if (cheevo_title) if (cheevo_title)
{ {
@ -1574,13 +1576,13 @@ void menu_widgets_frame(void *data)
video_info->width, video_info->height, 0, 1, menu_widgets_pure_white); video_info->width, video_info->height, 0, 1, menu_widgets_pure_white);
} }
scissor_me_timbers = (fabs(cheevo_unfold - 1.0f) > 0.01); /* I _think_ cheevo_unfold changes in another thread */ /* I _think_ cheevo_unfold changes in another thread */
scissor_me_timbers = (fabs(cheevo_unfold - 1.0f) > 0.01);
if (scissor_me_timbers) if (scissor_me_timbers)
{
gfx_display_scissor_begin(video_info, gfx_display_scissor_begin(video_info,
cheevo_height, 0, cheevo_height, 0,
(unsigned)((float)(cheevo_width) * cheevo_unfold), cheevo_height); (unsigned)((float)(cheevo_width) * cheevo_unfold),
} cheevo_height);
/* Backdrop */ /* Backdrop */
gfx_display_draw_quad(video_info, gfx_display_draw_quad(video_info,
@ -1592,7 +1594,8 @@ void menu_widgets_frame(void *data)
/* Title */ /* Title */
gfx_display_draw_text(font_regular, gfx_display_draw_text(font_regular,
msg_hash_to_str(MSG_ACHIEVEMENT_UNLOCKED), msg_hash_to_str(MSG_ACHIEVEMENT_UNLOCKED),
cheevo_height + simple_widget_padding - unfold_offet, widget_font_size * 1.9f + cheevo_y, cheevo_height + simple_widget_padding - unfold_offet,
widget_font_size * 1.9f + cheevo_y,
video_info->width, video_info->height, video_info->width, video_info->height,
TEXT_COLOR_FAINT, TEXT_COLOR_FAINT,
TEXT_ALIGN_LEFT, TEXT_ALIGN_LEFT,
@ -1619,6 +1622,7 @@ void menu_widgets_frame(void *data)
gfx_display_scissor_end(video_info); gfx_display_scissor_end(video_info);
} }
} }
#endif
/* Volume */ /* Volume */
if (volume_alpha > 0.0f) if (volume_alpha > 0.0f)
@ -2104,6 +2108,7 @@ void menu_widgets_context_destroy(void)
font_bold = NULL; font_bold = NULL;
} }
#ifdef HAVE_CHEEVOS
static void menu_widgets_achievement_free(void *userdata) static void menu_widgets_achievement_free(void *userdata)
{ {
if (cheevo_title) if (cheevo_title)
@ -2118,6 +2123,7 @@ static void menu_widgets_achievement_free(void *userdata)
cheevo_badge = 0; cheevo_badge = 0;
} }
} }
#endif
void menu_widgets_free(void) void menu_widgets_free(void)
{ {
@ -2161,8 +2167,10 @@ void menu_widgets_free(void)
msg_queue_tasks_count = 0; msg_queue_tasks_count = 0;
#ifdef HAVE_CHEEVOS
/* Achievement notification */ /* Achievement notification */
menu_widgets_achievement_free(NULL); menu_widgets_achievement_free(NULL);
#endif
/* Font */ /* Font */
video_coord_array_free(&font_raster_regular.carr); video_coord_array_free(&font_raster_regular.carr);
@ -2238,7 +2246,7 @@ bool menu_widgets_set_fps_text(const char *new_fps_text)
return true; return true;
} }
int menu_widgets_ai_service_overlay_get_state() int menu_widgets_ai_service_overlay_get_state(void)
{ {
return ai_service_overlay_state; return ai_service_overlay_state;
} }
@ -2269,7 +2277,7 @@ bool menu_widgets_ai_service_overlay_load(
return true; return true;
} }
void menu_widgets_ai_service_overlay_unload() void menu_widgets_ai_service_overlay_unload(void)
{ {
if (ai_service_overlay_state == 1) if (ai_service_overlay_state == 1)
{ {
@ -2430,6 +2438,7 @@ void menu_widgets_start_load_content_animation(const char *content_name, bool re
load_content_animation_running = true; load_content_animation_running = true;
} }
#ifdef HAVE_CHEEVOS
static void menu_widgets_achievement_dismiss(void *userdata) static void menu_widgets_achievement_dismiss(void *userdata)
{ {
gfx_animation_ctx_entry_t entry; gfx_animation_ctx_entry_t entry;
@ -2510,7 +2519,8 @@ static void menu_widgets_start_achievement_notification(void)
gfx_animation_push(&entry); gfx_animation_push(&entry);
} }
static void menu_widgets_get_badge_texture(menu_texture_item *tex, const char *badge) static void menu_widgets_get_badge_texture(
menu_texture_item *tex, const char *badge)
{ {
char badge_file[16]; char badge_file[16];
char fullpath[PATH_MAX_LENGTH]; char fullpath[PATH_MAX_LENGTH];
@ -2542,6 +2552,7 @@ void menu_widgets_push_achievement(const char *title, const char *badge)
menu_widgets_start_achievement_notification(); menu_widgets_start_achievement_notification();
} }
#endif
static void menu_widgets_generic_message_fadeout(void *userdata) static void menu_widgets_generic_message_fadeout(void *userdata)
{ {

View File

@ -3773,7 +3773,7 @@ static struct sockaddr_storage lastcmd_net_source;
static socklen_t lastcmd_net_source_len; static socklen_t lastcmd_net_source_len;
#endif #endif
#if defined(HAVE_CHEEVOS) && (defined(HAVE_STDIN_CMD) || defined(HAVE_NETWORK_CMD)) #if (defined(HAVE_STDIN_CMD) || defined(HAVE_NETWORK_CMD))
static void command_reply(const char * data, size_t len) static void command_reply(const char * data, size_t len)
{ {
switch (lastcmd_source) switch (lastcmd_source)
@ -3801,7 +3801,7 @@ static bool command_version(const char* arg)
char reply[256] = {0}; char reply[256] = {0};
snprintf(reply, sizeof(reply), "%s\n", PACKAGE_VERSION); snprintf(reply, sizeof(reply), "%s\n", PACKAGE_VERSION);
#if defined(HAVE_CHEEVOS) && (defined(HAVE_STDIN_CMD) || defined(HAVE_NETWORK_CMD)) #if (defined(HAVE_STDIN_CMD) || defined(HAVE_NETWORK_CMD))
command_reply(reply, strlen(reply)); command_reply(reply, strlen(reply));
#endif #endif