Skip to content

Commit 0903190

Browse files
committedSep 1, 2015
Hide minimap if it has been disabled by server
1 parent dce9468 commit 0903190

File tree

5 files changed

+22
-2
lines changed

5 files changed

+22
-2
lines changed
 

‎src/client.cpp

+1
Original file line numberDiff line numberDiff line change
@@ -228,6 +228,7 @@ Client::Client(
228228
m_particle_manager(&m_env),
229229
m_con(PROTOCOL_ID, 512, CONNECTION_TIMEOUT, ipv6, this),
230230
m_device(device),
231+
m_minimap_disabled_by_server(false),
231232
m_server_ser_ver(SER_FMT_VER_INVALID),
232233
m_proto_ver(0),
233234
m_playeritem(0),

‎src/client.h

+4
Original file line numberDiff line numberDiff line change
@@ -510,6 +510,9 @@ class Client : public con::PeerHandler, public InventoryManager, public IGameDef
510510
Mapper* getMapper ()
511511
{ return m_mapper; }
512512

513+
bool isMinimapDisabledByServer()
514+
{ return m_minimap_disabled_by_server; }
515+
513516
// IGameDef interface
514517
virtual IItemDefManager* getItemDefManager();
515518
virtual INodeDefManager* getNodeDefManager();
@@ -590,6 +593,7 @@ class Client : public con::PeerHandler, public InventoryManager, public IGameDef
590593
con::Connection m_con;
591594
IrrlichtDevice *m_device;
592595
Mapper *m_mapper;
596+
bool m_minimap_disabled_by_server;
593597
// Server serialization version
594598
u8 m_server_ser_ver;
595599

‎src/game.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -1857,6 +1857,9 @@ void Game::run()
18571857
updateFrame(highlight_boxes, &graph, &stats, &runData, dtime,
18581858
flags, cam_view);
18591859
updateProfilerGraphs(&graph);
1860+
1861+
// Update if minimap has been disabled by the server
1862+
flags.show_minimap &= !client->isMinimapDisabledByServer();
18601863
}
18611864
}
18621865

‎src/hud.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ with this program; if not, write to the Free Software Foundation, Inc.,
3333
#define HUD_CORNER_CENTER 2
3434

3535
// Note that these visibility flags do not determine if the hud items are
36-
// actually drawn, but rather, allows the item to be drawn should the rest of
37-
// the game state permit it.
36+
// actually drawn, but rather, whether to draw the item should the rest
37+
// of the game state permit it.
3838
#define HUD_FLAG_HOTBAR_VISIBLE (1 << 0)
3939
#define HUD_FLAG_HEALTHBAR_VISIBLE (1 << 1)
4040
#define HUD_FLAG_CROSSHAIR_VISIBLE (1 << 2)

‎src/network/clientpackethandler.cpp

+12
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
2424
#include "log.h"
2525
#include "map.h"
2626
#include "mapsector.h"
27+
#include "minimap.h"
2728
#include "nodedef.h"
2829
#include "serialization.h"
2930
#include "server.h"
@@ -1094,8 +1095,19 @@ void Client::handleCommand_HudSetFlags(NetworkPacket* pkt)
10941095
Player *player = m_env.getLocalPlayer();
10951096
assert(player != NULL);
10961097

1098+
bool was_minimap_visible = player->hud_flags & HUD_FLAG_MINIMAP_VISIBLE;
1099+
10971100
player->hud_flags &= ~mask;
10981101
player->hud_flags |= flags;
1102+
1103+
m_minimap_disabled_by_server = !(player->hud_flags & HUD_FLAG_MINIMAP_VISIBLE);
1104+
1105+
// Hide minimap if it has been disabled by the server
1106+
if (m_minimap_disabled_by_server && was_minimap_visible) {
1107+
// defers a minimap update, therefore only call it if really
1108+
// needed, by checking that minimap was visible before
1109+
m_mapper->setMinimapMode(MINIMAP_MODE_OFF);
1110+
}
10991111
}
11001112

11011113
void Client::handleCommand_HudSetParam(NetworkPacket* pkt)

0 commit comments

Comments
 (0)
Please sign in to comment.