summaryrefslogtreecommitdiff
path: root/indra/newview/llfloatermap.cpp
blob: d53929272cdb3efa6dd7afb89f9284e930c9b812 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
/** 
 * @file llfloatermap.cpp
 * @brief The "mini-map" or radar in the upper right part of the screen.
 *
 * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc.
 * $License$
 */

#include "llviewerprecompiledheaders.h"

// self include
#include "llfloatermap.h"

// Library includes
#include "llfontgl.h"
#include "llinventory.h"
#include "message.h"

// Viewer includes
#include "llagent.h"
#include "llcolorscheme.h"
#include "llviewercontrol.h"
#include "lldraghandle.h"
#include "lleconomy.h"
#include "llfloaterworldmap.h"
#include "llfocusmgr.h"
#include "llnetmap.h"
#include "llregionhandle.h"
#include "llresizebar.h"
#include "llresizehandle.h"
#include "llresmgr.h"
#include "llsky.h"
#include "llsliderctrl.h"
#include "llspinctrl.h"
#include "llstatgraph.h"
#include "llstatusbar.h"
#include "lltextbox.h"
#include "llui.h"
#include "llviewermenu.h"
#include "llviewerparceloverlay.h"
#include "llviewerregion.h"
#include "llviewerstats.h"
#include "viewer.h"

#include "llglheaders.h"

//
// Constants
//
const S32 LEGEND_SIZE = 16;

const S32 HPAD = 4;

const S32 MAP_COMBOBOX_WIDTH = 128;
const S32 MAP_COMBOBOX_HEIGHT = 20;
const S32 GO_BTN_WIDTH = 20;
const S32 SLIDER_WIDTH = LEGEND_SIZE + MAP_COMBOBOX_WIDTH + HPAD + GO_BTN_WIDTH - HPAD;
const S32 SLIDER_HEIGHT = 16;

const S32 SIM_STAT_WIDTH = 8;

const S32 MAP_SCALE_MIN = 35;	// in pixels per sim
const S32 MAP_SCALE_MAX = 180;	// in pixels per sim
const S32 MAP_SCALE_INCREMENT = 5;

const char MAP_TITLE[] = "";

const S32 NETMAP_MIN_WIDTH = 128;
const S32 NETMAP_MIN_HEIGHT = 128;

const S32 FLOATERMAP_MIN_WIDTH = 
	SLIDER_WIDTH + 
	2 * (HPAD + LLPANEL_BORDER_WIDTH);

const S32 MORE_BTN_VPAD = 2;

const S32 SPIN_VPAD = 4;
  
const S32 TRACKING_LABEL_HEIGHT = 16;

const S32 FLOATERMAP_MIN_HEIGHT_LARGE = 60;

//
// Globals
//
LLFloaterMap *gFloaterMap = NULL;




//
// Member functions
//

LLFloaterMap::LLFloaterMap(const std::string& name)
	:
	LLFloater(name, 
				"FloaterMapRect", 
				MAP_TITLE, 
				TRUE, 
				FLOATERMAP_MIN_WIDTH, 
				FLOATERMAP_MIN_HEIGHT_LARGE, 
				FALSE, 
				FALSE, 
				TRUE)	// close button
{
	const S32 LEFT = LLPANEL_BORDER_WIDTH;
	const S32 TOP = mRect.getHeight();

	S32 y = 0;

	// Map itself
	LLRect map_rect(
		LEFT, 
		TOP - LLPANEL_BORDER_WIDTH,
		mRect.getWidth() - LLPANEL_BORDER_WIDTH,
		y );
	LLColor4 bg_color = gColors.getColor( "NetMapBackgroundColor" );
	mMap = new LLNetMap("Net Map", map_rect, bg_color);
	mMap->setFollowsAll();
	addChildAtEnd(mMap);

	// Get the drag handle all the way in back
	removeChild(mDragHandle);
	addChildAtEnd(mDragHandle);

	setIsChrome(TRUE);
}


LLFloaterMap::~LLFloaterMap()
{
}


// virtual 
void LLFloaterMap::setVisible(BOOL visible)
{
	LLFloater::setVisible(visible);

	gSavedSettings.setBOOL("ShowMiniMap", visible);
}


// virtual
void LLFloaterMap::onClose(bool app_quitting)
{
	LLFloater::setVisible(FALSE);

	if (!app_quitting)
	{
		gSavedSettings.setBOOL("ShowMiniMap", FALSE);
	}
}

BOOL LLFloaterMap::canClose()
{
	return !gQuit;
}


// virtual
void LLFloaterMap::draw()
{
	if( getVisible() )
	{
		// Note: we can't just gAgent.check cameraMouselook() because the transition states are wrong.
		if( gAgent.cameraMouselook())
		{
			setMouseOpaque(FALSE);
			mDragHandle->setMouseOpaque(FALSE);

			drawChild(mMap);
		}
		else
		{
			setMouseOpaque(TRUE);
			mDragHandle->setMouseOpaque(TRUE);

			LLFloater::draw();
		}
	}
}

// static
void LLFloaterMap::toggle(void*)
{
	if( gFloaterMap )
	{
		if (gFloaterMap->getVisible())
		{
			gFloaterMap->close();
		}
		else
		{
			gFloaterMap->open();		/* Flawfinder: ignore */
		}
	}
}