2012-03-23 17:13:16 -06:00
// plugin liquids
//
// This is a rewrite of the liquids module which can also be used non-interactively (hotkey).
// First the user sets the mode and other parameters with the interactive command liqiudsgo
// just like in the original liquids module.
// They are stored in statics to allow being used after the interactive session was closed.
// After defining an action the non-interactive command liquids-here can be used to call the
// execute method without the necessity to go back to the console. This allows convenient painting
// of liquids and obsidian using the ingame cursor and a hotkey.
//
// Commands:
// liquids - basically the original liquids with the map changing stuff moved to an execute method
// liquids-here - runs the execute method with the last settings from liquids
// (intended to be mapped to a hotkey)
// Options:
// ?, help - print some help
//
// TODO:
// - maybe allow all parameters be passed as command line options? tedious parsing but might be useful
// - grab the code from digcircle to get a circle brush - could be nice when painting with obsidian
// - maybe store the last parameters in a file to make them persistent after dfhack is closed?
2011-07-27 18:35:45 -06:00
# include <iostream>
# include <vector>
2012-01-05 16:35:05 -07:00
# include <stack>
2011-07-27 18:35:45 -06:00
# include <map>
# include <set>
# include <cstdlib>
# include <sstream>
using std : : vector ;
using std : : string ;
using std : : endl ;
using std : : set ;
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/Vegetation.h"
# include "modules/Maps.h"
# include "modules/Gui.h"
# include "TileTypes.h"
# include "modules/MapCache.h"
2012-03-23 17:13:16 -06:00
# include "Brushes.h"
2011-07-27 18:35:45 -06:00
using namespace MapExtras ;
using namespace DFHack ;
2012-01-21 17:31:15 -07:00
using namespace df : : enums ;
2011-07-27 18:35:45 -06:00
2012-02-21 10:19:17 -07:00
CommandHistory liquids_hist ;
2012-03-10 04:55:42 -07:00
command_result df_liquids ( color_ostream & out , vector < string > & parameters ) ;
2012-03-23 17:13:16 -06:00
command_result df_liquids_here ( color_ostream & out , vector < string > & parameters ) ;
command_result df_liquids_execute ( color_ostream & out ) ;
2012-02-21 10:19:17 -07:00
DFHACK_PLUGIN ( " liquids " ) ;
2012-03-10 04:55:42 -07:00
DFhackCExport command_result plugin_init ( color_ostream & out , std : : vector < PluginCommand > & commands )
2012-02-21 10:19:17 -07:00
{
liquids_hist . load ( " liquids.history " ) ;
2012-03-23 17:13:16 -06:00
commands . push_back ( PluginCommand (
" liquids " , " Place magma, water or obsidian. " ,
df_liquids , true ) ) ; // interactive, needs console for prompt
commands . push_back ( PluginCommand (
" liquids-here " , " Use settings from liquids at cursor position. " ,
df_liquids_here , Gui : : cursor_hotkey , // non-interactive, needs ingame cursor
" Identical to pressing enter in liquids, intended for use as keybinding. \n "
" Can (but doesn't need to) be called while liquids is running in the console. " ) ) ;
2012-02-21 10:19:17 -07:00
return CR_OK ;
}
2012-03-10 04:55:42 -07:00
DFhackCExport command_result plugin_shutdown ( color_ostream & out )
2012-02-21 10:19:17 -07:00
{
liquids_hist . save ( " liquids.history " ) ;
return CR_OK ;
}
2012-03-23 17:13:16 -06:00
// static stuff to be remembered between sessions
static string brushname = " point " ;
static string mode = " magma " ;
static string flowmode = " f+ " ;
static string setmode = " s. " ;
static unsigned int amount = 7 ;
static int width = 1 , height = 1 , z_levels = 1 ;
2012-01-05 16:35:05 -07:00
2012-03-10 04:55:42 -07:00
command_result df_liquids ( color_ostream & out_ , vector < string > & parameters )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
if ( ! out_ . is_console ( ) )
return CR_FAILURE ;
2012-03-10 04:55:42 -07:00
Console & out = static_cast < Console & > ( out_ ) ;
2012-01-31 09:55:38 -07:00
for ( size_t i = 0 ; i < parameters . size ( ) ; i + + )
2011-08-08 17:50:22 -06:00
{
if ( parameters [ i ] = = " help " | | parameters [ i ] = = " ? " )
{
2012-03-23 17:13:16 -06:00
out . print ( " This tool allows placing magma, water and other similar things. \n "
" It is interactive and further help is available when you run it. \n "
" The settings will be remembered until dfhack is closed and you can call \n "
" 'liquids-here' (mapped to a hotkey) to paint liquids at the cursor position \n "
" without the need to go back to the dfhack console. \n " ) ;
2011-08-08 17:50:22 -06:00
return CR_OK ;
}
}
2012-01-24 04:36:30 -07:00
if ( ! Maps : : IsValid ( ) )
{
2012-03-10 04:55:42 -07:00
out . printerr ( " Map is not available! \n " ) ;
2012-01-24 04:36:30 -07:00
return CR_FAILURE ;
}
2011-07-27 18:35:45 -06:00
bool end = false ;
2012-03-23 17:13:16 -06:00
2012-03-10 04:55:42 -07:00
out < < " Welcome to the liquid spawner. \n Type 'help' or '?' for a list of available commands, 'q' to quit. \n Press return after a command to confirm. " < < std : : endl ;
2011-07-27 18:35:45 -06:00
while ( ! end )
{
string command = " " ;
2012-03-23 17:13:16 -06:00
2011-07-27 18:35:45 -06:00
std : : stringstream str ;
2012-03-23 17:13:16 -06:00
str < < " [ " < < mode < < " : " < < brushname ;
if ( brushname = = " range " )
str < < " (w " < < width < < " :h " < < height < < " :z " < < z_levels < < " ) " ;
str < < " : " < < amount < < " : " < < flowmode < < " : " < < setmode < < " ]# " ;
2012-03-10 04:55:42 -07:00
if ( out . lineedit ( str . str ( ) , command , liquids_hist ) = = - 1 )
2011-07-27 18:35:45 -06:00
return CR_FAILURE ;
2012-04-17 20:12:11 -06:00
liquids_hist . add ( command ) ;
2012-03-23 17:13:16 -06:00
2011-07-27 18:35:45 -06:00
if ( command = = " help " | | command = = " ? " )
{
2012-03-10 04:55:42 -07:00
out < < " Modes: " < < endl
2011-07-27 18:35:45 -06:00
< < " m - switch to magma " < < endl
< < " w - switch to water " < < endl
< < " o - make obsidian wall instead " < < endl
< < " of - make obsidian floors " < < endl
< < " rs - make a river source " < < endl
< < " f - flow bits only " < < endl
2011-09-01 17:25:01 -06:00
< < " wclean - remove salt and stagnant flags from tiles " < < endl
2011-07-27 18:35:45 -06:00
< < " Set-Modes (only for magma/water): " < < endl
< < " s+ - only add " < < endl
< < " s. - set " < < endl
< < " s- - only remove " < < endl
< < " Properties (only for magma/water): " < < endl
< < " f+ - make the spawned liquid flow " < < endl
< < " f. - don't change flow state (read state in flow mode) " < < endl
< < " f- - make the spawned liquid static " < < endl
< < " 0-7 - set liquid amount " < < endl
< < " Brush: " < < endl
< < " point - single tile [p] " < < endl
< < " range - block with cursor at bottom north-west [r] " < < endl
< < " (any place, any size) " < < endl
< < " block - DF map block with cursor in it " < < endl
< < " (regular spaced 16x16x1 blocks) " < < endl
< < " column - Column from cursor, up through free space " < < endl
2012-01-05 16:35:05 -07:00
< < " flood - Flood-fill water tiles from cursor " < < endl
< < " (only makes sense with wclean) " < < endl
2011-07-27 18:35:45 -06:00
< < " Other: " < < endl
< < " q - quit " < < endl
< < " help or ? - print this list of commands " < < endl
< < " empty line - put liquid " < < endl
< < endl
< < " Usage: point the DF cursor at a tile you want to modify " < < endl
< < " and use the commands available :) " < < endl ;
2012-03-23 17:13:16 -06:00
out < < endl < < " Settings will be remembered until you quit DF. You can call liquids-here to execute the last configured action. Useful in combination with keybindings. " < < endl ;
2011-07-27 18:35:45 -06:00
}
else if ( command = = " m " )
{
mode = " magma " ;
}
else if ( command = = " o " )
{
mode = " obsidian " ;
}
else if ( command = = " of " )
{
mode = " obsidian_floor " ;
}
else if ( command = = " w " )
{
mode = " water " ;
}
else if ( command = = " f " )
{
mode = " flowbits " ;
}
else if ( command = = " rs " )
{
mode = " riversource " ;
}
2011-09-01 17:25:01 -06:00
else if ( command = = " wclean " )
{
mode = " wclean " ;
}
2011-07-27 18:35:45 -06:00
else if ( command = = " point " | | command = = " p " )
{
brushname = " point " ;
}
else if ( command = = " range " | | command = = " r " )
{
std : : stringstream str ;
2011-08-13 06:42:09 -06:00
CommandHistory range_hist ;
2011-07-27 18:35:45 -06:00
str < < " :set range width< " < < width < < " ># " ;
2012-03-10 04:55:42 -07:00
out . lineedit ( str . str ( ) , command , range_hist ) ;
2011-08-13 06:42:09 -06:00
range_hist . add ( command ) ;
2011-07-27 18:35:45 -06:00
width = command = = " " ? width : atoi ( command . c_str ( ) ) ;
if ( width < 1 ) width = 1 ;
2011-08-14 17:30:15 -06:00
str . str ( " " ) ;
2011-07-27 18:35:45 -06:00
str < < " :set range height< " < < height < < " ># " ;
2012-03-10 04:55:42 -07:00
out . lineedit ( str . str ( ) , command , range_hist ) ;
2011-08-13 06:42:09 -06:00
range_hist . add ( command ) ;
2011-07-27 18:35:45 -06:00
height = command = = " " ? height : atoi ( command . c_str ( ) ) ;
if ( height < 1 ) height = 1 ;
2011-08-14 17:30:15 -06:00
str . str ( " " ) ;
2011-07-27 18:35:45 -06:00
str < < " :set range z-levels< " < < z_levels < < " ># " ;
2012-03-10 04:55:42 -07:00
out . lineedit ( str . str ( ) , command , range_hist ) ;
2011-08-13 06:42:09 -06:00
range_hist . add ( command ) ;
2011-07-27 18:35:45 -06:00
z_levels = command = = " " ? z_levels : atoi ( command . c_str ( ) ) ;
if ( z_levels < 1 ) z_levels = 1 ;
if ( width = = 1 & & height = = 1 & & z_levels = = 1 )
{
2012-03-23 17:13:16 -06:00
brushname = " point " ;
2011-07-27 18:35:45 -06:00
}
else
{
brushname = " range " ;
}
}
else if ( command = = " block " )
{
brushname = " block " ;
}
else if ( command = = " column " )
{
brushname = " column " ;
}
2012-03-23 17:13:16 -06:00
else if ( command = = " flood " )
{
brushname = " flood " ;
}
2011-07-27 18:35:45 -06:00
else if ( command = = " q " )
{
end = true ;
}
else if ( command = = " f+ " )
{
flowmode = " f+ " ;
}
else if ( command = = " f- " )
{
flowmode = " f- " ;
}
else if ( command = = " f. " )
{
flowmode = " f. " ;
}
else if ( command = = " s+ " )
{
setmode = " s+ " ;
}
else if ( command = = " s- " )
{
setmode = " s- " ;
}
else if ( command = = " s. " )
{
setmode = " s. " ;
}
// blah blah, bad code, bite me.
else if ( command = = " 0 " )
amount = 0 ;
else if ( command = = " 1 " )
amount = 1 ;
else if ( command = = " 2 " )
amount = 2 ;
else if ( command = = " 3 " )
amount = 3 ;
else if ( command = = " 4 " )
amount = 4 ;
else if ( command = = " 5 " )
amount = 5 ;
else if ( command = = " 6 " )
amount = 6 ;
else if ( command = = " 7 " )
amount = 7 ;
else if ( command . empty ( ) )
{
2012-03-23 17:13:16 -06:00
df_liquids_execute ( out ) ;
}
else
{
out < < command < < " : unknown command. " < < endl ;
}
}
return CR_OK ;
}
command_result df_liquids_here ( color_ostream & out , vector < string > & parameters )
{
for ( size_t i = 0 ; i < parameters . size ( ) ; i + + )
{
if ( parameters [ i ] = = " help " | | parameters [ i ] = = " ? " )
{
out < < " This command is supposed to be mapped to a hotkey. " < < endl ;
out < < " It will use the current/last parameters set in liquids. " < < endl ;
return CR_OK ;
}
}
2012-03-10 04:55:42 -07:00
2012-03-23 17:13:16 -06:00
out . print ( " Run liquids-here with these parameters: " ) ;
out < < " [ " < < mode < < " : " < < brushname ;
if ( brushname = = " range " )
out < < " (w " < < width < < " :h " < < height < < " :z " < < z_levels < < " ) " ;
out < < " : " < < amount < < " : " < < flowmode < < " : " < < setmode < < " ] \n " ;
return df_liquids_execute ( out ) ;
}
command_result df_liquids_execute ( color_ostream & out )
{
// create brush type depending on old parameters
Brush * brush ;
if ( brushname = = " point " )
{
brush = new RectangleBrush ( 1 , 1 , 1 , 0 , 0 , 0 ) ;
//width = 1;
//height = 1;
//z_levels = 1;
}
else if ( brushname = = " range " )
{
brush = new RectangleBrush ( width , height , z_levels , 0 , 0 , 0 ) ;
}
else if ( brushname = = " block " )
{
brush = new BlockBrush ( ) ;
}
else if ( brushname = = " column " )
{
brush = new ColumnBrush ( ) ;
}
else if ( brushname = = " flood " )
{
brush = new FloodBrush ( & Core : : getInstance ( ) ) ;
}
else
{
// this should never happen!
out < < " Old brushtype is invalid! Resetting to point brush. \n " ;
brushname = " point " ;
width = 1 ;
height = 1 ;
z_levels = 1 ;
brush = new RectangleBrush ( width , height , z_levels , 0 , 0 , 0 ) ;
}
CoreSuspender suspend ;
do
{
if ( ! Maps : : IsValid ( ) )
{
out < < " Can't see any DF map loaded. " < < endl ;
break ; ;
}
int32_t x , y , z ;
if ( ! Gui : : getCursorCoords ( x , y , z ) )
{
out < < " Can't get cursor coords! Make sure you have a cursor active in DF. " < < endl ;
break ;
}
out < < " cursor coords: " < < x < < " / " < < y < < " / " < < z < < endl ;
MapCache mcache ;
DFHack : : DFCoord cursor ( x , y , z ) ;
coord_vec all_tiles = brush - > points ( mcache , cursor ) ;
out < < " working... " < < endl ;
if ( mode = = " obsidian " )
{
coord_vec : : iterator iter = all_tiles . begin ( ) ;
while ( iter ! = all_tiles . end ( ) )
{
mcache . setTiletypeAt ( * iter , tiletype : : LavaWall ) ;
mcache . setTemp1At ( * iter , 10015 ) ;
mcache . setTemp2At ( * iter , 10015 ) ;
df : : tile_designation des = mcache . designationAt ( * iter ) ;
des . bits . flow_size = 0 ;
mcache . setDesignationAt ( * iter , des ) ;
iter + + ;
}
}
if ( mode = = " obsidian_floor " )
{
coord_vec : : iterator iter = all_tiles . begin ( ) ;
while ( iter ! = all_tiles . end ( ) )
{
mcache . setTiletypeAt ( * iter , findRandomVariant ( tiletype : : LavaFloor1 ) ) ;
iter + + ;
}
}
else if ( mode = = " riversource " )
{
coord_vec : : iterator iter = all_tiles . begin ( ) ;
while ( iter ! = all_tiles . end ( ) )
{
mcache . setTiletypeAt ( * iter , tiletype : : RiverSource ) ;
df : : tile_designation a = mcache . designationAt ( * iter ) ;
a . bits . liquid_type = tile_liquid : : Water ;
a . bits . liquid_static = false ;
a . bits . flow_size = 7 ;
mcache . setTemp1At ( * iter , 10015 ) ;
mcache . setTemp2At ( * iter , 10015 ) ;
mcache . setDesignationAt ( * iter , a ) ;
Block * b = mcache . BlockAt ( ( * iter ) / 16 ) ;
DFHack : : t_blockflags bf = b - > BlockFlags ( ) ;
2012-04-10 08:21:19 -06:00
bf . bits . update_liquid = true ;
bf . bits . update_liquid_twice = true ;
2012-03-23 17:13:16 -06:00
b - > setBlockFlags ( bf ) ;
iter + + ;
}
}
else if ( mode = = " wclean " )
{
coord_vec : : iterator iter = all_tiles . begin ( ) ;
while ( iter ! = all_tiles . end ( ) )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
DFHack : : DFCoord current = * iter ;
df : : tile_designation des = mcache . designationAt ( current ) ;
des . bits . water_salt = false ;
des . bits . water_stagnant = false ;
mcache . setDesignationAt ( current , des ) ;
iter + + ;
}
}
else if ( mode = = " magma " | | mode = = " water " | | mode = = " flowbits " )
{
set < Block * > seen_blocks ;
coord_vec : : iterator iter = all_tiles . begin ( ) ;
while ( iter ! = all_tiles . end ( ) )
{
DFHack : : DFCoord current = * iter ; // current tile coord
DFHack : : DFCoord curblock = current / 16 ; // current block coord
// check if the block is actually there
if ( ! mcache . BlockAt ( curblock ) )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
iter + + ;
continue ;
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
df : : tile_designation des = mcache . designationAt ( current ) ;
df : : tiletype tt = mcache . tiletypeAt ( current ) ;
// don't put liquids into places where they don't belong...
if ( ! DFHack : : FlowPassable ( tt ) )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
iter + + ;
continue ;
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
if ( mode ! = " flowbits " )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
if ( setmode = = " s. " )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
des . bits . flow_size = amount ;
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
else if ( setmode = = " s+ " )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
if ( des . bits . flow_size < amount )
des . bits . flow_size = amount ;
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
else if ( setmode = = " s- " )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
if ( des . bits . flow_size > amount )
des . bits . flow_size = amount ;
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
if ( amount ! = 0 & & mode = = " magma " )
2011-09-01 17:25:01 -06:00
{
2012-03-23 17:13:16 -06:00
des . bits . liquid_type = tile_liquid : : Magma ;
mcache . setTemp1At ( current , 12000 ) ;
mcache . setTemp2At ( current , 12000 ) ;
2011-09-01 17:25:01 -06:00
}
2012-03-23 17:13:16 -06:00
else if ( amount ! = 0 & & mode = = " water " )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
des . bits . liquid_type = tile_liquid : : Water ;
mcache . setTemp1At ( current , 10015 ) ;
mcache . setTemp2At ( current , 10015 ) ;
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
else if ( amount = = 0 & & ( mode = = " water " | | mode = = " magma " ) )
2011-07-27 18:35:45 -06:00
{
2012-03-23 17:13:16 -06:00
// reset temperature to sane default
mcache . setTemp1At ( current , 10015 ) ;
mcache . setTemp2At ( current , 10015 ) ;
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
mcache . setDesignationAt ( current , des ) ;
}
seen_blocks . insert ( mcache . BlockAt ( current / 16 ) ) ;
iter + + ;
}
set < Block * > : : iterator biter = seen_blocks . begin ( ) ;
while ( biter ! = seen_blocks . end ( ) )
{
DFHack : : t_blockflags bflags = ( * biter ) - > BlockFlags ( ) ;
if ( flowmode = = " f+ " )
{
2012-04-10 08:21:19 -06:00
bflags . bits . update_liquid = true ;
bflags . bits . update_liquid_twice = true ;
2012-03-23 17:13:16 -06:00
( * biter ) - > setBlockFlags ( bflags ) ;
}
else if ( flowmode = = " f- " )
{
2012-04-10 08:21:19 -06:00
bflags . bits . update_liquid = false ;
bflags . bits . update_liquid_twice = false ;
2012-03-23 17:13:16 -06:00
( * biter ) - > setBlockFlags ( bflags ) ;
2011-07-27 18:35:45 -06:00
}
else
2012-03-23 17:13:16 -06:00
{
2012-04-10 08:21:19 -06:00
out < < " flow bit 1 = " < < bflags . bits . update_liquid < < endl ;
out < < " flow bit 2 = " < < bflags . bits . update_liquid_twice < < endl ;
2012-03-23 17:13:16 -06:00
}
biter + + ;
}
2011-07-27 18:35:45 -06:00
}
2012-03-23 17:13:16 -06:00
if ( mcache . WriteAll ( ) )
out < < " OK " < < endl ;
2011-07-27 18:35:45 -06:00
else
2012-03-23 17:13:16 -06:00
out < < " Something failed horribly! RUN! " < < endl ;
} while ( 0 ) ;
2012-03-21 06:57:55 -06:00
2012-03-23 17:13:16 -06:00
// cleanup
delete brush ;
2011-07-27 18:35:45 -06:00
return CR_OK ;
}