From 0674b5fd0a18364b0236b2feb0841dc3cee7d379 Mon Sep 17 00:00:00 2001 From: Casey Link Date: Sat, 6 Dec 2014 12:26:45 +0100 Subject: [PATCH 1/2] add build instructions to readme --- README.md | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index bff2bc2..b453841 100644 --- a/README.md +++ b/README.md @@ -33,6 +33,25 @@ Vitaly Pronkin aka mifki [Home Page / Sources](https://github.com/mifki/df-twbt) -- [Latest Release](https://github.com/mifki/df-twbt/releases) -- [Development Builds](http://build.mifki.com) -- [Discussion](http://www.bay12forums.com/smf/index.php?topic=138754.0) -- [Report an Issue](https://github.com/mifki/df-twbt/issues) +## Building & Installing ## + +If you use an installation package or a version of TWBT bundled with DF, ignore +this section. + +If you want to build DFHack and TWBT yourself, use this. + +First, compile DFHack. Building TWBT requires a functioning DFHack dev environment. + +1. Build TWBT with: `DFHACKVER=0.40.19-r1 DF=/your/path/to/df_linux DH=/your/path/to/dfhack make +2. Install the plugins with: `DFHACKVER=0.40.19-r1 DF=/your/path/to/df_linux DH=/your/path/to/dfhack make +3. Copy over additional files: + ``` + cp dist/*png $DF/data/art/ + cp dist/overrides.txt $DF/data/init/ + ``` +4. Use TWBT compatible tileset. + Included is Spacefox: edit data/init/init.txt to use Spacefox_16x16_text.png + ## Text and Map Tilesets ## Main function is to use separate fonts (tilesets) for map tiles in Fortress Mode and for text. These fonts may have different tile size, usually square for the map and non-square for text. There also no limit of minimum 80 columns anymore, so bigger tiles can be used on small screens. @@ -203,4 +222,4 @@ This list comes from `df/tiletype.h` include file in DFHack source code. > *0.40:* UnderworldGateStairD, UnderworldGateStairU, UnderworldGateStairUD, -> Void, Waterfall \ No newline at end of file +> Void, Waterfall From dafdada5809fd715c77c68cd0d6ee762b0205c10 Mon Sep 17 00:00:00 2001 From: Casey Link Date: Sat, 6 Dec 2014 12:27:54 +0100 Subject: [PATCH 2/2] bump Makefile version to 0.40.19-r1 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index ca2bcdd..95de06a 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -DFHACKVER ?= 0.40.16-r1 +DFHACKVER ?= 0.40.19-r1 DFVERNUM = `echo $(DFHACKVER) | sed -e s/-r.*// -e s/\\\\.//g` @@ -52,4 +52,4 @@ inst_all: cd plugins && DFHACKVER=$(DFHACKVER) DF=$(DF) DH=$(DH) PLUGIN=automaterial make inst clean: - -rm $(OUT) \ No newline at end of file + -rm $(OUT)