2018-07-11 09:47:55 -06:00
|
|
|
#include <cmath>
|
2015-08-09 11:37:26 -06:00
|
|
|
#include <cstdio>
|
2018-07-11 09:47:55 -06:00
|
|
|
#include <cstring>
|
2015-08-09 11:37:26 -06:00
|
|
|
#include <stack>
|
|
|
|
#include <string>
|
2018-07-11 09:47:55 -06:00
|
|
|
#include <vector>
|
2015-08-09 11:37:26 -06:00
|
|
|
|
|
|
|
#include "Core.h"
|
|
|
|
#include "Console.h"
|
|
|
|
#include "Export.h"
|
|
|
|
#include "PluginManager.h"
|
|
|
|
#include "modules/Gui.h"
|
|
|
|
#include "modules/Screen.h"
|
|
|
|
#include "VTableInterpose.h"
|
|
|
|
#include "DFHackVersion.h"
|
|
|
|
|
|
|
|
#include "df/graphic.h"
|
2018-06-12 14:38:53 -06:00
|
|
|
#include "df/viewscreen_optionst.h"
|
2015-08-09 11:37:26 -06:00
|
|
|
#include "df/viewscreen_titlest.h"
|
|
|
|
#include "uicommon.h"
|
|
|
|
|
|
|
|
using std::vector;
|
|
|
|
using std::string;
|
|
|
|
using namespace DFHack;
|
|
|
|
|
|
|
|
DFHACK_PLUGIN("title-version");
|
|
|
|
DFHACK_PLUGIN_IS_ENABLED(is_enabled);
|
|
|
|
REQUIRE_GLOBAL(gps);
|
|
|
|
|
2018-06-12 14:38:53 -06:00
|
|
|
void draw_version(int start_x, int start_y) {
|
|
|
|
int x = start_x,
|
|
|
|
y = start_y;
|
|
|
|
|
|
|
|
OutputString(COLOR_WHITE, x, y, string("DFHack ") + DFHACK_VERSION);
|
|
|
|
if (!DFHACK_IS_RELEASE)
|
|
|
|
{
|
|
|
|
OutputString(COLOR_WHITE, x, y, " (dev)");
|
|
|
|
x = start_x; y++;
|
|
|
|
OutputString(COLOR_WHITE, x, y, "Git: ");
|
|
|
|
OutputString(COLOR_WHITE, x, y, DFHACK_GIT_DESCRIPTION);
|
|
|
|
}
|
2018-07-11 09:47:55 -06:00
|
|
|
if (strlen(DFHACK_BUILD_ID))
|
|
|
|
{
|
|
|
|
x = start_x; y++;
|
|
|
|
OutputString(COLOR_WHITE, x, y, "Build ID: ");
|
|
|
|
OutputString(COLOR_WHITE, x, y, DFHACK_BUILD_ID);
|
|
|
|
}
|
2018-06-12 14:38:53 -06:00
|
|
|
if (DFHACK_IS_PRERELEASE)
|
|
|
|
{
|
|
|
|
x = start_x; y++;
|
|
|
|
OutputString(COLOR_LIGHTRED, x, y, "Pre-release build");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-08-09 11:37:26 -06:00
|
|
|
struct title_version_hook : df::viewscreen_titlest {
|
|
|
|
typedef df::viewscreen_titlest interpose_base;
|
|
|
|
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, render, ())
|
|
|
|
{
|
|
|
|
INTERPOSE_NEXT(render)();
|
2018-06-12 14:38:53 -06:00
|
|
|
if (!loading)
|
|
|
|
draw_version(0, 0);
|
2015-08-09 11:37:26 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(title_version_hook, render);
|
|
|
|
|
2018-06-12 14:38:53 -06:00
|
|
|
struct options_version_hook : df::viewscreen_optionst {
|
|
|
|
typedef df::viewscreen_optionst interpose_base;
|
|
|
|
|
|
|
|
DEFINE_VMETHOD_INTERPOSE(void, render, ())
|
|
|
|
{
|
|
|
|
INTERPOSE_NEXT(render)();
|
|
|
|
if (!msg_quit && !in_retire_adv && !msg_peasant &&
|
|
|
|
!in_retire_dwf_abandon_adv && !in_abandon_dwf && !ending_game)
|
2018-07-11 09:47:55 -06:00
|
|
|
draw_version(2, gps->dimy - 6);
|
2018-06-12 14:38:53 -06:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
IMPLEMENT_VMETHOD_INTERPOSE(options_version_hook, render);
|
|
|
|
|
2015-08-09 11:37:26 -06:00
|
|
|
DFhackCExport command_result plugin_enable (color_ostream &out, bool enable)
|
|
|
|
{
|
|
|
|
if (!gps)
|
|
|
|
return CR_FAILURE;
|
|
|
|
|
|
|
|
if (enable != is_enabled)
|
|
|
|
{
|
2018-06-12 14:38:53 -06:00
|
|
|
if (!INTERPOSE_HOOK(title_version_hook, render).apply(enable) ||
|
|
|
|
!INTERPOSE_HOOK(options_version_hook, render).apply(enable))
|
2015-08-09 11:37:26 -06:00
|
|
|
return CR_FAILURE;
|
|
|
|
|
|
|
|
is_enabled = enable;
|
|
|
|
}
|
|
|
|
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_init (color_ostream &out, vector<PluginCommand> &commands)
|
|
|
|
{
|
|
|
|
return CR_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
DFhackCExport command_result plugin_shutdown (color_ostream &out)
|
|
|
|
{
|
|
|
|
INTERPOSE_HOOK(title_version_hook, render).remove();
|
2018-06-12 14:38:53 -06:00
|
|
|
INTERPOSE_HOOK(options_version_hook, render).remove();
|
2015-08-09 11:37:26 -06:00
|
|
|
return CR_OK;
|
|
|
|
}
|