mirror of
https://github.com/alexbatalov/fallout2-ce.git
synced 2024-11-19 14:11:15 +00:00
Add proto_user_is_librarian
This commit is contained in:
parent
c652312157
commit
4eaea0e3c0
@ -8,13 +8,16 @@
|
||||
#include "draw.h"
|
||||
#include "game_mouse.h"
|
||||
#include "inventory.h"
|
||||
#include "mapper/mp_proto.h"
|
||||
#include "object.h"
|
||||
#include "proto.h"
|
||||
#include "settings.h"
|
||||
#include "svga.h"
|
||||
#include "window_manager.h"
|
||||
|
||||
namespace fallout {
|
||||
|
||||
static bool proto_user_is_librarian();
|
||||
static void redraw_toolname();
|
||||
static void clear_toolname();
|
||||
static void update_high_obj_name(Object* obj);
|
||||
@ -30,6 +33,17 @@ unsigned char* tool;
|
||||
// 0x6EC4AC
|
||||
int tool_win;
|
||||
|
||||
// 0x487784
|
||||
bool proto_user_is_librarian()
|
||||
{
|
||||
if (!settings.mapper.librarian) {
|
||||
return false;
|
||||
}
|
||||
|
||||
can_modify_protos = true;
|
||||
return true;
|
||||
}
|
||||
|
||||
// 0x48B16C
|
||||
void print_toolbar_name(int object_type)
|
||||
{
|
||||
|
8
src/mapper/mp_proto.cc
Normal file
8
src/mapper/mp_proto.cc
Normal file
@ -0,0 +1,8 @@
|
||||
#include "mapper/mp_proto.h"
|
||||
|
||||
namespace fallout {
|
||||
|
||||
// 0x559C60
|
||||
bool can_modify_protos = false;
|
||||
|
||||
} // namespace fallout
|
10
src/mapper/mp_proto.h
Normal file
10
src/mapper/mp_proto.h
Normal file
@ -0,0 +1,10 @@
|
||||
#ifndef FALLOUT_MAPPER_MP_PROTO_H_
|
||||
#define FALLOUT_MAPPER_MP_PROTO_H_
|
||||
|
||||
namespace fallout {
|
||||
|
||||
extern bool can_modify_protos;
|
||||
|
||||
} // namespace fallout
|
||||
|
||||
#endif /* FALLOUT_MAPPER_MP_PROTO_H_ */
|
Loading…
Reference in New Issue
Block a user