v50 Steam/Premium information for editors
  • v50 information can now be added to pages in the main namespace. v0.47 information can still be found in the DF2014 namespace. See here for more details on the new versioning policy.
  • Use this page to report any issues related to the migration.
This notice may be cached—the current version can be found here.

Difference between revisions of "User:Iluxan/Memory research"

From Dwarf Fortress Wiki
Jump to navigation Jump to search
m (sort key for hacking category)
(Blanked the page)
 
Line 1: Line 1:
Resources:
 
* [[Memory_hacking|Main memory hacking page]]
 
* [[User:Rick/Memory_research|Rick's Memory research page]]
 
  
3D Links/Resources
 
* [http://people.scs.fsu.edu/~burkardt/data/3ds/3ds.html Sample 3DS files + interesting util]
 
* [http://www.tilemap.co.uk/mappy.php mappy editor] (see links at bottom)
 
* [http://www.devmaster.net/engines/index.php 3d engines list]
 
* [http://www.ogre3d.org/ Ogre3D] -> Also will need OIS for handling input.
 
** [http://www.ogre3d.org/wiki/index.php/Basic_Tutorial_1 basic tutorial]
 
** [http://www.ogre3d.org/docs/api/html/ Ogre API Reference]
 
 
How to find the first memory offset in a new version?
 
 
==v0.27.169.33a==
 
[http://pipboy.us/~rick/df/v0.27.169.33a/source/reveal/ Reveal source]
 
 
==Map Block==
 
{| border="1" cellpadding="2" width="100%"
 
! width="5%" | Offset
 
! width="10%" | Size
 
! width="10%" | Type
 
! width="20%" | Name
 
! width="55%" | Notes
 
 
|-
 
| <code>0000h</code>
 
| 4
 
| pointer
 
| Unknown
 
|
 
 
|-
 
| <code>005Eh</code>
 
| 2 * 16 * 16
 
| list of shorts
 
| ("Type")
 
| This is '''not''' a '''flags''' structure
 
 
0x20 / 32 is 'open space'
 
 
|-
 
| <code>0260h</code>
 
| 4 * 16 * 16
 
| list of longs
 
| Designation
 
|
 
{| border="1" cellpadding="2" width="100%"
 
! width="30%" colspan="2" | Flag
 
! width="70%" | Description
 
 
|-
 
| width="15%" | 200h
 
| width="15%" | 1 << 9
 
| Hidden
 
 
|-
 
| 400000h
 
| 1 << 22
 
| Damp?
 
 
|-
 
| 10000000h
 
| 1 << 28
 
| Mossy
 
 
|}
 
 
|-
 
| <code>0660h</code>
 
| 4 * 16 * 16
 
| list of longs
 
| Unknown
 
|
 
Is probably flags?
 
{| border="1" cellpadding="2" width="100%"
 
! width="30%" colspan="2" | Flag
 
! width="70%" | Description
 
 
|-
 
| width="15%" | 40h
 
| width="15%" | 1 << 6
 
| Muddy
 
 
|-
 
| 80000000h
 
| 1 << 31
 
| Snow-covered
 
 
|}
 
 
|-
 
| <code>0A60h</code>
 
| 1 * 16 * 16
 
| list of bytes
 
| Unknown
 
|
 
 
|-
 
| <code>0B60h</code>
 
| 4 * 16 * 16
 
| list of longs
 
| Pathfinding
 
|
 
 
|-
 
| <code>1160h</code>
 
| 2 * 16 * 16
 
| list of shorts
 
| Unknown
 
|
 
 
|-
 
| <code>1360h</code>
 
| 2 * 16 * 16
 
| list of shorts
 
| Unknown
 
|
 
 
|-
 
| <code>1560h</code>
 
| 2 * 16 * 16
 
| list of shorts
 
| Temperature #1
 
| 10100 or above counts as 'Warm'.
 
 
|-
 
| <code>1760h</code>
 
| 2 * 16 * 16
 
| list of shorts
 
| Temperature #2
 
|
 
 
|-
 
| <code>1960h</code>
 
| 2 * 16 * 16
 
| list of shorts
 
| Unknown
 
|
 
 
|-
 
| <code>1B60h</code>
 
| 2 * 16 * 16
 
| list of shorts
 
| Unknown
 
|
 
 
|}
 
[[Category:Hacking|Memory research]]
 

Latest revision as of 05:04, 28 August 2011