summary refs log tree commit diff
path: root/pkgs/games/dwarf-fortress/wrapper/default.nix
blob: 33523270b19d42c9b7b62aface3380298703c55c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{ stdenv, lib, buildEnv, substituteAll
, dwarf-fortress, dwarf-fortress-unfuck
, enableDFHack ? false, dfhack
, enableSoundSense ? false, soundSense, jdk
, enableStoneSense ? false
, enableTWBT ? false, twbt
, themes ? {}
, theme ? null
# General config options:
, enableIntro ? true
, enableTruetype ? true
, enableFPS ? false
}:

let
  dfhack_ = dfhack.override {
    inherit enableStoneSense;
    inherit enableTWBT;
  };

  ptheme =
    if builtins.isString theme
    then builtins.getAttr theme themes
    else theme;

  unBool = b: if b then "YES" else "NO";

  # These are in inverse order for first packages to override the next ones.
  themePkg = lib.optional (theme != null) ptheme;
  pkgs = lib.optional enableDFHack dfhack_
         ++ lib.optional enableSoundSense soundSense
         ++ lib.optional enableTWBT twbt.art
         ++ [ dwarf-fortress ];

  env = buildEnv {
    name = "dwarf-fortress-env-${dwarf-fortress.dfVersion}";

    paths = themePkg ++ pkgs;
    pathsToLink = [ "/" "/hack" "/hack/scripts" ];

    postBuild = ''
      # De-symlink init.txt
      cp $out/data/init/init.txt init.txt
      rm -f $out/data/init/init.txt
      mv init.txt $out/data/init/init.txt
    '' + lib.optionalString enableDFHack ''
      # De-symlink symbols.xml
      rm $out/hack/symbols.xml

      # Patch the MD5
      orig_md5=$(cat "${dwarf-fortress}/hash.md5.orig")
      patched_md5=$(cat "${dwarf-fortress}/hash.md5")
      input_file="${dfhack_}/hack/symbols.xml"
      output_file="$out/hack/symbols.xml"

      echo "[DFHack Wrapper] Fixing Dwarf Fortress MD5:"
      echo "  Input:   $input_file"
      echo "  Search:  $orig_md5"
      echo "  Output:  $output_file"
      echo "  Replace: $patched_md5"

      substitute "$input_file" "$output_file" --replace "$orig_md5" "$patched_md5"
    '' + lib.optionalString enableTWBT ''
      substituteInPlace $out/data/init/init.txt \
        --replace '[PRINT_MODE:2D]' '[PRINT_MODE:TWBT]'
    '' + ''
      substituteInPlace $out/data/init/init.txt \
        --replace '[INTRO:YES]' '[INTRO:${unBool enableIntro}]' \
        --replace '[TRUETYPE:YES]' '[TRUETYPE:${unBool enableTruetype}]' \
        --replace '[FPS:NO]' '[FPS:${unBool enableFPS}]'
    '';

    ignoreCollisions = true;
  };
in

stdenv.mkDerivation rec {
  name = "dwarf-fortress-${dwarf-fortress.dfVersion}";

  dfInit = substituteAll {
    name = "dwarf-fortress-init";
    src = ./dwarf-fortress-init.in;
    inherit env;
    exe = if stdenv.isLinux then "libs/Dwarf_Fortress"
                            else "dwarfort.exe";
  };

  runDF = ./dwarf-fortress.in;
  runDFHack = ./dfhack.in;
  runSoundSense = ./soundSense.in;

  passthru = { inherit dwarf-fortress; };

  buildCommand = ''
    mkdir -p $out/bin

    substitute $runDF $out/bin/dwarf-fortress \
      --subst-var-by stdenv_shell ${stdenv.shell} \
      --subst-var dfInit
    chmod 755 $out/bin/dwarf-fortress
  '' + lib.optionalString enableDFHack ''
    substitute $runDFHack $out/bin/dfhack \
      --subst-var-by stdenv_shell ${stdenv.shell} \
      --subst-var dfInit
    chmod 755 $out/bin/dfhack
  '' + lib.optionalString enableSoundSense ''
    substitute $runSoundSense $out/bin/soundsense \
      --subst-var-by stdenv_shell ${stdenv.shell} \
      --subst-var-by jre ${jdk.jre} \
      --subst-var dfInit
    chmod 755 $out/bin/soundsense
  '';

  preferLocalBuild = true;
}