dfhack fork
 
 
 
 
 
 
Go to file
U-glouglou\simon f4d6836a85 A bit of debugging done, and the Items::getItemDescription is finally here ! 2010-05-02 12:50:51 +02:00
CMake/Modules More messing with cmake and veinlook 2010-03-23 23:53:46 +01:00
build Rename magma_create to liquids to reflect change of functionality 2010-04-16 00:24:59 +02:00
dfhack A bit of debugging done, and the Items::getItemDescription is finally here ! 2010-05-02 12:50:51 +02:00
examples A bit of debugging done, and the Items::getItemDescription is finally here ! 2010-05-02 12:50:51 +02:00
output Basic code for item handling, now it should be tested :) 2010-05-02 10:35:23 +02:00
precompiled Update precompiled libs 2010-03-31 18:59:03 +02:00
reversing More moving of things 2010-04-02 17:27:35 +02:00
tools Debugging the material access system : seems to work now 2010-05-02 11:27:16 +02:00
.gitignore gitignore 2010-04-02 18:36:43 +02:00
CMakeLists.txt Pythn module fixes for 64bit, it gets built now, but doesn't work AFAIK 2010-04-28 23:11:24 +02:00
COMPILE Updated README and COMPILE, bugfix release 2010-04-28 17:56:37 +02:00
LICENSE code moved from khazad 2009-09-14 00:02:46 +00:00
README Updated README and COMPILE, bugfix release 2010-04-28 17:56:37 +02:00
dfhack.kdev4 code moved from khazad 2009-09-14 00:02:46 +00:00

README

Introduction
------------

DFHack is a Dwarf Fortress memory access library and a set of basic tools using 
this library. The library is a work in progress, so things might change as more
tools are written for it.

It is an attempt to unite the various ways tools access DF memory and allow for
easier development of new tools.

Getting DFHack
----------------
The project is currently hosted on github, for both source and binaries:
  http://github.com/peterix/dfhack

* Packages

The library and tools are packaged for Archlinux and are available both in AUR
and the arch-games repository.

The package name is dfhack-git :)

Compatibility
-------------

DFHack works on Windows XP, Vista, 7 or any modern Linux distribution.

Windows 2000 is currently *not supported* due to missing OS functionality.
If you know how to easily suspend processes, you can fix it :)

OSX is also not supported due to lack of developers with a Mac.

Currently supported Dwarf Fortress versions:
* Windows
  0.31.01 - 0.31.03

* Linux
  wine together with the Windows versions

Using the library as a developer
--------------------------------

The library is compilable under Linux with GCC and under Windows with MinGW32
and MSVC compilers. It is using the cmake build system. See COMPILE for details.

DFHack is using the zlib/libpng license. This makes it easy to link to it, use
it in-source or add your own extensions. Contributing back to the dfhack
repository is welcome and the right thing to do :)

At the time of writing there's no API reference or documentation. The code does
have a lot of comments though (and getting better all the time).


Tools
-----
All the DFHack tools are terminal programs. This might seem strange to Windows
users, but these are meant mostly as examples for developers. Still, they can
be useful and are cross-platform just like the library itself.

 - dfcleanmap  : Cleans all the splatter that get scattered all over the map.
                 Only exception is mud. It leaves mud alone.
 - dfexpbench  : Just a simple benchmark of the data export speed.
 - dfliquids   : A command prompt for liquid creation and manipulation
                 (the Moses effect included!)
                 Also allows painting obsidian walls directly.
                 Note:
                 Spawning and deleting liquids can F up pathing data and
                 temperatures (creating heat traps). You've been warned.
 - dfposition  : Prints the current DF window properties and cursor position.
 - dfprospector: Lists all available minerals on the map and how much
                 of them there is.
 - dfreveal    : Reveals the whole map, waits for input and hides it again.
                 If you close the tool while it waits, the map remains revealed.
 - dfsuspend   : Test of the process suspend/resume mechanism.
 - dfunstuck   : Use if you prematurely close any of the tools and DF
                 appears to be stuck.
 - dfvdig      : Designates a whole vein for digging. Point the cursor at a vein
                 and run this thing :)

 - Your tool here:  Write one ;)

Memory offset definitions
-------------------------

The file with memory offset definitions used by dfhack can be found in the
output folder.

~ EOF ~