Skip to content
Snippets Groups Projects
Commit 8799193f authored by James Cook's avatar James Cook
Browse files

EXT-946 There is no terrain on the Mini-Map. Unclear if this fixes the...

EXT-946 There is no terrain on the Mini-Map.  Unclear if this fixes the problem or not, does not reliably repro for me.  Found several uninitialized variables in LLNetMap and fixed those.  Reviewed with Richard.
parent 69228f11
No related branches found
No related tags found
No related merge requests found
...@@ -30,7 +30,6 @@ ...@@ -30,7 +30,6 @@
* $/LicenseInfo$ * $/LicenseInfo$
*/ */
#include <string>
#include "llviewerprecompiledheaders.h" #include "llviewerprecompiledheaders.h"
// self include // self include
...@@ -51,13 +50,6 @@ ...@@ -51,13 +50,6 @@
#include "lltextbox.h" #include "lltextbox.h"
#include "llviewermenu.h" #include "llviewermenu.h"
//
// Constants
//
const F32 MAP_SCALE_MIN = 64;
const F32 MAP_SCALE_MID = 172;
const F32 MAP_SCALE_MAX = 512;
// //
// Member functions // Member functions
// //
......
...@@ -65,21 +65,30 @@ ...@@ -65,21 +65,30 @@
static LLDefaultChildRegistry::Register<LLNetMap> r1("net_map"); static LLDefaultChildRegistry::Register<LLNetMap> r1("net_map");
const F32 MAP_SCALE_MIN = 64;
const F32 MAP_SCALE_MID = 172;
const F32 MAP_SCALE_MAX = 512;
const F32 MAP_SCALE_INCREMENT = 16; const F32 MAP_SCALE_INCREMENT = 16;
const F32 MAP_MIN_PICK_DIST = 4; const F32 MAP_MIN_PICK_DIST = 4;
const F32 MAX_PRIM_RADIUS = 256.0f; // Don't try to draw giant mega-prims on the mini map const F32 MAX_PRIM_RADIUS = 256.0f; // Don't try to draw giant mega-prims on the mini map
LLNetMap::LLNetMap (const Params & p) : LLNetMap::LLNetMap (const Params & p)
LLUICtrl (p), : LLUICtrl (p),
mScale(128.0f),
mBackgroundColor (p.bg_color()), mBackgroundColor (p.bg_color()),
mRotateMap(FALSE) mScale( MAP_SCALE_MID ),
mPixelsPerMeter( MAP_SCALE_MID / REGION_WIDTH_METERS ),
mObjectMapTPM(0.f),
mObjectMapPixels(0.f),
mTargetPanX(0.f),
mTargetPanY(0.f),
mCurPanX(0.f),
mCurPanY(0.f),
mUpdateNow(FALSE),
mObjectImageCenterGlobal( gAgent.getCameraPositionGlobal() ),
mObjectRawImagep(),
mObjectImagep(),
mClosestAgentToCursor(),
mClosestAgentAtLastRightClick(),
mRotateMap(FALSE),
mToolTipMsg()
{ {
mObjectImageCenterGlobal = gAgent.getCameraPositionGlobal();
mPixelsPerMeter = mScale / REGION_WIDTH_METERS;
} }
LLNetMap::~LLNetMap() LLNetMap::~LLNetMap()
......
...@@ -38,12 +38,17 @@ ...@@ -38,12 +38,17 @@
#include "v3math.h" #include "v3math.h"
#include "v3dmath.h" #include "v3dmath.h"
#include "v4color.h" #include "v4color.h"
#include "llimage.h" #include "llpointer.h"
class LLColor4U; class LLColor4U;
class LLCoordGL; class LLCoordGL;
class LLImageRaw;
class LLTextBox; class LLTextBox;
class LLViewerTexture ; class LLViewerTexture;
const F32 MAP_SCALE_MIN = 64.f;
const F32 MAP_SCALE_MID = 172.f;
const F32 MAP_SCALE_MAX = 512.f;
class LLNetMap : public LLUICtrl class LLNetMap : public LLUICtrl
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment