380 lines
7.4 KiB
C++
380 lines
7.4 KiB
C++
#include "mapper/mapper.h"
|
|
|
|
#include <ctype.h>
|
|
|
|
#include "animation.h"
|
|
#include "art.h"
|
|
#include "color.h"
|
|
#include "draw.h"
|
|
#include "game_mouse.h"
|
|
#include "inventory.h"
|
|
#include "kb.h"
|
|
#include "mapper/mp_proto.h"
|
|
#include "memory.h"
|
|
#include "object.h"
|
|
#include "proto.h"
|
|
#include "settings.h"
|
|
#include "svga.h"
|
|
#include "window_manager.h"
|
|
|
|
namespace fallout {
|
|
|
|
static void MapperInit();
|
|
static int mapper_edit_init(int argc, char** argv);
|
|
static void mapper_edit_exit();
|
|
static int bookmarkInit();
|
|
static int bookmarkExit();
|
|
static void bookmarkHide();
|
|
static void bookmarkUnHide();
|
|
static int categoryInit();
|
|
static int categoryExit();
|
|
static int categoryHide();
|
|
static int categoryToggleState();
|
|
static int categoryUnhide();
|
|
static bool proto_user_is_librarian();
|
|
static void edit_mapper();
|
|
static void redraw_toolname();
|
|
static void clear_toolname();
|
|
static void update_high_obj_name(Object* obj);
|
|
static int mapper_mark_exit_grid();
|
|
static void mapper_mark_all_exit_grids();
|
|
|
|
// 0x559748
|
|
MapTransition mapInfo = { -1, -1, 0, 0 };
|
|
|
|
// 0x5598A8
|
|
static int bookmarkWin = -1;
|
|
|
|
// 0x5598AC
|
|
static int categoryWin = -1;
|
|
|
|
// 0x5598B0
|
|
static bool categoryIsHidden = false;
|
|
|
|
// 0x6EAA40
|
|
int menu_val_0[8];
|
|
|
|
// 0x6EAA60
|
|
int menu_val_2[8];
|
|
|
|
// 0x6EC408
|
|
int menu_val_1[21];
|
|
|
|
// 0x6EC4A8
|
|
unsigned char* tool;
|
|
|
|
// 0x6EC4AC
|
|
int tool_win;
|
|
|
|
// gnw_main
|
|
// 0x485DD0
|
|
int mapper_main(int argc, char** argv)
|
|
{
|
|
MapperInit();
|
|
|
|
if (mapper_edit_init(argc, argv) == -1) {
|
|
mem_check();
|
|
return 0;
|
|
}
|
|
|
|
edit_mapper();
|
|
mapper_edit_exit();
|
|
mem_check();
|
|
|
|
return 0;
|
|
}
|
|
|
|
// 0x485E00
|
|
void MapperInit()
|
|
{
|
|
menu_val_0[0] = KEY_ALT_N;
|
|
menu_val_0[1] = KEY_ALT_O;
|
|
menu_val_0[2] = KEY_ALT_S;
|
|
menu_val_0[3] = KEY_ALT_A;
|
|
menu_val_0[4] = KEY_ESCAPE;
|
|
menu_val_0[5] = KEY_ALT_K;
|
|
menu_val_0[6] = KEY_ALT_I;
|
|
menu_val_0[7] = KEY_ESCAPE;
|
|
|
|
menu_val_1[0] = KEY_ALT_U;
|
|
menu_val_1[1] = KEY_ALT_Y;
|
|
menu_val_1[2] = KEY_ESCAPE;
|
|
menu_val_1[3] = KEY_ALT_G;
|
|
menu_val_1[4] = 4186;
|
|
menu_val_1[5] = 4188;
|
|
menu_val_1[6] = KEY_ESCAPE;
|
|
menu_val_1[7] = KEY_ALT_B;
|
|
menu_val_1[8] = KEY_ALT_E;
|
|
menu_val_1[9] = KEY_ALT_D;
|
|
menu_val_1[10] = KEY_LOWERCASE_B;
|
|
menu_val_1[11] = 2165;
|
|
menu_val_1[12] = 3123;
|
|
menu_val_1[13] = KEY_ALT_Z;
|
|
menu_val_1[14] = 5677;
|
|
menu_val_1[15] = 5678;
|
|
menu_val_1[16] = 5679;
|
|
menu_val_1[17] = 5666;
|
|
menu_val_1[18] = KEY_ESCAPE;
|
|
menu_val_1[19] = 5406;
|
|
menu_val_1[20] = 5405;
|
|
|
|
menu_val_2[0] = KEY_LOWERCASE_I;
|
|
menu_val_2[1] = 5400;
|
|
menu_val_2[2] = KEY_LOWERCASE_S;
|
|
menu_val_2[3] = KEY_CTRL_F8;
|
|
menu_val_2[4] = 5410;
|
|
menu_val_2[5] = KEY_GRAVE;
|
|
menu_val_2[6] = KEY_ALT_W;
|
|
menu_val_2[7] = 5544;
|
|
}
|
|
|
|
// 0x485F94
|
|
int mapper_edit_init(int argc, char** argv)
|
|
{
|
|
// TODO: Incomplete.
|
|
|
|
return 0;
|
|
}
|
|
|
|
// 0x48752C
|
|
void mapper_edit_exit()
|
|
{
|
|
// TODO: Incomplete.
|
|
}
|
|
|
|
// 0x4875B4
|
|
int bookmarkInit()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// 0x4875B8
|
|
int bookmarkExit()
|
|
{
|
|
if (bookmarkWin == -1) {
|
|
return -1;
|
|
}
|
|
|
|
windowDestroy(bookmarkWin);
|
|
bookmarkWin = -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// 0x4875E0
|
|
void bookmarkHide()
|
|
{
|
|
if (bookmarkWin != -1) {
|
|
windowHide(bookmarkWin);
|
|
}
|
|
}
|
|
|
|
// 0x4875F8
|
|
void bookmarkUnHide()
|
|
{
|
|
if (bookmarkWin != -1) {
|
|
windowShow(bookmarkWin);
|
|
}
|
|
}
|
|
|
|
// 0x4875B4
|
|
int categoryInit()
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
// 0x487700
|
|
int categoryExit()
|
|
{
|
|
if (categoryWin == -1) {
|
|
return -1;
|
|
}
|
|
|
|
windowDestroy(categoryWin);
|
|
categoryWin = -1;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// 0x487728
|
|
int categoryHide()
|
|
{
|
|
if (categoryWin == -1) {
|
|
return -1;
|
|
}
|
|
|
|
windowHide(categoryWin);
|
|
categoryIsHidden = true;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// 0x487768
|
|
int categoryToggleState()
|
|
{
|
|
if (categoryIsHidden) {
|
|
return categoryUnhide();
|
|
} else {
|
|
return categoryHide();
|
|
}
|
|
}
|
|
|
|
// 0x487774
|
|
int categoryUnhide()
|
|
{
|
|
if (categoryWin == -1) {
|
|
return -1;
|
|
}
|
|
|
|
windowShow(categoryWin);
|
|
categoryIsHidden = false;
|
|
|
|
return 0;
|
|
}
|
|
|
|
// 0x487784
|
|
bool proto_user_is_librarian()
|
|
{
|
|
if (!settings.mapper.librarian) {
|
|
return false;
|
|
}
|
|
|
|
can_modify_protos = true;
|
|
return true;
|
|
}
|
|
|
|
// 0x4877D0
|
|
void edit_mapper()
|
|
{
|
|
// TODO: Incomplete.
|
|
}
|
|
|
|
// 0x48B16C
|
|
void print_toolbar_name(int object_type)
|
|
{
|
|
Rect rect;
|
|
char name[80];
|
|
|
|
rect.left = 0;
|
|
rect.top = 0;
|
|
rect.right = 0;
|
|
rect.bottom = 22;
|
|
bufferFill(tool + 2 + 2 * (_scr_size.right - _scr_size.left) + 2,
|
|
96,
|
|
_scr_size.right - _scr_size.left + 1,
|
|
19,
|
|
_colorTable[21140]);
|
|
|
|
sprintf(name, "%s", artGetObjectTypeName(object_type));
|
|
name[0] = toupper(name[0]);
|
|
windowDrawText(tool_win, name, 0, 7, 7, _colorTable[32747] | 0x2000000);
|
|
windowRefreshRect(tool_win, &rect);
|
|
}
|
|
|
|
// 0x48B230
|
|
void redraw_toolname()
|
|
{
|
|
Rect rect;
|
|
|
|
rect.left = _scr_size.right - _scr_size.left - 149;
|
|
rect.top = 60;
|
|
rect.right = _scr_size.right - _scr_size.left + 1;
|
|
rect.bottom = 95;
|
|
windowRefreshRect(tool_win, &rect);
|
|
}
|
|
|
|
// 0x48B278
|
|
void clear_toolname()
|
|
{
|
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 60, 260);
|
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 70, 260);
|
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 80, 260);
|
|
redraw_toolname();
|
|
}
|
|
|
|
// 0x48B5BC
|
|
void update_high_obj_name(Object* obj)
|
|
{
|
|
Proto* proto;
|
|
|
|
if (protoGetProto(obj->pid, &proto) != -1) {
|
|
windowDrawText(tool_win, protoGetName(obj->pid), 120, _scr_size.right - _scr_size.left - 149, 60, 260);
|
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 70, 260);
|
|
windowDrawText(tool_win, "", 120, _scr_size.right - _scr_size.left - 149, 80, 260);
|
|
redraw_toolname();
|
|
}
|
|
}
|
|
|
|
// 0x48C604
|
|
int mapper_inven_unwield(Object* obj, int right_hand)
|
|
{
|
|
Object* item;
|
|
int fid;
|
|
|
|
reg_anim_begin(ANIMATION_REQUEST_RESERVED);
|
|
|
|
if (right_hand) {
|
|
item = critterGetItem2(obj);
|
|
} else {
|
|
item = critterGetItem1(obj);
|
|
}
|
|
|
|
if (item != NULL) {
|
|
item->flags &= ~OBJECT_IN_ANY_HAND;
|
|
}
|
|
|
|
animationRegisterAnimate(obj, ANIM_PUT_AWAY, 0);
|
|
|
|
fid = buildFid(OBJ_TYPE_CRITTER, obj->fid & 0xFFF, 0, 0, (obj->fid & 0x70000000) >> 28);
|
|
animationRegisterSetFid(obj, fid, 0);
|
|
|
|
return reg_anim_end();
|
|
}
|
|
|
|
// 0x48C678
|
|
int mapper_mark_exit_grid()
|
|
{
|
|
int y;
|
|
int x;
|
|
int tile;
|
|
Object* obj;
|
|
|
|
for (y = -2000; y != 2000; y += 200) {
|
|
for (x = -10; x < 10; x++) {
|
|
tile = gGameMouseBouncingCursor->tile + y + x;
|
|
|
|
obj = objectFindFirstAtElevation(gElevation);
|
|
while (obj != NULL) {
|
|
if (isExitGridPid(obj->pid)) {
|
|
obj->data.misc.map = mapInfo.map;
|
|
obj->data.misc.tile = mapInfo.tile;
|
|
obj->data.misc.elevation = mapInfo.elevation;
|
|
obj->data.misc.rotation = mapInfo.rotation;
|
|
}
|
|
obj = objectFindNextAtElevation();
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
// 0x48C704
|
|
void mapper_mark_all_exit_grids()
|
|
{
|
|
Object* obj;
|
|
|
|
obj = objectFindFirstAtElevation(gElevation);
|
|
while (obj != NULL) {
|
|
if (isExitGridPid(obj->pid)) {
|
|
obj->data.misc.map = mapInfo.map;
|
|
obj->data.misc.tile = mapInfo.tile;
|
|
obj->data.misc.elevation = mapInfo.elevation;
|
|
obj->data.misc.rotation = mapInfo.rotation;
|
|
}
|
|
obj = objectFindNextAtElevation();
|
|
}
|
|
}
|
|
|
|
} // namespace fallout
|