Skip to content

Commit

Permalink
0.44.07 patches
Browse files Browse the repository at this point in the history
  • Loading branch information
pronvit committed Mar 15, 2018
1 parent 10992e0 commit 1c7ee5e
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 8 deletions.
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
DFHACKVER ?= 0.44.05-alpha1
DFHACKVER ?= 0.44.07-alpha1

DFVERNUM = `echo $(DFHACKVER) | sed -e s/-.*// -e s/\\\\.//g`

TWBT_VER ?= "6.xx"

DF ?= /Users/vit/Downloads/df_44_05_osx
DH ?= /Users/vit/Downloads/buildagent-2/workspace/root/dfhack/0.44
DF ?= /Users/vit/Downloads/df_44_07_osx
DH ?= /Users/vit/Downloads/buildagent/workspace/root/dfhack/0.44

SRC = twbt.cpp
DEP = renderer.hpp config.hpp dungeonmode.hpp dwarfmode.hpp renderer_twbt.h commands.hpp plugin.hpp tileupdate_text.hpp tileupdate_map.hpp patches.hpp zoomfix.hpp buildings.hpp items.hpp units.hpp Makefile legacy/renderer_legacy.hpp legacy/twbt_legacy.hpp
Expand Down
56 changes: 55 additions & 1 deletion patches.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -1033,7 +1033,6 @@ static void apply_patch(MemoryPatcher *mp, patchdef &p)
0x100d75c60, 5, true, { 0x41, 0xc6, 0x00, 0x00, 0xc3 }
};


#else
#define A_RENDER_MAP 0xdeb760
#define A_RENDER_UPDOWN 0xbbebe0
Expand All @@ -1052,6 +1051,61 @@ static void apply_patch(MemoryPatcher *mp, patchdef &p)

#endif

#elif defined(DF_04407)
#ifdef WIN32
#define A_LOAD_MULTI_PDIM 0x140ad0290

#define A_RENDER_MAP 0x14089fc80
#define A_RENDER_UPDOWN 0x1405ef390

static patchdef p_dwarfmode_render = { 0x14034b05a, 5 };

static patchdef p_advmode_render[] = {
{ 0x14029755b, 10 }, { 0x1402975ac, 10 }, { 0x1402975f6, 10 }, { 0x140297ac3, 10 },
};

static patchdef p_display = { 0x14039528b, 5 };

static patchdef p_render_lower_levels = {
0x140c1a900, 9, true, { 0x48, 0x8b, 0x44, 0x24, 0x28, 0xc6, 0x00, 0x00, 0xc3 }
};

#elif defined(__APPLE__)
#define A_LOAD_MULTI_PDIM 0x101170120

#define A_RENDER_MAP 0x100b027f0
#define A_RENDER_UPDOWN 0x10087f270

static patchdef p_dwarfmode_render = { 0x10048250a, 5 };

static patchdef p_advmode_render[] = {
{ 0x10042a9c1, 13 }, { 0x10042aa5a, 17 }, { 0x10042afba, 13 }, { 0x10042b2cb, 13 },
};

static patchdef p_display = { 0x10110419b, 5 };

static patchdef p_render_lower_levels = {
0x100d9f490, 5, true, { 0x41, 0xc6, 0x00, 0x00, 0xc3 }
};

#else
#define A_RENDER_MAP 0xdfad70
#define A_RENDER_UPDOWN 0xbcbcc0

#define NO_DISPLAY_PATCH

static patchdef p_dwarfmode_render = { 0x7108b5, 5 };

static patchdef p_advmode_render[] = {
{ 0x6dfd5a, 5+5+5 }, { 0x6e0372, 5+5+5 }, { 0x6e03b1, 5+5+5 }, { 0x6e040d, 5+5+5 }
};

static patchdef p_render_lower_levels = {
0x107d3f0, 5, true, { 0x41, 0xc6, 0x00, 0x00, 0xc3 }
};

#endif

#else

#error Unsupported DF version
Expand Down
8 changes: 4 additions & 4 deletions tileupdate_map.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ static void resolve_color(int fg, int bg, int bold, struct texture_fullid &ret)
{
if (fg >= 100)
{
fg = (fg-100) % df::global::world->raws.language.colors.size();
df::descriptor_color *fgdc = df::global::world->raws.language.colors[fg];
fg = (fg-100) % df::global::world->raws.descriptors.colors.size();
df::descriptor_color *fgdc = df::global::world->raws.descriptors.colors[fg];

ret.r = fgdc->red;
ret.g = fgdc->green;
Expand All @@ -20,8 +20,8 @@ static void resolve_color(int fg, int bg, int bold, struct texture_fullid &ret)

if (bg >= 100)
{
bg = (bg-100) % df::global::world->raws.language.colors.size();
df::descriptor_color *bgdc = df::global::world->raws.language.colors[bg];
bg = (bg-100) % df::global::world->raws.descriptors.colors.size();
df::descriptor_color *bgdc = df::global::world->raws.descriptors.colors[bg];

ret.br = bgdc->red;
ret.bg = bgdc->green;
Expand Down

0 comments on commit 1c7ee5e

Please sign in to comment.