Skip to content

Commit

Permalink
Fix node 0,0,0 being highlighted when enable_node_highlighting == false
Browse files Browse the repository at this point in the history
Without this patch node 0,0,0 is highlighted when enable_node_highligting is false
There is a minor lighting issue remaining, however it seems to be related to a different bug (#1887)
  • Loading branch information
Zeno- committed Dec 1, 2014
1 parent d4f4293 commit 691b18c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
9 changes: 5 additions & 4 deletions src/client.cpp
Expand Up @@ -255,10 +255,11 @@ Client::Client(
m_inventory_updated(false),
m_inventory_from_server(NULL),
m_inventory_from_server_age(0.0),
m_show_hud(true),
m_show_highlighted(false),
m_animation_time(0),
m_crack_level(-1),
m_crack_pos(0,0,0),
m_highlighted_pos(0,0,0),
m_map_seed(0),
m_password(password),
m_access_denied(false),
Expand Down Expand Up @@ -2515,9 +2516,9 @@ int Client::getCrackLevel()
return m_crack_level;
}

void Client::setHighlighted(v3s16 pos, bool show_hud)
void Client::setHighlighted(v3s16 pos, bool show_highlighted)
{
m_show_hud = show_hud;
m_show_highlighted = show_highlighted;
v3s16 old_highlighted_pos = m_highlighted_pos;
m_highlighted_pos = pos;
addUpdateMeshTaskForNode(old_highlighted_pos, false, true);
Expand Down Expand Up @@ -2607,7 +2608,7 @@ void Client::addUpdateMeshTask(v3s16 p, bool ack_to_server, bool urgent)
// Debug: 1-6ms, avg=2ms
data->fill(b);
data->setCrack(m_crack_level, m_crack_pos);
data->setHighlighted(m_highlighted_pos, m_show_hud);
data->setHighlighted(m_highlighted_pos, m_show_highlighted);
data->setSmoothLighting(g_settings->getBool("smooth_lighting"));
}

Expand Down
4 changes: 2 additions & 2 deletions src/client.h
Expand Up @@ -398,7 +398,7 @@ class Client : public con::PeerHandler, public InventoryManager, public IGameDef
int getCrackLevel();
void setCrack(int level, v3s16 pos);

void setHighlighted(v3s16 pos, bool show_hud);
void setHighlighted(v3s16 pos, bool show_higlighted);
v3s16 getHighlighted(){ return m_highlighted_pos; }

u16 getHP();
Expand Down Expand Up @@ -509,7 +509,7 @@ class Client : public con::PeerHandler, public InventoryManager, public IGameDef
float m_inventory_from_server_age;
std::set<v3s16> m_active_blocks;
PacketCounter m_packetcounter;
bool m_show_hud;
bool m_show_highlighted;
// Block mesh animation parameters
float m_animation_time;
int m_crack_level;
Expand Down
3 changes: 2 additions & 1 deletion src/game.cpp
Expand Up @@ -2697,7 +2697,8 @@ void Game::toggleHud(float *statustext_time, bool *flag)
*flag = !*flag;
*statustext_time = 0;
statustext = msg[*flag];
client->setHighlighted(client->getHighlighted(), *flag);
if (g_settings->getBool("enable_node_highlighting"))
client->setHighlighted(client->getHighlighted(), *flag);
}


Expand Down

0 comments on commit 691b18c

Please sign in to comment.