dfhack/shmserver
Petr Mrázek f0edb0c33d Map block flags added to the API
Added a RAMP_TOP tile shape, ramp characters for veinlook
Merged in the magma_create util by Aleric, tweaked it a bit, made it use the block flags
2010-03-26 00:42:07 +01:00
..
CMakeLists.txt Don't build SHM on 64bit, makes no sense 2010-03-05 01:26:39 +01:00
mod-core.cpp Stop synchronous suspend from eating CPU cycles. 2010-03-18 19:55:01 +01:00
mod-core.h Another try at locking 2010-03-12 00:13:50 +01:00
mod-maps.cpp Map block flags added to the API 2010-03-26 00:42:07 +01:00
mod-maps.h Another try at locking 2010-03-12 00:13:50 +01:00
readme.txt some rearrangement of the shm server part, preparing for the windows port 2010-01-04 05:20:28 +00:00
shms-linux.cpp Cosmetic changes, really 2010-03-12 12:14:20 +01:00
shms-windows.cpp Fix for stupid error on Windows 2010-03-25 10:10:23 +01:00
shms.h Stop synchronous suspend from eating CPU cycles. 2010-03-18 19:55:01 +01:00

readme.txt

Using the shm server:
copy files to DF/libs folder
g++ -fPIC -c dfconnect.c -o dfconnect.o
g++ -shared -o dfconnect.so dfconnect.o -ldl

edit DF/df script and add this line just before DF is called:
export LD_PRELOAD="./libs/dfconnect.so" # Hack DF!

save and run the script!

Has to be compiled for 32bit arch, otherwise the library isn't recognised. Client can be any arch.

Precompiled dfconnect library is made available. dfconnect.so goes in DF/libs, df-hacked script goes in DF/
Run ./df-hacked to use the shared memory API