Constructions, buildings, base 31.13 windows entry on DF2010 instead of 31.12.

develop
Petr Mrázek 2010-09-22 18:20:55 +02:00
parent 369b7cf701
commit a3870bb5a1
2 changed files with 26 additions and 18 deletions

@ -1474,7 +1474,7 @@
</Group> </Group>
</Offsets> </Offsets>
</Version> </Version>
<Version name="v0.31.13 SDL" os="windows" base="v0.31.12 SDL"> <Version name="v0.31.13 SDL" os="windows" base="DF2010">
<MD5 value="59f194b0b2103ca5df7601a01ce21280" /> <MD5 value="59f194b0b2103ca5df7601a01ce21280" />
<PETimeStamp value="0x4C90ADA8" /> <PETimeStamp value="0x4C90ADA8" />
<Offsets> <Offsets>
@ -1610,28 +1610,32 @@
</Group> </Group>
</Group> </Group>
<Group name="Constructions"> <Group name="Constructions">
<Address name="vector"/> <Address name="vector" value="0x1642650"/>
<Offset name="sizeof"/> <Offset name="sizeof" value="0x14" />
</Group> </Group>
<Group name="Translations"> <Group name="Translations">
<Address name="language_vector"/> <Address name="language_vector" value="0x169a0fC"/>
<Address name="translation_vector"/> <Address name="translation_vector" value="0x169a11C"/>
<Offset name="word_table"/> <Offset name="word_table" value="0x3c"/>
</Group> </Group>
<Group name="Vegetation"> <Group name="Vegetation">
<Address name="vector"/> <Address name="vector" value="0x1656efc"/>
<Offset name="tree_desc_offset"/> <Offset name="tree_desc_offset" value="0x6C"/>
</Group> </Group>
<Group name="Buildings"> <Group name="Buildings">
<Address name="buildings_vector"/> <Address name="buildings_vector" value="0x1656890"/>
Second possible: 0x16568a0 (can't decide)
<!--
<Offset name="building_custom_workshop_type"/> <Offset name="building_custom_workshop_type"/>
<Address name="custom_workshop_vector"/> <Address name="custom_workshop_vector"/>
<Offset name="custom_workshop_name"/> <Offset name="custom_workshop_name"/>
<Offset name="custom_workshop_type"/> <Offset name="custom_workshop_type"/>
-->
</Group> </Group>
</Offsets> </Offsets>
</Version> </Version>
31.13 WEATHER_START 0147E94E
.-"""-. .-"""-.
' \ ' \
|,. ,-. | _________________________ |,. ,-. | _________________________

@ -205,17 +205,21 @@ if(MSVC)
# It exploits the fact that MSVC has some variables in .vcproj files, much like cmake does here. # It exploits the fact that MSVC has some variables in .vcproj files, much like cmake does here.
# #
# So, $(TargetDir) is ignored by cmake, and replaced with the actual output directory by MSVC # So, $(TargetDir) is ignored by cmake, and replaced with the actual output directory by MSVC
ADD_CUSTOM_COMMAND(TARGET dfhack POST_BUILD ADD_CUSTOM_COMMAND(TARGET dfhack
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/data/Memory-ng.xml $(TargetDir)/Memory.xml COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/data/Memory-ng.xml "$(TargetDir)/Memory.xml"
MAIN_DEPENDENCY ${CMAKE_SOURCE_DIR}/data/Memory-ng.xml
) )
ADD_CUSTOM_COMMAND(TARGET dfhack POST_BUILD ADD_CUSTOM_COMMAND(TARGET dfhack
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/Compile.html $(TargetDir)/Compile.html COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/Compile.html "$(TargetDir)/Compile.html"
MAIN_DEPENDENCY ${CMAKE_SOURCE_DIR}/Compile.html
) )
ADD_CUSTOM_COMMAND(TARGET dfhack POST_BUILD ADD_CUSTOM_COMMAND(TARGET dfhack
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/Readme.html $(TargetDir)/Readme.html COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/Readme.html "$(TargetDir)/Readme.html"
MAIN_DEPENDENCY ${CMAKE_SOURCE_DIR}/Readme.html
) )
ADD_CUSTOM_COMMAND(TARGET dfhack POST_BUILD ADD_CUSTOM_COMMAND(TARGET dfhack
COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/LICENSE $(TargetDir)/LICENSE.txt COMMAND ${CMAKE_COMMAND} -E copy ${CMAKE_SOURCE_DIR}/LICENSE "$(TargetDir)/LICENSE.txt"
MAIN_DEPENDENCY ${CMAKE_SOURCE_DIR}/LICENSE
) )
else(MSVC) else(MSVC)
# Just put the file in the output directory on Linux and Mac # Just put the file in the output directory on Linux and Mac