dfhack/library/include/modules/Gui.h

249 lines
6.7 KiB
C

/*
https://github.com/peterix/dfhack
Copyright (c) 2009-2011 Petr Mrázek (peterix@gmail.com)
This software is provided 'as-is', without any express or implied
warranty. In no event will the authors be held liable for any
damages arising from the use of this software.
Permission is granted to anyone to use this software for any
purpose, including commercial applications, and to alter it and
redistribute it freely, subject to the following restrictions:
1. The origin of this software must not be misrepresented; you must
not claim that you wrote the original software. If you use this
software in a product, an acknowledgment in the product documentation
would be appreciated but is not required.
2. Altered source versions must be plainly marked as such, and
must not be misrepresented as being the original software.
3. This notice may not be removed or altered from any source
distribution.
*/
#pragma once
2010-04-04 16:48:19 -06:00
#ifndef CL_MOD_GUI
#define CL_MOD_GUI
2011-12-31 04:48:42 -07:00
#include "Export.h"
#include "Module.h"
#include "Virtual.h"
#include "BitArray.h"
2011-07-09 03:33:58 -06:00
#include <string>
2010-04-04 16:48:19 -06:00
namespace df {
struct viewscreen;
struct job;
struct unit;
struct item;
};
/**
* \defgroup grp_gui query DF's GUI state
* @ingroup grp_modules
*/
2010-04-04 16:48:19 -06:00
namespace DFHack
{
class Core;
// Full-screen item details view
DFHACK_EXPORT bool item_details_hotkey(Core *, df::viewscreen *top);
// 'u'nits or 'j'obs full-screen view
DFHACK_EXPORT bool unitjobs_hotkey(Core *, df::viewscreen *top);
// A job is selected in a workshop
DFHACK_EXPORT bool workshop_job_hotkey(Core *c, df::viewscreen *top);
// Building material selection mode
DFHACK_EXPORT bool build_selector_hotkey(Core *c, df::viewscreen *top);
// A unit is selected in the 'v' mode
DFHACK_EXPORT bool view_unit_hotkey(Core *c, df::viewscreen *top);
// Above + the inventory page is selected.
DFHACK_EXPORT bool unit_inventory_hotkey(Core *c, df::viewscreen *top);
// In workshop_job_hotkey, returns the job
DFHACK_EXPORT df::job *getSelectedWorkshopJob(Core *c, bool quiet = false);
// A job is selected in a workshop, or unitjobs
DFHACK_EXPORT bool any_job_hotkey(Core *c, df::viewscreen *top);
DFHACK_EXPORT df::job *getSelectedJob(Core *c, bool quiet = false);
// A unit is selected via 'v', 'k', unitjobs, or
// a full-screen item view of a cage or suchlike
DFHACK_EXPORT bool any_unit_hotkey(Core *c, df::viewscreen *top);
DFHACK_EXPORT df::unit *getSelectedUnit(Core *c, bool quiet = false);
// An item is selected via 'v'->inventory, 'k', 't', or
// a full-screen item view of a container. Note that in the
// last case, the highlighted contained item is returned, not
// the container itself.
DFHACK_EXPORT bool any_item_hotkey(Core *c, df::viewscreen *top);
DFHACK_EXPORT df::item *getSelectedItem(Core *c, bool quiet = false);
// Show a plain announcement, or a titan-style popup message
DFHACK_EXPORT void showAnnouncement(std::string message, int color = 7, bool bright = true);
DFHACK_EXPORT void showPopupAnnouncement(std::string message, int color = 7, bool bright = true);
class DFContextShared;
/**
2011-07-31 19:31:52 -06:00
* A GUI screen
* \ingroup grp_gui
*/
2011-07-09 03:33:58 -06:00
struct t_viewscreen : public t_virtual
{
2011-07-09 03:33:58 -06:00
t_viewscreen * child;
t_viewscreen * parent;
char unk1; // varies
char unk2; // state?
};
2011-07-09 03:33:58 -06:00
/**
2011-07-31 19:31:52 -06:00
* Interface - wrapper for the GUI
2011-07-09 03:33:58 -06:00
* \ingroup grp_gui
*/
struct t_interface
{
int fps;
t_viewscreen view;
unsigned int flags; // ?
// more crud this way ...
};
2011-07-31 19:31:52 -06:00
enum graphics_flag
{
GRAPHICS_ENABLED = 0,
GRAPHICS_BLACKSPACE = 1,
GRAPHICS_PARTIAL_PRINT = 2,
GRAPHICS_TEXT = 11,
GRAPHICS_FIXED_SIZE = 13
};
enum media_flag
{
MEDIA_NO_SOUND,
MEDIA_NO_INTRO,
MEDIA_COMPRESS_WORLDS,
};
/**
* The init structure - basically DF settings
* \ingroup grp_gui
*/
struct t_init
{
struct
{
BitArray <graphics_flag> flags;
enum
{
WINDOWED_YES,
WINDOWED_NO,
WINDOWED_PROMPT
} windowed;
// screen size in tiles
int grid_x;
int grid_y;
// in pixels ?
int fullscreen_x;
int fullscreen_y;
int window_x;
int window_y;
char partial_print;
} graphics;
struct
{
BitArray <media_flag> flags;
int32_t volume;
} media;
// much more stuff follows
};
#define NUM_HOTKEYS 16
/**
2011-07-09 03:33:58 -06:00
* The hotkey structure
* \ingroup grp_gui
*/
struct t_hotkey
{
std::string name;
int16_t mode;
int32_t x;
int32_t y;
int32_t z;
};
2011-07-09 03:33:58 -06:00
typedef t_hotkey hotkey_array[NUM_HOTKEYS];
/**
2011-07-09 03:33:58 -06:00
* One tile of the screen. Possibly outdated.
* \ingroup grp_gui
*/
struct t_screen
{
uint8_t symbol;
uint8_t foreground;
uint8_t background;
uint8_t bright;
uint8_t gtile;
uint8_t grayscale;
};
2011-07-09 03:33:58 -06:00
/**
* The Gui module
* \ingroup grp_modules
* \ingroup grp_gui
*/
2010-06-24 23:11:26 -06:00
class DFHACK_EXPORT Gui: public Module
2010-04-04 16:48:19 -06:00
{
public:
Gui();
2010-04-04 16:48:19 -06:00
~Gui();
bool Start();
bool Finish();
/*
* Cursor and window coords
*/
bool getViewCoords (int32_t &x, int32_t &y, int32_t &z);
bool setViewCoords (const int32_t x, const int32_t y, const int32_t z);
bool getCursorCoords (int32_t &x, int32_t &y, int32_t &z);
bool setCursorCoords (const int32_t x, const int32_t y, const int32_t z);
bool getDesignationCoords (int32_t &x, int32_t &y, int32_t &z);
bool setDesignationCoords (const int32_t x, const int32_t y, const int32_t z);
bool getMousePos (int32_t & x, int32_t & y);
2011-07-09 03:33:58 -06:00
/*
* Gui screens
*/
/// handle to the interface object
t_interface * df_interface;
2011-07-09 03:33:58 -06:00
/// Get the current top-level view-screen
t_viewscreen * GetCurrentScreen();
/// The DF menu state (designation menu ect)
uint32_t * df_menu_state;
2011-07-09 03:33:58 -06:00
/*
* Hotkeys (DF's zoom locations)
*/
hotkey_array * hotkeys;
2011-07-31 19:31:52 -06:00
/*
* Game settings
*/
t_init * init;
/*
* Window size in tiles
*/
bool getWindowSize(int32_t & width, int32_t & height);
/*
* Screen tiles
*/
bool getScreenTiles(int32_t width, int32_t height, t_screen screen[]);
2010-04-04 16:48:19 -06:00
private:
struct Private;
Private *d;
};
}
2010-05-01 18:38:18 -06:00
#endif