summaryrefslogtreecommitdiff
path: root/indra/newview/llfloaterscriptdebug.cpp
blob: 49cb5d34ff91608733b7884c25073ba9c8672b06 (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
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
/**
 * @file llfloaterscriptdebug.cpp
 * @brief Chat window for showing script errors and warnings
 *
 * $LicenseInfo:firstyear=2006&license=viewerlgpl$
 * Second Life Viewer Source Code
 * Copyright (C) 2010, Linden Research, Inc.
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation;
 * version 2.1 of the License only.
 *
 * This library is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 *
 * Linden Research, Inc., 945 Battery Street, San Francisco, CA  94111  USA
 * $/LicenseInfo$
 */

#include "llviewerprecompiledheaders.h"

#include "llfloaterscriptdebug.h"

#include "llfloaterreg.h"
#include "lluictrlfactory.h"
#include "llfontgl.h"
#include "llrect.h"
#include "llerror.h"
#include "llstring.h"
#include "llvoavatarself.h"
#include "message.h"

// project include
#include "llviewertexteditor.h"
#include "llviewercontrol.h"
#include "llviewerobjectlist.h"
#include "llviewertexturelist.h"

//
// Statics
//

//
// Member Functions
//
LLFloaterScriptDebug::LLFloaterScriptDebug(const LLSD& key)
  : LLMultiFloater(key)
{
    // avoid resizing of the window to match
    // the initial size of the tabbed-childs, whenever a tab is opened or closed
    mAutoResize = false;
    // enabled autocous blocks controling focus via  LLFloaterReg::showInstance
    setAutoFocus(false);
}

LLFloaterScriptDebug::~LLFloaterScriptDebug()
{
}

void LLFloaterScriptDebug::show(const LLUUID& object_id)
{
    addOutputWindow(object_id);
}

bool LLFloaterScriptDebug::postBuild()
{
    LLMultiFloater::postBuild();

    if (mTabContainer)
    {
        return true;
    }

    return false;
}

void LLFloaterScriptDebug::setVisible(bool visible)
{
    if(visible)
    {
        LLFloaterScriptDebugOutput* floater_output = LLFloaterReg::findTypedInstance<LLFloaterScriptDebugOutput>("script_debug_output", LLUUID::null);
        if (floater_output == NULL)
        {
            floater_output = dynamic_cast<LLFloaterScriptDebugOutput*>(LLFloaterReg::showInstance("script_debug_output", LLUUID::null, false));
            if (floater_output)
            {
                addFloater(floater_output, false);
            }
        }

    }
    LLMultiFloater::setVisible(visible);
}

void LLFloaterScriptDebug::closeFloater(bool app_quitting/* = false*/)
{
    if(app_quitting)
    {
        LLMultiFloater::closeFloater(app_quitting);
    }
    else
    {
        setVisible(false);
    }
}

LLFloater* LLFloaterScriptDebug::addOutputWindow(const LLUUID &object_id)
{
    LLMultiFloater* host = LLFloaterReg::showTypedInstance<LLMultiFloater>("script_debug", LLSD());
    if (!host)
        return NULL;

    LLFloater::setFloaterHost(host);
    // prevent stealing focus, see EXT-8040
    LLFloater* floaterp = LLFloaterReg::showInstance("script_debug_output", object_id, false);
    LLFloater::setFloaterHost(NULL);

    return floaterp;
}

void LLFloaterScriptDebug::addScriptLine(const std::string &utf8mesg, const std::string &user_name, const LLColor4& color, const LLUUID& source_id)
{
    LLViewerObject* objectp = gObjectList.findObject(source_id);
    std::string floater_label;

    // Handle /me messages.
    std::string prefix = utf8mesg.substr(0, 4);
    std::string message = (prefix == "/me " || prefix == "/me'") ? user_name + utf8mesg.substr(3) : utf8mesg;

    if (objectp)
    {
        if(objectp->isHUDAttachment())
        {
            if (isAgentAvatarValid())
            {
                ((LLViewerObject*)gAgentAvatarp)->setIcon(LLViewerTextureManager::getFetchedTextureFromFile("script_error.j2c", FTT_LOCAL_FILE, true, LLGLTexture::BOOST_UI));
            }
        }
        else
        {
            objectp->setIcon(LLViewerTextureManager::getFetchedTextureFromFile("script_error.j2c", FTT_LOCAL_FILE, true, LLGLTexture::BOOST_UI));
        }
        floater_label = llformat("%s(%.0f, %.0f, %.0f)",
                        user_name.c_str(),
                        objectp->getPositionRegion().mV[VX],
                        objectp->getPositionRegion().mV[VY],
                        objectp->getPositionRegion().mV[VZ]);
    }
    else
    {
        floater_label = user_name;
    }

    addOutputWindow(source_id);

    // add to "All" floater
    LLFloaterScriptDebugOutput* floaterp =  LLFloaterReg::getTypedInstance<LLFloaterScriptDebugOutput>("script_debug_output", LLUUID::null);
    if (floaterp)
    {
        floaterp->addLine(message, user_name, color);
    }

    // add to specific script instance floater
    floaterp = LLFloaterReg::getTypedInstance<LLFloaterScriptDebugOutput>("script_debug_output", source_id);
    if (floaterp)
    {
        floaterp->addLine(message, floater_label, color);
    }
}

//
// LLFloaterScriptDebugOutput
//

LLFloaterScriptDebugOutput::LLFloaterScriptDebugOutput(const LLSD& object_id)
  : LLFloater(LLSD(object_id)),
    mObjectID(object_id.asUUID())
{
    // enabled autocous blocks controling focus via  LLFloaterReg::showInstance
    setAutoFocus(false);
}

bool LLFloaterScriptDebugOutput::postBuild()
{
    LLFloater::postBuild();
    mHistoryEditor = getChild<LLViewerTextEditor>("Chat History Editor");
    return true;
}

LLFloaterScriptDebugOutput::~LLFloaterScriptDebugOutput()
{
}

void LLFloaterScriptDebugOutput::addLine(const std::string &utf8mesg, const std::string &user_name, const LLColor4& color)
{
    if (mObjectID.isNull())
    {
        setCanTearOff(false);
        setCanClose(false);
    }
    else
    {
        setTitle(user_name);
        setShortTitle(user_name);
    }

    mHistoryEditor->appendText(utf8mesg, true, LLStyle::Params().color(color));
    mHistoryEditor->blockUndo();
}