2010-04-02 19:52:46 -06:00
|
|
|
/*
|
2011-06-16 15:53:39 -06:00
|
|
|
https://github.com/peterix/dfhack
|
|
|
|
Copyright (c) 2009-2011 Petr Mrázek (peterix@gmail.com)
|
2010-04-02 19:52:46 -06:00
|
|
|
|
|
|
|
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.
|
|
|
|
*/
|
|
|
|
|
2011-06-16 15:53:39 -06:00
|
|
|
|
2010-05-26 04:24:45 -06:00
|
|
|
#include "Internal.h"
|
2011-04-10 02:19:15 -06:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
#include <map>
|
|
|
|
using namespace std;
|
|
|
|
|
2010-05-26 00:42:09 -06:00
|
|
|
#include "dfhack/modules/Gui.h"
|
2011-06-12 15:17:40 -06:00
|
|
|
#include "dfhack/Process.h"
|
2010-08-20 06:10:05 -06:00
|
|
|
#include "dfhack/VersionInfo.h"
|
2011-06-12 15:17:40 -06:00
|
|
|
#include "dfhack/Types.h"
|
|
|
|
#include "dfhack/Error.h"
|
2011-03-18 01:53:59 -06:00
|
|
|
#include "ModuleFactory.h"
|
2011-06-17 07:02:43 -06:00
|
|
|
#include "dfhack/Core.h"
|
2010-04-02 19:52:46 -06:00
|
|
|
using namespace DFHack;
|
|
|
|
|
2011-06-17 07:02:43 -06:00
|
|
|
Module* DFHack::createGui()
|
2011-03-18 01:53:59 -06:00
|
|
|
{
|
2011-06-17 07:02:43 -06:00
|
|
|
return new Gui();
|
2011-03-18 01:53:59 -06:00
|
|
|
}
|
|
|
|
|
2010-04-04 16:48:19 -06:00
|
|
|
struct Gui::Private
|
|
|
|
{
|
2010-08-31 04:59:48 -06:00
|
|
|
Private()
|
|
|
|
{
|
2011-07-09 03:33:58 -06:00
|
|
|
Started = false;
|
2011-06-14 22:09:24 -06:00
|
|
|
StartedScreen = false;
|
2010-08-31 04:59:48 -06:00
|
|
|
}
|
2011-03-18 04:09:26 -06:00
|
|
|
|
|
|
|
bool Started;
|
|
|
|
uint32_t window_x_offset;
|
|
|
|
uint32_t window_y_offset;
|
|
|
|
uint32_t window_z_offset;
|
|
|
|
uint32_t cursor_xyz_offset;
|
|
|
|
uint32_t window_dims_offset;
|
|
|
|
|
|
|
|
bool StartedScreen;
|
|
|
|
uint32_t screen_tiles_ptr_offset;
|
|
|
|
|
2010-04-18 13:30:02 -06:00
|
|
|
Process * owner;
|
2010-04-04 16:48:19 -06:00
|
|
|
};
|
|
|
|
|
2011-06-17 07:02:43 -06:00
|
|
|
Gui::Gui()
|
2010-04-04 16:48:19 -06:00
|
|
|
{
|
2011-06-17 07:02:43 -06:00
|
|
|
Core & c = Core::getInstance();
|
2010-04-04 16:48:19 -06:00
|
|
|
d = new Private;
|
2011-06-17 07:02:43 -06:00
|
|
|
d->owner = c.p;
|
|
|
|
VersionInfo * mem = c.vinfo;
|
2011-03-18 04:09:26 -06:00
|
|
|
OffsetGroup * OG_Gui = mem->getGroup("GUI");
|
2011-07-09 03:33:58 -06:00
|
|
|
|
|
|
|
// Setting up hotkeys
|
2010-08-31 04:59:48 -06:00
|
|
|
try
|
2011-06-14 22:09:24 -06:00
|
|
|
{
|
|
|
|
hotkeys = (hotkey_array *) OG_Gui->getAddress("hotkeys");
|
|
|
|
}
|
|
|
|
catch(Error::All &)
|
|
|
|
{
|
|
|
|
hotkeys = 0;
|
|
|
|
};
|
2011-07-09 03:33:58 -06:00
|
|
|
|
2011-07-31 19:31:52 -06:00
|
|
|
// Setting up init
|
|
|
|
try
|
|
|
|
{
|
|
|
|
init = (t_init *) OG_Gui->getAddress("init");
|
|
|
|
}
|
|
|
|
catch(Error::All &)
|
|
|
|
{
|
|
|
|
init = 0;
|
|
|
|
};
|
|
|
|
|
2011-07-09 03:33:58 -06:00
|
|
|
// Setting up menu state
|
2011-06-14 22:09:24 -06:00
|
|
|
try
|
2010-08-31 04:59:48 -06:00
|
|
|
{
|
2011-07-16 10:10:08 -06:00
|
|
|
df_menu_state = (uint32_t *) OG_Gui->getAddress("current_menu_state");
|
2010-08-31 04:59:48 -06:00
|
|
|
}
|
2011-07-09 03:33:58 -06:00
|
|
|
catch(Error::All &)
|
|
|
|
{
|
2011-07-16 10:10:08 -06:00
|
|
|
df_menu_state = 0;
|
2011-07-09 03:33:58 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
// Setting up the view screen stuff
|
2010-08-31 04:59:48 -06:00
|
|
|
try
|
|
|
|
{
|
2011-07-16 10:10:08 -06:00
|
|
|
df_interface = (t_interface *) OG_Gui->getAddress ("interface");
|
2010-08-31 04:59:48 -06:00
|
|
|
}
|
2011-07-09 03:33:58 -06:00
|
|
|
catch(exception &)
|
|
|
|
{
|
2011-07-16 10:10:08 -06:00
|
|
|
df_interface = 0;
|
2011-07-09 03:33:58 -06:00
|
|
|
};
|
|
|
|
|
2011-03-18 04:09:26 -06:00
|
|
|
OffsetGroup * OG_Position;
|
2010-08-31 04:59:48 -06:00
|
|
|
try
|
|
|
|
{
|
2011-03-18 04:09:26 -06:00
|
|
|
OG_Position = mem->getGroup("Position");
|
|
|
|
d->window_x_offset = OG_Position->getAddress ("window_x");
|
|
|
|
d->window_y_offset = OG_Position->getAddress ("window_y");
|
|
|
|
d->window_z_offset = OG_Position->getAddress ("window_z");
|
|
|
|
d->cursor_xyz_offset = OG_Position->getAddress ("cursor_xyz");
|
|
|
|
d->window_dims_offset = OG_Position->getAddress ("window_dims");
|
|
|
|
d->Started = true;
|
2010-08-31 04:59:48 -06:00
|
|
|
}
|
2011-03-18 04:09:26 -06:00
|
|
|
catch(Error::All &){};
|
|
|
|
try
|
|
|
|
{
|
|
|
|
d->screen_tiles_ptr_offset = OG_Position->getAddress ("screen_tiles_pointer");
|
|
|
|
d->StartedScreen = true;
|
|
|
|
}
|
|
|
|
catch(Error::All &){};
|
2010-04-04 16:48:19 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
Gui::~Gui()
|
|
|
|
{
|
|
|
|
delete d;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Gui::Start()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Gui::Finish()
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2011-07-09 03:33:58 -06:00
|
|
|
t_viewscreen * Gui::GetCurrentScreen()
|
2010-04-02 19:52:46 -06:00
|
|
|
{
|
2011-07-16 10:10:08 -06:00
|
|
|
if(!df_interface)
|
2011-07-09 03:33:58 -06:00
|
|
|
return 0;
|
2011-07-16 10:10:08 -06:00
|
|
|
t_viewscreen * ws = &df_interface->view;
|
2011-07-09 03:33:58 -06:00
|
|
|
while(ws)
|
2010-04-02 19:52:46 -06:00
|
|
|
{
|
2011-07-09 03:33:58 -06:00
|
|
|
if(ws->child)
|
|
|
|
ws = ws->child;
|
|
|
|
else
|
|
|
|
return ws;
|
2010-04-02 19:52:46 -06:00
|
|
|
}
|
2011-07-09 03:33:58 -06:00
|
|
|
return 0;
|
2010-04-02 19:52:46 -06:00
|
|
|
}
|
2011-03-18 04:09:26 -06:00
|
|
|
|
|
|
|
bool Gui::getViewCoords (int32_t &x, int32_t &y, int32_t &z)
|
|
|
|
{
|
|
|
|
if (!d->Started) return false;
|
|
|
|
Process * p = d->owner;
|
|
|
|
|
|
|
|
p->readDWord (d->window_x_offset, (uint32_t &) x);
|
|
|
|
p->readDWord (d->window_y_offset, (uint32_t &) y);
|
|
|
|
p->readDWord (d->window_z_offset, (uint32_t &) z);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME: confine writing of coords to map bounds?
|
|
|
|
bool Gui::setViewCoords (const int32_t x, const int32_t y, const int32_t z)
|
|
|
|
{
|
|
|
|
if (!d->Started)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
Process * p = d->owner;
|
|
|
|
|
|
|
|
p->writeDWord (d->window_x_offset, (uint32_t) x);
|
|
|
|
p->writeDWord (d->window_y_offset, (uint32_t) y);
|
|
|
|
p->writeDWord (d->window_z_offset, (uint32_t) z);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Gui::getCursorCoords (int32_t &x, int32_t &y, int32_t &z)
|
|
|
|
{
|
|
|
|
if(!d->Started) return false;
|
|
|
|
int32_t coords[3];
|
|
|
|
d->owner->read (d->cursor_xyz_offset, 3*sizeof (int32_t), (uint8_t *) coords);
|
|
|
|
x = coords[0];
|
|
|
|
y = coords[1];
|
|
|
|
z = coords[2];
|
|
|
|
if (x == -30000) return false;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
//FIXME: confine writing of coords to map bounds?
|
|
|
|
bool Gui::setCursorCoords (const int32_t x, const int32_t y, const int32_t z)
|
|
|
|
{
|
|
|
|
if (!d->Started) return false;
|
|
|
|
int32_t coords[3] = {x, y, z};
|
|
|
|
d->owner->write (d->cursor_xyz_offset, 3*sizeof (int32_t), (uint8_t *) coords);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Gui::getWindowSize (int32_t &width, int32_t &height)
|
|
|
|
{
|
|
|
|
if(!d->Started) return false;
|
|
|
|
|
|
|
|
int32_t coords[2];
|
|
|
|
d->owner->read (d->window_dims_offset, 2*sizeof (int32_t), (uint8_t *) coords);
|
|
|
|
width = coords[0];
|
|
|
|
height = coords[1];
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Gui::getScreenTiles (int32_t width, int32_t height, t_screen screen[])
|
|
|
|
{
|
|
|
|
if(!d->StartedScreen) return false;
|
|
|
|
|
|
|
|
uint32_t screen_addr = d->owner->readDWord(d->screen_tiles_ptr_offset);
|
|
|
|
uint8_t* tiles = new uint8_t[width*height*4/* + 80 + width*height*4*/];
|
|
|
|
|
|
|
|
d->owner->read (screen_addr, (width*height*4/* + 80 + width*height*4*/), (uint8_t *) tiles);
|
|
|
|
|
|
|
|
for(int32_t iy=0; iy<height; iy++)
|
|
|
|
{
|
|
|
|
for(int32_t ix=0; ix<width; ix++)
|
|
|
|
{
|
|
|
|
screen[ix + iy*width].symbol = tiles[(iy + ix*height)*4 +0];
|
|
|
|
screen[ix + iy*width].foreground = tiles[(iy + ix*height)*4 +1];
|
|
|
|
screen[ix + iy*width].background = tiles[(iy + ix*height)*4 +2];
|
|
|
|
screen[ix + iy*width].bright = tiles[(iy + ix*height)*4 +3];
|
|
|
|
//screen[ix + iy*width].gtile = tiles[width*height*4 + 80 + iy + ix*height +0];
|
|
|
|
//screen[ix + iy*width].grayscale = tiles[width*height*4 + 80 + iy + ix*height +1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
delete [] tiles;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|