From 4c7c0ea101b88c790f645dc0046bc2e0de95133f Mon Sep 17 00:00:00 2001 From: Marko Lindqvist Date: Sun, 16 Jul 2023 08:46:52 +0300 Subject: [PATCH 4/4] sdl/2: Move reusable SDL_Events from ui_main() to module level To make sure they stay in scope. See osdn #48399 Signed-off-by: Marko Lindqvist --- client/gui-sdl/gui_main.c | 28 ++++++++++++++++++---------- client/gui-sdl/gui_main.h | 6 ++++-- client/gui-sdl/mapview.c | 7 +++---- client/gui-sdl2/gui_main.c | 27 ++++++++++++++++++--------- client/gui-sdl2/gui_main.h | 2 ++ client/gui-sdl2/mapview.c | 7 +++---- 6 files changed, 48 insertions(+), 29 deletions(-) diff --git a/client/gui-sdl/gui_main.c b/client/gui-sdl/gui_main.c index 28c758dd8d..3d2cf48049 100644 --- a/client/gui-sdl/gui_main.c +++ b/client/gui-sdl/gui_main.c @@ -95,7 +95,6 @@ Uint32 widget_info_counter = 0; int MOVE_STEP_X = DEFAULT_MOVE_STEP; int MOVE_STEP_Y = DEFAULT_MOVE_STEP; extern bool draw_goto_patrol_lines; -SDL_Event *pFlush_User_Event = NULL; bool is_unit_move_blocked; bool LSHIFT; bool RSHIFT; @@ -112,10 +111,17 @@ static bool is_map_scrolling = FALSE; static enum direction8 scroll_dir; static struct mouse_button_behavior button_behavior; + +static SDL_Event __Net_User_Event; +static SDL_Event __Anim_User_Event; +static SDL_Event __Info_User_Event; +static SDL_Event __Flush_User_Event; +static SDL_Event __pMap_Scroll_User_Event; static SDL_Event *pNet_User_Event = NULL; static SDL_Event *pAnim_User_Event = NULL; static SDL_Event *pInfo_User_Event = NULL; +static SDL_Event *flush_user_event = NULL; static SDL_Event *pMap_Scroll_User_Event = NULL; static void print_usage(void); @@ -530,7 +536,7 @@ Uint16 gui_event_loop(void *pData, t_last_map_scrolling = t_last_unit_anim = real_timer_next_call = SDL_GetTicks(); while (ID == ID_ERROR) { /* ========================================= */ - /* net check with 10ms delay event loop */ + /* Net check with 10ms delay event loop */ if (net_socket >= 0) { FD_ZERO(&civfdset); @@ -555,7 +561,7 @@ Uint16 gui_event_loop(void *pData, } } } - } else { /* if connection is not establish */ + } else { /* If connection is not establish */ SDL_Delay(10); } /* ========================================= */ @@ -941,12 +947,6 @@ int main(int argc, char **argv) **************************************************************************/ void ui_main(int argc, char *argv[]) { - SDL_Event __Net_User_Event; - SDL_Event __Anim_User_Event; - SDL_Event __Info_User_Event; - SDL_Event __Flush_User_Event; - SDL_Event __pMap_Scroll_User_Event; - parse_options(argc, argv); __Net_User_Event.type = SDL_USEREVENT; @@ -971,7 +971,7 @@ void ui_main(int argc, char *argv[]) __Flush_User_Event.user.code = FLUSH; __Flush_User_Event.user.data1 = NULL; __Flush_User_Event.user.data2 = NULL; - pFlush_User_Event = &__Flush_User_Event; + flush_user_event = &__Flush_User_Event; __pMap_Scroll_User_Event.type = SDL_USEREVENT; __pMap_Scroll_User_Event.user.code = MAP_SCROLL; @@ -1225,3 +1225,11 @@ void insert_client_build_info(char *outbuf, size_t outlen) { /* PORTME */ } + +/************************************************************************** + Queue a flush event to be handled later by SDL. +**************************************************************************/ +bool flush_event(void) +{ + return SDL_PushEvent(flush_user_event) == 0; +} diff --git a/client/gui-sdl/gui_main.h b/client/gui-sdl/gui_main.h index 5eb2a2626c..3669889541 100644 --- a/client/gui-sdl/gui_main.h +++ b/client/gui-sdl/gui_main.h @@ -98,11 +98,13 @@ Uint16 gui_event_loop(void *pData, void (*loop_action)(void *pData), Uint16 (*mouse_button_up_handler)(SDL_MouseButtonEvent *pButtonEvent, void *pData), Uint16 (*mouse_motion_handler)(SDL_MouseMotionEvent *pMotionEvent, void *pData)); -/* shrink sizes for 320x240 screen */ +bool flush_event(void); + +/* Shrink sizes for 320x240 screen */ #ifdef SMALL_SCREEN #define adj_size(size) ((size) / 2) #else #define adj_size(size) (size) #endif -#endif /* FC__GUI_MAIN_H */ +#endif /* FC__GUI_MAIN_H */ diff --git a/client/gui-sdl/mapview.c b/client/gui-sdl/mapview.c index 20851f9a59..358c0cf5e1 100644 --- a/client/gui-sdl/mapview.c +++ b/client/gui-sdl/mapview.c @@ -63,7 +63,6 @@ #include "mapview.h" -extern SDL_Event *pFlush_User_Event; extern SDL_Rect *pInfo_Area; int overview_start_x = 0; @@ -135,17 +134,17 @@ void unqueue_flush(void) /************************************************************************** Called when a region is marked dirty, this function queues a flush event - to be handled later by SDL. The flush may end up being done + to be handled later by SDL. The flush may end up being done by freeciv before then, in which case it will be a wasted call. **************************************************************************/ void queue_flush(void) { if (!is_flush_queued) { - if (SDL_PushEvent(pFlush_User_Event) == 0) { + if (flush_event()) { is_flush_queued = TRUE; } else { /* We don't want to set is_flush_queued in this case, since then - * the flush code would simply stop working. But this means the + * the flush code would simply stop working. But this means the * below message may be repeated many times. */ log_error(_("The SDL event buffer is full;" " you may see drawing errors as a result.")); diff --git a/client/gui-sdl2/gui_main.c b/client/gui-sdl2/gui_main.c index ab1f31f64e..43627c8e33 100644 --- a/client/gui-sdl2/gui_main.c +++ b/client/gui-sdl2/gui_main.c @@ -99,7 +99,6 @@ Uint32 widget_info_counter = 0; int MOVE_STEP_X = DEFAULT_MOVE_STEP; int MOVE_STEP_Y = DEFAULT_MOVE_STEP; extern bool draw_goto_patrol_lines; -SDL_Event *flush_event = NULL; bool is_unit_move_blocked; bool LSHIFT; bool RSHIFT; @@ -118,9 +117,16 @@ static enum direction8 scroll_dir; static struct finger_behavior finger_behavior; static struct mouse_button_behavior button_behavior; +static SDL_Event __Net_User_Event; +static SDL_Event __Anim_User_Event; +static SDL_Event __Info_User_Event; +static SDL_Event __Flush_User_Event; +static SDL_Event __pMap_Scroll_User_Event; + static SDL_Event *pNet_User_Event = NULL; static SDL_Event *pAnim_User_Event = NULL; static SDL_Event *pInfo_User_Event = NULL; +static SDL_Event *flush_user_event = NULL; static SDL_Event *pMap_Scroll_User_Event = NULL; static void print_usage(void); @@ -596,7 +602,7 @@ Uint16 gui_event_loop(void *pData, t_last_map_scrolling = t_last_unit_anim = real_timer_next_call = SDL_GetTicks(); while (ID == ID_ERROR) { /* ========================================= */ - /* net check with 10ms delay event loop */ + /* Net check with 10ms delay event loop */ if (net_socket >= 0) { FD_ZERO(&civfdset); @@ -621,7 +627,7 @@ Uint16 gui_event_loop(void *pData, } } } - } else { /* if connection is not establish */ + } else { /* If connection is not establish */ SDL_Delay(10); } /* ========================================= */ @@ -974,11 +980,6 @@ static void migrate_options_from_sdl(void) **************************************************************************/ void ui_main(int argc, char *argv[]) { - SDL_Event __Net_User_Event; - SDL_Event __Anim_User_Event; - SDL_Event __Info_User_Event; - SDL_Event __Flush_User_Event; - SDL_Event __pMap_Scroll_User_Event; Uint32 flags = 0; parse_options(argc, argv); @@ -1025,7 +1026,7 @@ void ui_main(int argc, char *argv[]) __Flush_User_Event.user.code = FLUSH; __Flush_User_Event.user.data1 = NULL; __Flush_User_Event.user.data2 = NULL; - flush_event = &__Flush_User_Event; + flush_user_event = &__Flush_User_Event; SDL_zero(__pMap_Scroll_User_Event); __pMap_Scroll_User_Event.type = user_event_type; @@ -1235,3 +1236,11 @@ void insert_client_build_info(char *outbuf, size_t outlen) { /* PORTME */ } + +/************************************************************************** + Queue a flush event to be handled later by SDL. +**************************************************************************/ +bool flush_event(void) +{ + return SDL_PushEvent(flush_user_event) >= 0; +} diff --git a/client/gui-sdl2/gui_main.h b/client/gui-sdl2/gui_main.h index 277245f2a4..adcc57e989 100644 --- a/client/gui-sdl2/gui_main.h +++ b/client/gui-sdl2/gui_main.h @@ -125,6 +125,8 @@ Uint16 gui_event_loop(void *pData, void (*loop_action)(void *pData), Uint16 (*mouse_motion_handler)(SDL_MouseMotionEvent *pMotionEvent, void *pData)); +bool flush_event(void); + /* Shrink sizes for 320x240 screen */ #ifdef SMALL_SCREEN #define adj_size(size) ((size) / 2) diff --git a/client/gui-sdl2/mapview.c b/client/gui-sdl2/mapview.c index a1b13bc561..a9688f2fec 100644 --- a/client/gui-sdl2/mapview.c +++ b/client/gui-sdl2/mapview.c @@ -67,7 +67,6 @@ #include "mapview.h" -extern SDL_Event *flush_event; extern SDL_Rect *pInfo_Area; int overview_start_x = 0; @@ -146,17 +145,17 @@ void unqueue_flush(void) /************************************************************************** Called when a region is marked dirty, this function queues a flush event - to be handled later by SDL. The flush may end up being done + to be handled later by SDL. The flush may end up being done by freeciv before then, in which case it will be a wasted call. **************************************************************************/ void queue_flush(void) { if (!is_flush_queued) { - if (SDL_PushEvent(flush_event) >= 0) { + if (flush_event()) { is_flush_queued = TRUE; } else { /* We don't want to set is_flush_queued in this case, since then - * the flush code would simply stop working. But this means the + * the flush code would simply stop working. But this means the * below message may be repeated many times. */ log_error(_("Failed to add events to SDL2 event buffer: %s"), SDL_GetError()); -- 2.40.1