2017-06-20 04:16:03 -06:00
# include "df_version_int.h"
2020-05-24 16:42:59 -06:00
# define RFR_VERSION "0.21.0"
2014-06-14 22:40:12 -06:00
2016-09-04 14:06:26 -06:00
# include <cstdio>
# include <time.h>
# include <vector>
2014-06-14 22:40:12 -06:00
2016-09-04 14:06:26 -06:00
# include "Console.h"
# include "Core.h"
2014-06-14 22:40:12 -06:00
# include "DataDefs.h"
2016-09-04 14:06:26 -06:00
# include "Export.h"
# include "Hooks.h"
# include "MiscUtils.h"
# include "PluginManager.h"
# include "RemoteFortressReader.pb.h"
# include "RemoteServer.h"
# include "SDL_events.h"
# include "SDL_keyboard.h"
# include "TileTypes.h"
2018-01-25 19:49:41 -07:00
# include "VersionInfo.h"
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-03-29 10:28:12 -06:00
# include "DFHackVersion.h"
2017-06-29 13:30:31 -06:00
# endif
2016-09-04 14:06:26 -06:00
# include "modules/Gui.h"
# include "modules/Items.h"
2017-06-20 04:16:03 -06:00
# include "modules/Job.h"
2016-09-04 14:06:26 -06:00
# include "modules/MapCache.h"
# include "modules/Maps.h"
# include "modules/Materials.h"
# include "modules/Translation.h"
# include "modules/Units.h"
# include "modules/World.h"
2017-12-17 05:35:38 -07:00
# include "df/unit_action.h"
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2016-09-04 14:06:26 -06:00
# include "df/army.h"
# include "df/army_flags.h"
# include "df/block_square_event_item_spatterst.h"
2017-07-24 21:01:02 -06:00
# include "df/block_square_event_grassst.h"
2017-06-29 13:30:31 -06:00
# endif
2018-01-06 11:18:06 -07:00
# include "df/art_image_element_shapest.h"
2016-09-04 14:06:26 -06:00
# include "df/block_square_event_material_spatterst.h"
# include "df/body_appearance_modifier.h"
# include "df/body_part_layer_raw.h"
# include "df/body_part_raw.h"
# include "df/bp_appearance_modifier.h"
# include "df/builtin_mats.h"
2017-03-25 10:53:40 -06:00
# include "df/building_wellst.h"
2016-09-04 14:06:26 -06:00
# include "df/caste_raw.h"
# include "df/caste_raw.h"
# include "df/color_modifier_raw.h"
# include "df/creature_raw.h"
# include "df/creature_raw.h"
2014-06-14 22:40:12 -06:00
# include "df/descriptor_color.h"
# include "df/descriptor_pattern.h"
# include "df/descriptor_shape.h"
2016-09-04 14:06:26 -06:00
# include "df/dfhack_material_category.h"
# include "df/enabler.h"
2018-02-03 21:42:15 -07:00
# include "df/engraving.h"
2018-03-02 23:11:58 -07:00
# include "df/flow_info.h"
2018-03-05 21:14:21 -07:00
# include "df/flow_guide.h"
# include "df/flow_guide_item_cloudst.h"
2016-09-04 14:06:26 -06:00
# include "df/graphic.h"
# include "df/historical_figure.h"
2019-04-07 21:52:50 -06:00
# include "df/identity.h"
2016-10-19 08:30:30 -06:00
# include "df/job.h"
# include "df/job_type.h"
2016-09-04 14:06:26 -06:00
# include "df/job_item.h"
# include "df/job_material_category.h"
# include "df/map_block_column.h"
# include "df/material_vec_ref.h"
# include "df/matter_state.h"
2014-06-14 22:40:12 -06:00
# include "df/mental_attribute_type.h"
2018-03-14 04:38:37 -06:00
# include "df/ocean_wave.h"
2016-09-04 14:06:26 -06:00
# include "df/physical_attribute_type.h"
# include "df/plant.h"
# include "df/plant_raw_flags.h"
2017-12-17 05:35:38 -07:00
# include "df/projectile.h"
2017-12-31 02:01:58 -07:00
# include "df/proj_itemst.h"
2017-12-17 05:35:38 -07:00
# include "df/proj_unitst.h"
2015-08-14 04:06:36 -06:00
# include "df/region_map_entry.h"
2017-12-17 05:35:38 -07:00
# include "df/report.h"
2016-08-01 23:00:17 -06:00
# include "df/site_realization_building.h"
2016-08-02 22:52:30 -06:00
# include "df/site_realization_building_info_castle_towerst.h"
# include "df/site_realization_building_info_castle_wallst.h"
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2016-08-02 22:52:30 -06:00
# include "df/site_realization_building_info_trenchesst.h"
2017-06-29 13:30:31 -06:00
# endif
2016-06-30 03:03:15 -06:00
# include "df/tissue.h"
2017-08-18 22:08:56 -06:00
# include "df/tissue_style_raw.h"
2016-09-04 14:06:26 -06:00
# include "df/ui.h"
# include "df/unit.h"
2017-08-19 06:18:18 -06:00
# include "df/unit_inventory_item.h"
2019-04-18 20:49:18 -06:00
# include "df/unit_wound.h"
2016-04-25 11:08:47 -06:00
# include "df/viewscreen_choose_start_sitest.h"
2019-03-22 21:52:59 -06:00
# include "df/viewscreen_loadgamest.h"
# include "df/viewscreen_savegamest.h"
2018-01-17 06:40:19 -07:00
# include "df/vehicle.h"
2016-09-04 14:06:26 -06:00
# include "df/world.h"
# include "df/world_data.h"
# include "df/world_geo_biome.h"
# include "df/world_geo_layer.h"
# include "df/world_history.h"
# include "df/world_population.h"
# include "df/world_region.h"
# include "df/world_region_details.h"
# include "df/world_site.h"
# include "df/world_site_realization.h"
2017-02-02 21:38:35 -07:00
# include "df/entity_position.h"
2016-04-25 11:08:47 -06:00
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT > 40001
2016-09-04 14:06:26 -06:00
# include "df/plant_growth.h"
# include "df/plant_growth_print.h"
# include "df/plant_tree_info.h"
# include "df/plant_tree_tile.h"
# endif
2014-06-14 22:40:12 -06:00
2017-07-27 07:11:46 -06:00
# include "df/unit_relationship_type.h"
2017-12-24 06:03:25 -07:00
# include "adventure_control.h"
2017-03-25 10:53:40 -06:00
# include "building_reader.h"
2018-06-18 10:42:52 -06:00
# include "dwarf_control.h"
2018-01-17 06:40:19 -07:00
# include "item_reader.h"
2017-03-25 10:53:40 -06:00
2014-06-14 22:40:12 -06:00
using namespace DFHack ;
using namespace df : : enums ;
using namespace RemoteFortressReader ;
2014-06-17 10:17:16 -06:00
using namespace std ;
2014-06-14 22:40:12 -06:00
2015-08-26 14:40:59 -06:00
DFHACK_PLUGIN ( " RemoteFortressReader " ) ;
2016-09-04 14:06:26 -06:00
# ifndef REQUIRE_GLOBAL
2015-08-12 23:55:59 -06:00
using namespace df : : global ;
# else
2014-12-06 16:47:35 -07:00
REQUIRE_GLOBAL ( world ) ;
2016-03-20 04:57:05 -06:00
REQUIRE_GLOBAL ( gps ) ;
2016-03-14 12:48:49 -06:00
REQUIRE_GLOBAL ( ui ) ;
2016-05-31 11:23:48 -06:00
REQUIRE_GLOBAL ( gamemode ) ;
2017-12-25 11:38:05 -07:00
REQUIRE_GLOBAL ( ui_advmode ) ;
2015-08-12 23:55:59 -06:00
# endif
2014-12-06 16:47:35 -07:00
2014-06-14 22:40:12 -06:00
// Here go all the command declarations...
// mostly to allow having the mandatory stuff on top of the file and commands on the bottom
2014-08-08 09:05:57 -06:00
static command_result GetGrowthList ( color_ostream & stream , const EmptyMessage * in , MaterialList * out ) ;
2014-06-14 22:40:12 -06:00
static command_result GetMaterialList ( color_ostream & stream , const EmptyMessage * in , MaterialList * out ) ;
2014-07-15 06:18:12 -06:00
static command_result GetTiletypeList ( color_ostream & stream , const EmptyMessage * in , TiletypeList * out ) ;
2014-06-17 10:17:16 -06:00
static command_result GetBlockList ( color_ostream & stream , const BlockRequest * in , BlockList * out ) ;
2014-08-08 09:05:57 -06:00
static command_result GetPlantList ( color_ostream & stream , const BlockRequest * in , PlantList * out ) ;
2014-07-02 21:05:45 -06:00
static command_result CheckHashes ( color_ostream & stream , const EmptyMessage * in ) ;
2014-12-11 07:40:49 -07:00
static command_result GetUnitList ( color_ostream & stream , const EmptyMessage * in , UnitList * out ) ;
2017-12-17 05:35:38 -07:00
static command_result GetUnitListInside ( color_ostream & stream , const BlockRequest * in , UnitList * out ) ;
2014-12-12 08:34:23 -07:00
static command_result GetViewInfo ( color_ostream & stream , const EmptyMessage * in , ViewInfo * out ) ;
2014-12-16 20:10:29 -07:00
static command_result GetMapInfo ( color_ostream & stream , const EmptyMessage * in , MapInfo * out ) ;
2015-01-11 03:46:53 -07:00
static command_result ResetMapHashes ( color_ostream & stream , const EmptyMessage * in ) ;
2015-08-14 04:06:36 -06:00
static command_result GetWorldMap ( color_ostream & stream , const EmptyMessage * in , WorldMap * out ) ;
2016-07-28 09:22:14 -06:00
static command_result GetWorldMapNew ( color_ostream & stream , const EmptyMessage * in , WorldMap * out ) ;
2015-09-27 22:36:04 -06:00
static command_result GetWorldMapCenter ( color_ostream & stream , const EmptyMessage * in , WorldMap * out ) ;
2015-08-16 08:58:52 -06:00
static command_result GetRegionMaps ( color_ostream & stream , const EmptyMessage * in , RegionMaps * out ) ;
2016-07-28 09:22:14 -06:00
static command_result GetRegionMapsNew ( color_ostream & stream , const EmptyMessage * in , RegionMaps * out ) ;
2015-09-02 12:43:48 -06:00
static command_result GetCreatureRaws ( color_ostream & stream , const EmptyMessage * in , CreatureRawList * out ) ;
2017-06-23 08:24:22 -06:00
static command_result GetPartialCreatureRaws ( color_ostream & stream , const ListRequest * in , CreatureRawList * out ) ;
2016-01-27 11:36:10 -07:00
static command_result GetPlantRaws ( color_ostream & stream , const EmptyMessage * in , PlantRawList * out ) ;
2017-06-23 23:22:09 -06:00
static command_result GetPartialPlantRaws ( color_ostream & stream , const ListRequest * in , PlantRawList * out ) ;
2016-03-20 04:57:05 -06:00
static command_result CopyScreen ( color_ostream & stream , const EmptyMessage * in , ScreenCapture * out ) ;
2016-03-21 11:26:48 -06:00
static command_result PassKeyboardEvent ( color_ostream & stream , const KeyboardEvent * in ) ;
2016-11-08 01:10:08 -07:00
static command_result GetPauseState ( color_ostream & stream , const EmptyMessage * in , SingleBool * out ) ;
2017-03-29 10:28:12 -06:00
static command_result GetVersionInfo ( color_ostream & stream , const EmptyMessage * in , RemoteFortressReader : : VersionInfo * out ) ;
2017-12-17 05:35:38 -07:00
static command_result GetReports ( color_ostream & stream , const EmptyMessage * in , RemoteFortressReader : : Status * out ) ;
2018-01-06 11:18:06 -07:00
static command_result GetLanguage ( color_ostream & stream , const EmptyMessage * in , RemoteFortressReader : : Language * out ) ;
2019-03-22 21:52:59 -06:00
static command_result GetGameValidity ( color_ostream & stream , const EmptyMessage * in , SingleBool * out ) ;
2014-12-11 07:40:49 -07:00
2015-02-13 06:08:02 -07:00
void CopyBlock ( df : : map_block * DfBlock , RemoteFortressReader : : MapBlock * NetBlock , MapExtras : : MapCache * MC , DFCoord pos ) ;
2014-06-14 22:40:12 -06:00
2014-08-29 05:38:21 -06:00
const char * growth_locations [ ] = {
2017-12-20 04:41:01 -07:00
" TWIGS " ,
" LIGHT_BRANCHES " ,
" HEAVY_BRANCHES " ,
" TRUNK " ,
" ROOTS " ,
" CAP " ,
" SAPLING " ,
" SHRUB "
2014-08-29 05:38:21 -06:00
} ;
# define GROWTH_LOCATIONS_SIZE 8
2014-06-14 22:40:12 -06:00
2018-01-25 07:54:12 -07:00
# include "df/art_image.h"
# include "df/art_image_chunk.h"
# include "df/art_image_ref.h"
2018-02-03 21:42:15 -07:00
command_result loadArtImageChunk ( color_ostream & out , vector < string > & parameters )
2018-01-25 07:54:12 -07:00
{
2018-02-03 21:42:15 -07:00
if ( parameters . size ( ) ! = 1 )
return CR_WRONG_USAGE ;
2018-02-04 20:56:24 -07:00
if ( ! Core : : getInstance ( ) . isWorldLoaded ( ) )
{
out . printerr ( " No world loaded \n " ) ;
return CR_FAILURE ;
}
2018-02-03 21:42:15 -07:00
2018-02-03 21:51:28 -07:00
GET_ART_IMAGE_CHUNK GetArtImageChunk = reinterpret_cast < GET_ART_IMAGE_CHUNK > ( Core : : getInstance ( ) . vinfo - > getAddress ( " get_art_image_chunk " ) ) ;
2018-02-03 21:42:15 -07:00
if ( GetArtImageChunk )
2018-01-27 00:14:51 -07:00
{
2018-02-03 21:42:15 -07:00
int index = atoi ( parameters [ 0 ] . c_str ( ) ) ;
auto chunk = GetArtImageChunk ( & ( world - > art_image_chunks ) , index ) ;
2018-02-03 21:54:51 -07:00
out . print ( " Loaded chunk id: %d \n " , chunk - > id ) ;
2018-01-25 07:54:12 -07:00
}
return CR_OK ;
}
2017-06-22 08:59:10 -06:00
command_result RemoteFortressReader_version ( color_ostream & out , vector < string > & parameters )
{
2017-12-20 04:41:01 -07:00
out . print ( RFR_VERSION ) ;
return CR_OK ;
2017-06-22 08:59:10 -06:00
}
2016-06-20 01:51:11 -06:00
2017-12-25 09:30:45 -07:00
DFHACK_PLUGIN_IS_ENABLED ( enableUpdates ) ;
2014-06-14 22:40:12 -06:00
// Mandatory init function. If you have some global state, create it here.
2014-07-17 06:16:00 -06:00
DFhackCExport command_result plugin_init ( color_ostream & out , std : : vector < PluginCommand > & commands )
2014-06-14 22:40:12 -06:00
{
2018-12-25 23:11:08 -07:00
commands . push_back ( PluginCommand ( " RemoteFortressReader_version " , " List the loaded RemoteFortressReader version " , RemoteFortressReader_version , false , " This is used for plugin version checking. " ) ) ;
2018-01-27 00:14:51 -07:00
commands . push_back ( PluginCommand (
2018-02-03 21:54:51 -07:00
" load-art-image-chunk " ,
2018-02-03 21:42:15 -07:00
" Gets an art image chunk by index, loading from disk if necessary " ,
loadArtImageChunk , false ,
" Usage: load_art_image_chunk N, where N is the id of the chunk to get. " ) ) ;
2018-01-11 23:20:40 -07:00
enableUpdates = true ;
return CR_OK ;
2014-06-14 22:40:12 -06:00
}
2017-12-17 05:35:38 -07:00
# ifndef SF_ALLOW_REMOTE
# define SF_ALLOW_REMOTE 0
# endif // !SF_ALLOW_REMOTE
2014-06-14 22:40:12 -06:00
DFhackCExport RPCService * plugin_rpcconnect ( color_ostream & )
{
2017-12-20 04:41:01 -07:00
RPCService * svc = new RPCService ( ) ;
svc - > addFunction ( " GetMaterialList " , GetMaterialList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetGrowthList " , GetGrowthList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetBlockList " , GetBlockList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " CheckHashes " , CheckHashes , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetTiletypeList " , GetTiletypeList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetPlantList " , GetPlantList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetUnitList " , GetUnitList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetUnitListInside " , GetUnitListInside , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetViewInfo " , GetViewInfo , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetMapInfo " , GetMapInfo , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " ResetMapHashes " , ResetMapHashes , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetItemList " , GetItemList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetBuildingDefList " , GetBuildingDefList , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetWorldMap " , GetWorldMap , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetWorldMapNew " , GetWorldMapNew , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetRegionMaps " , GetRegionMaps , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetRegionMapsNew " , GetRegionMapsNew , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetCreatureRaws " , GetCreatureRaws , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetPartialCreatureRaws " , GetPartialCreatureRaws , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetWorldMapCenter " , GetWorldMapCenter , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetPlantRaws " , GetPlantRaws , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetPartialPlantRaws " , GetPartialPlantRaws , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " CopyScreen " , CopyScreen , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " PassKeyboardEvent " , PassKeyboardEvent , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " SendDigCommand " , SendDigCommand , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " SetPauseState " , SetPauseState , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetPauseState " , GetPauseState , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetVersionInfo " , GetVersionInfo , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " GetReports " , GetReports , SF_ALLOW_REMOTE ) ;
2018-01-11 23:20:40 -07:00
svc - > addFunction ( " MoveCommand " , MoveCommand , SF_ALLOW_REMOTE ) ;
2017-12-25 11:38:05 -07:00
svc - > addFunction ( " JumpCommand " , JumpCommand , SF_ALLOW_REMOTE ) ;
2018-01-11 23:20:40 -07:00
svc - > addFunction ( " MenuQuery " , MenuQuery , SF_ALLOW_REMOTE ) ;
2017-12-26 09:51:36 -07:00
svc - > addFunction ( " MovementSelectCommand " , MovementSelectCommand , SF_ALLOW_REMOTE ) ;
svc - > addFunction ( " MiscMoveCommand " , MiscMoveCommand , SF_ALLOW_REMOTE ) ;
2018-01-06 11:18:06 -07:00
svc - > addFunction ( " GetLanguage " , GetLanguage , SF_ALLOW_REMOTE ) ;
2018-06-24 03:15:57 -06:00
svc - > addFunction ( " GetSideMenu " , GetSideMenu , SF_ALLOW_REMOTE ) ;
2018-06-28 08:57:12 -06:00
svc - > addFunction ( " SetSideMenu " , SetSideMenu , SF_ALLOW_REMOTE ) ;
2019-03-22 21:52:59 -06:00
svc - > addFunction ( " GetGameValidity " , GetGameValidity , SF_ALLOW_REMOTE ) ;
2017-12-26 09:51:36 -07:00
return svc ;
2014-06-14 22:40:12 -06:00
}
// This is called right before the plugin library is removed from memory.
2014-07-17 06:16:00 -06:00
DFhackCExport command_result plugin_shutdown ( color_ostream & out )
2014-06-14 22:40:12 -06:00
{
2017-12-20 04:41:01 -07:00
// You *MUST* kill all threads you created before this returns.
// If everything fails, just return CR_FAILURE. Your plugin will be
// in a zombie state, but things won't crash.
return CR_OK ;
2014-06-14 22:40:12 -06:00
}
2017-12-25 09:30:45 -07:00
DFhackCExport command_result plugin_onupdate ( color_ostream & out )
{
2018-01-11 23:20:40 -07:00
if ( ! enableUpdates )
return CR_OK ;
KeyUpdate ( ) ;
return CR_OK ;
2017-12-25 09:30:45 -07:00
}
2014-06-17 10:17:16 -06:00
uint16_t fletcher16 ( uint8_t const * data , size_t bytes )
{
2017-12-20 04:41:01 -07:00
uint16_t sum1 = 0xff , sum2 = 0xff ;
while ( bytes ) {
size_t tlen = bytes > 20 ? 20 : bytes ;
bytes - = tlen ;
do {
sum2 + = sum1 + = * data + + ;
} while ( - - tlen ) ;
sum1 = ( sum1 & 0xff ) + ( sum1 > > 8 ) ;
sum2 = ( sum2 & 0xff ) + ( sum2 > > 8 ) ;
}
/* Second reduction step to reduce sums to 8 bits */
sum1 = ( sum1 & 0xff ) + ( sum1 > > 8 ) ;
sum2 = ( sum2 & 0xff ) + ( sum2 > > 8 ) ;
return sum2 < < 8 | sum1 ;
2014-07-17 06:16:00 -06:00
}
2015-09-05 03:24:12 -06:00
void ConvertDfColor ( int16_t index , RemoteFortressReader : : ColorDefinition * out )
2015-09-02 12:43:48 -06:00
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : enabler )
return ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
auto enabler = df : : global : : enabler ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
out - > set_red ( ( int ) ( enabler - > ccolor [ index ] [ 0 ] * 255 ) ) ;
out - > set_green ( ( int ) ( enabler - > ccolor [ index ] [ 1 ] * 255 ) ) ;
out - > set_blue ( ( int ) ( enabler - > ccolor [ index ] [ 2 ] * 255 ) ) ;
2015-09-02 12:43:48 -06:00
}
2015-09-05 03:24:12 -06:00
void ConvertDfColor ( int16_t in [ 3 ] , RemoteFortressReader : : ColorDefinition * out )
{
2017-12-20 04:41:01 -07:00
int index = in [ 0 ] | ( 8 * in [ 2 ] ) ;
ConvertDfColor ( index , out ) ;
2015-09-05 03:24:12 -06:00
}
2016-10-31 11:22:17 -06:00
void ConvertDFColorDescriptor ( int16_t index , RemoteFortressReader : : ColorDefinition * out )
{
2018-03-10 14:53:45 -07:00
df : : descriptor_color * color = world - > raws . descriptors . colors [ index ] ;
2017-12-20 04:41:01 -07:00
out - > set_red ( color - > red * 255 ) ;
out - > set_green ( color - > green * 255 ) ;
out - > set_blue ( color - > blue * 255 ) ;
2017-12-17 05:35:38 -07:00
}
void ConvertDFCoord ( DFCoord in , RemoteFortressReader : : Coord * out )
{
2017-12-20 04:41:01 -07:00
out - > set_x ( in . x ) ;
out - > set_y ( in . y ) ;
out - > set_z ( in . z ) ;
2016-10-31 11:22:17 -06:00
}
2018-03-14 04:38:37 -06:00
void ConvertDFCoord ( int x , int y , int z , RemoteFortressReader : : Coord * out )
{
out - > set_x ( x ) ;
out - > set_y ( y ) ;
out - > set_z ( z ) ;
}
2014-07-17 06:16:00 -06:00
RemoteFortressReader : : TiletypeMaterial TranslateMaterial ( df : : tiletype_material material )
{
2017-12-20 04:41:01 -07:00
switch ( material )
{
case df : : enums : : tiletype_material : : NONE :
return RemoteFortressReader : : NO_MATERIAL ;
break ;
case df : : enums : : tiletype_material : : AIR :
return RemoteFortressReader : : AIR ;
break ;
case df : : enums : : tiletype_material : : SOIL :
return RemoteFortressReader : : SOIL ;
break ;
case df : : enums : : tiletype_material : : STONE :
return RemoteFortressReader : : STONE ;
break ;
case df : : enums : : tiletype_material : : FEATURE :
return RemoteFortressReader : : FEATURE ;
break ;
case df : : enums : : tiletype_material : : LAVA_STONE :
return RemoteFortressReader : : LAVA_STONE ;
break ;
case df : : enums : : tiletype_material : : MINERAL :
return RemoteFortressReader : : MINERAL ;
break ;
case df : : enums : : tiletype_material : : FROZEN_LIQUID :
return RemoteFortressReader : : FROZEN_LIQUID ;
break ;
case df : : enums : : tiletype_material : : CONSTRUCTION :
return RemoteFortressReader : : CONSTRUCTION ;
break ;
case df : : enums : : tiletype_material : : GRASS_LIGHT :
return RemoteFortressReader : : GRASS_LIGHT ;
break ;
case df : : enums : : tiletype_material : : GRASS_DARK :
return RemoteFortressReader : : GRASS_DARK ;
break ;
case df : : enums : : tiletype_material : : GRASS_DRY :
return RemoteFortressReader : : GRASS_DRY ;
break ;
case df : : enums : : tiletype_material : : GRASS_DEAD :
return RemoteFortressReader : : GRASS_DEAD ;
break ;
case df : : enums : : tiletype_material : : PLANT :
return RemoteFortressReader : : PLANT ;
break ;
case df : : enums : : tiletype_material : : HFS :
return RemoteFortressReader : : HFS ;
break ;
case df : : enums : : tiletype_material : : CAMPFIRE :
return RemoteFortressReader : : CAMPFIRE ;
break ;
case df : : enums : : tiletype_material : : FIRE :
return RemoteFortressReader : : FIRE ;
break ;
case df : : enums : : tiletype_material : : ASHES :
return RemoteFortressReader : : ASHES ;
break ;
case df : : enums : : tiletype_material : : MAGMA :
return RemoteFortressReader : : MAGMA ;
break ;
case df : : enums : : tiletype_material : : DRIFTWOOD :
return RemoteFortressReader : : DRIFTWOOD ;
break ;
case df : : enums : : tiletype_material : : POOL :
return RemoteFortressReader : : POOL ;
break ;
case df : : enums : : tiletype_material : : BROOK :
return RemoteFortressReader : : BROOK ;
break ;
case df : : enums : : tiletype_material : : RIVER :
return RemoteFortressReader : : RIVER ;
break ;
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT > 40001
2017-12-20 04:41:01 -07:00
case df : : enums : : tiletype_material : : ROOT :
return RemoteFortressReader : : ROOT ;
break ;
case df : : enums : : tiletype_material : : TREE :
return RemoteFortressReader : : TREE_MATERIAL ;
break ;
case df : : enums : : tiletype_material : : MUSHROOM :
return RemoteFortressReader : : MUSHROOM ;
break ;
case df : : enums : : tiletype_material : : UNDERWORLD_GATE :
return RemoteFortressReader : : UNDERWORLD_GATE ;
break ;
2015-08-12 23:55:59 -06:00
# endif
2017-12-20 04:41:01 -07:00
default :
return RemoteFortressReader : : NO_MATERIAL ;
break ;
}
return RemoteFortressReader : : NO_MATERIAL ;
2014-07-17 06:16:00 -06:00
}
RemoteFortressReader : : TiletypeSpecial TranslateSpecial ( df : : tiletype_special special )
{
2017-12-20 04:41:01 -07:00
switch ( special )
{
case df : : enums : : tiletype_special : : NONE :
return RemoteFortressReader : : NO_SPECIAL ;
break ;
case df : : enums : : tiletype_special : : NORMAL :
return RemoteFortressReader : : NORMAL ;
break ;
case df : : enums : : tiletype_special : : RIVER_SOURCE :
return RemoteFortressReader : : RIVER_SOURCE ;
break ;
case df : : enums : : tiletype_special : : WATERFALL :
return RemoteFortressReader : : WATERFALL ;
break ;
case df : : enums : : tiletype_special : : SMOOTH :
return RemoteFortressReader : : SMOOTH ;
break ;
case df : : enums : : tiletype_special : : FURROWED :
return RemoteFortressReader : : FURROWED ;
break ;
case df : : enums : : tiletype_special : : WET :
return RemoteFortressReader : : WET ;
break ;
case df : : enums : : tiletype_special : : DEAD :
return RemoteFortressReader : : DEAD ;
break ;
case df : : enums : : tiletype_special : : WORN_1 :
return RemoteFortressReader : : WORN_1 ;
break ;
case df : : enums : : tiletype_special : : WORN_2 :
return RemoteFortressReader : : WORN_2 ;
break ;
case df : : enums : : tiletype_special : : WORN_3 :
return RemoteFortressReader : : WORN_3 ;
break ;
case df : : enums : : tiletype_special : : TRACK :
return RemoteFortressReader : : TRACK ;
break ;
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT > 40001
2017-12-20 04:41:01 -07:00
case df : : enums : : tiletype_special : : SMOOTH_DEAD :
return RemoteFortressReader : : SMOOTH_DEAD ;
break ;
2015-08-12 23:55:59 -06:00
# endif
2017-12-20 04:41:01 -07:00
default :
return RemoteFortressReader : : NO_SPECIAL ;
break ;
}
return RemoteFortressReader : : NO_SPECIAL ;
2014-07-17 06:16:00 -06:00
}
RemoteFortressReader : : TiletypeShape TranslateShape ( df : : tiletype_shape shape )
{
2017-12-20 04:41:01 -07:00
switch ( shape )
{
case df : : enums : : tiletype_shape : : NONE :
return RemoteFortressReader : : NO_SHAPE ;
break ;
case df : : enums : : tiletype_shape : : EMPTY :
return RemoteFortressReader : : EMPTY ;
break ;
case df : : enums : : tiletype_shape : : FLOOR :
return RemoteFortressReader : : FLOOR ;
break ;
case df : : enums : : tiletype_shape : : BOULDER :
return RemoteFortressReader : : BOULDER ;
break ;
case df : : enums : : tiletype_shape : : PEBBLES :
return RemoteFortressReader : : PEBBLES ;
break ;
case df : : enums : : tiletype_shape : : WALL :
return RemoteFortressReader : : WALL ;
break ;
case df : : enums : : tiletype_shape : : FORTIFICATION :
return RemoteFortressReader : : FORTIFICATION ;
break ;
case df : : enums : : tiletype_shape : : STAIR_UP :
return RemoteFortressReader : : STAIR_UP ;
break ;
case df : : enums : : tiletype_shape : : STAIR_DOWN :
return RemoteFortressReader : : STAIR_DOWN ;
break ;
case df : : enums : : tiletype_shape : : STAIR_UPDOWN :
return RemoteFortressReader : : STAIR_UPDOWN ;
break ;
case df : : enums : : tiletype_shape : : RAMP :
return RemoteFortressReader : : RAMP ;
break ;
case df : : enums : : tiletype_shape : : RAMP_TOP :
return RemoteFortressReader : : RAMP_TOP ;
break ;
case df : : enums : : tiletype_shape : : BROOK_BED :
return RemoteFortressReader : : BROOK_BED ;
break ;
case df : : enums : : tiletype_shape : : BROOK_TOP :
return RemoteFortressReader : : BROOK_TOP ;
break ;
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT > 40001
2017-12-20 04:41:01 -07:00
case df : : enums : : tiletype_shape : : BRANCH :
return RemoteFortressReader : : BRANCH ;
break ;
2015-08-12 23:55:59 -06:00
# endif
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT < 40001
2017-12-20 04:41:01 -07:00
case df : : enums : : tiletype_shape : : TREE :
return RemoteFortressReader : : TREE_SHAPE ;
break ;
2014-07-17 06:16:00 -06:00
# endif
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT > 40001
2015-08-12 23:55:59 -06:00
2017-12-20 04:41:01 -07:00
case df : : enums : : tiletype_shape : : TRUNK_BRANCH :
return RemoteFortressReader : : TRUNK_BRANCH ;
break ;
case df : : enums : : tiletype_shape : : TWIG :
return RemoteFortressReader : : TWIG ;
break ;
2015-08-12 23:55:59 -06:00
# endif
2017-12-20 04:41:01 -07:00
case df : : enums : : tiletype_shape : : SAPLING :
return RemoteFortressReader : : SAPLING ;
break ;
case df : : enums : : tiletype_shape : : SHRUB :
return RemoteFortressReader : : SHRUB ;
break ;
case df : : enums : : tiletype_shape : : ENDLESS_PIT :
return RemoteFortressReader : : EMPTY ;
break ;
default :
return RemoteFortressReader : : NO_SHAPE ;
break ;
}
return RemoteFortressReader : : NO_SHAPE ;
2014-07-17 06:16:00 -06:00
}
RemoteFortressReader : : TiletypeVariant TranslateVariant ( df : : tiletype_variant variant )
{
2017-12-20 04:41:01 -07:00
switch ( variant )
{
case df : : enums : : tiletype_variant : : NONE :
return RemoteFortressReader : : NO_VARIANT ;
break ;
case df : : enums : : tiletype_variant : : VAR_1 :
return RemoteFortressReader : : VAR_1 ;
break ;
case df : : enums : : tiletype_variant : : VAR_2 :
return RemoteFortressReader : : VAR_2 ;
break ;
case df : : enums : : tiletype_variant : : VAR_3 :
return RemoteFortressReader : : VAR_3 ;
break ;
case df : : enums : : tiletype_variant : : VAR_4 :
return RemoteFortressReader : : VAR_4 ;
break ;
default :
return RemoteFortressReader : : NO_VARIANT ;
break ;
}
return RemoteFortressReader : : NO_VARIANT ;
2014-06-17 10:17:16 -06:00
}
2014-07-02 21:05:45 -06:00
static command_result CheckHashes ( color_ostream & stream , const EmptyMessage * in )
{
2017-12-20 04:41:01 -07:00
clock_t start = clock ( ) ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > map . map_blocks . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : map_block * block = world - > map . map_blocks [ i ] ;
fletcher16 ( ( uint8_t * ) ( block - > tiletype ) , 16 * 16 * sizeof ( df : : enums : : tiletype : : tiletype ) ) ;
}
clock_t end = clock ( ) ;
double elapsed_secs = double ( end - start ) / CLOCKS_PER_SEC ;
stream . print ( " Checking all hashes took %f seconds. " , elapsed_secs ) ;
return CR_OK ;
2014-07-02 21:05:45 -06:00
}
2016-08-26 12:18:32 -06:00
void CopyMat ( RemoteFortressReader : : MatPair * mat , int type , int index )
{
2017-12-20 04:41:01 -07:00
if ( type > = MaterialInfo : : FIGURE_BASE & & type < MaterialInfo : : PLANT_BASE )
{
df : : historical_figure * figure = df : : historical_figure : : find ( index ) ;
if ( figure )
{
type - = MaterialInfo : : GROUP_SIZE ;
index = figure - > race ;
}
}
mat - > set_mat_type ( type ) ;
mat - > set_mat_index ( index ) ;
2016-08-26 12:18:32 -06:00
}
2015-01-11 03:46:53 -07:00
map < DFCoord , uint16_t > hashes ;
bool IsTiletypeChanged ( DFCoord pos )
{
2017-12-20 04:41:01 -07:00
uint16_t hash ;
df : : map_block * block = Maps : : getBlock ( pos ) ;
if ( block )
hash = fletcher16 ( ( uint8_t * ) ( block - > tiletype ) , 16 * 16 * ( sizeof ( df : : enums : : tiletype : : tiletype ) ) ) ;
else
hash = 0 ;
if ( hashes [ pos ] ! = hash )
{
hashes [ pos ] = hash ;
return true ;
}
return false ;
2015-01-11 03:46:53 -07:00
}
2015-02-13 06:08:02 -07:00
map < DFCoord , uint16_t > waterHashes ;
bool IsDesignationChanged ( DFCoord pos )
{
2017-12-20 04:41:01 -07:00
uint16_t hash ;
df : : map_block * block = Maps : : getBlock ( pos ) ;
if ( block )
hash = fletcher16 ( ( uint8_t * ) ( block - > designation ) , 16 * 16 * ( sizeof ( df : : tile_designation ) ) ) ;
else
hash = 0 ;
if ( waterHashes [ pos ] ! = hash )
{
waterHashes [ pos ] = hash ;
return true ;
}
return false ;
2015-02-13 06:08:02 -07:00
}
2015-09-27 22:36:04 -06:00
map < DFCoord , uint8_t > buildingHashes ;
bool IsBuildingChanged ( DFCoord pos )
{
2017-12-20 04:41:01 -07:00
df : : map_block * block = Maps : : getBlock ( pos ) ;
bool changed = false ;
for ( int x = 0 ; x < 16 ; x + + )
for ( int y = 0 ; y < 16 ; y + + )
{
auto bld = block - > occupancy [ x ] [ y ] . bits . building ;
if ( buildingHashes [ pos ] ! = bld )
{
buildingHashes [ pos ] = bld ;
changed = true ;
}
}
return changed ;
2015-09-27 22:36:04 -06:00
}
2016-08-25 09:44:23 -06:00
map < DFCoord , uint16_t > spatterHashes ;
bool IsspatterChanged ( DFCoord pos )
{
2017-12-20 04:41:01 -07:00
df : : map_block * block = Maps : : getBlock ( pos ) ;
std : : vector < df : : block_square_event_material_spatterst * > materials ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
std : : vector < df : : block_square_event_item_spatterst * > items ;
if ( ! Maps : : SortBlockEvents ( block , NULL , NULL , & materials , NULL , NULL , NULL , & items ) )
return false ;
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
if ( ! Maps : : SortBlockEvents ( block , NULL , NULL , & materials , NULL , NULL ) )
return false ;
2017-06-29 13:30:31 -06:00
# endif
2016-08-26 12:18:32 -06:00
2017-12-20 04:41:01 -07:00
uint16_t hash = 0 ;
2016-08-26 12:18:32 -06:00
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < materials . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto mat = materials [ i ] ;
hash ^ = fletcher16 ( ( uint8_t * ) mat , sizeof ( df : : block_square_event_material_spatterst ) ) ;
}
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < items . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto item = items [ i ] ;
hash ^ = fletcher16 ( ( uint8_t * ) item , sizeof ( df : : block_square_event_item_spatterst ) ) ;
}
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
if ( spatterHashes [ pos ] ! = hash )
{
spatterHashes [ pos ] = hash ;
return true ;
}
return false ;
2016-08-25 09:44:23 -06:00
}
2016-10-28 12:58:37 -06:00
map < int , uint16_t > itemHashes ;
bool isItemChanged ( int i )
{
2017-12-20 04:41:01 -07:00
uint16_t hash = 0 ;
auto item = df : : item : : find ( i ) ;
if ( item )
{
hash = fletcher16 ( ( uint8_t * ) item , sizeof ( df : : item ) ) ;
}
if ( itemHashes [ i ] ! = hash )
{
itemHashes [ i ] = hash ;
return true ;
}
return false ;
2016-10-28 12:58:37 -06:00
}
bool areItemsChanged ( vector < int > * items )
{
2017-12-20 04:41:01 -07:00
bool result = false ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < items - > size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
if ( isItemChanged ( items - > at ( i ) ) )
result = true ;
}
return result ;
2016-10-28 12:58:37 -06:00
}
2018-02-03 21:42:15 -07:00
map < int , int > engravingHashes ;
bool isEngravingNew ( int index )
{
if ( engravingHashes [ index ] )
return false ;
engravingHashes [ index ] = true ;
return true ;
}
void engravingIsNotNew ( int index )
{
engravingHashes [ index ] = false ;
}
2015-01-11 03:46:53 -07:00
static command_result ResetMapHashes ( color_ostream & stream , const EmptyMessage * in )
{
2017-12-20 04:41:01 -07:00
hashes . clear ( ) ;
waterHashes . clear ( ) ;
buildingHashes . clear ( ) ;
spatterHashes . clear ( ) ;
itemHashes . clear ( ) ;
2018-02-03 21:42:15 -07:00
engravingHashes . clear ( ) ;
2017-12-20 04:41:01 -07:00
return CR_OK ;
2015-01-11 03:46:53 -07:00
}
2014-06-14 22:40:12 -06:00
df : : matter_state GetState ( df : : material * mat , uint16_t temp = 10015 )
{
2017-12-20 04:41:01 -07:00
df : : matter_state state = matter_state : : Solid ;
if ( temp > = mat - > heat . melting_point )
state = df : : matter_state : : Liquid ;
if ( temp > = mat - > heat . boiling_point )
state = matter_state : : Gas ;
return state ;
2014-06-14 22:40:12 -06:00
}
static command_result GetMaterialList ( color_ostream & stream , const EmptyMessage * in , MaterialList * out )
{
2017-12-20 04:41:01 -07:00
if ( ! Core : : getInstance ( ) . isWorldLoaded ( ) ) {
//out->set_available(false);
return CR_OK ;
}
df : : world_raws * raws = & world - > raws ;
2021-09-06 23:16:21 -06:00
// df::world_history *history = &world->history;
2017-12-20 04:41:01 -07:00
MaterialInfo mat ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < raws - > inorganics . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
mat . decode ( 0 , i ) ;
MaterialDefinition * mat_def = out - > add_material_list ( ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_type ( 0 ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_index ( i ) ;
mat_def - > set_id ( mat . getToken ( ) ) ;
mat_def - > set_name ( mat . toString ( ) ) ; //find the name at cave temperature;
2018-04-06 13:17:34 -06:00
if ( size_t ( raws - > inorganics [ i ] - > material . state_color [ GetState ( & raws - > inorganics [ i ] - > material ) ] ) < raws - > descriptors . colors . size ( ) )
2017-12-20 04:41:01 -07:00
{
ConvertDFColorDescriptor ( raws - > inorganics [ i ] - > material . state_color [ GetState ( & raws - > inorganics [ i ] - > material ) ] , mat_def - > mutable_state_color ( ) ) ;
}
}
for ( int i = 0 ; i < 19 ; i + + )
{
int k = - 1 ;
if ( i = = 7 )
k = 1 ; // for coal.
for ( int j = - 1 ; j < = k ; j + + )
{
mat . decode ( i , j ) ;
MaterialDefinition * mat_def = out - > add_material_list ( ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_type ( i ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_index ( j ) ;
mat_def - > set_id ( mat . getToken ( ) ) ;
mat_def - > set_name ( mat . toString ( ) ) ; //find the name at cave temperature;
2018-04-06 13:17:34 -06:00
if ( size_t ( raws - > mat_table . builtin [ i ] - > state_color [ GetState ( raws - > mat_table . builtin [ i ] ) ] ) < raws - > descriptors . colors . size ( ) )
2017-12-20 04:41:01 -07:00
{
ConvertDFColorDescriptor ( raws - > mat_table . builtin [ i ] - > state_color [ GetState ( raws - > mat_table . builtin [ i ] ) ] , mat_def - > mutable_state_color ( ) ) ;
}
}
}
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < raws - > creatures . all . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : creature_raw * creature = raws - > creatures . all [ i ] ;
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < creature - > material . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
mat . decode ( j + MaterialInfo : : CREATURE_BASE , i ) ;
MaterialDefinition * mat_def = out - > add_material_list ( ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_type ( j + 19 ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_index ( i ) ;
mat_def - > set_id ( mat . getToken ( ) ) ;
mat_def - > set_name ( mat . toString ( ) ) ; //find the name at cave temperature;
2018-04-06 13:17:34 -06:00
if ( size_t ( creature - > material [ j ] - > state_color [ GetState ( creature - > material [ j ] ) ] ) < raws - > descriptors . colors . size ( ) )
2017-12-20 04:41:01 -07:00
{
ConvertDFColorDescriptor ( creature - > material [ j ] - > state_color [ GetState ( creature - > material [ j ] ) ] , mat_def - > mutable_state_color ( ) ) ;
}
}
}
2018-04-06 13:17:34 -06:00
//for (size_t i = 0; i < history->figures.size(); i++)
2017-12-20 04:41:01 -07:00
//{
// df::historical_figure * figure = history->figures[i];
// if (figure->race < 0)
// continue;
// df::creature_raw * creature = raws->creatures.all[figure->race];
// for (int j = 0; j < creature->material.size(); j++)
// {
// mat.decode(j + MaterialInfo::FIGURE_BASE, i);
// MaterialDefinition *mat_def = out->add_material_list();
// mat_def->mutable_mat_pair()->set_mat_type(j + MaterialInfo::FIGURE_BASE);
// mat_def->mutable_mat_pair()->set_mat_index(i);
// stringstream id;
// id << "HF" << i << mat.getToken();
// mat_def->set_id(id.str());
// mat_def->set_name(mat.toString()); //find the name at cave temperature;
2018-03-10 14:53:45 -07:00
// if (creature->material[j]->state_color[GetState(creature->material[j])] < raws->descriptors.colors.size())
2017-12-20 04:41:01 -07:00
// {
2018-03-10 14:53:45 -07:00
// df::descriptor_color *color = raws->descriptors.colors[creature->material[j]->state_color[GetState(creature->material[j])]];
2017-12-20 04:41:01 -07:00
// mat_def->mutable_state_color()->set_red(color->red * 255);
// mat_def->mutable_state_color()->set_green(color->green * 255);
// mat_def->mutable_state_color()->set_blue(color->blue * 255);
// }
// }
//}
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < raws - > plants . all . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : plant_raw * plant = raws - > plants . all [ i ] ;
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < plant - > material . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
mat . decode ( j + 419 , i ) ;
MaterialDefinition * mat_def = out - > add_material_list ( ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_type ( j + 419 ) ;
mat_def - > mutable_mat_pair ( ) - > set_mat_index ( i ) ;
mat_def - > set_id ( mat . getToken ( ) ) ;
mat_def - > set_name ( mat . toString ( ) ) ; //find the name at cave temperature;
2018-04-06 13:17:34 -06:00
if ( size_t ( plant - > material [ j ] - > state_color [ GetState ( plant - > material [ j ] ) ] ) < raws - > descriptors . colors . size ( ) )
2017-12-20 04:41:01 -07:00
{
ConvertDFColorDescriptor ( plant - > material [ j ] - > state_color [ GetState ( plant - > material [ j ] ) ] , mat_def - > mutable_state_color ( ) ) ;
}
}
}
return CR_OK ;
2014-06-17 10:17:16 -06:00
}
2014-08-08 09:05:57 -06:00
static command_result GetGrowthList ( color_ostream & stream , const EmptyMessage * in , MaterialList * out )
{
2017-12-20 04:41:01 -07:00
if ( ! Core : : getInstance ( ) . isWorldLoaded ( ) ) {
//out->set_available(false);
return CR_OK ;
}
2014-08-08 09:05:57 -06:00
2017-12-20 04:41:01 -07:00
df : : world_raws * raws = & world - > raws ;
if ( ! raws )
return CR_OK ; //'.
2014-08-29 05:38:21 -06:00
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < raws - > plants . all . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : plant_raw * pp = raws - > plants . all [ i ] ;
if ( ! pp )
continue ;
MaterialDefinition * basePlant = out - > add_material_list ( ) ;
basePlant - > set_id ( pp - > id + " :BASE " ) ;
basePlant - > set_name ( pp - > name ) ;
basePlant - > mutable_mat_pair ( ) - > set_mat_type ( - 1 ) ;
basePlant - > mutable_mat_pair ( ) - > set_mat_index ( i ) ;
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT > 40001
2018-04-06 13:17:34 -06:00
for ( size_t g = 0 ; g < pp - > growths . size ( ) ; g + + )
2017-12-20 04:41:01 -07:00
{
df : : plant_growth * growth = pp - > growths [ g ] ;
if ( ! growth )
continue ;
for ( int l = 0 ; l < GROWTH_LOCATIONS_SIZE ; l + + )
{
MaterialDefinition * out_growth = out - > add_material_list ( ) ;
out_growth - > set_id ( pp - > id + " : " + growth - > id + + " : " + growth_locations [ l ] ) ;
out_growth - > set_name ( growth - > name ) ;
out_growth - > mutable_mat_pair ( ) - > set_mat_type ( g * 10 + l ) ;
out_growth - > mutable_mat_pair ( ) - > set_mat_index ( i ) ;
}
}
2015-08-12 23:55:59 -06:00
# endif
2017-12-20 04:41:01 -07:00
}
return CR_OK ;
2014-08-08 09:05:57 -06:00
}
2015-02-13 06:08:02 -07:00
void CopyBlock ( df : : map_block * DfBlock , RemoteFortressReader : : MapBlock * NetBlock , MapExtras : : MapCache * MC , DFCoord pos )
2014-06-17 10:17:16 -06:00
{
2017-12-20 04:41:01 -07:00
MapExtras : : Block * block = MC - > BlockAtTile ( DfBlock - > map_pos ) ;
int trunk_percent [ 16 ] [ 16 ] ;
int tree_x [ 16 ] [ 16 ] ;
int tree_y [ 16 ] [ 16 ] ;
int tree_z [ 16 ] [ 16 ] ;
for ( int xx = 0 ; xx < 16 ; xx + + )
for ( int yy = 0 ; yy < 16 ; yy + + )
{
trunk_percent [ xx ] [ yy ] = 255 ;
tree_x [ xx ] [ yy ] = - 3000 ;
tree_y [ xx ] [ yy ] = - 3000 ;
tree_z [ xx ] [ yy ] = - 3000 ;
}
2016-01-11 11:40:16 -07:00
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
df : : map_block_column * column = df : : global : : world - > map . column_index [ ( DfBlock - > map_pos . x / 48 ) * 3 ] [ ( DfBlock - > map_pos . y / 48 ) * 3 ] ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < column - > plants . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : plant * plant = column - > plants [ i ] ;
if ( plant - > tree_info = = NULL )
continue ;
df : : plant_tree_info * tree_info = plant - > tree_info ;
if (
plant - > pos . z - tree_info - > roots_depth > DfBlock - > map_pos . z
| | ( plant - > pos . z + tree_info - > body_height ) < = DfBlock - > map_pos . z
| | ( plant - > pos . x - tree_info - > dim_x / 2 ) > ( DfBlock - > map_pos . x + 16 )
| | ( plant - > pos . x + tree_info - > dim_x / 2 ) < ( DfBlock - > map_pos . x )
| | ( plant - > pos . y - tree_info - > dim_y / 2 ) > ( DfBlock - > map_pos . y + 16 )
| | ( plant - > pos . y + tree_info - > dim_y / 2 ) < ( DfBlock - > map_pos . y )
)
continue ;
DFCoord localPos = plant - > pos - DfBlock - > map_pos ;
for ( int xx = 0 ; xx < tree_info - > dim_x ; xx + + )
for ( int yy = 0 ; yy < tree_info - > dim_y ; yy + + )
{
int xxx = localPos . x - ( tree_info - > dim_x / 2 ) + xx ;
int yyy = localPos . y - ( tree_info - > dim_y / 2 ) + yy ;
if ( xxx < 0
| | yyy < 0
| | xxx > = 16
| | yyy > = 16
)
continue ;
df : : plant_tree_tile tile ;
if ( - localPos . z < 0 )
{
tile = tree_info - > roots [ - 1 + localPos . z ] [ xx + ( yy * tree_info - > dim_x ) ] ;
}
else
{
tile = tree_info - > body [ - localPos . z ] [ xx + ( yy * tree_info - > dim_x ) ] ;
}
if ( ! tile . whole | | tile . bits . blocked )
continue ;
if ( tree_info - > body_height < = 1 )
trunk_percent [ xxx ] [ yyy ] = 0 ;
else
trunk_percent [ xxx ] [ yyy ] = - localPos . z * 100 / ( tree_info - > body_height - 1 ) ;
tree_x [ xxx ] [ yyy ] = xx - tree_info - > dim_x / 2 ;
tree_y [ xxx ] [ yyy ] = yy - tree_info - > dim_y / 2 ;
tree_z [ xxx ] [ yyy ] = localPos . z ;
}
}
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
for ( int yy = 0 ; yy < 16 ; yy + + )
for ( int xx = 0 ; xx < 16 ; xx + + )
{
df : : tiletype tile = DfBlock - > tiletype [ xx ] [ yy ] ;
NetBlock - > add_tiles ( tile ) ;
df : : coord2d p = df : : coord2d ( xx , yy ) ;
t_matpair baseMat = block - > baseMaterialAt ( p ) ;
t_matpair staticMat = block - > staticMaterialAt ( p ) ;
switch ( tileMaterial ( tile ) )
{
case tiletype_material : : FROZEN_LIQUID :
staticMat . mat_type = builtin_mats : : WATER ;
staticMat . mat_index = - 1 ;
break ;
default :
break ;
}
CopyMat ( NetBlock - > add_materials ( ) , staticMat . mat_type , staticMat . mat_index ) ;
CopyMat ( NetBlock - > add_layer_materials ( ) , 0 , block - > layerMaterialAt ( p ) ) ;
CopyMat ( NetBlock - > add_vein_materials ( ) , 0 , block - > veinMaterialAt ( p ) ) ;
CopyMat ( NetBlock - > add_base_materials ( ) , baseMat . mat_type , baseMat . mat_index ) ;
RemoteFortressReader : : MatPair * constructionItem = NetBlock - > add_construction_items ( ) ;
CopyMat ( constructionItem , - 1 , - 1 ) ;
if ( tileMaterial ( tile ) = = tiletype_material : : CONSTRUCTION )
{
df : : construction * con = df : : construction : : find ( DfBlock - > map_pos + df : : coord ( xx , yy , 0 ) ) ;
if ( con )
{
CopyMat ( constructionItem , con - > item_type , con - > item_subtype ) ;
}
}
NetBlock - > add_tree_percent ( trunk_percent [ xx ] [ yy ] ) ;
NetBlock - > add_tree_x ( tree_x [ xx ] [ yy ] ) ;
NetBlock - > add_tree_y ( tree_y [ xx ] [ yy ] ) ;
NetBlock - > add_tree_z ( tree_z [ xx ] [ yy ] ) ;
}
2015-02-17 10:21:33 -07:00
}
void CopyDesignation ( df : : map_block * DfBlock , RemoteFortressReader : : MapBlock * NetBlock , MapExtras : : MapCache * MC , DFCoord pos )
{
2017-12-20 04:41:01 -07:00
NetBlock - > set_map_x ( DfBlock - > map_pos . x ) ;
NetBlock - > set_map_y ( DfBlock - > map_pos . y ) ;
NetBlock - > set_map_z ( DfBlock - > map_pos . z ) ;
for ( int yy = 0 ; yy < 16 ; yy + + )
for ( int xx = 0 ; xx < 16 ; xx + + )
{
df : : tile_designation designation = DfBlock - > designation [ xx ] [ yy ] ;
df : : tile_occupancy occupancy = DfBlock - > occupancy [ xx ] [ yy ] ;
int lava = 0 ;
int water = 0 ;
if ( designation . bits . liquid_type = = df : : enums : : tile_liquid : : Magma )
lava = designation . bits . flow_size ;
else
water = designation . bits . flow_size ;
NetBlock - > add_magma ( lava ) ;
NetBlock - > add_water ( water ) ;
NetBlock - > add_aquifer ( designation . bits . water_table ) ;
NetBlock - > add_light ( designation . bits . light ) ;
NetBlock - > add_outside ( designation . bits . outside ) ;
NetBlock - > add_subterranean ( designation . bits . subterranean ) ;
NetBlock - > add_water_salt ( designation . bits . water_salt ) ;
NetBlock - > add_water_stagnant ( designation . bits . water_stagnant ) ;
if ( gamemode & & ( * gamemode = = game_mode : : ADVENTURE ) )
{
2021-09-06 23:16:21 -06:00
// auto fog_of_war = DfBlock->fog_of_war[xx][yy];
2020-12-29 22:04:49 -07:00
NetBlock - > add_hidden ( ( TileDigDesignation ) designation . bits . dig = = TileDigDesignation : : NO_DIG | | designation . bits . hidden ) ;
2017-12-20 04:41:01 -07:00
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : NO_DIG ) ;
NetBlock - > add_tile_dig_designation_marker ( false ) ;
NetBlock - > add_tile_dig_designation_auto ( false ) ;
}
else
{
NetBlock - > add_hidden ( designation . bits . hidden ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
NetBlock - > add_tile_dig_designation_marker ( occupancy . bits . dig_marked ) ;
NetBlock - > add_tile_dig_designation_auto ( occupancy . bits . dig_auto ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
switch ( designation . bits . dig )
{
case df : : enums : : tile_dig_designation : : No :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : NO_DIG ) ;
break ;
case df : : enums : : tile_dig_designation : : Default :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : DEFAULT_DIG ) ;
break ;
case df : : enums : : tile_dig_designation : : UpDownStair :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : UP_DOWN_STAIR_DIG ) ;
break ;
case df : : enums : : tile_dig_designation : : Channel :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : CHANNEL_DIG ) ;
break ;
case df : : enums : : tile_dig_designation : : Ramp :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : RAMP_DIG ) ;
break ;
case df : : enums : : tile_dig_designation : : DownStair :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : DOWN_STAIR_DIG ) ;
break ;
case df : : enums : : tile_dig_designation : : UpStair :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : UP_STAIR_DIG ) ;
break ;
default :
NetBlock - > add_tile_dig_designation ( TileDigDesignation : : NO_DIG ) ;
break ;
}
}
}
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > jobs . postings . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto job = world - > jobs . postings [ i ] - > job ;
if ( job = = nullptr )
continue ;
if (
job - > pos . z > DfBlock - > map_pos . z
| | job - > pos . z < DfBlock - > map_pos . z
| | job - > pos . x > = ( DfBlock - > map_pos . x + 16 )
| | job - > pos . x < ( DfBlock - > map_pos . x )
| | job - > pos . y > = ( DfBlock - > map_pos . y + 16 )
| | job - > pos . y < ( DfBlock - > map_pos . y )
)
continue ;
int index = ( job - > pos . x - DfBlock - > map_pos . x ) + ( 16 * ( job - > pos . y - DfBlock - > map_pos . y ) ) ;
switch ( job - > job_type )
{
case job_type : : Dig :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : DEFAULT_DIG ) ;
break ;
case job_type : : CarveUpwardStaircase :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : UP_STAIR_DIG ) ;
break ;
case job_type : : CarveDownwardStaircase :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : DOWN_STAIR_DIG ) ;
break ;
case job_type : : CarveUpDownStaircase :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : UP_DOWN_STAIR_DIG ) ;
break ;
case job_type : : CarveRamp :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : RAMP_DIG ) ;
break ;
case job_type : : DigChannel :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : CHANNEL_DIG ) ;
break ;
case job_type : : FellTree :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : DEFAULT_DIG ) ;
break ;
case job_type : : GatherPlants :
NetBlock - > set_tile_dig_designation ( index , TileDigDesignation : : DEFAULT_DIG ) ;
break ;
default :
break ;
}
}
2017-06-29 13:30:31 -06:00
# endif
2015-09-27 22:36:04 -06:00
}
2017-12-31 02:01:58 -07:00
void CopyProjectiles ( RemoteFortressReader : : MapBlock * NetBlock )
{
for ( auto proj = world - > proj_list . next ; proj ! = NULL ; proj = proj - > next )
{
STRICT_VIRTUAL_CAST_VAR ( projectile , df : : proj_itemst , proj - > item ) ;
if ( projectile = = NULL )
continue ;
auto NetItem = NetBlock - > add_items ( ) ;
CopyItem ( NetItem , projectile - > item ) ;
NetItem - > set_projectile ( true ) ;
if ( projectile - > flags . bits . parabolic )
{
NetItem - > set_subpos_x ( projectile - > pos_x / 100000.0 ) ;
NetItem - > set_subpos_y ( projectile - > pos_y / 100000.0 ) ;
NetItem - > set_subpos_z ( projectile - > pos_z / 140000.0 ) ;
NetItem - > set_velocity_x ( projectile - > speed_x / 100000.0 ) ;
NetItem - > set_velocity_y ( projectile - > speed_y / 100000.0 ) ;
NetItem - > set_velocity_z ( projectile - > speed_z / 140000.0 ) ;
}
else
{
DFCoord diff = projectile - > target_pos - projectile - > origin_pos ;
float max_dist = max ( max ( abs ( diff . x ) , abs ( diff . y ) ) , abs ( diff . z ) ) ;
NetItem - > set_subpos_x ( projectile - > origin_pos . x + ( diff . x / max_dist * projectile - > distance_flown ) - projectile - > cur_pos . x ) ;
NetItem - > set_subpos_y ( projectile - > origin_pos . y + ( diff . y / max_dist * projectile - > distance_flown ) - projectile - > cur_pos . y ) ;
NetItem - > set_subpos_z ( projectile - > origin_pos . z + ( diff . z / max_dist * projectile - > distance_flown ) - projectile - > cur_pos . z ) ;
NetItem - > set_velocity_x ( diff . x / max_dist ) ;
NetItem - > set_velocity_y ( diff . y / max_dist ) ;
NetItem - > set_velocity_z ( diff . z / max_dist ) ;
}
}
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > vehicles . active . size ( ) ; i + + )
2018-01-06 09:37:34 -07:00
{
bool isProj = false ;
auto vehicle = world - > vehicles . active [ i ] ;
for ( auto proj = world - > proj_list . next ; proj ! = NULL ; proj = proj - > next )
{
STRICT_VIRTUAL_CAST_VAR ( projectile , df : : proj_itemst , proj - > item ) ;
if ( ! projectile )
continue ;
if ( projectile - > item - > id = = vehicle - > item_id )
{
isProj = true ;
break ;
}
}
if ( isProj )
continue ;
auto item = Items : : findItemByID ( vehicle - > item_id ) ;
if ( ! item )
continue ;
auto NetItem = NetBlock - > add_items ( ) ;
CopyItem ( NetItem , item ) ;
NetItem - > set_subpos_x ( vehicle - > offset_x / 100000.0 ) ;
NetItem - > set_subpos_y ( vehicle - > offset_y / 100000.0 ) ;
NetItem - > set_subpos_z ( vehicle - > offset_z / 140000.0 ) ;
NetItem - > set_velocity_x ( vehicle - > speed_x / 100000.0 ) ;
NetItem - > set_velocity_y ( vehicle - > speed_y / 100000.0 ) ;
NetItem - > set_velocity_z ( vehicle - > speed_z / 140000.0 ) ;
}
2017-12-31 02:01:58 -07:00
}
2017-05-13 23:42:41 -06:00
void CopyBuildings ( DFCoord min , DFCoord max , RemoteFortressReader : : MapBlock * NetBlock , MapExtras : : MapCache * MC )
2015-09-27 22:36:04 -06:00
{
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < df : : global : : world - > buildings . all . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : building * bld = df : : global : : world - > buildings . all [ i ] ;
if ( bld - > x1 > = max . x | | bld - > y1 > = max . y | | bld - > x2 < min . x | | bld - > y2 < min . y )
{
auto out_bld = NetBlock - > add_buildings ( ) ;
out_bld - > set_index ( bld - > id ) ;
continue ;
}
int z2 = bld - > z ;
if ( bld - > getType ( ) = = building_type : : Well )
{
df : : building_wellst * well_building = virtual_cast < df : : building_wellst > ( bld ) ;
if ( well_building )
{
z2 = well_building - > bucket_z ;
}
}
if ( bld - > z < min . z | | z2 > = max . z )
{
auto out_bld = NetBlock - > add_buildings ( ) ;
out_bld - > set_index ( bld - > id ) ;
continue ;
}
auto out_bld = NetBlock - > add_buildings ( ) ;
CopyBuilding ( i , out_bld ) ;
df : : building_actual * actualBuilding = virtual_cast < df : : building_actual > ( bld ) ;
if ( actualBuilding )
{
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < actualBuilding - > contained_items . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto buildingItem = out_bld - > add_items ( ) ;
buildingItem - > set_mode ( actualBuilding - > contained_items [ i ] - > use_mode ) ;
CopyItem ( buildingItem - > mutable_item ( ) , actualBuilding - > contained_items [ i ] - > item ) ;
}
}
}
2014-06-17 10:17:16 -06:00
}
2016-08-25 09:44:23 -06:00
void Copyspatters ( df : : map_block * DfBlock , RemoteFortressReader : : MapBlock * NetBlock , MapExtras : : MapCache * MC , DFCoord pos )
{
2017-12-20 04:41:01 -07:00
NetBlock - > set_map_x ( DfBlock - > map_pos . x ) ;
NetBlock - > set_map_y ( DfBlock - > map_pos . y ) ;
NetBlock - > set_map_z ( DfBlock - > map_pos . z ) ;
std : : vector < df : : block_square_event_material_spatterst * > materials ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
std : : vector < df : : block_square_event_item_spatterst * > items ;
std : : vector < df : : block_square_event_grassst * > grasses ;
if ( ! Maps : : SortBlockEvents ( DfBlock , NULL , NULL , & materials , & grasses , NULL , NULL , & items ) )
return ;
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
if ( ! Maps : : SortBlockEvents ( DfBlock , NULL , NULL , & materials , NULL , NULL ) )
return ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
for ( int yy = 0 ; yy < 16 ; yy + + )
for ( int xx = 0 ; xx < 16 ; xx + + )
{
auto send_pile = NetBlock - > add_spatterpile ( ) ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < materials . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto mat = materials [ i ] ;
if ( mat - > amount [ xx ] [ yy ] = = 0 )
continue ;
auto send_spat = send_pile - > add_spatters ( ) ;
send_spat - > set_state ( ( MatterState ) mat - > mat_state ) ;
CopyMat ( send_spat - > mutable_material ( ) , mat - > mat_type , mat - > mat_index ) ;
send_spat - > set_amount ( mat - > amount [ xx ] [ yy ] ) ;
}
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < items . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto item = items [ i ] ;
if ( item - > amount [ xx ] [ yy ] = = 0 )
continue ;
auto send_spat = send_pile - > add_spatters ( ) ;
CopyMat ( send_spat - > mutable_material ( ) , item - > mattype , item - > matindex ) ;
send_spat - > set_amount ( item - > amount [ xx ] [ yy ] ) ;
auto send_item = send_spat - > mutable_item ( ) ;
send_item - > set_mat_type ( item - > item_type ) ;
send_item - > set_mat_index ( item - > item_subtype ) ;
}
int grassPercent = 0 ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < grasses . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto grass = grasses [ i ] ;
if ( grass - > amount [ xx ] [ yy ] > grassPercent )
grassPercent = grass - > amount [ xx ] [ yy ] ;
}
NetBlock - > add_grass_percent ( grassPercent ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
}
2016-08-25 09:44:23 -06:00
}
2016-10-28 12:58:37 -06:00
void CopyItems ( df : : map_block * DfBlock , RemoteFortressReader : : MapBlock * NetBlock , MapExtras : : MapCache * MC , DFCoord pos )
{
2017-12-20 04:41:01 -07:00
NetBlock - > set_map_x ( DfBlock - > map_pos . x ) ;
NetBlock - > set_map_y ( DfBlock - > map_pos . y ) ;
NetBlock - > set_map_z ( DfBlock - > map_pos . z ) ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < DfBlock - > items . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
int id = DfBlock - > items [ i ] ;
2017-12-17 05:35:38 -07:00
2017-12-20 04:41:01 -07:00
auto item = df : : item : : find ( id ) ;
if ( item )
CopyItem ( NetBlock - > add_items ( ) , item ) ;
}
2016-10-28 12:58:37 -06:00
}
2018-03-02 23:11:58 -07:00
void CopyFlow ( df : : flow_info * localFlow , RemoteFortressReader : : FlowInfo * netFlow , int index )
{
netFlow - > set_type ( ( FlowType ) localFlow - > type ) ;
netFlow - > set_density ( localFlow - > density ) ;
ConvertDFCoord ( localFlow - > pos , netFlow - > mutable_pos ( ) ) ;
ConvertDFCoord ( localFlow - > dest , netFlow - > mutable_dest ( ) ) ;
netFlow - > set_expanding ( localFlow - > expanding ) ;
netFlow - > set_reuse ( localFlow - > reuse ) ;
netFlow - > set_guide_id ( localFlow - > guide_id ) ;
2018-03-03 14:11:40 -07:00
auto mat = netFlow - > mutable_material ( ) ;
mat - > set_mat_index ( localFlow - > mat_index ) ;
mat - > set_mat_type ( localFlow - > mat_type ) ;
2018-03-05 21:14:21 -07:00
if ( localFlow - > guide_id > = 0 & & localFlow - > type = = flow_type : : ItemCloud )
{
auto guide = df : : flow_guide : : find ( localFlow - > guide_id ) ;
if ( guide )
{
VIRTUAL_CAST_VAR ( cloud , df : : flow_guide_item_cloudst , guide ) ;
if ( cloud )
{
2018-03-06 10:07:26 -07:00
mat - > set_mat_index ( cloud - > matindex ) ;
2018-03-05 21:14:21 -07:00
mat - > set_mat_type ( cloud - > mattype ) ;
auto item = netFlow - > mutable_item ( ) ;
item - > set_mat_index ( cloud - > item_subtype ) ;
item - > set_mat_type ( cloud - > item_type ) ;
}
}
}
2018-03-02 23:11:58 -07:00
}
void CopyFlows ( df : : map_block * DfBlock , RemoteFortressReader : : MapBlock * NetBlock )
{
NetBlock - > set_map_x ( DfBlock - > map_pos . x ) ;
NetBlock - > set_map_y ( DfBlock - > map_pos . y ) ;
NetBlock - > set_map_z ( DfBlock - > map_pos . z ) ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < DfBlock - > flows . size ( ) ; i + + )
2018-03-02 23:11:58 -07:00
{
CopyFlow ( DfBlock - > flows [ i ] , NetBlock - > add_flows ( ) , i ) ;
}
}
2018-01-17 06:40:19 -07:00
2014-06-17 10:17:16 -06:00
static command_result GetBlockList ( color_ostream & stream , const BlockRequest * in , BlockList * out )
{
2017-12-20 04:41:01 -07:00
int x , y , z ;
DFHack : : Maps : : getPosition ( x , y , z ) ;
out - > set_map_x ( x ) ;
out - > set_map_y ( y ) ;
MapExtras : : MapCache MC ;
int center_x = ( in - > min_x ( ) + in - > max_x ( ) ) / 2 ;
int center_y = ( in - > min_y ( ) + in - > max_y ( ) ) / 2 ;
int NUMBER_OF_POINTS = ( ( in - > max_x ( ) - center_x + 1 ) * 2 ) * ( ( in - > max_y ( ) - center_y + 1 ) * 2 ) ;
int blocks_needed ;
if ( in - > has_blocks_needed ( ) )
blocks_needed = in - > blocks_needed ( ) ;
else
2018-01-11 23:20:40 -07:00
blocks_needed = NUMBER_OF_POINTS * ( in - > max_z ( ) - in - > min_z ( ) ) ;
2017-12-20 04:41:01 -07:00
int blocks_sent = 0 ;
int min_x = in - > min_x ( ) ;
int min_y = in - > min_y ( ) ;
int max_x = in - > max_x ( ) ;
int max_y = in - > max_y ( ) ;
int min_z = in - > min_z ( ) ;
int max_z = in - > max_z ( ) ;
2017-12-31 02:01:58 -07:00
bool firstBlock = true ; //Always send all the buildings needed on the first block, and none on the rest.
2017-12-20 04:41:01 -07:00
//stream.print("Got request for blocks from (%d, %d, %d) to (%d, %d, %d).\n", in->min_x(), in->min_y(), in->min_z(), in->max_x(), in->max_y(), in->max_z());
for ( int zz = max_z - 1 ; zz > = min_z ; zz - - )
{
// (di, dj) is a vector - direction in which we move right now
int di = 1 ;
int dj = 0 ;
// length of current segment
int segment_length = 1 ;
// current position (i, j) and how much of current segment we passed
int i = center_x ;
int j = center_y ;
int segment_passed = 0 ;
for ( int k = 0 ; k < NUMBER_OF_POINTS ; + + k )
{
if ( blocks_sent > = blocks_needed )
break ;
if ( ! ( i < min_x | | i > = max_x | | j < min_y | | j > = max_y ) )
{
DFCoord pos = DFCoord ( i , j , zz ) ;
df : : map_block * block = DFHack : : Maps : : getBlock ( pos ) ;
if ( block ! = NULL )
{
2018-03-03 00:18:09 -07:00
bool nonAir = false ;
2017-12-20 04:41:01 -07:00
for ( int xxx = 0 ; xxx < 16 ; xxx + + )
for ( int yyy = 0 ; yyy < 16 ; yyy + + )
{
if ( ( DFHack : : tileShapeBasic ( DFHack : : tileShape ( block - > tiletype [ xxx ] [ yyy ] ) ) ! = df : : tiletype_shape_basic : : None & &
DFHack : : tileShapeBasic ( DFHack : : tileShape ( block - > tiletype [ xxx ] [ yyy ] ) ) ! = df : : tiletype_shape_basic : : Open )
| | block - > designation [ xxx ] [ yyy ] . bits . flow_size > 0
| | block - > occupancy [ xxx ] [ yyy ] . bits . building > 0 )
2018-03-03 00:18:09 -07:00
{
nonAir = true ;
goto ItsAir ;
}
2017-12-20 04:41:01 -07:00
}
2018-12-25 23:11:08 -07:00
ItsAir :
2018-03-03 00:18:09 -07:00
if ( block - > flows . size ( ) > 0 )
nonAir = true ;
if ( nonAir | | firstBlock )
2017-12-20 04:41:01 -07:00
{
bool tileChanged = IsTiletypeChanged ( pos ) ;
bool desChanged = IsDesignationChanged ( pos ) ;
bool spatterChanged = IsspatterChanged ( pos ) ;
2018-01-06 09:37:34 -07:00
bool itemsChanged = block - > items . size ( ) > 0 ;
2018-03-03 00:18:09 -07:00
bool flows = block - > flows . size ( ) > 0 ;
2018-04-06 00:18:15 -06:00
RemoteFortressReader : : MapBlock * net_block = nullptr ;
2018-03-03 00:18:09 -07:00
if ( tileChanged | | desChanged | | spatterChanged | | firstBlock | | itemsChanged | | flows )
2020-05-22 09:01:34 -06:00
{
2017-12-20 04:41:01 -07:00
net_block = out - > add_map_blocks ( ) ;
2020-05-22 09:01:34 -06:00
net_block - > set_map_x ( block - > map_pos . x ) ;
net_block - > set_map_y ( block - > map_pos . y ) ;
net_block - > set_map_z ( block - > map_pos . z ) ;
}
2017-12-20 04:41:01 -07:00
if ( tileChanged )
{
CopyBlock ( block , net_block , & MC , pos ) ;
blocks_sent + + ;
}
if ( desChanged )
CopyDesignation ( block , net_block , & MC , pos ) ;
2017-12-31 02:01:58 -07:00
if ( firstBlock )
2017-12-20 04:41:01 -07:00
{
CopyBuildings ( DFCoord ( min_x * 16 , min_y * 16 , min_z ) , DFCoord ( max_x * 16 , max_y * 16 , max_z ) , net_block , & MC ) ;
2017-12-31 02:01:58 -07:00
CopyProjectiles ( net_block ) ;
firstBlock = false ;
2017-12-20 04:41:01 -07:00
}
if ( spatterChanged )
Copyspatters ( block , net_block , & MC , pos ) ;
if ( itemsChanged )
CopyItems ( block , net_block , & MC , pos ) ;
2018-03-03 00:18:09 -07:00
if ( flows )
{
CopyFlows ( block , net_block ) ;
}
2017-12-20 04:41:01 -07:00
}
}
}
// make a step, add 'direction' vector (di, dj) to current position (i, j)
i + = di ;
j + = dj ;
+ + segment_passed ;
//System.out.println(i + " " + j);
if ( segment_passed = = segment_length )
{
// done with current segment
segment_passed = 0 ;
// 'rotate' directions
2018-10-28 01:01:01 -06:00
int filename = di ;
2017-12-20 04:41:01 -07:00
di = - dj ;
2018-10-28 01:01:01 -06:00
dj = filename ;
2017-12-20 04:41:01 -07:00
// increase segment length if necessary
if ( dj = = 0 ) {
+ + segment_length ;
}
}
}
}
2018-02-03 21:42:15 -07:00
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > engravings . size ( ) ; i + + )
2018-02-03 21:42:15 -07:00
{
auto engraving = world - > engravings [ i ] ;
if ( engraving - > pos . x < ( min_x * 16 ) | | engraving - > pos . x > ( max_x * 16 ) )
continue ;
2018-02-05 08:41:36 -07:00
if ( engraving - > pos . y < ( min_y * 16 ) | | engraving - > pos . y > ( max_y * 16 ) )
2018-02-03 21:42:15 -07:00
continue ;
2018-02-05 08:41:36 -07:00
if ( engraving - > pos . z < min_z | | engraving - > pos . z > max_z )
2018-02-03 21:42:15 -07:00
continue ;
if ( ! isEngravingNew ( i ) )
continue ;
df : : art_image_chunk * chunk = NULL ;
2018-02-03 21:51:28 -07:00
GET_ART_IMAGE_CHUNK GetArtImageChunk = reinterpret_cast < GET_ART_IMAGE_CHUNK > ( Core : : getInstance ( ) . vinfo - > getAddress ( " get_art_image_chunk " ) ) ;
2018-02-03 21:42:15 -07:00
if ( GetArtImageChunk )
{
chunk = GetArtImageChunk ( & ( world - > art_image_chunks ) , engraving - > art_id ) ;
}
else
{
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > art_image_chunks . size ( ) ; i + + )
2018-02-03 21:42:15 -07:00
{
if ( world - > art_image_chunks [ i ] - > id = = engraving - > art_id )
chunk = world - > art_image_chunks [ i ] ;
}
}
if ( ! chunk )
{
engravingIsNotNew ( i ) ;
continue ;
}
auto netEngraving = out - > add_engravings ( ) ;
ConvertDFCoord ( engraving - > pos , netEngraving - > mutable_pos ( ) ) ;
netEngraving - > set_quality ( engraving - > quality ) ;
netEngraving - > set_tile ( engraving - > tile ) ;
CopyImage ( chunk - > images [ engraving - > art_subid ] , netEngraving - > mutable_image ( ) ) ;
netEngraving - > set_floor ( engraving - > flags . bits . floor ) ;
netEngraving - > set_west ( engraving - > flags . bits . west ) ;
netEngraving - > set_east ( engraving - > flags . bits . east ) ;
netEngraving - > set_north ( engraving - > flags . bits . north ) ;
netEngraving - > set_south ( engraving - > flags . bits . south ) ;
netEngraving - > set_hidden ( engraving - > flags . bits . hidden ) ;
netEngraving - > set_northwest ( engraving - > flags . bits . northwest ) ;
netEngraving - > set_northeast ( engraving - > flags . bits . northeast ) ;
netEngraving - > set_southwest ( engraving - > flags . bits . southwest ) ;
netEngraving - > set_southeast ( engraving - > flags . bits . southeast ) ;
}
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > ocean_waves . size ( ) ; i + + )
2018-03-14 04:38:37 -06:00
{
auto wave = world - > ocean_waves [ i ] ;
auto netWave = out - > add_ocean_waves ( ) ;
2021-09-02 06:58:55 -06:00
ConvertDFCoord ( wave - > dest . x , wave - > dest . y , wave - > z , netWave - > mutable_dest ( ) ) ;
ConvertDFCoord ( wave - > cur . x , wave - > cur . y , wave - > z , netWave - > mutable_pos ( ) ) ;
2018-03-14 04:38:37 -06:00
}
2017-12-20 04:41:01 -07:00
MC . trash ( ) ;
return CR_OK ;
2014-07-15 06:18:12 -06:00
}
static command_result GetTiletypeList ( color_ostream & stream , const EmptyMessage * in , TiletypeList * out )
{
2017-12-20 04:41:01 -07:00
int count = 0 ;
FOR_ENUM_ITEMS ( tiletype , tt )
{
Tiletype * type = out - > add_tiletype_list ( ) ;
type - > set_id ( tt ) ;
type - > set_name ( ENUM_KEY_STR ( tiletype , tt ) ) ;
const char * name = tileName ( tt ) ;
if ( name ! = NULL & & name [ 0 ] ! = 0 )
type - > set_caption ( name ) ;
type - > set_shape ( TranslateShape ( tileShape ( tt ) ) ) ;
type - > set_special ( TranslateSpecial ( tileSpecial ( tt ) ) ) ;
type - > set_material ( TranslateMaterial ( tileMaterial ( tt ) ) ) ;
type - > set_variant ( TranslateVariant ( tileVariant ( tt ) ) ) ;
type - > set_direction ( tileDirection ( tt ) . getStr ( ) ) ;
count + + ;
}
return CR_OK ;
2014-07-15 06:18:12 -06:00
}
2014-08-08 09:05:57 -06:00
static command_result GetPlantList ( color_ostream & stream , const BlockRequest * in , PlantList * out )
{
2017-12-20 04:41:01 -07:00
int min_x = in - > min_x ( ) / 3 ;
int min_y = in - > min_y ( ) / 3 ;
int min_z = in - > min_z ( ) ;
int max_x = in - > max_x ( ) / 3 ;
int max_y = in - > max_y ( ) / 3 ;
int max_z = in - > max_z ( ) ;
2014-08-08 09:05:57 -06:00
2017-03-29 10:28:12 -06:00
# if DF_VERSION_INT < 40001
2017-12-20 04:41:01 -07:00
//plants are gotten differently here
2015-08-12 23:55:59 -06:00
# else
2017-12-20 04:41:01 -07:00
for ( int xx = min_x ; xx < max_x ; xx + + )
for ( int yy = min_y ; yy < max_y ; yy + + )
{
if ( xx < 0 | | yy < 0 | | xx > = world - > map . x_count_block | | yy > = world - > map . y_count_block )
continue ;
df : : map_block_column * column = world - > map . column_index [ xx ] [ yy ] ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < column - > plants . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : plant * plant = column - > plants [ i ] ;
if ( ! plant - > tree_info )
{
if ( plant - > pos . z < min_z | | plant - > pos . z > = max_z )
continue ;
if ( plant - > pos . x < in - > min_x ( ) * 16 | | plant - > pos . x > = in - > max_x ( ) * 16 )
continue ;
if ( plant - > pos . y < in - > min_y ( ) * 16 | | plant - > pos . y > = in - > max_y ( ) * 16 )
continue ;
}
else
{
if ( plant - > pos . z - plant - > tree_info - > roots_depth < min_z | | plant - > pos . z + plant - > tree_info - > body_height > max_z )
continue ;
if ( plant - > pos . x - plant - > tree_info - > dim_x / 2 < in - > min_x ( ) * 16 | | plant - > pos . x + plant - > tree_info - > dim_x / 2 > = in - > max_x ( ) * 16 )
continue ;
if ( plant - > pos . y - plant - > tree_info - > dim_y / 2 < in - > min_y ( ) * 16 | | plant - > pos . y + plant - > tree_info - > dim_y / 2 > = in - > max_y ( ) * 16 )
continue ;
}
RemoteFortressReader : : PlantDef * out_plant = out - > add_plant_list ( ) ;
out_plant - > set_index ( plant - > material ) ;
out_plant - > set_pos_x ( plant - > pos . x ) ;
out_plant - > set_pos_y ( plant - > pos . y ) ;
out_plant - > set_pos_z ( plant - > pos . z ) ;
}
2018-01-27 21:42:50 -07:00
}
2015-08-12 23:55:59 -06:00
# endif
2017-12-20 04:41:01 -07:00
return CR_OK ;
2014-08-08 09:05:57 -06:00
}
2014-12-11 07:40:49 -07:00
static command_result GetUnitList ( color_ostream & stream , const EmptyMessage * in , UnitList * out )
{
2017-12-20 04:41:01 -07:00
return GetUnitListInside ( stream , NULL , out ) ;
2017-12-17 05:35:38 -07:00
}
2018-08-03 11:48:02 -06:00
float lerp ( float a , float b , float f )
{
return a + f * ( b - a ) ;
}
2019-04-18 20:49:18 -06:00
void GetWounds ( df : : unit_wound * wound , UnitWound * send_wound )
{
for ( size_t i = 0 ; i < wound - > parts . size ( ) ; i + + )
{
auto part = wound - > parts [ i ] ;
auto send_part = send_wound - > add_parts ( ) ;
send_part - > set_global_layer_idx ( part - > global_layer_idx ) ;
send_part - > set_body_part_id ( part - > body_part_id ) ;
send_part - > set_layer_idx ( part - > layer_idx ) ;
}
send_wound - > set_severed_part ( wound - > flags . bits . severed_part ) ;
}
2017-12-17 05:35:38 -07:00
static command_result GetUnitListInside ( color_ostream & stream , const BlockRequest * in , UnitList * out )
{
2017-12-20 04:41:01 -07:00
auto world = df : : global : : world ;
2019-08-22 19:26:19 -06:00
for ( size_t i = 0 ; i < world - > units . active . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
2019-08-22 19:26:19 -06:00
df : : unit * unit = world - > units . active [ i ] ;
2017-12-20 04:41:01 -07:00
auto send_unit = out - > add_creature_list ( ) ;
send_unit - > set_id ( unit - > id ) ;
send_unit - > set_pos_x ( unit - > pos . x ) ;
send_unit - > set_pos_y ( unit - > pos . y ) ;
send_unit - > set_pos_z ( unit - > pos . z ) ;
send_unit - > mutable_race ( ) - > set_mat_type ( unit - > race ) ;
send_unit - > mutable_race ( ) - > set_mat_index ( unit - > caste ) ;
if ( in ! = NULL )
{
if ( unit - > pos . z < in - > min_z ( ) | | unit - > pos . z > = in - > max_z ( ) )
continue ;
if ( unit - > pos . x < in - > min_x ( ) * 16 | | unit - > pos . x > = in - > max_x ( ) * 16 )
continue ;
if ( unit - > pos . y < in - > min_y ( ) * 16 | | unit - > pos . y > = in - > max_y ( ) * 16 )
continue ;
}
2019-04-07 21:52:50 -06:00
using df : : global : : cur_year ;
using df : : global : : cur_year_tick ;
2020-04-22 20:05:48 -06:00
send_unit - > set_age ( Units : : getAge ( unit , false ) ) ;
2019-04-07 21:52:50 -06:00
2017-12-20 04:41:01 -07:00
ConvertDfColor ( Units : : getProfessionColor ( unit ) , send_unit - > mutable_profession_color ( ) ) ;
send_unit - > set_flags1 ( unit - > flags1 . whole ) ;
send_unit - > set_flags2 ( unit - > flags2 . whole ) ;
send_unit - > set_flags3 ( unit - > flags3 . whole ) ;
send_unit - > set_is_soldier ( ENUM_ATTR ( profession , military , unit - > profession ) ) ;
auto size_info = send_unit - > mutable_size_info ( ) ;
size_info - > set_size_cur ( unit - > body . size_info . size_cur ) ;
size_info - > set_size_base ( unit - > body . size_info . size_base ) ;
size_info - > set_area_cur ( unit - > body . size_info . area_cur ) ;
size_info - > set_area_base ( unit - > body . size_info . area_base ) ;
size_info - > set_length_cur ( unit - > body . size_info . length_cur ) ;
size_info - > set_length_base ( unit - > body . size_info . length_base ) ;
if ( unit - > name . has_name )
{
send_unit - > set_name ( DF2UTF ( Translation : : TranslateName ( Units : : getVisibleName ( unit ) ) ) ) ;
}
auto appearance = send_unit - > mutable_appearance ( ) ;
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < unit - > appearance . body_modifiers . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
appearance - > add_body_modifiers ( unit - > appearance . body_modifiers [ j ] ) ;
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < unit - > appearance . bp_modifiers . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
appearance - > add_bp_modifiers ( unit - > appearance . bp_modifiers [ j ] ) ;
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < unit - > appearance . colors . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
appearance - > add_colors ( unit - > appearance . colors [ j ] ) ;
appearance - > set_size_modifier ( unit - > appearance . size_modifier ) ;
2019-12-14 10:34:46 -07:00
appearance - > set_physical_description ( Units : : getPhysicalDescription ( unit ) ) ;
2019-12-07 20:27:35 -07:00
2017-12-20 04:41:01 -07:00
send_unit - > set_profession_id ( unit - > profession ) ;
std : : vector < Units : : NoblePosition > pvec ;
if ( Units : : getNoblePositions ( & pvec , unit ) )
{
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < pvec . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
auto noble_positon = pvec [ j ] ;
send_unit - > add_noble_positions ( noble_positon . position - > code ) ;
}
}
send_unit - > set_rider_id ( unit - > relationship_ids [ df : : unit_relationship_type : : RiderMount ] ) ;
auto creatureRaw = world - > raws . creatures . all [ unit - > race ] ;
auto casteRaw = creatureRaw - > caste [ unit - > caste ] ;
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < unit - > appearance . tissue_style_type . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
auto type = unit - > appearance . tissue_style_type [ j ] ;
if ( type < 0 )
continue ;
int style_raw_index = binsearch_index ( casteRaw - > tissue_styles , & df : : tissue_style_raw : : id , type ) ;
auto styleRaw = casteRaw - > tissue_styles [ style_raw_index ] ;
if ( styleRaw - > token = = " HAIR " )
{
auto send_style = appearance - > mutable_hair ( ) ;
send_style - > set_length ( unit - > appearance . tissue_length [ j ] ) ;
send_style - > set_style ( ( HairStyle ) unit - > appearance . tissue_style [ j ] ) ;
}
else if ( styleRaw - > token = = " BEARD " )
{
auto send_style = appearance - > mutable_beard ( ) ;
send_style - > set_length ( unit - > appearance . tissue_length [ j ] ) ;
send_style - > set_style ( ( HairStyle ) unit - > appearance . tissue_style [ j ] ) ;
}
else if ( styleRaw - > token = = " MOUSTACHE " )
{
auto send_style = appearance - > mutable_moustache ( ) ;
send_style - > set_length ( unit - > appearance . tissue_length [ j ] ) ;
send_style - > set_style ( ( HairStyle ) unit - > appearance . tissue_style [ j ] ) ;
}
else if ( styleRaw - > token = = " SIDEBURNS " )
{
auto send_style = appearance - > mutable_sideburns ( ) ;
send_style - > set_length ( unit - > appearance . tissue_length [ j ] ) ;
send_style - > set_style ( ( HairStyle ) unit - > appearance . tissue_style [ j ] ) ;
}
}
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < unit - > inventory . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
auto inventory_item = unit - > inventory [ j ] ;
auto sent_item = send_unit - > add_inventory ( ) ;
sent_item - > set_mode ( ( InventoryMode ) inventory_item - > mode ) ;
2018-08-02 10:20:29 -06:00
sent_item - > set_body_part_id ( inventory_item - > body_part_id ) ;
2017-12-20 04:41:01 -07:00
CopyItem ( sent_item - > mutable_item ( ) , inventory_item - > item ) ;
}
if ( unit - > flags1 . bits . projectile )
{
for ( auto proj = world - > proj_list . next ; proj ! = NULL ; proj = proj - > next )
{
STRICT_VIRTUAL_CAST_VAR ( item , df : : proj_unitst , proj - > item ) ;
if ( item = = NULL )
continue ;
if ( item - > unit ! = unit )
continue ;
send_unit - > set_subpos_x ( item - > pos_x / 100000.0 ) ;
send_unit - > set_subpos_y ( item - > pos_y / 100000.0 ) ;
send_unit - > set_subpos_z ( item - > pos_z / 140000.0 ) ;
2018-08-03 11:48:02 -06:00
auto facing = send_unit - > mutable_facing ( ) ;
facing - > set_x ( item - > speed_x ) ;
facing - > set_y ( item - > speed_x ) ;
facing - > set_z ( item - > speed_x ) ;
break ;
}
}
else
{
2019-04-18 22:30:03 -06:00
for ( size_t i = 0 ; i < unit - > actions . size ( ) ; i + + )
2018-08-03 11:48:02 -06:00
{
auto action = unit - > actions [ i ] ;
switch ( action - > type )
{
case unit_action_type : : Move :
2019-03-17 17:05:12 -06:00
if ( unit - > path . path . x . size ( ) > 0 )
{
2020-03-30 01:00:41 -06:00
send_unit - > set_subpos_x ( lerp ( 0 , unit - > path . path . x [ 0 ] - unit - > pos . x , ( float ) ( action - > data . move . timer_init - action - > data . move . timer ) / action - > data . move . timer_init ) ) ;
send_unit - > set_subpos_y ( lerp ( 0 , unit - > path . path . y [ 0 ] - unit - > pos . y , ( float ) ( action - > data . move . timer_init - action - > data . move . timer ) / action - > data . move . timer_init ) ) ;
send_unit - > set_subpos_z ( lerp ( 0 , unit - > path . path . z [ 0 ] - unit - > pos . z , ( float ) ( action - > data . move . timer_init - action - > data . move . timer ) / action - > data . move . timer_init ) ) ;
2019-03-17 17:05:12 -06:00
}
2018-08-03 11:48:02 -06:00
break ;
2019-05-04 13:35:28 -06:00
case unit_action_type : : Job :
{
auto facing = send_unit - > mutable_facing ( ) ;
2020-03-30 01:00:41 -06:00
facing - > set_x ( action - > data . job . x - unit - > pos . x ) ;
facing - > set_y ( action - > data . job . y - unit - > pos . y ) ;
facing - > set_z ( action - > data . job . z - unit - > pos . z ) ;
2019-05-04 13:35:28 -06:00
}
2018-08-03 11:48:02 -06:00
default :
break ;
}
}
if ( unit - > path . path . x . size ( ) > 0 )
{
auto facing = send_unit - > mutable_facing ( ) ;
facing - > set_x ( unit - > path . path . x [ 0 ] - unit - > pos . x ) ;
facing - > set_y ( unit - > path . path . y [ 0 ] - unit - > pos . y ) ;
facing - > set_z ( unit - > path . path . z [ 0 ] - unit - > pos . z ) ;
2017-12-20 04:41:01 -07:00
}
}
2019-04-18 20:49:18 -06:00
for ( size_t i = 0 ; i < unit - > body . wounds . size ( ) ; i + + )
{
GetWounds ( unit - > body . wounds [ i ] , send_unit - > add_wounds ( ) ) ;
}
2017-12-20 04:41:01 -07:00
}
return CR_OK ;
2014-12-12 08:34:23 -07:00
}
static command_result GetViewInfo ( color_ostream & stream , const EmptyMessage * in , ViewInfo * out )
{
2017-12-20 04:41:01 -07:00
int x , y , z , w , h , cx , cy , cz ;
Gui : : getWindowSize ( w , h ) ;
Gui : : getViewCoords ( x , y , z ) ;
Gui : : getCursorCoords ( cx , cy , cz ) ;
2016-04-25 11:08:47 -06:00
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
auto embark = Gui : : getViewscreenByType < df : : viewscreen_choose_start_sitest > ( 0 ) ;
if ( embark )
{
df : : embark_location location = embark - > location ;
df : : world_data * data = df : : global : : world - > world_data ;
if ( data & & data - > region_map )
{
z = data - > region_map [ location . region_pos . x ] [ location . region_pos . y ] . elevation ;
}
}
2017-06-29 13:30:31 -06:00
# endif
2016-04-25 11:08:47 -06:00
2019-05-12 16:05:02 -06:00
auto dims = Gui : : getDwarfmodeViewDims ( ) ;
x + = dims . map_x1 ;
y + = dims . map_y1 ;
w = dims . map_x2 - dims . map_x1 ;
h = dims . map_y2 - dims . map_y1 ;
2017-12-20 04:41:01 -07:00
out - > set_view_pos_x ( x ) ;
out - > set_view_pos_y ( y ) ;
out - > set_view_pos_z ( z ) ;
out - > set_view_size_x ( w ) ;
out - > set_view_size_y ( h ) ;
out - > set_cursor_pos_x ( cx ) ;
out - > set_cursor_pos_y ( cy ) ;
out - > set_cursor_pos_z ( cz ) ;
if ( gamemode & & * gamemode = = GameMode : : ADVENTURE )
out - > set_follow_unit_id ( world - > units . active [ 0 ] - > id ) ;
else
out - > set_follow_unit_id ( ui - > follow_unit ) ;
out - > set_follow_item_id ( ui - > follow_item ) ;
return CR_OK ;
2014-12-16 20:10:29 -07:00
}
static command_result GetMapInfo ( color_ostream & stream , const EmptyMessage * in , MapInfo * out )
{
2017-12-20 04:41:01 -07:00
if ( ! Maps : : IsValid ( ) )
return CR_FAILURE ;
uint32_t size_x , size_y , size_z ;
int32_t pos_x , pos_y , pos_z ;
Maps : : getSize ( size_x , size_y , size_z ) ;
Maps : : getPosition ( pos_x , pos_y , pos_z ) ;
out - > set_block_size_x ( size_x ) ;
out - > set_block_size_y ( size_y ) ;
out - > set_block_size_z ( size_z ) ;
out - > set_block_pos_x ( pos_x ) ;
out - > set_block_pos_y ( pos_y ) ;
out - > set_block_pos_z ( pos_z ) ;
out - > set_world_name ( DF2UTF ( Translation : : TranslateName ( & df : : global : : world - > world_data - > name , false ) ) ) ;
out - > set_world_name_english ( DF2UTF ( Translation : : TranslateName ( & df : : global : : world - > world_data - > name , true ) ) ) ;
out - > set_save_name ( df : : global : : world - > cur_savegame . save_dir ) ;
return CR_OK ;
2015-01-19 07:32:19 -07:00
}
2015-06-21 13:10:17 -06:00
2016-04-25 11:08:47 -06:00
DFCoord GetMapCenter ( )
{
2017-12-20 04:41:01 -07:00
DFCoord output ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
auto embark = Gui : : getViewscreenByType < df : : viewscreen_choose_start_sitest > ( 0 ) ;
if ( embark )
{
df : : embark_location location = embark - > location ;
output . x = ( location . region_pos . x * 16 ) + 8 ;
output . y = ( location . region_pos . y * 16 ) + 8 ;
output . z = 100 ;
df : : world_data * data = df : : global : : world - > world_data ;
if ( data & & data - > region_map )
{
output . z = data - > region_map [ location . region_pos . x ] [ location . region_pos . y ] . elevation ;
}
}
else
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
if ( Maps : : IsValid ( ) )
{
int x , y , z ;
Maps : : getPosition ( x , y , z ) ;
output = DFCoord ( x , y , z ) ;
}
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
else
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < df : : global : : world - > armies . all . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : army * thisArmy = df : : global : : world - > armies . all [ i ] ;
if ( thisArmy - > flags . is_set ( df : : enums : : army_flags : : player ) )
{
output . x = ( thisArmy - > pos . x / 3 ) - 1 ;
output . y = ( thisArmy - > pos . y / 3 ) - 1 ;
output . z = thisArmy - > pos . z ;
}
}
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
return output ;
2016-04-25 11:08:47 -06:00
}
2015-09-27 22:36:04 -06:00
static command_result GetWorldMapCenter ( color_ostream & stream , const EmptyMessage * in , WorldMap * out )
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : world - > world_data )
{
out - > set_world_width ( 0 ) ;
out - > set_world_height ( 0 ) ;
return CR_FAILURE ;
}
df : : world_data * data = df : : global : : world - > world_data ;
int width = data - > world_width ;
int height = data - > world_height ;
out - > set_world_width ( width ) ;
out - > set_world_height ( height ) ;
DFCoord pos = GetMapCenter ( ) ;
out - > set_center_x ( pos . x ) ;
out - > set_center_y ( pos . y ) ;
out - > set_center_z ( pos . z ) ;
out - > set_name ( Translation : : TranslateName ( & ( data - > name ) , false ) ) ;
out - > set_name_english ( Translation : : TranslateName ( & ( data - > name ) , true ) ) ;
out - > set_cur_year ( World : : ReadCurrentYear ( ) ) ;
out - > set_cur_year_tick ( World : : ReadCurrentTick ( ) ) ;
return CR_OK ;
2015-09-27 22:36:04 -06:00
}
2015-08-14 04:06:36 -06:00
static command_result GetWorldMap ( color_ostream & stream , const EmptyMessage * in , WorldMap * out )
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : world - > world_data )
{
out - > set_world_width ( 0 ) ;
out - > set_world_height ( 0 ) ;
return CR_FAILURE ;
}
df : : world_data * data = df : : global : : world - > world_data ;
if ( ! data - > region_map )
{
out - > set_world_width ( 0 ) ;
out - > set_world_height ( 0 ) ;
return CR_FAILURE ;
}
int width = data - > world_width ;
int height = data - > world_height ;
out - > set_world_width ( width ) ;
out - > set_world_height ( height ) ;
out - > set_name ( Translation : : TranslateName ( & ( data - > name ) , false ) ) ;
out - > set_name_english ( Translation : : TranslateName ( & ( data - > name ) , true ) ) ;
auto poles = data - > flip_latitude ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
switch ( poles )
{
case df : : world_data : : None :
out - > set_world_poles ( WorldPoles : : NO_POLES ) ;
break ;
case df : : world_data : : North :
out - > set_world_poles ( WorldPoles : : NORTH_POLE ) ;
break ;
case df : : world_data : : South :
out - > set_world_poles ( WorldPoles : : SOUTH_POLE ) ;
break ;
case df : : world_data : : Both :
out - > set_world_poles ( WorldPoles : : BOTH_POLES ) ;
break ;
default :
break ;
}
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
out - > set_world_poles ( WorldPoles : : NO_POLES ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
for ( int yy = 0 ; yy < height ; yy + + )
for ( int xx = 0 ; xx < width ; xx + + )
{
df : : region_map_entry * map_entry = & data - > region_map [ xx ] [ yy ] ;
df : : world_region * region = data - > regions [ map_entry - > region_id ] ;
out - > add_elevation ( map_entry - > elevation ) ;
out - > add_rainfall ( map_entry - > rainfall ) ;
out - > add_vegetation ( map_entry - > vegetation ) ;
out - > add_temperature ( map_entry - > temperature ) ;
out - > add_evilness ( map_entry - > evilness ) ;
out - > add_drainage ( map_entry - > drainage ) ;
out - > add_volcanism ( map_entry - > volcanism ) ;
out - > add_savagery ( map_entry - > savagery ) ;
out - > add_salinity ( map_entry - > salinity ) ;
auto clouds = out - > add_clouds ( ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
clouds - > set_cirrus ( map_entry - > clouds . bits . cirrus ) ;
clouds - > set_cumulus ( ( RemoteFortressReader : : CumulusType ) map_entry - > clouds . bits . cumulus ) ;
clouds - > set_fog ( ( RemoteFortressReader : : FogType ) map_entry - > clouds . bits . fog ) ;
clouds - > set_front ( ( RemoteFortressReader : : FrontType ) map_entry - > clouds . bits . front ) ;
clouds - > set_stratus ( ( RemoteFortressReader : : StratusType ) map_entry - > clouds . bits . stratus ) ;
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
clouds - > set_cirrus ( map_entry - > clouds . bits . striped ) ;
clouds - > set_cumulus ( ( RemoteFortressReader : : CumulusType ) map_entry - > clouds . bits . density ) ;
clouds - > set_fog ( ( RemoteFortressReader : : FogType ) map_entry - > clouds . bits . fog ) ;
clouds - > set_stratus ( ( RemoteFortressReader : : StratusType ) map_entry - > clouds . bits . darkness ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
if ( region - > type = = world_region_type : : Lake )
{
out - > add_water_elevation ( region - > lake_surface ) ;
}
else
out - > add_water_elevation ( 99 ) ;
2018-01-27 21:42:50 -07:00
}
2017-12-20 04:41:01 -07:00
DFCoord pos = GetMapCenter ( ) ;
out - > set_center_x ( pos . x ) ;
out - > set_center_y ( pos . y ) ;
out - > set_center_z ( pos . z ) ;
out - > set_cur_year ( World : : ReadCurrentYear ( ) ) ;
out - > set_cur_year_tick ( World : : ReadCurrentTick ( ) ) ;
return CR_OK ;
2015-08-14 14:23:39 -06:00
}
2015-08-16 08:58:52 -06:00
2016-07-28 09:22:14 -06:00
static void SetRegionTile ( RegionTile * out , df : : region_map_entry * e1 )
{
2017-12-20 04:41:01 -07:00
df : : world_region * region = df : : world_region : : find ( e1 - > region_id ) ;
df : : world_geo_biome * geoBiome = df : : world_geo_biome : : find ( e1 - > geo_index ) ;
out - > set_rainfall ( e1 - > rainfall ) ;
out - > set_vegetation ( e1 - > vegetation ) ;
out - > set_temperature ( e1 - > temperature ) ;
out - > set_evilness ( e1 - > evilness ) ;
out - > set_drainage ( e1 - > drainage ) ;
out - > set_volcanism ( e1 - > volcanism ) ;
out - > set_savagery ( e1 - > savagery ) ;
out - > set_salinity ( e1 - > salinity ) ;
if ( region - > type = = world_region_type : : Lake )
out - > set_water_elevation ( region - > lake_surface ) ;
else
out - > set_water_elevation ( 99 ) ;
int topLayer = 0 ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < geoBiome - > layers . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto layer = geoBiome - > layers [ i ] ;
if ( layer - > top_height = = 0 )
{
topLayer = layer - > mat_index ;
}
if ( layer - > type ! = geo_layer_type : : SOIL
& & layer - > type ! = geo_layer_type : : SOIL_OCEAN
& & layer - > type ! = geo_layer_type : : SOIL_SAND )
{
auto mat = out - > add_stone_materials ( ) ;
mat - > set_mat_index ( layer - > mat_index ) ;
mat - > set_mat_type ( 0 ) ;
}
}
auto surfaceMat = out - > mutable_surface_material ( ) ;
surfaceMat - > set_mat_index ( topLayer ) ;
surfaceMat - > set_mat_type ( 0 ) ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < region - > population . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto pop = region - > population [ i ] ;
if ( pop - > type = = world_population_type : : Grass )
{
auto plantMat = out - > add_plant_materials ( ) ;
plantMat - > set_mat_index ( pop - > plant ) ;
plantMat - > set_mat_type ( 419 ) ;
}
else if ( pop - > type = = world_population_type : : Tree )
{
auto plantMat = out - > add_tree_materials ( ) ;
plantMat - > set_mat_index ( pop - > plant ) ;
plantMat - > set_mat_type ( 419 ) ;
}
}
2017-06-23 04:32:30 -06:00
# if DF_VERSION_INT >= 43005
2017-12-20 04:41:01 -07:00
out - > set_snow ( e1 - > snowfall ) ;
2017-06-23 04:32:30 -06:00
# endif
2016-07-28 09:22:14 -06:00
}
static command_result GetWorldMapNew ( color_ostream & stream , const EmptyMessage * in , WorldMap * out )
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : world - > world_data )
{
out - > set_world_width ( 0 ) ;
out - > set_world_height ( 0 ) ;
return CR_FAILURE ;
}
df : : world_data * data = df : : global : : world - > world_data ;
if ( ! data - > region_map )
{
out - > set_world_width ( 0 ) ;
out - > set_world_height ( 0 ) ;
return CR_FAILURE ;
}
int width = data - > world_width ;
int height = data - > world_height ;
out - > set_world_width ( width ) ;
out - > set_world_height ( height ) ;
out - > set_name ( Translation : : TranslateName ( & ( data - > name ) , false ) ) ;
out - > set_name_english ( Translation : : TranslateName ( & ( data - > name ) , true ) ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
auto poles = data - > flip_latitude ;
switch ( poles )
{
case df : : world_data : : None :
out - > set_world_poles ( WorldPoles : : NO_POLES ) ;
break ;
case df : : world_data : : North :
out - > set_world_poles ( WorldPoles : : NORTH_POLE ) ;
break ;
case df : : world_data : : South :
out - > set_world_poles ( WorldPoles : : SOUTH_POLE ) ;
break ;
case df : : world_data : : Both :
out - > set_world_poles ( WorldPoles : : BOTH_POLES ) ;
break ;
default :
break ;
}
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
out - > set_world_poles ( WorldPoles : : NO_POLES ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
for ( int yy = 0 ; yy < height ; yy + + )
for ( int xx = 0 ; xx < width ; xx + + )
{
df : : region_map_entry * map_entry = & data - > region_map [ xx ] [ yy ] ;
2021-09-06 23:16:21 -06:00
// df::world_region * region = data->regions[map_entry->region_id];
2017-12-20 04:41:01 -07:00
auto regionTile = out - > add_region_tiles ( ) ;
regionTile - > set_elevation ( map_entry - > elevation ) ;
SetRegionTile ( regionTile , map_entry ) ;
auto clouds = out - > add_clouds ( ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
clouds - > set_cirrus ( map_entry - > clouds . bits . cirrus ) ;
clouds - > set_cumulus ( ( RemoteFortressReader : : CumulusType ) map_entry - > clouds . bits . cumulus ) ;
clouds - > set_fog ( ( RemoteFortressReader : : FogType ) map_entry - > clouds . bits . fog ) ;
clouds - > set_front ( ( RemoteFortressReader : : FrontType ) map_entry - > clouds . bits . front ) ;
clouds - > set_stratus ( ( RemoteFortressReader : : StratusType ) map_entry - > clouds . bits . stratus ) ;
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
clouds - > set_cirrus ( map_entry - > clouds . bits . striped ) ;
clouds - > set_cumulus ( ( RemoteFortressReader : : CumulusType ) map_entry - > clouds . bits . density ) ;
clouds - > set_fog ( ( RemoteFortressReader : : FogType ) map_entry - > clouds . bits . fog ) ;
clouds - > set_stratus ( ( RemoteFortressReader : : StratusType ) map_entry - > clouds . bits . darkness ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
}
DFCoord pos = GetMapCenter ( ) ;
out - > set_center_x ( pos . x ) ;
out - > set_center_y ( pos . y ) ;
out - > set_center_z ( pos . z ) ;
2016-08-26 12:18:32 -06:00
2017-12-20 04:41:01 -07:00
out - > set_cur_year ( World : : ReadCurrentYear ( ) ) ;
out - > set_cur_year_tick ( World : : ReadCurrentTick ( ) ) ;
return CR_OK ;
2016-07-28 09:22:14 -06:00
}
2016-05-27 20:58:17 -06:00
static void AddRegionTiles ( WorldMap * out , df : : region_map_entry * e1 , df : : world_data * worldData )
2015-08-16 08:58:52 -06:00
{
2017-12-20 04:41:01 -07:00
df : : world_region * region = worldData - > regions [ e1 - > region_id ] ;
out - > add_rainfall ( e1 - > rainfall ) ;
out - > add_vegetation ( e1 - > vegetation ) ;
out - > add_temperature ( e1 - > temperature ) ;
out - > add_evilness ( e1 - > evilness ) ;
out - > add_drainage ( e1 - > drainage ) ;
out - > add_volcanism ( e1 - > volcanism ) ;
out - > add_savagery ( e1 - > savagery ) ;
out - > add_salinity ( e1 - > salinity ) ;
if ( region - > type = = world_region_type : : Lake )
out - > add_water_elevation ( region - > lake_surface ) ;
else
out - > add_water_elevation ( 99 ) ;
2016-06-16 10:06:35 -06:00
}
2016-05-27 20:58:17 -06:00
2015-08-16 08:58:52 -06:00
2016-02-01 07:30:25 -07:00
static void AddRegionTiles ( WorldMap * out , df : : coord2d pos , df : : world_data * worldData )
2015-08-16 08:58:52 -06:00
{
2017-12-20 04:41:01 -07:00
if ( pos . x < 0 )
pos . x = 0 ;
if ( pos . y < 0 )
pos . y = 0 ;
if ( pos . x > = worldData - > world_width )
pos . x = worldData - > world_width - 1 ;
if ( pos . y > = worldData - > world_height )
pos . y = worldData - > world_height - 1 ;
AddRegionTiles ( out , & worldData - > region_map [ pos . x ] [ pos . y ] , worldData ) ;
2015-08-16 08:58:52 -06:00
}
2016-06-16 10:06:35 -06:00
static void AddRegionTiles ( RegionTile * out , df : : coord2d pos , df : : world_data * worldData )
{
2017-12-20 04:41:01 -07:00
if ( pos . x < 0 )
pos . x = 0 ;
if ( pos . y < 0 )
pos . y = 0 ;
if ( pos . x > = worldData - > world_width )
pos . x = worldData - > world_width - 1 ;
if ( pos . y > = worldData - > world_height )
pos . y = worldData - > world_height - 1 ;
SetRegionTile ( out , & worldData - > region_map [ pos . x ] [ pos . y ] ) ;
2016-06-16 10:06:35 -06:00
}
2016-02-01 07:30:25 -07:00
static df : : coord2d ShiftCoords ( df : : coord2d source , int direction )
2015-08-16 08:58:52 -06:00
{
2017-12-20 04:41:01 -07:00
switch ( direction )
{
case 1 :
return df : : coord2d ( source . x - 1 , source . y + 1 ) ;
case 2 :
return df : : coord2d ( source . x , source . y + 1 ) ;
case 3 :
return df : : coord2d ( source . x + 1 , source . y + 1 ) ;
case 4 :
return df : : coord2d ( source . x - 1 , source . y ) ;
case 5 :
return source ;
case 6 :
return df : : coord2d ( source . x + 1 , source . y ) ;
case 7 :
return df : : coord2d ( source . x - 1 , source . y - 1 ) ;
case 8 :
return df : : coord2d ( source . x , source . y - 1 ) ;
case 9 :
return df : : coord2d ( source . x + 1 , source . y - 1 ) ;
default :
return source ;
}
2015-08-16 08:58:52 -06:00
}
static void CopyLocalMap ( df : : world_data * worldData , df : : world_region_details * worldRegionDetails , WorldMap * out )
{
2017-12-20 04:41:01 -07:00
int pos_x = worldRegionDetails - > pos . x ;
int pos_y = worldRegionDetails - > pos . y ;
out - > set_map_x ( pos_x ) ;
out - > set_map_y ( pos_y ) ;
out - > set_world_width ( 17 ) ;
out - > set_world_height ( 17 ) ;
char name [ 256 ] ;
sprintf ( name , " Region %d, %d " , pos_x , pos_y ) ;
out - > set_name_english ( name ) ;
out - > set_name ( name ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
auto poles = worldData - > flip_latitude ;
switch ( poles )
{
case df : : world_data : : None :
out - > set_world_poles ( WorldPoles : : NO_POLES ) ;
break ;
case df : : world_data : : North :
out - > set_world_poles ( WorldPoles : : NORTH_POLE ) ;
break ;
case df : : world_data : : South :
out - > set_world_poles ( WorldPoles : : SOUTH_POLE ) ;
break ;
case df : : world_data : : Both :
out - > set_world_poles ( WorldPoles : : BOTH_POLES ) ;
break ;
default :
break ;
}
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
out - > set_world_poles ( WorldPoles : : NO_POLES ) ;
2017-06-29 13:30:31 -06:00
# endif
2015-08-16 08:58:52 -06:00
2017-12-20 04:41:01 -07:00
df : : world_region_details * south = NULL ;
df : : world_region_details * east = NULL ;
df : : world_region_details * southEast = NULL ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < worldData - > region_details . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto region = worldData - > region_details [ i ] ;
if ( region - > pos . x = = pos_x + 1 & & region - > pos . y = = pos_y + 1 )
southEast = region ;
else if ( region - > pos . x = = pos_x + 1 & & region - > pos . y = = pos_y )
east = region ;
else if ( region - > pos . x = = pos_x & & region - > pos . y = = pos_y + 1 )
south = region ;
}
for ( int yy = 0 ; yy < 17 ; yy + + )
for ( int xx = 0 ; xx < 17 ; xx + + )
{
//This is because the bottom row doesn't line up.
if ( xx = = 16 & & yy = = 16 & & southEast ! = NULL )
{
out - > add_elevation ( southEast - > elevation [ 0 ] [ 0 ] ) ;
AddRegionTiles ( out , ShiftCoords ( df : : coord2d ( pos_x + 1 , pos_y + 1 ) , ( southEast - > biome [ 0 ] [ 0 ] ) ) , worldData ) ;
}
else if ( xx = = 16 & & east ! = NULL )
{
out - > add_elevation ( east - > elevation [ 0 ] [ yy ] ) ;
AddRegionTiles ( out , ShiftCoords ( df : : coord2d ( pos_x + 1 , pos_y ) , ( east - > biome [ 0 ] [ yy ] ) ) , worldData ) ;
}
else if ( yy = = 16 & & south ! = NULL )
{
out - > add_elevation ( south - > elevation [ xx ] [ 0 ] ) ;
AddRegionTiles ( out , ShiftCoords ( df : : coord2d ( pos_x , pos_y + 1 ) , ( south - > biome [ xx ] [ 0 ] ) ) , worldData ) ;
}
else
{
out - > add_elevation ( worldRegionDetails - > elevation [ xx ] [ yy ] ) ;
AddRegionTiles ( out , ShiftCoords ( df : : coord2d ( pos_x , pos_y ) , ( worldRegionDetails - > biome [ xx ] [ yy ] ) ) , worldData ) ;
}
if ( xx = = 16 | | yy = = 16 )
{
out - > add_river_tiles ( ) ;
}
else
{
auto riverTile = out - > add_river_tiles ( ) ;
auto east = riverTile - > mutable_east ( ) ;
auto north = riverTile - > mutable_north ( ) ;
auto south = riverTile - > mutable_south ( ) ;
auto west = riverTile - > mutable_west ( ) ;
north - > set_active ( worldRegionDetails - > rivers_vertical . active [ xx ] [ yy ] ) ;
north - > set_elevation ( worldRegionDetails - > rivers_vertical . elevation [ xx ] [ yy ] ) ;
north - > set_min_pos ( worldRegionDetails - > rivers_vertical . x_min [ xx ] [ yy ] ) ;
north - > set_max_pos ( worldRegionDetails - > rivers_vertical . x_max [ xx ] [ yy ] ) ;
south - > set_active ( worldRegionDetails - > rivers_vertical . active [ xx ] [ yy + 1 ] ) ;
south - > set_elevation ( worldRegionDetails - > rivers_vertical . elevation [ xx ] [ yy + 1 ] ) ;
south - > set_min_pos ( worldRegionDetails - > rivers_vertical . x_min [ xx ] [ yy + 1 ] ) ;
south - > set_max_pos ( worldRegionDetails - > rivers_vertical . x_max [ xx ] [ yy + 1 ] ) ;
west - > set_active ( worldRegionDetails - > rivers_horizontal . active [ xx ] [ yy ] ) ;
west - > set_elevation ( worldRegionDetails - > rivers_horizontal . elevation [ xx ] [ yy ] ) ;
west - > set_min_pos ( worldRegionDetails - > rivers_horizontal . y_min [ xx ] [ yy ] ) ;
west - > set_max_pos ( worldRegionDetails - > rivers_horizontal . y_max [ xx ] [ yy ] ) ;
east - > set_active ( worldRegionDetails - > rivers_horizontal . active [ xx + 1 ] [ yy ] ) ;
east - > set_elevation ( worldRegionDetails - > rivers_horizontal . elevation [ xx + 1 ] [ yy ] ) ;
east - > set_min_pos ( worldRegionDetails - > rivers_horizontal . y_min [ xx + 1 ] [ yy ] ) ;
east - > set_max_pos ( worldRegionDetails - > rivers_horizontal . y_max [ xx + 1 ] [ yy ] ) ;
}
}
2015-08-16 08:58:52 -06:00
}
2016-06-16 10:06:35 -06:00
static void CopyLocalMap ( df : : world_data * worldData , df : : world_region_details * worldRegionDetails , RegionMap * out )
{
2017-12-20 04:41:01 -07:00
int pos_x = worldRegionDetails - > pos . x ;
int pos_y = worldRegionDetails - > pos . y ;
out - > set_map_x ( pos_x ) ;
out - > set_map_y ( pos_y ) ;
char name [ 256 ] ;
sprintf ( name , " Region %d, %d " , pos_x , pos_y ) ;
out - > set_name_english ( name ) ;
out - > set_name ( name ) ;
df : : world_region_details * south = NULL ;
df : : world_region_details * east = NULL ;
df : : world_region_details * southEast = NULL ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < worldData - > region_details . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto region = worldData - > region_details [ i ] ;
if ( region - > pos . x = = pos_x + 1 & & region - > pos . y = = pos_y + 1 )
southEast = region ;
else if ( region - > pos . x = = pos_x + 1 & & region - > pos . y = = pos_y )
east = region ;
else if ( region - > pos . x = = pos_x & & region - > pos . y = = pos_y + 1 )
south = region ;
}
RegionTile * outputTiles [ 17 ] [ 17 ] ;
for ( int yy = 0 ; yy < 17 ; yy + + )
for ( int xx = 0 ; xx < 17 ; xx + + )
{
auto tile = out - > add_tiles ( ) ;
outputTiles [ xx ] [ yy ] = tile ;
//This is because the bottom row doesn't line up.
if ( xx = = 16 & & yy = = 16 & & southEast ! = NULL )
{
tile - > set_elevation ( southEast - > elevation [ 0 ] [ 0 ] ) ;
AddRegionTiles ( tile , ShiftCoords ( df : : coord2d ( pos_x + 1 , pos_y + 1 ) , ( southEast - > biome [ 0 ] [ 0 ] ) ) , worldData ) ;
}
else if ( xx = = 16 & & east ! = NULL )
{
tile - > set_elevation ( east - > elevation [ 0 ] [ yy ] ) ;
AddRegionTiles ( tile , ShiftCoords ( df : : coord2d ( pos_x + 1 , pos_y ) , ( east - > biome [ 0 ] [ yy ] ) ) , worldData ) ;
}
else if ( yy = = 16 & & south ! = NULL )
{
tile - > set_elevation ( south - > elevation [ xx ] [ 0 ] ) ;
AddRegionTiles ( tile , ShiftCoords ( df : : coord2d ( pos_x , pos_y + 1 ) , ( south - > biome [ xx ] [ 0 ] ) ) , worldData ) ;
}
else
{
tile - > set_elevation ( worldRegionDetails - > elevation [ xx ] [ yy ] ) ;
AddRegionTiles ( tile , ShiftCoords ( df : : coord2d ( pos_x , pos_y ) , ( worldRegionDetails - > biome [ xx ] [ yy ] ) ) , worldData ) ;
}
auto riverTile = tile - > mutable_river_tiles ( ) ;
auto east = riverTile - > mutable_east ( ) ;
auto north = riverTile - > mutable_north ( ) ;
auto south = riverTile - > mutable_south ( ) ;
auto west = riverTile - > mutable_west ( ) ;
if ( xx < 16 )
{
north - > set_active ( worldRegionDetails - > rivers_vertical . active [ xx ] [ yy ] ) ;
north - > set_elevation ( worldRegionDetails - > rivers_vertical . elevation [ xx ] [ yy ] ) ;
north - > set_min_pos ( worldRegionDetails - > rivers_vertical . x_min [ xx ] [ yy ] ) ;
north - > set_max_pos ( worldRegionDetails - > rivers_vertical . x_max [ xx ] [ yy ] ) ;
}
else
{
north - > set_active ( 0 ) ;
north - > set_elevation ( 100 ) ;
north - > set_min_pos ( - 30000 ) ;
north - > set_max_pos ( - 30000 ) ;
}
if ( yy < 16 & & xx < 16 )
{
south - > set_active ( worldRegionDetails - > rivers_vertical . active [ xx ] [ yy + 1 ] ) ;
south - > set_elevation ( worldRegionDetails - > rivers_vertical . elevation [ xx ] [ yy + 1 ] ) ;
south - > set_min_pos ( worldRegionDetails - > rivers_vertical . x_min [ xx ] [ yy + 1 ] ) ;
south - > set_max_pos ( worldRegionDetails - > rivers_vertical . x_max [ xx ] [ yy + 1 ] ) ;
}
else
{
south - > set_active ( 0 ) ;
south - > set_elevation ( 100 ) ;
south - > set_min_pos ( - 30000 ) ;
south - > set_max_pos ( - 30000 ) ;
}
if ( yy < 16 )
{
west - > set_active ( worldRegionDetails - > rivers_horizontal . active [ xx ] [ yy ] ) ;
west - > set_elevation ( worldRegionDetails - > rivers_horizontal . elevation [ xx ] [ yy ] ) ;
west - > set_min_pos ( worldRegionDetails - > rivers_horizontal . y_min [ xx ] [ yy ] ) ;
west - > set_max_pos ( worldRegionDetails - > rivers_horizontal . y_max [ xx ] [ yy ] ) ;
}
else
{
west - > set_active ( 0 ) ;
west - > set_elevation ( 100 ) ;
west - > set_min_pos ( - 30000 ) ;
west - > set_max_pos ( - 30000 ) ;
}
if ( xx < 16 & & yy < 16 )
{
east - > set_active ( worldRegionDetails - > rivers_horizontal . active [ xx + 1 ] [ yy ] ) ;
east - > set_elevation ( worldRegionDetails - > rivers_horizontal . elevation [ xx + 1 ] [ yy ] ) ;
east - > set_min_pos ( worldRegionDetails - > rivers_horizontal . y_min [ xx + 1 ] [ yy ] ) ;
east - > set_max_pos ( worldRegionDetails - > rivers_horizontal . y_max [ xx + 1 ] [ yy ] ) ;
}
else
{
east - > set_active ( 0 ) ;
east - > set_elevation ( 100 ) ;
east - > set_min_pos ( - 30000 ) ;
east - > set_max_pos ( - 30000 ) ;
}
}
auto regionMap = worldData - > region_map [ pos_x ] [ pos_y ] ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < worldData - > sites . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : world_site * site = worldData - > sites [ i ] ;
if ( ! site )
continue ;
int region_min_x = pos_x * 16 ;
int region_min_y = pos_y * 16 ;
2018-01-11 23:20:40 -07:00
if ( ( site - > global_min_x > ( region_min_x + 16 ) ) | |
2017-12-20 04:41:01 -07:00
( site - > global_min_y > ( region_min_y + 16 ) ) | |
( site - > global_max_x < ( region_min_x ) ) | |
( site - > global_max_y < ( region_min_y ) ) )
continue ;
if ( site - > realization = = NULL )
continue ;
auto realization = site - > realization ;
for ( int site_x = 0 ; site_x < 17 ; site_x + + )
for ( int site_y = 0 ; site_y < 17 ; site_y + + )
{
int region_x = site - > global_min_x - region_min_x + site_x ;
int region_y = site - > global_min_y - region_min_y + site_y ;
if ( region_x < 0 | | region_y < 0 | | region_x > = 16 | | region_y > = 16 )
continue ;
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < realization - > building_map [ site_x ] [ site_y ] . buildings . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
auto in_building = realization - > building_map [ site_x ] [ site_y ] . buildings [ j ] ;
auto out_building = outputTiles [ region_x ] [ region_y ] - > add_buildings ( ) ;
out_building - > set_id ( in_building - > id ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2020-05-02 14:28:28 -06:00
out_building - > set_type ( in_building - > type ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
out_building - > set_min_x ( in_building - > min_x - ( site_x * 48 ) ) ;
out_building - > set_min_y ( in_building - > min_y - ( site_y * 48 ) ) ;
out_building - > set_max_x ( in_building - > max_x - ( site_x * 48 ) ) ;
out_building - > set_max_y ( in_building - > max_y - ( site_y * 48 ) ) ;
2016-08-26 12:18:32 -06:00
2017-12-20 04:41:01 -07:00
CopyMat ( out_building - > mutable_material ( ) , in_building - > item . mat_type , in_building - > item . mat_index ) ;
2016-08-26 12:18:32 -06:00
2017-06-23 04:32:30 -06:00
# if DF_VERSION_INT >= 43005
2017-12-20 04:41:01 -07:00
STRICT_VIRTUAL_CAST_VAR ( tower_info , df : : site_realization_building_info_castle_towerst , in_building - > building_info ) ;
if ( tower_info )
{
CopyMat ( out_building - > mutable_material ( ) , tower_info - > wall_item . mat_type , tower_info - > wall_item . mat_index ) ;
auto out_tower = out_building - > mutable_tower_info ( ) ;
out_tower - > set_roof_z ( tower_info - > roof_z ) ;
out_tower - > set_round ( tower_info - > shape . bits . round ) ;
out_tower - > set_goblin ( tower_info - > shape . bits . goblin ) ;
}
STRICT_VIRTUAL_CAST_VAR ( wall_info , df : : site_realization_building_info_castle_wallst , in_building - > building_info ) ;
if ( wall_info )
{
CopyMat ( out_building - > mutable_material ( ) , wall_info - > wall_item . mat_type , wall_info - > wall_item . mat_index ) ;
auto out_wall = out_building - > mutable_wall_info ( ) ;
out_wall - > set_start_x ( wall_info - > start_x - ( site_x * 48 ) ) ;
out_wall - > set_start_y ( wall_info - > start_y - ( site_y * 48 ) ) ;
out_wall - > set_start_z ( wall_info - > start_z ) ;
out_wall - > set_end_x ( wall_info - > end_x - ( site_x * 48 ) ) ;
out_wall - > set_end_y ( wall_info - > end_y - ( site_y * 48 ) ) ;
out_wall - > set_end_z ( wall_info - > end_z ) ;
}
2017-06-23 04:32:30 -06:00
# endif
2017-12-20 04:41:01 -07:00
}
2016-09-04 14:06:26 -06:00
2017-12-20 04:41:01 -07:00
}
}
2016-06-16 10:06:35 -06:00
}
2016-02-01 07:30:25 -07:00
2015-08-16 08:58:52 -06:00
static command_result GetRegionMaps ( color_ostream & stream , const EmptyMessage * in , RegionMaps * out )
2016-06-16 10:06:35 -06:00
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : world - > world_data )
{
return CR_FAILURE ;
}
df : : world_data * data = df : : global : : world - > world_data ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < data - > region_details . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : world_region_details * region = data - > region_details [ i ] ;
if ( ! region )
continue ;
WorldMap * regionMap = out - > add_world_maps ( ) ;
CopyLocalMap ( data , region , regionMap ) ;
}
return CR_OK ;
2016-06-16 10:06:35 -06:00
}
static command_result GetRegionMapsNew ( color_ostream & stream , const EmptyMessage * in , RegionMaps * out )
2015-08-16 08:58:52 -06:00
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : world - > world_data )
{
return CR_FAILURE ;
}
df : : world_data * data = df : : global : : world - > world_data ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < data - > region_details . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : world_region_details * region = data - > region_details [ i ] ;
if ( ! region )
continue ;
RegionMap * regionMap = out - > add_region_maps ( ) ;
CopyLocalMap ( data , region , regionMap ) ;
}
return CR_OK ;
2015-08-17 06:17:56 -06:00
}
2015-09-02 12:43:48 -06:00
static command_result GetCreatureRaws ( color_ostream & stream , const EmptyMessage * in , CreatureRawList * out )
2017-06-23 08:24:22 -06:00
{
2017-12-20 04:41:01 -07:00
return GetPartialCreatureRaws ( stream , NULL , out ) ;
2017-06-23 08:24:22 -06:00
}
static command_result GetPartialCreatureRaws ( color_ostream & stream , const ListRequest * in , CreatureRawList * out )
2015-09-02 12:43:48 -06:00
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : world )
return CR_FAILURE ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
df : : world * world = df : : global : : world ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
int list_start = 0 ;
int list_end = world - > raws . creatures . all . size ( ) ;
2017-06-23 08:24:22 -06:00
2017-12-20 04:41:01 -07:00
if ( in ! = nullptr )
{
list_start = in - > list_start ( ) ;
if ( in - > list_end ( ) < list_end )
list_end = in - > list_end ( ) ;
}
2017-06-23 08:24:22 -06:00
2017-12-20 04:41:01 -07:00
for ( int i = list_start ; i < list_end ; i + + )
{
df : : creature_raw * orig_creature = world - > raws . creatures . all [ i ] ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
auto send_creature = out - > add_creature_raws ( ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_creature - > set_index ( i ) ;
send_creature - > set_creature_id ( orig_creature - > creature_id ) ;
send_creature - > add_name ( orig_creature - > name [ 0 ] ) ;
send_creature - > add_name ( orig_creature - > name [ 1 ] ) ;
send_creature - > add_name ( orig_creature - > name [ 2 ] ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_creature - > add_general_baby_name ( orig_creature - > general_baby_name [ 0 ] ) ;
send_creature - > add_general_baby_name ( orig_creature - > general_baby_name [ 1 ] ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_creature - > add_general_child_name ( orig_creature - > general_child_name [ 0 ] ) ;
send_creature - > add_general_child_name ( orig_creature - > general_child_name [ 1 ] ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_creature - > set_creature_tile ( orig_creature - > creature_tile ) ;
send_creature - > set_creature_soldier_tile ( orig_creature - > creature_soldier_tile ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
ConvertDfColor ( orig_creature - > color , send_creature - > mutable_color ( ) ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_creature - > set_adultsize ( orig_creature - > adultsize ) ;
2015-09-02 12:43:48 -06:00
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < orig_creature - > caste . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
auto orig_caste = orig_creature - > caste [ j ] ;
if ( ! orig_caste )
continue ;
auto send_caste = send_creature - > add_caste ( ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_caste - > set_index ( j ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_caste - > set_caste_id ( orig_caste - > caste_id ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_caste - > add_caste_name ( orig_caste - > caste_name [ 0 ] ) ;
send_caste - > add_caste_name ( orig_caste - > caste_name [ 1 ] ) ;
send_caste - > add_caste_name ( orig_caste - > caste_name [ 2 ] ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_caste - > add_baby_name ( orig_caste - > baby_name [ 0 ] ) ;
send_caste - > add_baby_name ( orig_caste - > baby_name [ 1 ] ) ;
2015-09-02 12:43:48 -06:00
2017-12-20 04:41:01 -07:00
send_caste - > add_child_name ( orig_caste - > child_name [ 0 ] ) ;
send_caste - > add_child_name ( orig_caste - > child_name [ 1 ] ) ;
2020-06-29 19:20:37 -06:00
send_caste - > set_gender ( orig_caste - > sex ) ;
2016-06-20 01:51:11 -06:00
2018-04-06 13:17:34 -06:00
for ( size_t partIndex = 0 ; partIndex < orig_caste - > body_info . body_parts . size ( ) ; partIndex + + )
2017-12-20 04:41:01 -07:00
{
auto orig_part = orig_caste - > body_info . body_parts [ partIndex ] ;
if ( ! orig_part )
continue ;
auto send_part = send_caste - > add_body_parts ( ) ;
2016-09-04 14:06:26 -06:00
2017-12-20 04:41:01 -07:00
send_part - > set_token ( orig_part - > token ) ;
send_part - > set_category ( orig_part - > category ) ;
send_part - > set_parent ( orig_part - > con_part_id ) ;
2016-06-20 01:51:11 -06:00
2017-12-20 04:41:01 -07:00
for ( int partFlagIndex = 0 ; partFlagIndex < = ENUM_LAST_ITEM ( body_part_raw_flags ) ; partFlagIndex + + )
{
send_part - > add_flags ( orig_part - > flags . is_set ( ( body_part_raw_flags : : body_part_raw_flags ) partFlagIndex ) ) ;
}
2016-06-20 01:51:11 -06:00
2018-04-06 13:17:34 -06:00
for ( size_t layerIndex = 0 ; layerIndex < orig_part - > layers . size ( ) ; layerIndex + + )
2017-12-20 04:41:01 -07:00
{
auto orig_layer = orig_part - > layers [ layerIndex ] ;
if ( ! orig_layer )
continue ;
auto send_layer = send_part - > add_layers ( ) ;
2016-06-20 01:51:11 -06:00
2017-12-20 04:41:01 -07:00
send_layer - > set_layer_name ( orig_layer - > layer_name ) ;
send_layer - > set_tissue_id ( orig_layer - > tissue_id ) ;
send_layer - > set_layer_depth ( orig_layer - > layer_depth ) ;
2018-04-06 13:17:34 -06:00
for ( size_t layerModIndex = 0 ; layerModIndex < orig_layer - > bp_modifiers . size ( ) ; layerModIndex + + )
2017-12-20 04:41:01 -07:00
{
send_layer - > add_bp_modifiers ( orig_layer - > bp_modifiers [ layerModIndex ] ) ;
}
}
2016-06-20 01:51:11 -06:00
2017-12-20 04:41:01 -07:00
send_part - > set_relsize ( orig_part - > relsize ) ;
}
2016-06-20 01:51:11 -06:00
2017-12-20 04:41:01 -07:00
send_caste - > set_total_relsize ( orig_caste - > body_info . total_relsize ) ;
2016-06-20 11:29:59 -06:00
2018-04-06 13:17:34 -06:00
for ( size_t k = 0 ; k < orig_caste - > bp_appearance . modifiers . size ( ) ; k + + )
2017-12-20 04:41:01 -07:00
{
auto send_mod = send_caste - > add_modifiers ( ) ;
auto orig_mod = orig_caste - > bp_appearance . modifiers [ k ] ;
send_mod - > set_type ( ENUM_KEY_STR ( appearance_modifier_type , orig_mod - > type ) ) ;
2016-06-21 11:12:47 -06:00
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
if ( orig_mod - > growth_rate > 0 )
{
send_mod - > set_mod_min ( orig_mod - > growth_min ) ;
send_mod - > set_mod_max ( orig_mod - > growth_max ) ;
}
else
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
{
send_mod - > set_mod_min ( orig_mod - > ranges [ 0 ] ) ;
send_mod - > set_mod_max ( orig_mod - > ranges [ 6 ] ) ;
}
}
2018-04-06 13:17:34 -06:00
for ( size_t k = 0 ; k < orig_caste - > bp_appearance . modifier_idx . size ( ) ; k + + )
2017-12-20 04:41:01 -07:00
{
send_caste - > add_modifier_idx ( orig_caste - > bp_appearance . modifier_idx [ k ] ) ;
send_caste - > add_part_idx ( orig_caste - > bp_appearance . part_idx [ k ] ) ;
send_caste - > add_layer_idx ( orig_caste - > bp_appearance . layer_idx [ k ] ) ;
}
2018-04-06 13:17:34 -06:00
for ( size_t k = 0 ; k < orig_caste - > body_appearance_modifiers . size ( ) ; k + + )
2017-12-20 04:41:01 -07:00
{
auto send_mod = send_caste - > add_body_appearance_modifiers ( ) ;
auto orig_mod = orig_caste - > body_appearance_modifiers [ k ] ;
send_mod - > set_type ( ENUM_KEY_STR ( appearance_modifier_type , orig_mod - > type ) ) ;
2016-06-21 11:12:47 -06:00
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
if ( orig_mod - > growth_rate > 0 )
{
send_mod - > set_mod_min ( orig_mod - > growth_min ) ;
send_mod - > set_mod_max ( orig_mod - > growth_max ) ;
}
else
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
{
send_mod - > set_mod_min ( orig_mod - > ranges [ 0 ] ) ;
send_mod - > set_mod_max ( orig_mod - > ranges [ 6 ] ) ;
}
}
2018-04-06 13:17:34 -06:00
for ( size_t k = 0 ; k < orig_caste - > color_modifiers . size ( ) ; k + + )
2017-12-20 04:41:01 -07:00
{
auto send_mod = send_caste - > add_color_modifiers ( ) ;
auto orig_mod = orig_caste - > color_modifiers [ k ] ;
2018-04-06 13:17:34 -06:00
for ( size_t l = 0 ; l < orig_mod - > pattern_index . size ( ) ; l + + )
2017-12-20 04:41:01 -07:00
{
2018-03-10 14:53:45 -07:00
auto orig_pattern = world - > raws . descriptors . patterns [ orig_mod - > pattern_index [ l ] ] ;
2017-12-20 04:41:01 -07:00
auto send_pattern = send_mod - > add_patterns ( ) ;
2018-04-06 13:17:34 -06:00
for ( size_t m = 0 ; m < orig_pattern - > colors . size ( ) ; m + + )
2017-12-20 04:41:01 -07:00
{
auto send_color = send_pattern - > add_colors ( ) ;
2018-03-10 14:53:45 -07:00
auto orig_color = world - > raws . descriptors . colors [ orig_pattern - > colors [ m ] ] ;
2017-12-20 04:41:01 -07:00
send_color - > set_red ( orig_color - > red * 255.0 ) ;
send_color - > set_green ( orig_color - > green * 255.0 ) ;
send_color - > set_blue ( orig_color - > blue * 255.0 ) ;
}
send_pattern - > set_id ( orig_pattern - > id ) ;
send_pattern - > set_pattern ( ( PatternType ) orig_pattern - > pattern ) ;
}
2018-04-06 13:17:34 -06:00
for ( size_t l = 0 ; l < orig_mod - > body_part_id . size ( ) ; l + + )
2017-12-20 04:41:01 -07:00
{
send_mod - > add_body_part_id ( orig_mod - > body_part_id [ l ] ) ;
send_mod - > add_tissue_layer_id ( orig_mod - > tissue_layer_id [ l ] ) ;
send_mod - > set_start_date ( orig_mod - > start_date ) ;
send_mod - > set_end_date ( orig_mod - > end_date ) ;
send_mod - > set_part ( orig_mod - > part ) ;
}
}
send_caste - > set_description ( orig_caste - > description ) ;
send_caste - > set_adult_size ( orig_caste - > misc . adult_size ) ;
}
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < orig_creature - > tissue . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
auto orig_tissue = orig_creature - > tissue [ j ] ;
auto send_tissue = send_creature - > add_tissues ( ) ;
send_tissue - > set_id ( orig_tissue - > id ) ;
send_tissue - > set_name ( orig_tissue - > tissue_name_singular ) ;
send_tissue - > set_subordinate_to_tissue ( orig_tissue - > subordinate_to_tissue ) ;
CopyMat ( send_tissue - > mutable_material ( ) , orig_tissue - > mat_type , orig_tissue - > mat_index ) ;
}
2018-12-25 23:14:38 -07:00
FOR_ENUM_ITEMS ( creature_raw_flags , flag )
2018-07-28 07:09:45 -06:00
{
2018-12-25 23:14:38 -07:00
send_creature - > add_flags ( orig_creature - > flags . is_set ( flag ) ) ;
2018-07-28 07:09:45 -06:00
}
2017-12-20 04:41:01 -07:00
}
return CR_OK ;
2015-10-10 11:06:14 -06:00
}
2016-01-27 11:36:10 -07:00
static command_result GetPlantRaws ( color_ostream & stream , const EmptyMessage * in , PlantRawList * out )
2017-06-23 23:22:09 -06:00
{
2017-12-20 04:41:01 -07:00
GetPartialPlantRaws ( stream , nullptr , out ) ;
return CR_OK ;
2017-06-23 23:22:09 -06:00
}
static command_result GetPartialPlantRaws ( color_ostream & stream , const ListRequest * in , PlantRawList * out )
2016-01-27 11:36:10 -07:00
{
2017-12-20 04:41:01 -07:00
if ( ! df : : global : : world )
return CR_FAILURE ;
df : : world * world = df : : global : : world ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > raws . plants . all . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
df : : plant_raw * plant_local = world - > raws . plants . all [ i ] ;
PlantRaw * plant_remote = out - > add_plant_raws ( ) ;
plant_remote - > set_index ( i ) ;
plant_remote - > set_id ( plant_local - > id ) ;
plant_remote - > set_name ( plant_local - > name ) ;
if ( ! plant_local - > flags . is_set ( df : : plant_raw_flags : : TREE ) )
plant_remote - > set_tile ( plant_local - > tiles . shrub_tile ) ;
else
plant_remote - > set_tile ( plant_local - > tiles . tree_tile ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2018-04-06 13:17:34 -06:00
for ( size_t j = 0 ; j < plant_local - > growths . size ( ) ; j + + )
2017-12-20 04:41:01 -07:00
{
df : : plant_growth * growth_local = plant_local - > growths [ j ] ;
TreeGrowth * growth_remote = plant_remote - > add_growths ( ) ;
growth_remote - > set_index ( j ) ;
growth_remote - > set_id ( growth_local - > id ) ;
growth_remote - > set_name ( growth_local - > name ) ;
2018-04-06 13:17:34 -06:00
for ( size_t k = 0 ; k < growth_local - > prints . size ( ) ; k + + )
2017-12-20 04:41:01 -07:00
{
df : : plant_growth_print * print_local = growth_local - > prints [ k ] ;
GrowthPrint * print_remote = growth_remote - > add_prints ( ) ;
print_remote - > set_priority ( print_local - > priority ) ;
print_remote - > set_color ( print_local - > color [ 0 ] | ( print_local - > color [ 2 ] * 8 ) ) ;
print_remote - > set_timing_start ( print_local - > timing_start ) ;
print_remote - > set_timing_end ( print_local - > timing_end ) ;
print_remote - > set_tile ( print_local - > tile_growth ) ;
}
growth_remote - > set_timing_start ( growth_local - > timing_1 ) ;
growth_remote - > set_timing_end ( growth_local - > timing_2 ) ;
growth_remote - > set_twigs ( growth_local - > locations . bits . twigs ) ;
growth_remote - > set_light_branches ( growth_local - > locations . bits . light_branches ) ;
growth_remote - > set_heavy_branches ( growth_local - > locations . bits . heavy_branches ) ;
growth_remote - > set_trunk ( growth_local - > locations . bits . trunk ) ;
growth_remote - > set_roots ( growth_local - > locations . bits . roots ) ;
growth_remote - > set_cap ( growth_local - > locations . bits . cap ) ;
growth_remote - > set_sapling ( growth_local - > locations . bits . sapling ) ;
growth_remote - > set_timing_start ( growth_local - > timing_1 ) ;
growth_remote - > set_timing_end ( growth_local - > timing_2 ) ;
growth_remote - > set_trunk_height_start ( growth_local - > trunk_height_perc_1 ) ;
growth_remote - > set_trunk_height_end ( growth_local - > trunk_height_perc_2 ) ;
CopyMat ( growth_remote - > mutable_mat ( ) , growth_local - > mat_type , growth_local - > mat_index ) ;
}
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
}
return CR_OK ;
2016-01-27 11:36:10 -07:00
}
2016-03-20 04:57:05 -06:00
static command_result CopyScreen ( color_ostream & stream , const EmptyMessage * in , ScreenCapture * out )
{
2017-12-20 04:41:01 -07:00
df : : graphic * gps = df : : global : : gps ;
out - > set_width ( gps - > dimx ) ;
out - > set_height ( gps - > dimy ) ;
for ( int i = 0 ; i < ( gps - > dimx * gps - > dimy ) ; i + + )
{
int index = i * 4 ;
auto tile = out - > add_tiles ( ) ;
tile - > set_character ( gps - > screen [ index ] ) ;
tile - > set_foreground ( gps - > screen [ index + 1 ] | ( gps - > screen [ index + 3 ] * 8 ) ) ;
tile - > set_background ( gps - > screen [ index + 2 ] ) ;
}
return CR_OK ;
2016-03-20 04:57:05 -06:00
}
2016-03-21 11:26:48 -06:00
static command_result PassKeyboardEvent ( color_ostream & stream , const KeyboardEvent * in )
{
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT > 34011
2017-12-20 04:41:01 -07:00
SDL : : Event e ;
e . key . type = in - > type ( ) ;
e . key . state = in - > state ( ) ;
e . key . ksym . mod = ( SDL : : Mod ) in - > mod ( ) ;
e . key . ksym . scancode = in - > scancode ( ) ;
e . key . ksym . sym = ( SDL : : Key ) in - > sym ( ) ;
e . key . ksym . unicode = in - > unicode ( ) ;
SDL_PushEvent ( & e ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
return CR_OK ;
2016-03-21 11:26:48 -06:00
}
2016-10-19 10:51:50 -06:00
2016-11-08 01:10:08 -07:00
static command_result GetPauseState ( color_ostream & stream , const EmptyMessage * in , SingleBool * out )
{
2017-12-20 04:41:01 -07:00
out - > set_value ( World : : ReadPauseState ( ) ) ;
return CR_OK ;
2017-03-29 10:28:12 -06:00
}
2019-03-22 21:52:59 -06:00
static command_result GetGameValidity ( color_ostream & stream , const EmptyMessage * in , SingleBool * out )
{
auto viewScreen = Gui : : getCurViewscreen ( ) ;
if ( strict_virtual_cast < df : : viewscreen_loadgamest > ( viewScreen ) )
{
out - > set_value ( false ) ;
return CR_OK ;
}
else if ( strict_virtual_cast < df : : viewscreen_savegamest > ( viewScreen ) )
{
out - > set_value ( false ) ;
return CR_OK ;
}
out - > set_value ( true ) ;
return CR_OK ;
}
2017-12-17 05:35:38 -07:00
static command_result GetVersionInfo ( color_ostream & stream , const EmptyMessage * in , RemoteFortressReader : : VersionInfo * out )
2017-03-29 10:28:12 -06:00
{
2017-12-20 04:41:01 -07:00
out - > set_dfhack_version ( DFHACK_VERSION ) ;
2017-06-29 13:30:31 -06:00
# if DF_VERSION_INT == 34011
2017-12-20 04:41:01 -07:00
out - > set_dwarf_fortress_version ( " 0.34.11 " ) ;
2017-06-29 13:30:31 -06:00
# else
2017-12-20 04:41:01 -07:00
out - > set_dwarf_fortress_version ( DF_VERSION ) ;
2017-06-29 13:30:31 -06:00
# endif
2017-12-20 04:41:01 -07:00
out - > set_remote_fortress_reader_version ( RFR_VERSION ) ;
return CR_OK ;
2017-03-29 10:28:12 -06:00
}
2017-12-17 05:35:38 -07:00
2017-12-20 04:41:01 -07:00
int lastSentReportID = - 1 ;
2017-12-17 05:35:38 -07:00
static command_result GetReports ( color_ostream & stream , const EmptyMessage * in , RemoteFortressReader : : Status * out )
{
2017-12-20 04:41:01 -07:00
//First find the last report we sent, so it doesn't get resent.
int lastSentIndex = - 1 ;
for ( int i = world - > status . reports . size ( ) - 1 ; i > = 0 ; i - - )
{
auto local_rep = world - > status . reports [ i ] ;
if ( local_rep - > id < = lastSentReportID )
{
lastSentIndex = i ;
break ;
}
}
2018-04-06 13:17:34 -06:00
for ( size_t i = lastSentIndex + 1 ; i < world - > status . reports . size ( ) ; i + + )
2017-12-20 04:41:01 -07:00
{
auto local_rep = world - > status . reports [ i ] ;
if ( ! local_rep )
continue ;
auto send_rep = out - > add_reports ( ) ;
send_rep - > set_type ( local_rep - > type ) ;
send_rep - > set_text ( DF2UTF ( local_rep - > text ) ) ;
ConvertDfColor ( local_rep - > color | ( local_rep - > bright ? 8 : 0 ) , send_rep - > mutable_color ( ) ) ;
send_rep - > set_duration ( local_rep - > duration ) ;
send_rep - > set_continuation ( local_rep - > flags . bits . continuation ) ;
send_rep - > set_unconscious ( local_rep - > flags . bits . unconscious ) ;
send_rep - > set_announcement ( local_rep - > flags . bits . announcement ) ;
send_rep - > set_repeat_count ( local_rep - > repeat_count ) ;
ConvertDFCoord ( local_rep - > pos , send_rep - > mutable_pos ( ) ) ;
send_rep - > set_id ( local_rep - > id ) ;
send_rep - > set_year ( local_rep - > year ) ;
send_rep - > set_time ( local_rep - > time ) ;
lastSentReportID = local_rep - > id ;
}
return CR_OK ;
2018-01-06 11:18:06 -07:00
}
static command_result GetLanguage ( color_ostream & stream , const EmptyMessage * in , RemoteFortressReader : : Language * out )
{
if ( ! world )
return CR_FAILURE ;
2018-04-06 13:17:34 -06:00
for ( size_t i = 0 ; i < world - > raws . descriptors . shapes . size ( ) ; i + + )
2018-01-06 11:18:06 -07:00
{
2018-03-10 14:53:45 -07:00
auto shape = world - > raws . descriptors . shapes [ i ] ;
2018-01-06 11:18:06 -07:00
auto netShape = out - > add_shapes ( ) ;
netShape - > set_id ( shape - > id ) ;
2018-02-02 22:08:17 -07:00
netShape - > set_tile ( shape - > tile ) ;
2018-01-06 11:18:06 -07:00
}
return CR_OK ;
2018-02-04 20:56:24 -07:00
}