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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
|
/**
* @file llconsole.cpp
* @brief a scrolling console output device
*
* $LicenseInfo:firstyear=2001&license=viewergpl$
*
* Copyright (c) 2001-2007, Linden Research, Inc.
*
* Second Life Viewer Source Code
* The source code in this file ("Source Code") is provided by Linden Lab
* to you under the terms of the GNU General Public License, version 2.0
* ("GPL"), unless you have obtained a separate licensing agreement
* ("Other License"), formally executed by you and Linden Lab. Terms of
* the GPL can be found in doc/GPL-license.txt in this distribution, or
* online at http://secondlife.com/developers/opensource/gplv2
*
* There are special exceptions to the terms and conditions of the GPL as
* it is applied to this Source Code. View the full text of the exception
* in the file doc/FLOSS-exception.txt in this software distribution, or
* online at http://secondlife.com/developers/opensource/flossexception
*
* By copying, modifying or distributing this software, you acknowledge
* that you have read and understood your obligations described above,
* and agree to abide by those obligations.
*
* ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
* WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
* COMPLETENESS OR PERFORMANCE.
* $/LicenseInfo$
*/
#include "llviewerprecompiledheaders.h"
#include "llconsole.h"
// linden library includes
#include "llmath.h"
#include "llviewercontrol.h"
#include "llcriticaldamp.h"
#include "llfontgl.h"
#include "llgl.h"
#include "llui.h"
#include "llviewerimage.h"
#include "llviewerimagelist.h"
#include "llviewerwindow.h"
#include "llfontgl.h"
#include "llmath.h"
#include "llstartup.h"
#include "viewer.h"
// Used for LCD display
extern void AddNewDebugConsoleToLCD(const LLWString &newLine);
LLConsole* gConsole = NULL; // Created and destroyed in LLViewerWindow.
const F32 FADE_DURATION = 2.f;
const S32 MIN_CONSOLE_WIDTH = 200;
LLConsole::LLConsole(const std::string& name, const U32 max_lines, const LLRect &rect,
S32 font_size_index, F32 persist_time )
:
LLFixedBuffer(max_lines),
LLView(name, rect, FALSE),
mLastBoxHeight(0),
mLastBoxWidth(0)
{
mLinePersistTime = persist_time; // seconds
mFadeTime = persist_time - FADE_DURATION;
setFontSize( font_size_index );
setMaxLines(gSavedSettings.getS32("ConsoleMaxLines"));
}
LLConsole::~LLConsole()
{
mColors.clear();
}
EWidgetType LLConsole::getWidgetType() const
{
return WIDGET_TYPE_CONSOLE;
}
LLString LLConsole::getWidgetTag() const
{
return LL_CONSOLE_TAG;
}
void LLConsole::setLinePersistTime(F32 seconds)
{
mLinePersistTime = seconds;
mFadeTime = mLinePersistTime - FADE_DURATION;
}
void LLConsole::reshape(S32 width, S32 height, BOOL called_from_parent)
{
S32 new_width = llmax(50, llmin(mRect.getWidth(), gViewerWindow->getWindowWidth()));
S32 new_height = llmax(llfloor(mFont->getLineHeight()) + 15, llmin(mRect.getHeight(), gViewerWindow->getWindowHeight()));
LLView::reshape(new_width, new_height, called_from_parent);
}
void LLConsole::setFontSize(S32 size_index)
{
if (-1 == size_index)
{
mFont = LLFontGL::sMonospace;
}
else if (0 == size_index)
{
mFont = LLFontGL::sSansSerif;
}
else if (1 == size_index)
{
mFont = LLFontGL::sSansSerifBig;
}
else
{
mFont = LLFontGL::sSansSerifHuge;
}
}
void LLConsole::draw()
{
LLGLSUIDefault gls_ui;
addQueuedLines();
// skip lines added more than mLinePersistTime ago
F32 cur_time = mTimer.getElapsedTimeF32();
if( LLStartUp::getStartupState() != STATE_STARTED )
{
S32 count = mLines.size();
S32 i = 0;
while( count-- )
{
mAddTimes[i] = cur_time;
i = (i+1) % mMaxLines;
}
}
F32 skip_time = cur_time - mLinePersistTime;
F32 fade_time = cur_time - mFadeTime;
// draw remaining lines
F32 x_pos = 0.f;
F32 y_pos = 0.f;
S32 line_count = mLines.size();
// remove stale lines
for (S32 line_num = 0; line_num < line_count; line_num++)
{
if((mLinePersistTime > 0.f) && (mAddTimes[0] - skip_time)/(mLinePersistTime - mFadeTime) <= 0.f)
{
mLines.pop_front();
mAddTimes.pop_front();
mLineLengths.pop_front();
mColors.pop_front();
}
}
line_count = mLines.size();
S32 i;
if (line_count == 0)
{
mLastBoxHeight = 0;
mLastBoxWidth = 0;
return;
}
else
{
LLUUID image_id;
image_id.set(gViewerArt.getString("rounded_square.tga"));
LLViewerImage* imagep = gImageList.getImage(image_id, MIPMAP_FALSE, TRUE);
F32 console_opacity = llclamp(gSavedSettings.getF32("ConsoleBackgroundOpacity"), 0.f, 1.f);
LLColor4 color(0.f, 0.f, 0.f, console_opacity);
S32 max_width = 0;
for (i = 0; i < line_count; i++)
{
max_width = llmax(max_width, mFont->getWidth(mLines[i].c_str()) + 30);
}
max_width = llmin(max_width, gViewerWindow->getWindowWidth());
F32 u = 1.f;//LLCriticalDamp::getInterpolant(0.1f);
S32 target_height = llfloor(line_count * mFont->getLineHeight() + 15);
S32 target_width = max_width;
mLastBoxHeight = llmax(target_height, (S32)lerp((F32)mLastBoxHeight, (F32)target_height, u));
mLastBoxWidth = llmax(MIN_CONSOLE_WIDTH, llmax(target_width, (S32)lerp((F32)mLastBoxWidth, (F32)target_width, u)));
gl_draw_scaled_image_with_border(-15, -10, 16, 16, mLastBoxWidth + 15, mLastBoxHeight,
imagep, color, TRUE );
}
y_pos += (line_count-1) * mFont->getLineHeight();
for (i = 0; i < line_count; i++)
{
F32 alpha;
if ((mLinePersistTime > 0.f) && (mAddTimes[i] < fade_time))
{
alpha = (mAddTimes[i] - skip_time)/(mLinePersistTime - mFadeTime);
}
else
{
alpha = 1.0f;
}
if( alpha > 0.f )
{
// text line itself
mFont->render(mLines[i], 0, x_pos, y_pos,
LLColor4(
mColors[i].mV[VRED],
mColors[i].mV[VGREEN],
mColors[i].mV[VBLUE],
mColors[i].mV[VALPHA]*alpha),
LLFontGL::LEFT,
LLFontGL::BASELINE,
LLFontGL::DROP_SHADOW,
S32_MAX,
mLastBoxWidth
);
}
y_pos -= mFont->getLineHeight();
}
}
void LLConsole::addLine(const LLString& utf8line)
{
LLWString wline = utf8str_to_wstring(utf8line);
addLine(wline, 0.f, LLColor4(1.f, 1.f, 1.f, 1.f));
}
void LLConsole::addLine(const LLWString& wline)
{
addLine(wline, 0.f, LLColor4(1.f, 1.f, 1.f, 1.f));
}
void LLConsole::addLine(const LLString& utf8line, F32 size, const LLColor4 &color)
{
LLWString wline = utf8str_to_wstring(utf8line);
addLine(wline, size, color);
}
void LLConsole::addLine(const LLWString& wline, F32 size, const LLColor4 &color)
{
while (mLineQueue.size() >= mMaxLines)
{
mLineQueue.pop_front();
}
mLineQueue.push_back(LineInfo(wline, size, color, mTimer.getElapsedTimeF32()));
#if LL_WINDOWS && LL_LCD_COMPILE
// add to LCD screen
AddNewDebugConsoleToLCD(wline);
#endif
}
void LLConsole::addQueuedLines()
{
for (line_queue_t::iterator iter = mLineQueue.begin();
iter != mLineQueue.end(); ++iter)
{
LineInfo& line_info = *iter;
LLWString wline = line_info.wline;
//F32 size = line_info.size;
LLColor4 color = line_info.color;
if (!wline.empty() && mFont != NULL)
{
// Wrap lines that are longer than the view is wide.
S32 offset = 0;
while( offset < (S32)wline.length() )
{
S32 skip_chars; // skip '\n'
// Figure out if a word-wrapped line fits here.
LLWString::size_type line_end = wline.find_first_of(llwchar('\n'), offset);
if (line_end != LLWString::npos)
{
skip_chars = 1; // skip '\n'
}
else
{
line_end = wline.size();
skip_chars = 0;
}
U32 drawable = mFont->maxDrawableChars(wline.c_str()+offset, (F32)mRect.getWidth(), line_end-offset, TRUE);
if (drawable != 0)
{
LLFixedBuffer::addLine(wline.substr(offset, drawable));
mAddTimes[mAddTimes.size()-1] = line_info.add_time;
}
else
{
// force a blank line
LLFixedBuffer::addLine(" ");
}
mColors.push_back(color);
offset += (drawable + skip_chars);
}
}
}
mLineQueue.clear();
}
void LLConsole::removeExtraLines()
{
while((S32)mColors.size() > llmax(0, (S32)(mMaxLines - 1)))
{
mColors.pop_front();
}
LLFixedBuffer::removeExtraLines();
}
|