|
|
@ -99,7 +99,7 @@ static vector<df::unit *> get_units_at(const df::coord pos, bool only_one)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
df::unit *unit = world->units.active[i];
|
|
|
|
df::unit *unit = world->units.active[i];
|
|
|
|
|
|
|
|
|
|
|
|
if(unit->pos.x == pos.x && unit->pos.y == pos.y && unit->pos.z == pos.z &&
|
|
|
|
if(unit->pos.x == pos.x && unit->pos.y == pos.y && unit->pos.z == pos.z &&
|
|
|
|
!(unit->flags1.whole & bad_flags.whole) &&
|
|
|
|
!(unit->flags1.whole & bad_flags.whole) &&
|
|
|
|
unit->profession != profession::THIEF && unit->profession != profession::MASTER_THIEF)
|
|
|
|
unit->profession != profession::THIEF && unit->profession != profession::MASTER_THIEF)
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -169,7 +169,7 @@ static df::interface_key get_default_query_mode(const df::coord pos)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
// For containers use item view, for everything else, query view
|
|
|
|
// For containers use item view, for everything else, query view
|
|
|
|
return (type == building_type::Box || type == building_type::Cabinet ||
|
|
|
|
return (type == building_type::Box || type == building_type::Cabinet ||
|
|
|
|
type == building_type::Weaponrack || type == building_type::Armorstand)
|
|
|
|
type == building_type::Weaponrack || type == building_type::Armorstand)
|
|
|
|
? df::interface_key::D_BUILDITEM : df::interface_key::D_BUILDJOB;
|
|
|
|
? df::interface_key::D_BUILDITEM : df::interface_key::D_BUILDJOB;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -210,13 +210,22 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
|
|
|
|
case DesignateCarveTrack:
|
|
|
|
case DesignateCarveTrack:
|
|
|
|
case DesignateEngrave:
|
|
|
|
case DesignateEngrave:
|
|
|
|
case DesignateCarveFortification:
|
|
|
|
case DesignateCarveFortification:
|
|
|
|
|
|
|
|
case DesignateItemsClaim:
|
|
|
|
|
|
|
|
case DesignateItemsForbid:
|
|
|
|
|
|
|
|
case DesignateItemsMelt:
|
|
|
|
|
|
|
|
case DesignateItemsUnmelt:
|
|
|
|
|
|
|
|
case DesignateItemsDump:
|
|
|
|
|
|
|
|
case DesignateItemsUndump:
|
|
|
|
|
|
|
|
case DesignateItemsHide:
|
|
|
|
|
|
|
|
case DesignateItemsUnhide:
|
|
|
|
case DesignateChopTrees:
|
|
|
|
case DesignateChopTrees:
|
|
|
|
case DesignateToggleEngravings:
|
|
|
|
case DesignateToggleEngravings:
|
|
|
|
case DesignateRemoveConstruction:
|
|
|
|
case DesignateToggleMarker:
|
|
|
|
case DesignateTrafficHigh:
|
|
|
|
case DesignateTrafficHigh:
|
|
|
|
case DesignateTrafficNormal:
|
|
|
|
case DesignateTrafficNormal:
|
|
|
|
case DesignateTrafficLow:
|
|
|
|
case DesignateTrafficLow:
|
|
|
|
case DesignateTrafficRestricted:
|
|
|
|
case DesignateTrafficRestricted:
|
|
|
|
|
|
|
|
case DesignateRemoveConstruction:
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
|
|
|
|
|
|
|
|
case Burrows:
|
|
|
|
case Burrows:
|
|
|
@ -268,7 +277,7 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
|
|
|
|
|
|
|
|
|
|
|
|
bool isInAreaSelectionMode()
|
|
|
|
bool isInAreaSelectionMode()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
bool selectableMode =
|
|
|
|
bool selectableMode =
|
|
|
|
isInDesignationMenu() ||
|
|
|
|
isInDesignationMenu() ||
|
|
|
|
ui->main.mode == Stockpiles ||
|
|
|
|
ui->main.mode == Stockpiles ||
|
|
|
|
ui->main.mode == Zones;
|
|
|
|
ui->main.mode == Zones;
|
|
|
@ -357,13 +366,13 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
|
|
|
|
|
|
|
|
|
|
|
|
enabler->mouse_lbut = 0;
|
|
|
|
enabler->mouse_lbut = 0;
|
|
|
|
|
|
|
|
|
|
|
|
// Can't check limits earlier as we must be sure we are in query or default mode
|
|
|
|
// Can't check limits earlier as we must be sure we are in query or default mode
|
|
|
|
// (so we can clear the button down flag)
|
|
|
|
// (so we can clear the button down flag)
|
|
|
|
int right_bound = (dims.menu_x1 > 0) ? dims.menu_x1 - 2 : gps->dimx - 2;
|
|
|
|
int right_bound = (dims.menu_x1 > 0) ? dims.menu_x1 - 2 : gps->dimx - 2;
|
|
|
|
if (mx < 1 || mx > right_bound || my < 1 || my > gps->dimy - 2)
|
|
|
|
if (mx < 1 || mx > right_bound || my < 1 || my > gps->dimy - 2)
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
|
|
|
|
|
|
|
|
if (ui->main.mode == df::ui_sidebar_mode::Zones ||
|
|
|
|
if (ui->main.mode == df::ui_sidebar_mode::Zones ||
|
|
|
|
ui->main.mode == df::ui_sidebar_mode::Stockpiles)
|
|
|
|
ui->main.mode == df::ui_sidebar_mode::Stockpiles)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
int32_t x, y, z;
|
|
|
|
int32_t x, y, z;
|
|
|
@ -414,7 +423,7 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
|
|
|
|
|
|
|
|
|
|
|
|
using namespace df::enums::ui_sidebar_mode;
|
|
|
|
using namespace df::enums::ui_sidebar_mode;
|
|
|
|
if ((ui->main.mode == QueryBuilding || ui->main.mode == BuildingItems ||
|
|
|
|
if ((ui->main.mode == QueryBuilding || ui->main.mode == BuildingItems ||
|
|
|
|
ui->main.mode == ViewUnits || ui->main.mode == LookAround) ||
|
|
|
|
ui->main.mode == ViewUnits || ui->main.mode == LookAround) ||
|
|
|
|
(isInTrackableMode() && tracking_enabled))
|
|
|
|
(isInTrackableMode() && tracking_enabled))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
sendKey(df::interface_key::LEAVESCREEN);
|
|
|
|
sendKey(df::interface_key::LEAVESCREEN);
|
|
|
@ -549,7 +558,7 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
|
|
|
|
mpos_valid = false;
|
|
|
|
mpos_valid = false;
|
|
|
|
|
|
|
|
|
|
|
|
// Check if in lever binding mode
|
|
|
|
// Check if in lever binding mode
|
|
|
|
if (Gui::getFocusString(Core::getTopViewscreen()) ==
|
|
|
|
if (Gui::getFocusString(Core::getTopViewscreen()) ==
|
|
|
|
"dwarfmode/QueryBuilding/Some/Lever/AddJob")
|
|
|
|
"dwarfmode/QueryBuilding/Some/Lever/AddJob")
|
|
|
|
{
|
|
|
|
{
|
|
|
|
return;
|
|
|
|
return;
|
|
|
@ -651,7 +660,7 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
|
|
|
|
if (Gui::getDesignationCoords(x, y, z))
|
|
|
|
if (Gui::getDesignationCoords(x, y, z))
|
|
|
|
{
|
|
|
|
{
|
|
|
|
color = COLOR_WHITE;
|
|
|
|
color = COLOR_WHITE;
|
|
|
|
if (ui->main.mode == df::ui_sidebar_mode::Zones ||
|
|
|
|
if (ui->main.mode == df::ui_sidebar_mode::Zones ||
|
|
|
|
ui->main.mode == df::ui_sidebar_mode::Stockpiles)
|
|
|
|
ui->main.mode == df::ui_sidebar_mode::Stockpiles)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
auto dX = abs(x - mpos.x);
|
|
|
|
auto dX = abs(x - mpos.x);
|
|
|
@ -670,8 +679,8 @@ struct mousequery_hook : public df::viewscreen_dwarfmodest
|
|
|
|
|
|
|
|
|
|
|
|
if (shouldTrack())
|
|
|
|
if (shouldTrack())
|
|
|
|
{
|
|
|
|
{
|
|
|
|
if (delta_t <= scroll_delay && (mx < scroll_buffer ||
|
|
|
|
if (delta_t <= scroll_delay && (mx < scroll_buffer ||
|
|
|
|
mx > dims.menu_x1 - scroll_buffer ||
|
|
|
|
mx > dims.menu_x1 - scroll_buffer ||
|
|
|
|
my < scroll_buffer ||
|
|
|
|
my < scroll_buffer ||
|
|
|
|
my > gps->dimy - scroll_buffer))
|
|
|
|
my > gps->dimy - scroll_buffer))
|
|
|
|
{
|
|
|
|
{
|
|
|
@ -831,7 +840,7 @@ DFhackCExport command_result plugin_init ( color_ostream &out, std::vector <Plug
|
|
|
|
commands.push_back(
|
|
|
|
commands.push_back(
|
|
|
|
PluginCommand(
|
|
|
|
PluginCommand(
|
|
|
|
"mousequery", "Add mouse functionality to Dwarf Fortress",
|
|
|
|
"mousequery", "Add mouse functionality to Dwarf Fortress",
|
|
|
|
mousequery_cmd, false,
|
|
|
|
mousequery_cmd, false,
|
|
|
|
"mousequery [plugin|rbutton|track|edge|live] [enabled|disabled]\n"
|
|
|
|
"mousequery [plugin|rbutton|track|edge|live] [enabled|disabled]\n"
|
|
|
|
" plugin: enable/disable the entire plugin\n"
|
|
|
|
" plugin: enable/disable the entire plugin\n"
|
|
|
|
" rbutton: enable/disable right mouse button\n"
|
|
|
|
" rbutton: enable/disable right mouse button\n"
|
|
|
|