/*! * \file * \ingroup windows * \brief handling and displaying the HUD */ #ifndef __HUD_H #define __HUD_H #include "elwindows.h" #ifdef __cplusplus extern "C" { #endif /*! * \name orientation constants */ /*! @{ */ #define HORIZONTAL 2 #define VERTICAL 1 /*! @} */ /*! * structure to store the data and event handlers for an icon */ typedef struct { int state; /*!< the state of the icon, some icons are toggable */ /*! * \name icon image position */ /*! @{ */ float u[2]; float v[2]; /*! @} */ char * help_message; /*!< icon help message */ /*! * \name Function pointer and data */ /*! @{ */ int (*func)(void*, int); void * data; /*! @} */ char data_type; /*!< data type indicator for \a data */ char free_data; /*!< inidicator whether to free the data after use or not */ } icon_struct; extern int qb_action_mode; /*!< flag indicating whether we are in quickbar action mode or not */ extern int show_stats_in_hud; extern int show_statbars_in_hud; /*! * \name windows handlers */ /*! @{ */ extern int quickbar_win; /*!< quickbar windows handler */ /*! @} */ extern int quickbar_relocatable; /*!< flag that indicates whether the quickbar is relocatable. */ /*! * \ingroup display_2d * \brief Initializes the quickbar * * Initializes the quickbar, it's event handlers and shows it. If the quickbar has been moved by the player it will be drawn in its new position. */ void init_quickbar(); extern int hud_x; extern int hud_y; extern int view_analog_clock; extern int view_digital_clock; extern int quickbar_x; extern int quickbar_y; extern int quickbar_dir; extern int quickbar_draggable; // the main hud handling /*! * \ingroup other * \brief Initializes anything hud related * * Initializes anything related to the hud, i.e. the hud frame, icons, stats display, quickbar and misc. items like compass and clock. * * \param type Whether it's for the game window or the new character window * \callgraph */ void init_hud_interface(int type); /*! * \ingroup other * \brief Shows the different hud related windows if they have already been created. * * Shows the different hud related windows, i.e. the icons, the stats bar, the miscellaneous (compass and clock) and the quickbar window if they have been created before. If none of them has been created nothing will be done. * * \pre If any of \ref icons_win, \ref stats_bar_win, \ref misc_win and \ref quickbar_win is <= 0, no action will be performed. * * \callgraph */ void show_hud_windows (); /*! * \ingroup other * \brief Hides the different hud related windows, if they are visible. * * Hides the different hud related windows, i.e. the icons, the stats bar, the miscellaneous (compass and clock) and the quickbar window if they are visible. If none of them is visible nothing will be done. * * \pre If none of \ref icons_win, \ref stats_bar_win, \ref misc_win and \ref quickbar_win is >= 0 (i.e. created before and visible) no action will be performed. * \callgraph */ void hide_hud_windows (); /*! * \ingroup display_2d * \brief Draws the hud interface related items. * * Draws the hud related items by setting the background color before calling \ref draw_hud_frame. * * \callgraph */ void draw_hud_interface(); /*! * \ingroup windows * \brief Checks whether a mouse click occurred in the hud. * * Checks whether a mouse click occurred in the hud. Only used in non-standard (for example map) modes. * * \retval int the return value of \ref click_in_windows * \callgraph */ int check_hud_interface(); /*! * \ingroup display_2d * \brief Draws the hud frame. * * Draws the hud frame, by setting the texture, then draws the horizontal and vertical bar of the hud and finally the EL logo. * * \callgraph */ void draw_hud_frame(); // icons subsection /*! * \ingroup windows * \brief Frees the data used by the icons. * * Frees the data used by \ref icon_list. */ void free_icons(); //Functions for the function pointers /*! * \ingroup windows * \brief Sends the sit down command to the server. * * Sends the \ref SIT_DOWN command to the server, causing the actor to either sit down or stand up, depending on the value of \ref you_sit. * * \param unused unused * \param id unused */ void sit_button_pressed(void *unused, int id); /*! * \ingroup windows * \brief Shows the window pointed to by \a win * * Shows the window pointed to by \a win by calling the appropriate display_*_win function if \a win was not created before, else \ref toggle_window is called. * * \param win the id of the window to show * \param id unused * * \pre If \a win is either of \ref items_win, \ref sigil_win or \ref manufacture_win and the \ref trade_win is currently active, and error message will get logged to the console and the functions returns. * \callgraph */ void view_window(int * win, int id); /*! * \ingroup windows * \brief Shows the selected \a tab of the given \a window. * * Shows the selected \a tab of the given \a window. * * \param window the id of the window * \param col_id the id of the tab collection * \param tab the id of the tab to show * * \pre If \a window is already visisble and \a tab is the currently selected tab, the window will be hidden. * \pre If \a window is already visisble but \a tab is currently not selected, then \a tab will be selected. * \callgraph */ void view_tab (int *window, int *col_id, int tab); /*! * \ingroup windows * \brief Views the console window (i.e. switch to console mode) * * This is not handled by the window manager, so we have to call this function * * \param win unused * \param id unused * * \callgraph */ void view_console_win(int * win, int id); /*! * \ingroup windows * \brief Views the map window (i.e. switch to map mode) * * Shows or hides the map window depending on which mode is currently active. * * \param win unused * \param id unused * * \callgraph */ void view_map_win(int *win, int id); /*! * \ingroup windows * \brief Shows the \a message at the given position (\a x, \a y). * * Shows the \a message at the given position (\a x, \a y). * * \param message the help message to show * \param x the x coordinate of the position to draw the help message * \param y the y coordinate of the position to draw the help message * * \callgraph */ void show_help(char *message, int x, int y); //stats/health section /*! * \ingroup other * \brief Initializes the levels table. * * Initializes the experience levels table. * * \sa init_stuff */ void build_levels_table(); /*! * \ingroup windows * \brief Sets the flag of the given window * * Sets the flag of the given window * * \sa get_flags */ void change_flags(int win_id, Uint32 flags); /*! * \ingroup windows * \brief Gets the flags of the given window * * Gets the flag of the given window * * \sa change_flags */ Uint32 get_flags(int win_id); #ifdef __cplusplus } // extern "C" #endif #endif //__HUD_H