2011-12-31 04:48:42 -07:00
|
|
|
#include "Core.h"
|
2012-01-15 13:54:14 -07:00
|
|
|
#include "Console.h"
|
|
|
|
#include "Export.h"
|
|
|
|
#include "PluginManager.h"
|
|
|
|
#include "modules/Maps.h"
|
|
|
|
#include "modules/Gui.h"
|
|
|
|
#include "modules/MapCache.h"
|
2012-03-31 07:41:55 -06:00
|
|
|
#include "modules/Materials.h"
|
2011-07-10 13:07:14 -06:00
|
|
|
#include <vector>
|
2011-07-11 14:23:13 -06:00
|
|
|
#include <cstdio>
|
|
|
|
#include <stack>
|
2011-07-10 13:07:14 -06:00
|
|
|
#include <string>
|
2011-08-26 21:50:14 -06:00
|
|
|
#include <cmath>
|
2011-07-10 13:07:14 -06:00
|
|
|
using std::vector;
|
|
|
|
using std::string;
|
2011-07-11 14:23:13 -06:00
|
|
|
using std::stack;
|
2011-07-10 13:07:14 -06:00
|
|
|
using namespace DFHack;
|
2012-01-21 17:31:15 -07:00
|
|
|
using namespace df::enums;
|
2011-07-10 13:07:14 -06:00
|
|
|
|
2012-03-31 07:41:55 -06:00
|
|
|
command_result digv (color_ostream &out, vector <string> & parameters);
|
|
|
|
command_result digvx (color_ostream &out, vector <string> & parameters);
|
|
|
|
command_result digl (color_ostream &out, vector <string> & parameters);
|
|
|
|
command_result diglx (color_ostream &out, vector <string> & parameters);
|
|
|
|
command_result digauto (color_ostream &out, vector <string> & parameters);
|
|
|
|
command_result digexp (color_ostream &out, vector <string> & parameters);
|
2012-03-10 04:55:42 -07:00
|
|
|
command_result digcircle (color_ostream &out, vector <string> & parameters);
|
2011-08-22 07:18:35 -06:00
|
|
|
|
2011-07-10 13:07:14 -06:00
|
|
|
|
2012-03-31 07:41:55 -06:00
|
|
|
DFHACK_PLUGIN("dig");
|
2011-07-10 13:07:14 -06:00
|
|
|
|
2012-03-10 04:55:42 -07:00
|
|
|
DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <PluginCommand> &commands)
|
2011-07-10 13:07:14 -06:00
|
|
|
{
|
2011-12-31 02:25:46 -07:00
|
|
|
commands.push_back(PluginCommand(
|
2012-03-31 07:41:55 -06:00
|
|
|
"digv","Dig a whole vein.",digv,Gui::cursor_hotkey,
|
2011-12-31 02:25:46 -07:00
|
|
|
" Designates a whole vein under the cursor for digging.\n"
|
|
|
|
"Options:\n"
|
|
|
|
" x - follow veins through z-levels with stairs.\n"
|
2012-01-21 17:31:15 -07:00
|
|
|
));
|
2011-12-31 02:25:46 -07:00
|
|
|
commands.push_back(PluginCommand(
|
2012-03-31 07:41:55 -06:00
|
|
|
"digvx","Dig a whole vein, following through z-levels.",digvx,Gui::cursor_hotkey,
|
2011-12-31 02:25:46 -07:00
|
|
|
" Designates a whole vein under the cursor for digging.\n"
|
2012-03-31 07:41:55 -06:00
|
|
|
" Also follows the vein between z-levels with stairs, like 'digv x' would.\n"
|
2012-01-21 17:31:15 -07:00
|
|
|
));
|
2012-03-31 07:41:55 -06:00
|
|
|
commands.push_back(PluginCommand(
|
|
|
|
"digl","Dig layerstone.",digl,Gui::cursor_hotkey,
|
|
|
|
" Designates layerstone under the cursor for digging.\n"
|
|
|
|
" Veins will not be touched.\n"
|
|
|
|
"Options:\n"
|
|
|
|
" x - follow layer through z-levels with stairs.\n"
|
|
|
|
" undo - clear designation (can be used together with 'x').\n"
|
|
|
|
));
|
|
|
|
commands.push_back(PluginCommand(
|
|
|
|
"diglx","Dig layerstone, following through z-levels.",diglx,Gui::cursor_hotkey,
|
|
|
|
" Designates layerstone under the cursor for digging.\n"
|
|
|
|
" Also follows the stone between z-levels with stairs, like 'digl x' would.\n"
|
|
|
|
));
|
|
|
|
commands.push_back(PluginCommand("digexp","Select or designate an exploratory pattern. Use 'digexp ?' for help.",digexp));
|
2012-02-20 04:04:15 -07:00
|
|
|
commands.push_back(PluginCommand("digcircle","Dig designate a circle (filled or hollow) with given radius.",digcircle));
|
2012-03-31 07:41:55 -06:00
|
|
|
//commands.push_back(PluginCommand("digauto","Mark a tile for continuous digging.",autodig));
|
2011-07-10 13:07:14 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
2012-03-10 04:55:42 -07:00
|
|
|
DFhackCExport command_result plugin_shutdown ( color_ostream &out )
|
2011-07-10 13:07:14 -06:00
|
|
|
{
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2011-08-22 07:18:35 -06:00
|
|
|
|
|
|
|
template <class T>
|
2012-01-21 17:31:15 -07:00
|
|
|
bool from_string(T& t,
|
|
|
|
const std::string& s,
|
|
|
|
std::ios_base& (*f)(std::ios_base&))
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
|
|
|
std::istringstream iss(s);
|
|
|
|
return !(iss >> f >> t).fail();
|
|
|
|
}
|
|
|
|
|
|
|
|
enum circle_what
|
|
|
|
{
|
|
|
|
circle_set,
|
|
|
|
circle_unset,
|
2011-08-27 07:12:03 -06:00
|
|
|
circle_invert,
|
2011-08-22 07:18:35 -06:00
|
|
|
};
|
|
|
|
|
2011-11-15 13:58:38 -07:00
|
|
|
bool dig (MapExtras::MapCache & MCache,
|
2012-01-21 17:31:15 -07:00
|
|
|
circle_what what,
|
|
|
|
df::tile_dig_designation type,
|
|
|
|
int32_t x, int32_t y, int32_t z,
|
|
|
|
int x_max, int y_max
|
|
|
|
)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
|
|
|
DFCoord at (x,y,z);
|
|
|
|
auto b = MCache.BlockAt(at/16);
|
2012-04-10 08:21:19 -06:00
|
|
|
if(!b || !b->is_valid())
|
2011-11-15 13:58:38 -07:00
|
|
|
return false;
|
|
|
|
if(x == 0 || x == x_max * 16 - 1)
|
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
//out.print("not digging map border\n");
|
2011-11-15 13:58:38 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if(y == 0 || y == y_max * 16 - 1)
|
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
//out.print("not digging map border\n");
|
2011-11-15 13:58:38 -07:00
|
|
|
return false;
|
|
|
|
}
|
2012-02-13 15:56:33 -07:00
|
|
|
df::tiletype tt = MCache.tiletypeAt(at);
|
2012-01-19 13:11:52 -07:00
|
|
|
df::tile_designation des = MCache.designationAt(at);
|
2011-11-15 13:58:38 -07:00
|
|
|
// could be potentially used to locate hidden constructions?
|
2012-03-13 12:15:12 -06:00
|
|
|
if(tileMaterial(tt) == tiletype_material::CONSTRUCTION && !des.bits.hidden)
|
2011-11-15 13:58:38 -07:00
|
|
|
return false;
|
2012-02-13 15:56:33 -07:00
|
|
|
df::tiletype_shape ts = tileShape(tt);
|
|
|
|
if (ts == tiletype_shape::EMPTY)
|
2011-11-15 13:58:38 -07:00
|
|
|
return false;
|
|
|
|
if(!des.bits.hidden)
|
|
|
|
{
|
|
|
|
do
|
|
|
|
{
|
2012-02-13 18:17:38 -07:00
|
|
|
df::tiletype_shape_basic tsb = ENUM_ATTR(tiletype_shape, basic_shape, ts);
|
2012-02-13 15:56:33 -07:00
|
|
|
if(tsb == tiletype_shape_basic::Wall)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
2012-02-13 15:56:33 -07:00
|
|
|
std::cerr << "allowing tt" << (int)tt << ", is wall\n";
|
2011-11-15 13:58:38 -07:00
|
|
|
break;
|
|
|
|
}
|
2012-02-13 15:56:33 -07:00
|
|
|
if (tsb == tiletype_shape_basic::Floor
|
2012-01-21 17:31:15 -07:00
|
|
|
&& (type == tile_dig_designation::DownStair || type == tile_dig_designation::Channel)
|
2012-02-13 15:56:33 -07:00
|
|
|
&& ts != tiletype_shape::TREE
|
2012-01-21 17:31:15 -07:00
|
|
|
)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
2012-02-13 15:56:33 -07:00
|
|
|
std::cerr << "allowing tt" << (int)tt << ", is floor\n";
|
2011-11-15 13:58:38 -07:00
|
|
|
break;
|
|
|
|
}
|
2012-02-13 15:56:33 -07:00
|
|
|
if (tsb == tiletype_shape_basic::Stair && type == tile_dig_designation::Channel )
|
2011-11-15 13:58:38 -07:00
|
|
|
break;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
while(0);
|
|
|
|
}
|
|
|
|
switch(what)
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
case circle_set:
|
|
|
|
if(des.bits.dig == tile_dig_designation::No)
|
|
|
|
{
|
|
|
|
des.bits.dig = type;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case circle_unset:
|
|
|
|
if (des.bits.dig != tile_dig_designation::No)
|
|
|
|
{
|
|
|
|
des.bits.dig = tile_dig_designation::No;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case circle_invert:
|
|
|
|
if(des.bits.dig == tile_dig_designation::No)
|
|
|
|
{
|
|
|
|
des.bits.dig = type;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
des.bits.dig = tile_dig_designation::No;
|
|
|
|
}
|
|
|
|
break;
|
2011-11-15 13:58:38 -07:00
|
|
|
}
|
2012-02-13 15:56:33 -07:00
|
|
|
std::cerr << "allowing tt" << (int)tt << "\n";
|
2011-11-15 13:58:38 -07:00
|
|
|
MCache.setDesignationAt(at,des);
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool lineX (MapExtras::MapCache & MCache,
|
2012-01-21 17:31:15 -07:00
|
|
|
circle_what what,
|
|
|
|
df::tile_dig_designation type,
|
|
|
|
int32_t y1, int32_t y2, int32_t x, int32_t z,
|
|
|
|
int x_max, int y_max
|
|
|
|
)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
|
|
|
for(int32_t y = y1; y <= y2; y++)
|
|
|
|
{
|
|
|
|
dig(MCache, what, type,x,y,z, x_max, y_max);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
|
|
|
bool lineY (MapExtras::MapCache & MCache,
|
2012-01-21 17:31:15 -07:00
|
|
|
circle_what what,
|
|
|
|
df::tile_dig_designation type,
|
|
|
|
int32_t x1, int32_t x2, int32_t y, int32_t z,
|
|
|
|
int x_max, int y_max
|
|
|
|
)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
|
|
|
for(int32_t x = x1; x <= x2; x++)
|
|
|
|
{
|
|
|
|
dig(MCache, what, type,x,y,z, x_max, y_max);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2012-03-10 04:55:42 -07:00
|
|
|
command_result digcircle (color_ostream &out, vector <string> & parameters)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
|
|
|
static bool filled = false;
|
|
|
|
static circle_what what = circle_set;
|
2012-01-21 17:31:15 -07:00
|
|
|
static df::tile_dig_designation type = tile_dig_designation::Default;
|
2011-08-26 21:50:14 -06:00
|
|
|
static int diameter = 0;
|
|
|
|
auto saved_d = diameter;
|
2011-08-22 07:18:35 -06:00
|
|
|
bool force_help = false;
|
2012-01-31 09:55:38 -07:00
|
|
|
for(size_t i = 0; i < parameters.size();i++)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
|
|
|
if(parameters[i] == "help" || parameters[i] == "?")
|
|
|
|
{
|
|
|
|
force_help = true;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "hollow")
|
|
|
|
{
|
|
|
|
filled = false;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "filled")
|
|
|
|
{
|
|
|
|
filled = true;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "set")
|
|
|
|
{
|
|
|
|
what = circle_set;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "unset")
|
|
|
|
{
|
|
|
|
what = circle_unset;
|
|
|
|
}
|
2011-08-27 07:12:03 -06:00
|
|
|
else if(parameters[i] == "invert")
|
|
|
|
{
|
|
|
|
what = circle_invert;
|
|
|
|
}
|
2011-08-23 04:51:11 -06:00
|
|
|
else if(parameters[i] == "dig")
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
type = tile_dig_designation::Default;
|
2011-08-23 04:51:11 -06:00
|
|
|
}
|
|
|
|
else if(parameters[i] == "ramp")
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
type = tile_dig_designation::Ramp;
|
2011-08-23 04:51:11 -06:00
|
|
|
}
|
|
|
|
else if(parameters[i] == "dstair")
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
type = tile_dig_designation::DownStair;
|
2011-08-23 04:51:11 -06:00
|
|
|
}
|
|
|
|
else if(parameters[i] == "ustair")
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
type = tile_dig_designation::UpStair;
|
2011-08-23 04:51:11 -06:00
|
|
|
}
|
|
|
|
else if(parameters[i] == "xstair")
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
type = tile_dig_designation::UpDownStair;
|
2011-08-23 04:51:11 -06:00
|
|
|
}
|
|
|
|
else if(parameters[i] == "chan")
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
type = tile_dig_designation::Channel;
|
2011-08-23 04:51:11 -06:00
|
|
|
}
|
2011-08-26 21:50:14 -06:00
|
|
|
else if (!from_string(diameter,parameters[i], std::dec))
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2011-08-26 21:50:14 -06:00
|
|
|
diameter = saved_d;
|
2011-08-22 07:18:35 -06:00
|
|
|
}
|
|
|
|
}
|
2011-08-26 21:50:14 -06:00
|
|
|
if(diameter < 0)
|
|
|
|
diameter = -diameter;
|
|
|
|
if(force_help || diameter == 0)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
out.print(
|
2012-01-21 17:31:15 -07:00
|
|
|
"A command for easy designation of filled and hollow circles.\n"
|
|
|
|
"\n"
|
|
|
|
"Options:\n"
|
|
|
|
" hollow = Set the circle to hollow (default)\n"
|
|
|
|
" filled = Set the circle to filled\n"
|
|
|
|
"\n"
|
|
|
|
" set = set designation\n"
|
|
|
|
" unset = unset current designation\n"
|
|
|
|
" invert = invert current designation\n"
|
|
|
|
"\n"
|
|
|
|
" dig = normal digging\n"
|
|
|
|
" ramp = ramp digging\n"
|
|
|
|
" ustair = staircase up\n"
|
|
|
|
" dstair = staircase down\n"
|
|
|
|
" xstair = staircase up/down\n"
|
|
|
|
" chan = dig channel\n"
|
|
|
|
"\n"
|
|
|
|
" # = diameter in tiles (default = 0)\n"
|
|
|
|
"\n"
|
|
|
|
"After you have set the options, the command called with no options\n"
|
|
|
|
"repeats with the last selected parameters:\n"
|
|
|
|
"'digcircle filled 3' = Dig a filled circle with radius = 3.\n"
|
|
|
|
"'digcircle' = Do it again.\n"
|
|
|
|
);
|
2011-08-22 07:18:35 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
int32_t cx, cy, cz;
|
2012-03-10 04:55:42 -07:00
|
|
|
CoreSuspender suspend;
|
2012-01-19 20:44:17 -07:00
|
|
|
if (!Maps::IsValid())
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
out.printerr("Map is not available!\n");
|
2011-08-22 07:18:35 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t x_max, y_max, z_max;
|
2012-01-19 20:44:17 -07:00
|
|
|
Maps::getSize(x_max,y_max,z_max);
|
2011-08-22 07:18:35 -06:00
|
|
|
|
2012-01-19 20:44:17 -07:00
|
|
|
MapExtras::MapCache MCache;
|
2012-03-03 06:38:24 -07:00
|
|
|
if(!Gui::getCursorCoords(cx,cy,cz) || cx == -30000)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
out.printerr("Can't get the cursor coords...\n");
|
2011-08-22 07:18:35 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2011-08-26 21:50:14 -06:00
|
|
|
int r = diameter / 2;
|
|
|
|
int iter;
|
|
|
|
bool adjust;
|
|
|
|
if(diameter % 2)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2011-08-26 21:50:14 -06:00
|
|
|
// paint center
|
|
|
|
if(filled)
|
|
|
|
{
|
2011-11-15 13:58:38 -07:00
|
|
|
lineY(MCache,what,type, cx - r, cx + r, cy, cz,x_max,y_max);
|
2011-08-26 21:50:14 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-11-15 13:58:38 -07:00
|
|
|
dig(MCache, what, type,cx - r, cy, cz,x_max,y_max);
|
|
|
|
dig(MCache, what, type,cx + r, cy, cz,x_max,y_max);
|
2011-08-26 21:50:14 -06:00
|
|
|
}
|
|
|
|
adjust = false;
|
|
|
|
iter = 2;
|
2011-08-22 07:18:35 -06:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-08-26 21:50:14 -06:00
|
|
|
adjust = true;
|
|
|
|
iter = 1;
|
2011-08-22 07:18:35 -06:00
|
|
|
}
|
2011-08-26 21:50:14 -06:00
|
|
|
int lastwhole = r;
|
|
|
|
for(; iter <= diameter - 1; iter +=2)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2011-08-26 21:50:14 -06:00
|
|
|
// top, bottom coords
|
|
|
|
int top = cy - ((iter + 1) / 2) + adjust;
|
|
|
|
int bottom = cy + ((iter + 1) / 2);
|
|
|
|
// see where the current 'line' intersects the circle
|
2011-08-28 14:28:23 -06:00
|
|
|
double val = std::sqrt(double(diameter*diameter - iter*iter));
|
2011-08-26 21:50:14 -06:00
|
|
|
// adjust for circles with odd diameter
|
|
|
|
if(!adjust)
|
|
|
|
val -= 1;
|
|
|
|
// map the found value to the DF grid
|
|
|
|
double whole;
|
|
|
|
double fraction = std::modf(val / 2.0, & whole);
|
|
|
|
if (fraction > 0.5)
|
|
|
|
whole += 1.0;
|
|
|
|
int right = cx + whole;
|
|
|
|
int left = cx - whole + adjust;
|
|
|
|
int diff = lastwhole - whole;
|
|
|
|
// paint
|
|
|
|
if(filled || iter == diameter - 1)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2011-11-15 13:58:38 -07:00
|
|
|
lineY(MCache,what,type, left, right, top , cz,x_max,y_max);
|
|
|
|
lineY(MCache,what,type, left, right, bottom , cz,x_max,y_max);
|
2011-08-22 07:18:35 -06:00
|
|
|
}
|
2011-08-26 21:50:14 -06:00
|
|
|
else
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2011-11-15 13:58:38 -07:00
|
|
|
dig(MCache, what, type,left, top, cz,x_max,y_max);
|
|
|
|
dig(MCache, what, type,left, bottom, cz,x_max,y_max);
|
|
|
|
dig(MCache, what, type,right, top, cz,x_max,y_max);
|
|
|
|
dig(MCache, what, type,right, bottom, cz,x_max,y_max);
|
2011-08-22 07:18:35 -06:00
|
|
|
}
|
2011-08-26 21:50:14 -06:00
|
|
|
if(!filled && diff > 1)
|
2011-08-22 07:18:35 -06:00
|
|
|
{
|
2011-08-26 21:50:14 -06:00
|
|
|
int lright = cx + lastwhole;
|
|
|
|
int lleft = cx - lastwhole + adjust;
|
2011-11-15 13:58:38 -07:00
|
|
|
lineY(MCache,what,type, lleft + 1, left - 1, top + 1 , cz,x_max,y_max);
|
|
|
|
lineY(MCache,what,type, right + 1, lright - 1, top + 1 , cz,x_max,y_max);
|
|
|
|
lineY(MCache,what,type, lleft + 1, left - 1, bottom - 1 , cz,x_max,y_max);
|
|
|
|
lineY(MCache,what,type, right + 1, lright - 1, bottom - 1 , cz,x_max,y_max);
|
2011-08-22 07:18:35 -06:00
|
|
|
}
|
2011-08-26 21:50:14 -06:00
|
|
|
lastwhole = whole;
|
2011-08-22 07:18:35 -06:00
|
|
|
}
|
|
|
|
MCache.WriteAll();
|
|
|
|
return CR_OK;
|
|
|
|
}
|
2011-08-17 05:26:03 -06:00
|
|
|
typedef char digmask[16][16];
|
|
|
|
|
|
|
|
static digmask diag5[5] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-01-05 18:27:27 -07:00
|
|
|
static digmask diag5r[5] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
2012-01-21 17:31:15 -07:00
|
|
|
},
|
|
|
|
{
|
2012-01-05 18:27:27 -07:00
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
2012-01-21 17:31:15 -07:00
|
|
|
},
|
|
|
|
{
|
2012-01-05 18:27:27 -07:00
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
2012-01-21 17:31:15 -07:00
|
|
|
},
|
|
|
|
{
|
2012-01-05 18:27:27 -07:00
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
2012-01-21 17:31:15 -07:00
|
|
|
},
|
|
|
|
{
|
2012-01-05 18:27:27 -07:00
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
{0,1,0,0,0,0,1,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,1,0,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,0,1,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,1,0,0,0,0,1,0},
|
|
|
|
{1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2011-08-17 05:26:03 -06:00
|
|
|
static digmask ladder[3] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0},
|
|
|
|
{1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1},
|
|
|
|
{0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0},
|
|
|
|
{1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1},
|
|
|
|
{0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0},
|
|
|
|
{1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1},
|
|
|
|
{0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,1,0,0,0,0,0,1,0,0,0,0,0},
|
|
|
|
{1,0,1,1,0,1,1,0,1,1,0,1,1,0,1,1},
|
|
|
|
{0,1,0,0,0,0,0,1,0,0,0,0,0,1,0,0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{1,0,0,0,0,0,1,0,0,0,0,0,1,0,0,0},
|
|
|
|
{0,1,1,0,1,1,0,1,1,0,1,1,0,1,1,0},
|
|
|
|
{0,0,0,1,0,0,0,0,0,1,0,0,0,0,0,1},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0},
|
|
|
|
{1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1},
|
|
|
|
{0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0},
|
|
|
|
{1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1},
|
|
|
|
{0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0},
|
|
|
|
{1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1},
|
|
|
|
{0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,1,0,0,0,0,0,1,0,0,0,0,0,1,0},
|
|
|
|
{1,1,0,1,1,0,1,1,0,1,1,0,1,1,0,1},
|
|
|
|
{0,0,0,0,0,1,0,0,0,0,0,1,0,0,0,0},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-01-05 18:27:27 -07:00
|
|
|
static digmask ladderr[3] =
|
|
|
|
{
|
|
|
|
{
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,0,1,0,0,0,1,0,0,0,1,0,0,0,1},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,0,1,0,0,0,1,0,0,0,1,0,0,0,1,0},
|
|
|
|
{0,1,0,0,0,1,0,0,0,1,0,0,0,1,0,0},
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2011-08-17 05:26:03 -06:00
|
|
|
static digmask all_tiles =
|
|
|
|
{
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
{1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1},
|
|
|
|
};
|
2011-08-17 06:27:24 -06:00
|
|
|
|
|
|
|
static digmask cross =
|
|
|
|
{
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0},
|
|
|
|
{0,0,0,1,1,1,1,1,1,1,1,1,1,0,0,0},
|
|
|
|
{0,0,0,1,0,0,0,1,1,0,0,0,1,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,1,1,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,1,1,1,1,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
{0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0},
|
|
|
|
};
|
2011-08-17 05:26:03 -06:00
|
|
|
enum explo_how
|
|
|
|
{
|
|
|
|
EXPLO_NOTHING,
|
|
|
|
EXPLO_DIAG5,
|
2012-01-05 18:27:27 -07:00
|
|
|
EXPLO_DIAG5R,
|
2011-08-17 05:26:03 -06:00
|
|
|
EXPLO_LADDER,
|
2012-01-05 18:27:27 -07:00
|
|
|
EXPLO_LADDERR,
|
2011-08-17 05:26:03 -06:00
|
|
|
EXPLO_CLEAR,
|
2011-08-17 06:27:24 -06:00
|
|
|
EXPLO_CROSS,
|
2011-08-17 05:26:03 -06:00
|
|
|
};
|
|
|
|
|
|
|
|
enum explo_what
|
|
|
|
{
|
|
|
|
EXPLO_ALL,
|
|
|
|
EXPLO_HIDDEN,
|
|
|
|
EXPLO_DESIGNATED,
|
|
|
|
};
|
|
|
|
|
2012-01-19 20:44:17 -07:00
|
|
|
bool stamp_pattern (uint32_t bx, uint32_t by, int z_level,
|
2012-01-21 17:31:15 -07:00
|
|
|
digmask & dm, explo_how how, explo_what what,
|
|
|
|
int x_max, int y_max
|
|
|
|
)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
2012-01-19 20:44:17 -07:00
|
|
|
df::map_block * bl = Maps::getBlock(bx,by,z_level);
|
2011-11-15 13:58:38 -07:00
|
|
|
if(!bl)
|
|
|
|
return false;
|
|
|
|
int x = 0,mx = 16;
|
|
|
|
if(bx == 0)
|
|
|
|
x = 1;
|
|
|
|
if(bx == x_max - 1)
|
|
|
|
mx = 15;
|
|
|
|
for(; x < mx; x++)
|
|
|
|
{
|
|
|
|
int y = 0,my = 16;
|
|
|
|
if(by == 0)
|
|
|
|
y = 1;
|
|
|
|
if(by == y_max - 1)
|
|
|
|
my = 15;
|
|
|
|
for(; y < my; y++)
|
|
|
|
{
|
2012-01-19 13:11:52 -07:00
|
|
|
df::tile_designation & des = bl->designation[x][y];
|
2012-02-13 15:56:33 -07:00
|
|
|
df::tiletype tt = bl->tiletype[x][y];
|
2011-11-15 13:58:38 -07:00
|
|
|
// could be potentially used to locate hidden constructions?
|
2012-02-13 15:56:33 -07:00
|
|
|
if(tileMaterial(tt) == tiletype_material::CONSTRUCTION && !des.bits.hidden)
|
2011-11-15 13:58:38 -07:00
|
|
|
continue;
|
2012-01-19 13:11:52 -07:00
|
|
|
if(!isWallTerrain(tt) && !des.bits.hidden)
|
2011-11-15 13:58:38 -07:00
|
|
|
continue;
|
|
|
|
if(how == EXPLO_CLEAR)
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
des.bits.dig = tile_dig_designation::No;
|
2011-11-15 13:58:38 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if(dm[y][x])
|
|
|
|
{
|
|
|
|
if(what == EXPLO_ALL
|
2012-01-21 17:31:15 -07:00
|
|
|
|| des.bits.dig == tile_dig_designation::Default && what == EXPLO_DESIGNATED
|
2012-01-19 13:11:52 -07:00
|
|
|
|| des.bits.hidden && what == EXPLO_HIDDEN)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
des.bits.dig = tile_dig_designation::Default;
|
2011-11-15 13:58:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(what == EXPLO_DESIGNATED)
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
des.bits.dig = tile_dig_designation::No;
|
2011-11-15 13:58:38 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-02-15 13:35:44 -07:00
|
|
|
bl->flags.bits.designated = true;
|
2011-11-15 13:58:38 -07:00
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2012-03-31 07:41:55 -06:00
|
|
|
command_result digexp (color_ostream &out, vector <string> & parameters)
|
2011-08-17 05:26:03 -06:00
|
|
|
{
|
|
|
|
bool force_help = false;
|
|
|
|
static explo_how how = EXPLO_NOTHING;
|
|
|
|
static explo_what what = EXPLO_HIDDEN;
|
2012-01-31 09:55:38 -07:00
|
|
|
for(size_t i = 0; i < parameters.size();i++)
|
2011-08-17 05:26:03 -06:00
|
|
|
{
|
|
|
|
if(parameters[i] == "help" || parameters[i] == "?")
|
|
|
|
{
|
|
|
|
force_help = true;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "all")
|
|
|
|
{
|
|
|
|
what = EXPLO_ALL;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "hidden")
|
|
|
|
{
|
|
|
|
what = EXPLO_HIDDEN;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "designated")
|
|
|
|
{
|
|
|
|
what = EXPLO_DESIGNATED;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "diag5")
|
|
|
|
{
|
|
|
|
how = EXPLO_DIAG5;
|
|
|
|
}
|
2012-01-05 18:27:27 -07:00
|
|
|
else if(parameters[i] == "diag5r")
|
|
|
|
{
|
|
|
|
how = EXPLO_DIAG5R;
|
|
|
|
}
|
2011-08-17 05:26:03 -06:00
|
|
|
else if(parameters[i] == "clear")
|
|
|
|
{
|
|
|
|
how = EXPLO_CLEAR;
|
|
|
|
}
|
|
|
|
else if(parameters[i] == "ladder")
|
|
|
|
{
|
|
|
|
how = EXPLO_LADDER;
|
|
|
|
}
|
2012-01-05 18:27:27 -07:00
|
|
|
else if(parameters[i] == "ladderr")
|
|
|
|
{
|
|
|
|
how = EXPLO_LADDERR;
|
|
|
|
}
|
2011-08-17 06:27:24 -06:00
|
|
|
else if(parameters[i] == "cross")
|
|
|
|
{
|
|
|
|
how = EXPLO_CROSS;
|
|
|
|
}
|
2011-08-17 05:26:03 -06:00
|
|
|
}
|
|
|
|
if(force_help || how == EXPLO_NOTHING)
|
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
out.print(
|
2012-01-21 17:31:15 -07:00
|
|
|
"This command can be used for exploratory mining.\n"
|
2012-02-20 04:04:15 -07:00
|
|
|
"http://dwarffortresswiki.org/Exploratory_mining\n"
|
2012-01-21 17:31:15 -07:00
|
|
|
"\n"
|
|
|
|
"There are two variables that can be set: pattern and filter.\n"
|
|
|
|
"Patterns:\n"
|
|
|
|
" diag5 = diagonals separated by 5 tiles\n"
|
|
|
|
" diag5r = diag5 rotated 90 degrees\n"
|
|
|
|
" ladder = A 'ladder' pattern\n"
|
|
|
|
"ladderr = ladder rotated 90 degrees\n"
|
|
|
|
" clear = Just remove all dig designations\n"
|
|
|
|
" cross = A cross, exactly in the middle of the map.\n"
|
|
|
|
"Filters:\n"
|
|
|
|
" all = designate whole z-level\n"
|
|
|
|
" hidden = designate only hidden tiles of z-level (default)\n"
|
|
|
|
" designated = Take current designation and apply pattern to it.\n"
|
|
|
|
"\n"
|
|
|
|
"After you have a pattern set, you can use 'expdig' to apply it:\n"
|
2012-03-31 07:41:55 -06:00
|
|
|
"'digexp diag5 hidden' = set filter to hidden, pattern to diag5.\n"
|
|
|
|
"'digexp' = apply the pattern with filter.\n"
|
2012-01-21 17:31:15 -07:00
|
|
|
);
|
2011-08-17 05:26:03 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
2012-03-10 04:55:42 -07:00
|
|
|
CoreSuspender suspend;
|
2011-08-17 05:26:03 -06:00
|
|
|
uint32_t x_max, y_max, z_max;
|
2012-01-19 20:44:17 -07:00
|
|
|
if (!Maps::IsValid())
|
2011-08-17 05:26:03 -06:00
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
out.printerr("Map is not available!\n");
|
2011-08-17 05:26:03 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2012-01-19 20:44:17 -07:00
|
|
|
Maps::getSize(x_max,y_max,z_max);
|
2011-08-17 05:26:03 -06:00
|
|
|
int32_t xzzz,yzzz,z_level;
|
2012-03-03 06:38:24 -07:00
|
|
|
if(!Gui::getViewCoords(xzzz,yzzz,z_level))
|
2011-08-17 05:26:03 -06:00
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
out.printerr("Can't get view coords...\n");
|
2011-08-17 05:26:03 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
if(how == EXPLO_DIAG5)
|
|
|
|
{
|
|
|
|
int which;
|
|
|
|
for(uint32_t x = 0; x < x_max; x++)
|
|
|
|
{
|
|
|
|
for(int32_t y = 0 ; y < y_max; y++)
|
|
|
|
{
|
|
|
|
which = (4*x + y) % 5;
|
2012-01-19 20:44:17 -07:00
|
|
|
stamp_pattern(x,y_max - 1 - y, z_level, diag5[which],
|
2012-01-21 17:31:15 -07:00
|
|
|
how, what, x_max, y_max);
|
2011-08-17 05:26:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-05 18:27:27 -07:00
|
|
|
else if(how == EXPLO_DIAG5R)
|
|
|
|
{
|
|
|
|
int which;
|
|
|
|
for(uint32_t x = 0; x < x_max; x++)
|
|
|
|
{
|
|
|
|
for(int32_t y = 0 ; y < y_max; y++)
|
|
|
|
{
|
|
|
|
which = (4*x + 1000-y) % 5;
|
2012-01-19 20:44:17 -07:00
|
|
|
stamp_pattern(x,y_max - 1 - y, z_level, diag5r[which],
|
2012-01-21 17:31:15 -07:00
|
|
|
how, what, x_max, y_max);
|
2012-01-05 18:27:27 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-08-17 05:26:03 -06:00
|
|
|
else if(how == EXPLO_LADDER)
|
|
|
|
{
|
|
|
|
int which;
|
|
|
|
for(uint32_t x = 0; x < x_max; x++)
|
|
|
|
{
|
|
|
|
which = x % 3;
|
|
|
|
for(int32_t y = 0 ; y < y_max; y++)
|
|
|
|
{
|
2012-01-19 20:44:17 -07:00
|
|
|
stamp_pattern(x, y, z_level, ladder[which],
|
2011-11-15 13:58:38 -07:00
|
|
|
how, what, x_max, y_max);
|
2011-08-17 05:26:03 -06:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2012-01-05 18:27:27 -07:00
|
|
|
else if(how == EXPLO_LADDERR)
|
|
|
|
{
|
|
|
|
int which;
|
|
|
|
for(int32_t y = 0 ; y < y_max; y++)
|
|
|
|
{
|
|
|
|
which = y % 3;
|
|
|
|
for(uint32_t x = 0; x < x_max; x++)
|
|
|
|
{
|
2012-01-19 20:44:17 -07:00
|
|
|
stamp_pattern(x, y, z_level, ladderr[which],
|
2012-01-21 17:31:15 -07:00
|
|
|
how, what, x_max, y_max);
|
2012-01-05 18:27:27 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-08-17 06:27:24 -06:00
|
|
|
else if(how == EXPLO_CROSS)
|
|
|
|
{
|
|
|
|
// middle + recentering for the image
|
|
|
|
int xmid = x_max * 8 - 8;
|
|
|
|
int ymid = y_max * 8 - 8;
|
2012-01-19 20:44:17 -07:00
|
|
|
MapExtras::MapCache mx;
|
2011-08-17 06:27:24 -06:00
|
|
|
for(int x = 0; x < 16; x++)
|
|
|
|
for(int y = 0; y < 16; y++)
|
|
|
|
{
|
|
|
|
DFCoord pos(xmid+x,ymid+y,z_level);
|
2012-02-13 15:56:33 -07:00
|
|
|
df::tiletype tt = mx.tiletypeAt(pos);
|
|
|
|
if(tt == tiletype::Void)
|
2011-08-17 06:27:24 -06:00
|
|
|
continue;
|
2012-01-19 13:11:52 -07:00
|
|
|
df::tile_designation des = mx.designationAt(pos);
|
2012-02-13 15:56:33 -07:00
|
|
|
if(tileMaterial(tt) == tiletype_material::CONSTRUCTION && !des.bits.hidden)
|
2011-08-17 06:29:30 -06:00
|
|
|
continue;
|
|
|
|
if(!isWallTerrain(tt) && !des.bits.hidden)
|
|
|
|
continue;
|
2011-08-17 06:27:24 -06:00
|
|
|
if(cross[y][x])
|
|
|
|
{
|
2012-01-21 17:31:15 -07:00
|
|
|
des.bits.dig = tile_dig_designation::Default;
|
2011-08-17 06:27:24 -06:00
|
|
|
mx.setDesignationAt(pos,des);
|
|
|
|
}
|
|
|
|
}
|
2012-01-21 17:31:15 -07:00
|
|
|
mx.WriteAll();
|
2011-08-17 06:27:24 -06:00
|
|
|
}
|
2011-08-17 05:26:03 -06:00
|
|
|
else for(uint32_t x = 0; x < x_max; x++)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
2011-08-17 05:26:03 -06:00
|
|
|
for(int32_t y = 0 ; y < y_max; y++)
|
2011-11-15 13:58:38 -07:00
|
|
|
{
|
2012-01-19 20:44:17 -07:00
|
|
|
stamp_pattern(x, y, z_level, all_tiles,
|
2012-01-21 17:31:15 -07:00
|
|
|
how, what, x_max, y_max);
|
2011-11-15 13:58:38 -07:00
|
|
|
}
|
|
|
|
}
|
2011-08-17 05:26:03 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
2011-12-31 02:25:46 -07:00
|
|
|
|
2012-03-31 07:41:55 -06:00
|
|
|
command_result digvx (color_ostream &out, vector <string> & parameters)
|
2011-08-17 05:26:03 -06:00
|
|
|
{
|
2011-12-31 02:25:46 -07:00
|
|
|
// HOTKEY COMMAND: CORE ALREADY SUSPENDED
|
2011-08-17 05:26:03 -06:00
|
|
|
vector <string> lol;
|
|
|
|
lol.push_back("x");
|
2012-03-31 07:41:55 -06:00
|
|
|
return digv(out,lol);
|
2011-08-17 05:26:03 -06:00
|
|
|
}
|
2011-07-10 13:07:14 -06:00
|
|
|
|
2012-03-31 07:41:55 -06:00
|
|
|
command_result digv (color_ostream &out, vector <string> & parameters)
|
2011-07-10 13:07:14 -06:00
|
|
|
{
|
2011-12-31 02:25:46 -07:00
|
|
|
// HOTKEY COMMAND: CORE ALREADY SUSPENDED
|
2011-07-11 14:23:13 -06:00
|
|
|
uint32_t x_max,y_max,z_max;
|
|
|
|
bool updown = false;
|
2012-01-31 09:55:38 -07:00
|
|
|
for(size_t i = 0; i < parameters.size();i++)
|
2011-08-14 00:42:21 -06:00
|
|
|
{
|
|
|
|
if(parameters.size() && parameters[0]=="x")
|
|
|
|
updown = true;
|
2011-12-31 02:25:46 -07:00
|
|
|
else
|
|
|
|
return CR_WRONG_USAGE;
|
2011-08-14 00:42:21 -06:00
|
|
|
}
|
2011-07-11 14:23:13 -06:00
|
|
|
|
2012-03-10 04:55:42 -07:00
|
|
|
auto &con = out;
|
2011-07-13 20:05:27 -06:00
|
|
|
|
2012-01-19 20:44:17 -07:00
|
|
|
if (!Maps::IsValid())
|
2011-07-11 14:23:13 -06:00
|
|
|
{
|
2012-03-10 04:55:42 -07:00
|
|
|
out.printerr("Map is not available!\n");
|
2011-07-11 14:23:13 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t cx, cy, cz;
|
2012-01-19 20:44:17 -07:00
|
|
|
Maps::getSize(x_max,y_max,z_max);
|
2011-07-11 14:23:13 -06:00
|
|
|
uint32_t tx_max = x_max * 16;
|
|
|
|
uint32_t ty_max = y_max * 16;
|
2012-03-03 06:38:24 -07:00
|
|
|
Gui::getCursorCoords(cx,cy,cz);
|
2011-07-11 14:23:13 -06:00
|
|
|
while(cx == -30000)
|
|
|
|
{
|
2011-07-15 07:55:01 -06:00
|
|
|
con.printerr("Cursor is not active. Point the cursor at a vein.\n");
|
2011-07-11 14:23:13 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
DFHack::DFCoord xy ((uint32_t)cx,(uint32_t)cy,cz);
|
|
|
|
if(xy.x == 0 || xy.x == tx_max - 1 || xy.y == 0 || xy.y == ty_max - 1)
|
|
|
|
{
|
2011-07-15 07:55:01 -06:00
|
|
|
con.printerr("I won't dig the borders. That would be cheating!\n");
|
2011-07-11 14:23:13 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2012-01-19 20:44:17 -07:00
|
|
|
MapExtras::MapCache * MCache = new MapExtras::MapCache;
|
2012-01-19 13:11:52 -07:00
|
|
|
df::tile_designation des = MCache->designationAt(xy);
|
2012-02-13 15:56:33 -07:00
|
|
|
df::tiletype tt = MCache->tiletypeAt(xy);
|
2011-07-11 14:23:13 -06:00
|
|
|
int16_t veinmat = MCache->veinMaterialAt(xy);
|
|
|
|
if( veinmat == -1 )
|
|
|
|
{
|
2011-07-15 07:55:01 -06:00
|
|
|
con.printerr("This tile is not a vein.\n");
|
2011-07-11 14:23:13 -06:00
|
|
|
delete MCache;
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
2011-07-13 20:05:27 -06:00
|
|
|
con.print("%d/%d/%d tiletype: %d, veinmat: %d, designation: 0x%x ... DIGGING!\n", cx,cy,cz, tt, veinmat, des.whole);
|
2011-07-11 14:23:13 -06:00
|
|
|
stack <DFHack::DFCoord> flood;
|
|
|
|
flood.push(xy);
|
|
|
|
|
|
|
|
while( !flood.empty() )
|
|
|
|
{
|
|
|
|
DFHack::DFCoord current = flood.top();
|
|
|
|
flood.pop();
|
2012-04-10 08:21:19 -06:00
|
|
|
if (MCache->tagAt(current))
|
|
|
|
continue;
|
2011-07-11 14:23:13 -06:00
|
|
|
int16_t vmat2 = MCache->veinMaterialAt(current);
|
|
|
|
tt = MCache->tiletypeAt(current);
|
|
|
|
if(!DFHack::isWallTerrain(tt))
|
|
|
|
continue;
|
|
|
|
if(vmat2!=veinmat)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// found a good tile, dig+unset material
|
2012-01-19 13:11:52 -07:00
|
|
|
df::tile_designation des = MCache->designationAt(current);
|
|
|
|
df::tile_designation des_minus;
|
|
|
|
df::tile_designation des_plus;
|
2011-07-11 14:23:13 -06:00
|
|
|
des_plus.whole = des_minus.whole = 0;
|
|
|
|
int16_t vmat_minus = -1;
|
|
|
|
int16_t vmat_plus = -1;
|
|
|
|
bool below = 0;
|
|
|
|
bool above = 0;
|
|
|
|
if(updown)
|
|
|
|
{
|
|
|
|
if(MCache->testCoord(current-1))
|
|
|
|
{
|
|
|
|
below = 1;
|
|
|
|
des_minus = MCache->designationAt(current-1);
|
|
|
|
vmat_minus = MCache->veinMaterialAt(current-1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if(MCache->testCoord(current+1))
|
|
|
|
{
|
|
|
|
above = 1;
|
|
|
|
des_plus = MCache->designationAt(current+1);
|
|
|
|
vmat_plus = MCache->veinMaterialAt(current+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(MCache->testCoord(current))
|
|
|
|
{
|
2012-04-10 08:21:19 -06:00
|
|
|
MCache->setTagAt(current, 1);
|
|
|
|
|
2011-07-11 14:23:13 -06:00
|
|
|
if(current.x < tx_max - 2)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x + 1, current.y, current.z));
|
|
|
|
if(current.y < ty_max - 2)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x + 1, current.y + 1,current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y + 1,current.z));
|
|
|
|
}
|
|
|
|
if(current.y > 1)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x + 1, current.y - 1,current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y - 1,current.z));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(current.x > 1)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x - 1, current.y,current.z));
|
|
|
|
if(current.y < ty_max - 2)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x - 1, current.y + 1,current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y + 1,current.z));
|
|
|
|
}
|
|
|
|
if(current.y > 1)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x - 1, current.y - 1,current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y - 1,current.z));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(updown)
|
|
|
|
{
|
|
|
|
if(current.z > 0 && below && vmat_minus == vmat2)
|
|
|
|
{
|
|
|
|
flood.push(current-1);
|
|
|
|
|
2012-01-21 17:31:15 -07:00
|
|
|
if(des_minus.bits.dig == tile_dig_designation::DownStair)
|
|
|
|
des_minus.bits.dig = tile_dig_designation::UpDownStair;
|
2011-07-11 14:23:13 -06:00
|
|
|
else
|
2012-01-21 17:31:15 -07:00
|
|
|
des_minus.bits.dig = tile_dig_designation::UpStair;
|
2011-07-11 14:23:13 -06:00
|
|
|
MCache->setDesignationAt(current-1,des_minus);
|
|
|
|
|
2012-01-21 17:31:15 -07:00
|
|
|
des.bits.dig = tile_dig_designation::DownStair;
|
2011-07-11 14:23:13 -06:00
|
|
|
}
|
|
|
|
if(current.z < z_max - 1 && above && vmat_plus == vmat2)
|
|
|
|
{
|
|
|
|
flood.push(current+ 1);
|
|
|
|
|
2012-01-21 17:31:15 -07:00
|
|
|
if(des_plus.bits.dig == tile_dig_designation::UpStair)
|
|
|
|
des_plus.bits.dig = tile_dig_designation::UpDownStair;
|
2011-07-11 14:23:13 -06:00
|
|
|
else
|
2012-01-21 17:31:15 -07:00
|
|
|
des_plus.bits.dig = tile_dig_designation::DownStair;
|
2011-07-11 14:23:13 -06:00
|
|
|
MCache->setDesignationAt(current+1,des_plus);
|
|
|
|
|
2012-01-21 17:31:15 -07:00
|
|
|
if(des.bits.dig == tile_dig_designation::DownStair)
|
|
|
|
des.bits.dig = tile_dig_designation::UpDownStair;
|
2011-07-11 14:23:13 -06:00
|
|
|
else
|
2012-01-21 17:31:15 -07:00
|
|
|
des.bits.dig = tile_dig_designation::UpStair;
|
2011-07-11 14:23:13 -06:00
|
|
|
}
|
|
|
|
}
|
2012-01-21 17:31:15 -07:00
|
|
|
if(des.bits.dig == tile_dig_designation::No)
|
|
|
|
des.bits.dig = tile_dig_designation::Default;
|
2011-07-11 14:23:13 -06:00
|
|
|
MCache->setDesignationAt(current,des);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MCache->WriteAll();
|
2011-07-10 13:07:14 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|
2011-07-11 14:23:13 -06:00
|
|
|
|
2012-03-31 07:41:55 -06:00
|
|
|
command_result diglx (color_ostream &out, vector <string> & parameters)
|
|
|
|
{
|
|
|
|
// HOTKEY COMMAND: CORE ALREADY SUSPENDED
|
|
|
|
vector <string> lol;
|
|
|
|
lol.push_back("x");
|
|
|
|
return digl(out,lol);
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
// digl and digv share the longish floodfill code and only use different conditions
|
|
|
|
// to check if a tile should be marked for digging or not.
|
|
|
|
// to make the plugin a bit smaller and cleaner a main execute method would be nice
|
|
|
|
// (doing the floodfill stuff and do the checks dependin on whether called in
|
|
|
|
// "vein" or "layer" mode)
|
|
|
|
command_result digl (color_ostream &out, vector <string> & parameters)
|
|
|
|
{
|
|
|
|
// HOTKEY COMMAND: CORE ALREADY SUSPENDED
|
|
|
|
uint32_t x_max,y_max,z_max;
|
|
|
|
bool updown = false;
|
|
|
|
bool undo = false;
|
|
|
|
for(size_t i = 0; i < parameters.size();i++)
|
|
|
|
{
|
|
|
|
if(parameters[i]=="x")
|
|
|
|
{
|
|
|
|
out << "This might take a while for huge layers..." << std::endl;
|
|
|
|
updown = true;
|
|
|
|
}
|
|
|
|
else if(parameters[i]=="undo")
|
|
|
|
{
|
|
|
|
out << "Removing dig designation." << std::endl;
|
|
|
|
undo = true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return CR_WRONG_USAGE;
|
|
|
|
}
|
|
|
|
|
|
|
|
auto &con = out;
|
|
|
|
|
|
|
|
if (!Maps::IsValid())
|
|
|
|
{
|
|
|
|
out.printerr("Map is not available!\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
|
|
|
|
int32_t cx, cy, cz;
|
|
|
|
Maps::getSize(x_max,y_max,z_max);
|
|
|
|
uint32_t tx_max = x_max * 16;
|
|
|
|
uint32_t ty_max = y_max * 16;
|
|
|
|
Gui::getCursorCoords(cx,cy,cz);
|
|
|
|
while(cx == -30000)
|
|
|
|
{
|
|
|
|
con.printerr("Cursor is not active. Point the cursor at a vein.\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
DFHack::DFCoord xy ((uint32_t)cx,(uint32_t)cy,cz);
|
|
|
|
if(xy.x == 0 || xy.x == tx_max - 1 || xy.y == 0 || xy.y == ty_max - 1)
|
|
|
|
{
|
|
|
|
con.printerr("I won't dig the borders. That would be cheating!\n");
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
MapExtras::MapCache * MCache = new MapExtras::MapCache;
|
|
|
|
df::tile_designation des = MCache->designationAt(xy);
|
|
|
|
df::tiletype tt = MCache->tiletypeAt(xy);
|
|
|
|
int16_t veinmat = MCache->veinMaterialAt(xy);
|
2012-04-19 09:17:07 -06:00
|
|
|
int16_t basemat = MCache->layerMaterialAt(xy);
|
2012-03-31 07:41:55 -06:00
|
|
|
if( veinmat != -1 )
|
|
|
|
{
|
|
|
|
con.printerr("This is a vein. Use vdig instead!\n");
|
|
|
|
delete MCache;
|
|
|
|
return CR_FAILURE;
|
|
|
|
}
|
|
|
|
con.print("%d/%d/%d tiletype: %d, basemat: %d, designation: 0x%x ... DIGGING!\n", cx,cy,cz, tt, basemat, des.whole);
|
|
|
|
stack <DFHack::DFCoord> flood;
|
|
|
|
flood.push(xy);
|
|
|
|
|
|
|
|
int i = 0;
|
|
|
|
while( !flood.empty() )
|
|
|
|
{
|
|
|
|
DFHack::DFCoord current = flood.top();
|
|
|
|
flood.pop();
|
2012-04-10 08:21:19 -06:00
|
|
|
if (MCache->tagAt(current))
|
|
|
|
continue;
|
2012-03-31 07:41:55 -06:00
|
|
|
int16_t vmat2 = MCache->veinMaterialAt(current);
|
2012-04-19 09:17:07 -06:00
|
|
|
int16_t bmat2 = MCache->layerMaterialAt(current);
|
2012-03-31 07:41:55 -06:00
|
|
|
tt = MCache->tiletypeAt(current);
|
|
|
|
|
|
|
|
if(!DFHack::isWallTerrain(tt))
|
|
|
|
continue;
|
|
|
|
if(vmat2!=-1)
|
|
|
|
continue;
|
|
|
|
if(bmat2!=basemat)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// don't dig out LAVA_STONE or MAGMA (semi-molten rock) accidentally
|
|
|
|
if( tileMaterial(tt)!=tiletype_material::STONE
|
|
|
|
&& tileMaterial(tt)!=tiletype_material::SOIL)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// found a good tile, dig+unset material
|
|
|
|
df::tile_designation des = MCache->designationAt(current);
|
|
|
|
df::tile_designation des_minus;
|
|
|
|
df::tile_designation des_plus;
|
|
|
|
des_plus.whole = des_minus.whole = 0;
|
|
|
|
int16_t vmat_minus = -1;
|
|
|
|
int16_t vmat_plus = -1;
|
|
|
|
int16_t bmat_minus = -1;
|
|
|
|
int16_t bmat_plus = -1;
|
|
|
|
df::tiletype tt_minus;
|
|
|
|
df::tiletype tt_plus;
|
|
|
|
|
|
|
|
if(MCache->testCoord(current))
|
|
|
|
{
|
2012-04-10 08:21:19 -06:00
|
|
|
MCache->setTagAt(current, 1);
|
2012-03-31 07:41:55 -06:00
|
|
|
if(current.x < tx_max - 2)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x + 1, current.y, current.z));
|
|
|
|
if(current.y < ty_max - 2)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x + 1, current.y + 1, current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y + 1, current.z));
|
|
|
|
}
|
|
|
|
if(current.y > 1)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x + 1, current.y - 1, current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y - 1, current.z));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(current.x > 1)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x - 1, current.y, current.z));
|
|
|
|
if(current.y < ty_max - 2)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x - 1, current.y + 1, current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y + 1, current.z));
|
|
|
|
}
|
|
|
|
if(current.y > 1)
|
|
|
|
{
|
|
|
|
flood.push(DFHack::DFCoord(current.x - 1, current.y - 1, current.z));
|
|
|
|
flood.push(DFHack::DFCoord(current.x, current.y - 1, current.z));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(updown)
|
|
|
|
{
|
|
|
|
bool below = 0;
|
|
|
|
bool above = 0;
|
|
|
|
if(MCache->testCoord(current-1))
|
|
|
|
{
|
|
|
|
//below = 1;
|
|
|
|
des_minus = MCache->designationAt(current-1);
|
|
|
|
vmat_minus = MCache->veinMaterialAt(current-1);
|
2012-04-19 09:17:07 -06:00
|
|
|
bmat_minus = MCache->layerMaterialAt(current-1);
|
2012-03-31 07:41:55 -06:00
|
|
|
tt_minus = MCache->tiletypeAt(current-1);
|
|
|
|
if ( tileMaterial(tt_minus)==tiletype_material::STONE
|
|
|
|
|| tileMaterial(tt_minus)==tiletype_material::SOIL)
|
|
|
|
below = 1;
|
|
|
|
}
|
|
|
|
if(MCache->testCoord(current+1))
|
|
|
|
{
|
|
|
|
//above = 1;
|
|
|
|
des_plus = MCache->designationAt(current+1);
|
|
|
|
vmat_plus = MCache->veinMaterialAt(current+1);
|
2012-04-19 09:17:07 -06:00
|
|
|
bmat_plus = MCache->layerMaterialAt(current+1);
|
2012-03-31 07:41:55 -06:00
|
|
|
tt_plus = MCache->tiletypeAt(current+1);
|
|
|
|
if ( tileMaterial(tt_plus)==tiletype_material::STONE
|
|
|
|
|| tileMaterial(tt_plus)==tiletype_material::SOIL)
|
|
|
|
above = 1;
|
|
|
|
}
|
|
|
|
if(current.z > 0 && below && vmat_minus == -1 && bmat_minus == basemat)
|
|
|
|
{
|
|
|
|
flood.push(current-1);
|
|
|
|
|
|
|
|
if(des_minus.bits.dig == tile_dig_designation::DownStair)
|
|
|
|
des_minus.bits.dig = tile_dig_designation::UpDownStair;
|
|
|
|
else
|
|
|
|
des_minus.bits.dig = tile_dig_designation::UpStair;
|
2012-04-02 08:07:23 -06:00
|
|
|
// undo mode: clear designation
|
|
|
|
if(undo)
|
|
|
|
des_minus.bits.dig = tile_dig_designation::No;
|
2012-03-31 07:41:55 -06:00
|
|
|
MCache->setDesignationAt(current-1,des_minus);
|
|
|
|
|
|
|
|
des.bits.dig = tile_dig_designation::DownStair;
|
|
|
|
}
|
|
|
|
if(current.z < z_max - 1 && above && vmat_plus == -1 && bmat_plus == basemat)
|
|
|
|
{
|
|
|
|
flood.push(current+ 1);
|
|
|
|
|
|
|
|
if(des_plus.bits.dig == tile_dig_designation::UpStair)
|
|
|
|
des_plus.bits.dig = tile_dig_designation::UpDownStair;
|
|
|
|
else
|
|
|
|
des_plus.bits.dig = tile_dig_designation::DownStair;
|
2012-04-02 08:07:23 -06:00
|
|
|
// undo mode: clear designation
|
|
|
|
if(undo)
|
|
|
|
des_plus.bits.dig = tile_dig_designation::No;
|
2012-03-31 07:41:55 -06:00
|
|
|
MCache->setDesignationAt(current+1,des_plus);
|
|
|
|
|
|
|
|
if(des.bits.dig == tile_dig_designation::DownStair)
|
|
|
|
des.bits.dig = tile_dig_designation::UpDownStair;
|
|
|
|
else
|
|
|
|
des.bits.dig = tile_dig_designation::UpStair;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if(des.bits.dig == tile_dig_designation::No)
|
|
|
|
des.bits.dig = tile_dig_designation::Default;
|
|
|
|
// undo mode: clear designation
|
|
|
|
if(undo)
|
|
|
|
des.bits.dig = tile_dig_designation::No;
|
|
|
|
MCache->setDesignationAt(current,des);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
MCache->WriteAll();
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
command_result digauto (color_ostream &out, vector <string> & parameters)
|
2011-07-11 14:23:13 -06:00
|
|
|
{
|
2011-07-12 04:13:14 -06:00
|
|
|
return CR_NOT_IMPLEMENTED;
|
2012-01-05 18:27:27 -07:00
|
|
|
}
|