dfhack/library/include/modules/Gui.h

203 lines
4.8 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
/**
* \defgroup grp_gui query DF's GUI state
* @ingroup grp_modules
*/
2010-04-04 16:48:19 -06:00
namespace DFHack
{
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