Skip to content

Commit

Permalink
Bugfix: make waypoints respect camera offset
Browse files Browse the repository at this point in the history
  • Loading branch information
RealBadAngel authored and RealBadAngel committed May 5, 2014
1 parent 09e8bbe commit 6f511b1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/game.cpp
Expand Up @@ -3594,7 +3594,7 @@ void the_game(bool &kill, bool random_input, InputHandler *input,
Draw lua hud items
*/
if (show_hud)
hud.drawLuaElements();
hud.drawLuaElements(camera.getOffset());

/*
Draw gui
Expand Down
5 changes: 3 additions & 2 deletions src/hud.cpp
Expand Up @@ -46,7 +46,7 @@ Hud::Hud(video::IVideoDriver *driver, scene::ISceneManager* smgr,
this->gamedef = gamedef;
this->player = player;
this->inventory = inventory;

m_screensize = v2u32(0, 0);
m_displaycenter = v2s32(0, 0);
m_hotbar_imagesize = floor(HOTBAR_IMAGE_SIZE * porting::getDisplayDensity() + 0.5);
Expand Down Expand Up @@ -222,7 +222,7 @@ void Hud::drawItems(v2s32 upperleftpos, s32 itemcount, s32 offset,
}


void Hud::drawLuaElements() {
void Hud::drawLuaElements(v3s16 camera_offset) {
for (size_t i = 0; i != player->hud.size(); i++) {
HudElement *e = player->hud[i];
if (!e)
Expand Down Expand Up @@ -277,6 +277,7 @@ void Hud::drawLuaElements() {
v3f w_pos = e->world_pos * BS;
float distance = floor(10 * p_pos.getDistanceFrom(e->world_pos)) / 10;
scene::ICameraSceneNode* camera = smgr->getActiveCamera();
w_pos -= intToFloat(camera_offset, BS);
core::matrix4 trans = camera->getProjectionMatrix();
trans *= camera->getViewMatrix();
f32 transformed_pos[4] = { w_pos.X, w_pos.Y, w_pos.Z, 1.0f };
Expand Down
3 changes: 2 additions & 1 deletion src/hud.h
Expand Up @@ -115,6 +115,7 @@ class Hud {
bool use_hotbar_image;
std::string hotbar_selected_image;
bool use_hotbar_selected_image;
v3s16 camera_offset;

Hud(video::IVideoDriver *driver,scene::ISceneManager* smgr,
gui::IGUIEnvironment* guienv, gui::IGUIFont *font,
Expand All @@ -125,7 +126,7 @@ class Hud {
void resizeHotbar();
void drawCrosshair();
void drawSelectionBoxes(std::vector<aabb3f> &hilightboxes);
void drawLuaElements();
void drawLuaElements(v3s16 camera_offset);
private:
void drawStatbar(v2s32 pos, u16 corner, u16 drawdir,
std::string texture, s32 count, v2s32 offset);
Expand Down

0 comments on commit 6f511b1

Please sign in to comment.