summaryrefslogtreecommitdiff
path: root/indra/newview/llpanellandmarkinfo.cpp
blob: 41373cd7f57624dff1b3bb194b6ffe33a934e31c (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
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
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
/**
 * @file llpanellandmarkinfo.cpp
 * @brief Displays landmark info in Side Tray.
 *
 * $LicenseInfo:firstyear=2009&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 "llpanellandmarkinfo.h"

#include "llcombobox.h"
#include "lliconctrl.h"
#include "llinventoryfunctions.h"
#include "lllineeditor.h"
#include "lltextbox.h"
#include "lltexteditor.h"
#include "lltrans.h"

#include "llagent.h"
#include "llagentui.h"
#include "lllandmarkactions.h"
#include "llparcel.h"
#include "llslurl.h"
#include "llviewerinventory.h"
#include "llviewerparcelmgr.h"
#include "llviewerregion.h"

//----------------------------------------------------------------------------
// Aux types and methods
//----------------------------------------------------------------------------

typedef std::pair<LLUUID, std::string> folder_pair_t;

static bool cmp_folders(const folder_pair_t& left, const folder_pair_t& right);

static LLPanelInjector<LLPanelLandmarkInfo> t_landmark_info("panel_landmark_info");

// Statics for textures filenames
static std::string icon_pg;
static std::string icon_m;
static std::string icon_r;

LLPanelLandmarkInfo::LLPanelLandmarkInfo()
:   LLPanelPlaceInfo()
{}

// virtual
LLPanelLandmarkInfo::~LLPanelLandmarkInfo()
{}

// virtual
bool LLPanelLandmarkInfo::postBuild()
{
    LLPanelPlaceInfo::postBuild();

    mOwner = getChild<LLTextBox>("owner");
    mCreator = getChild<LLTextBox>("creator");
    mCreated = getChild<LLTextBox>("created");

    mLandmarkTitle = getChild<LLLineEditor>("title_value");
    mLandmarkTitleEditor = getChild<LLLineEditor>("title_editor");
    mNotesEditor = getChild<LLTextEditor>("notes_editor");
    mFolderCombo = getChild<LLComboBox>("folder_combo");

    icon_pg = getString("icon_PG");
    icon_m = getString("icon_M");
    icon_r = getString("icon_R");

    return true;
}

// virtual
void LLPanelLandmarkInfo::resetLocation()
{
    LLPanelPlaceInfo::resetLocation();

    std::string loading = LLTrans::getString("LoadingData");
    mCreator->setText(loading);
    mOwner->setText(loading);
    mCreated->setText(loading);
    mLandmarkTitle->setText(LLStringUtil::null);
    mLandmarkTitleEditor->setText(LLStringUtil::null);
    mNotesEditor->setText(LLStringUtil::null);
}

// virtual
void LLPanelLandmarkInfo::setInfoType(EInfoType type)
{
    LLUUID dest_folder;
    setInfoType(type, dest_folder);
}

// Sets CREATE_LANDMARK infotype and creates landmark at desired folder
void LLPanelLandmarkInfo::setInfoAndCreateLandmark(const LLUUID& folder_id)
{
    setInfoType(CREATE_LANDMARK, folder_id);
}

void LLPanelLandmarkInfo::setInfoType(EInfoType type, const LLUUID &folder_id)
{
    LLPanel* landmark_info_panel = getChild<LLPanel>("landmark_info_panel");

    bool is_info_type_create_landmark = type == CREATE_LANDMARK;

    landmark_info_panel->setVisible(type == LANDMARK);

    getChild<LLTextBox>("folder_label")->setVisible(is_info_type_create_landmark);
    getChild<LLButton>("edit_btn")->setVisible(!is_info_type_create_landmark);
    mFolderCombo->setVisible(is_info_type_create_landmark);

    switch(type)
    {
        case CREATE_LANDMARK:
        {
            mCurrentTitle = getString("title_create_landmark");

            mLandmarkTitle->setVisible(false);
            mLandmarkTitleEditor->setVisible(true);
            mNotesEditor->setEnabled(true);

            LLViewerParcelMgr* parcel_mgr = LLViewerParcelMgr::getInstance();
            LLParcel* parcel = parcel_mgr->getAgentParcel();
            std::string name = parcel->getName();
            LLVector3 agent_pos = gAgent.getPositionAgent();

            if (name.empty())
            {
                S32 region_x = ll_round(agent_pos.mV[VX]);
                S32 region_y = ll_round(agent_pos.mV[VY]);
                S32 region_z = ll_round(agent_pos.mV[VZ]);

                std::string region_name;
                LLViewerRegion* region = parcel_mgr->getSelectionRegion();
                if (region)
                {
                    region_name = region->getName();
                }
                else
                {
                    std::string desc;
                    LLAgentUI::buildLocationString(desc, LLAgentUI::LOCATION_FORMAT_NORMAL, agent_pos);
                    region_name = desc;
                }

                mLandmarkTitleEditor->setText(llformat("%s (%d, %d, %d)",
                                      region_name.c_str(), region_x, region_y, region_z));
            }
            else
            {
                mLandmarkTitleEditor->setText(name);
            }

            LLUUID owner_id = parcel->getOwnerID();
            if (owner_id.notNull())
            {
                if (parcel->getIsGroupOwned())
                {
                    std::string owner_name = LLSLURL("group", parcel->getGroupID(), "inspect").getSLURLString();
                    mParcelOwner->setText(owner_name);
                }
                else
                {
                    std::string owner_name = LLSLURL("agent", owner_id, "inspect").getSLURLString();
                    mParcelOwner->setText(owner_name);
                }
            }
            else
            {
                mParcelOwner->setText(getString("public"));
            }

            // Moved landmark creation here from LLPanelLandmarkInfo::processParcelInfo()
            // because we use only agent's current coordinates instead of waiting for
            // remote parcel request to complete.
            if (!LLLandmarkActions::landmarkAlreadyExists())
            {
                createLandmark(folder_id);
            }
        }
        break;

        case LANDMARK:
        default:
            mCurrentTitle = getString("title_landmark");

            mLandmarkTitle->setVisible(true);
            mLandmarkTitleEditor->setVisible(false);
            mNotesEditor->setEnabled(false);
        break;
    }

    populateFoldersList();

    // Prevent the floater from losing focus (if the sidepanel is undocked).
    setFocus(true);

    LLPanelPlaceInfo::setInfoType(type);
}

// virtual
void LLPanelLandmarkInfo::processParcelInfo(const LLParcelData& parcel_data)
{
    LLPanelPlaceInfo::processParcelInfo(parcel_data);

    // HACK: Flag 0x2 == adult region,
    // Flag 0x1 == mature region, otherwise assume PG
    if (parcel_data.flags & 0x2)
    {
        mMaturityRatingIcon->setValue(icon_r);
        mMaturityRatingText->setText(LLViewerRegion::accessToString(SIM_ACCESS_ADULT));
    }
    else if (parcel_data.flags & 0x1)
    {
        mMaturityRatingIcon->setValue(icon_m);
        mMaturityRatingText->setText(LLViewerRegion::accessToString(SIM_ACCESS_MATURE));
    }
    else
    {
        mMaturityRatingIcon->setValue(icon_pg);
        mMaturityRatingText->setText(LLViewerRegion::accessToString(SIM_ACCESS_PG));
    }

    if (parcel_data.owner_id.notNull())
    {
        if (parcel_data.flags & 0x4) // depends onto DRTSIM-453
        {
            std::string owner_name = LLSLURL("group", parcel_data.owner_id, "inspect").getSLURLString();
            mParcelOwner->setText(owner_name);
        }
        else
        {
            std::string owner_name = LLSLURL("agent", parcel_data.owner_id, "inspect").getSLURLString();
            mParcelOwner->setText(owner_name);
        }
    }
    else
    {
        mParcelOwner->setText(getString("public"));
    }

    LLSD info;
    info["update_verbs"] = true;
    info["global_x"] = parcel_data.global_x;
    info["global_y"] = parcel_data.global_y;
    info["global_z"] = parcel_data.global_z;
    notifyParent(info);
}

void LLPanelLandmarkInfo::displayItemInfo(const LLInventoryItem* pItem)
{
    if (!pItem)
        return;

    if(!gCacheName)
        return;

    const LLPermissions& perm = pItem->getPermissions();

    //////////////////
    // CREATOR NAME //
    //////////////////
    if (pItem->getCreatorUUID().notNull())
    {
        // IDEVO
        LLUUID creator_id = pItem->getCreatorUUID();
        std::string name =
            LLSLURL("agent", creator_id, "inspect").getSLURLString();
        mCreator->setText(name);
    }
    else
    {
        mCreator->setText(getString("unknown"));
    }

    ////////////////
    // OWNER NAME //
    ////////////////
    if(perm.isOwned())
    {
        std::string name;
        if (perm.isGroupOwned())
        {
            LLUUID group_id = perm.getGroup();
            name = LLSLURL("group", group_id, "inspect").getSLURLString();
        }
        else
        {
            LLUUID owner_id = perm.getOwner();
            name = LLSLURL("agent", owner_id, "inspect").getSLURLString();
        }
        mOwner->setText(name);
    }
    else
    {
        std::string public_str = getString("public");
        mOwner->setText(public_str);
    }

    //////////////////
    // ACQUIRE DATE //
    //////////////////
    time_t time_utc = pItem->getCreationDate();
    if (0 == time_utc)
    {
        mCreated->setText(getString("unknown"));
    }
    else
    {
        std::string timeStr = getString("acquired_date");
        LLSD substitution;
        substitution["datetime"] = (S32) time_utc;
        LLStringUtil::format (timeStr, substitution);
        mCreated->setText(timeStr);
    }

    mLandmarkTitle->setText(pItem->getName());
    mLandmarkTitleEditor->setText(pItem->getName());
    mNotesEditor->setText(pItem->getDescription());
}

void LLPanelLandmarkInfo::toggleLandmarkEditMode(bool enabled)
{
    // If switching to edit mode while creating landmark
    // the "Create Landmark" title remains.
    if (enabled && mInfoType != CREATE_LANDMARK)
    {
        mTitle->setText(getString("title_edit_landmark"));
    }
    else
    {
        mTitle->setText(mCurrentTitle);

        mLandmarkTitle->setText(mLandmarkTitleEditor->getText());
    }

    if (mNotesEditor->getReadOnly() == enabled)
    {
        mLandmarkTitle->setVisible(!enabled);
        mLandmarkTitleEditor->setVisible(enabled);
        mNotesEditor->setReadOnly(!enabled);
        mFolderCombo->setVisible(enabled);
        getChild<LLTextBox>("folder_label")->setVisible(enabled);
        getChild<LLButton>("edit_btn")->setVisible(!enabled);

        // HACK: To change the text color in a text editor
        // when it was enabled/disabled we set the text once again.
        mNotesEditor->setText(mNotesEditor->getText());
    }

    // Prevent the floater from losing focus (if the sidepanel is undocked).
    setFocus(true);
}

void LLPanelLandmarkInfo::setCanEdit(bool enabled)
{
    getChild<LLButton>("edit_btn")->setEnabled(enabled);
}

const std::string& LLPanelLandmarkInfo::getLandmarkTitle() const
{
    return mLandmarkTitleEditor->getText();
}

const std::string LLPanelLandmarkInfo::getLandmarkNotes() const
{
    return mNotesEditor->getText();
}

const LLUUID LLPanelLandmarkInfo::getLandmarkFolder() const
{
    return mFolderCombo->getValue().asUUID();
}

bool LLPanelLandmarkInfo::setLandmarkFolder(const LLUUID& id)
{
    return mFolderCombo->setCurrentByID(id);
}

void LLPanelLandmarkInfo::createLandmark(const LLUUID& folder_id)
{
    std::string name = mLandmarkTitleEditor->getText();
    std::string desc = mNotesEditor->getText();

    LLStringUtil::trim(name);
    LLStringUtil::trim(desc);

    // If typed name is empty use the parcel name instead.
    if (name.empty())
    {
        name = mParcelName->getText();

        // If no parcel exists use the region name instead.
        if (name.empty())
        {
            name = mRegionTitle;
        }
    }

    LLStringUtil::replaceChar(desc, '\n', ' ');

    // If no folder chosen use the "Landmarks" folder.
    LLLandmarkActions::createLandmarkHere(name, desc,
        folder_id.notNull() ? folder_id : gInventory.findCategoryUUIDForType(LLFolderType::FT_LANDMARK));
}

// static
std::string LLPanelLandmarkInfo::getFullFolderName(const LLViewerInventoryCategory* cat)
{
    std::string name;
    LLUUID parent_id;

    llassert(cat);
    if (cat)
    {
        name = cat->getName();
        parent_id = cat->getParentUUID();
        bool is_under_root_category = parent_id == gInventory.getRootFolderID();

        // we don't want "My Inventory" to appear in the name
        while ((parent_id = cat->getParentUUID()).notNull())
        {
            cat = gInventory.getCategory(parent_id);
            llassert(cat);
            if (cat)
            {
                if (is_under_root_category || cat->getParentUUID() == gInventory.getRootFolderID())
                {
                    std::string localized_name;

                    // Looking for translation only for protected type categories
                    // to avoid warnings about non existent string in strings.xml.
                    bool is_protected_type = LLFolderType::lookupIsProtectedType(cat->getPreferredType());

                    if (is_under_root_category)
                    {
                        // translate category name, if it's right below the root
                        bool is_found = is_protected_type && LLTrans::findString(localized_name, "InvFolder " + name);
                        name = is_found ? localized_name : name;
                    }
                    else
                    {
                        bool is_found = is_protected_type && LLTrans::findString(localized_name, "InvFolder " + cat->getName());

                        // add translated category name to folder's full name
                        name = (is_found ? localized_name : cat->getName()) + "/" + name;
                    }

                    break;
                }
                else
                {
                    name = cat->getName() + "/" + name;
                }
            }
        }
    }

    return name;
}

void LLPanelLandmarkInfo::populateFoldersList()
{
    // Collect all folders that can contain landmarks.
    LLInventoryModel::cat_array_t cats;
    collectLandmarkFolders(cats);

    mFolderCombo->removeall();

    // Put the "Landmarks" folder first in list.
    LLUUID landmarks_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_LANDMARK);
    const LLViewerInventoryCategory* lmcat = gInventory.getCategory(landmarks_id);
    if (!lmcat)
    {
        LL_WARNS() << "Cannot find the landmarks folder" << LL_ENDL;
    }
    else
    {
        std::string cat_full_name = getFullFolderName(lmcat);
        mFolderCombo->add(cat_full_name, lmcat->getUUID());
    }

    typedef std::vector<folder_pair_t> folder_vec_t;
    folder_vec_t folders;
    // Sort the folders by their full name.
    for (S32 i = 0; i < cats.size(); i++)
    {
        const LLViewerInventoryCategory* cat = cats.at(i);
        std::string cat_full_name = getFullFolderName(cat);
        folders.push_back(folder_pair_t(cat->getUUID(), cat_full_name));
    }
    sort(folders.begin(), folders.end(), cmp_folders);

    // Finally, populate the combobox.
    for (folder_vec_t::const_iterator it = folders.begin(); it != folders.end(); it++)
        mFolderCombo->add(it->second, LLSD(it->first));
}

static bool cmp_folders(const folder_pair_t& left, const folder_pair_t& right)
{
    return left.second < right.second;
}

void LLPanelLandmarkInfo::collectLandmarkFolders(LLInventoryModel::cat_array_t& cats)
{
    LLUUID landmarks_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_LANDMARK);

    // Add descendent folders of the "Landmarks" category.
    LLInventoryModel::item_array_t items; // unused
    LLIsType is_category(LLAssetType::AT_CATEGORY);
    gInventory.collectDescendentsIf(
        landmarks_id,
        cats,
        items,
        LLInventoryModel::EXCLUDE_TRASH,
        is_category);
}

/* virtual */ void LLUpdateLandmarkParent::fire(const LLUUID& inv_item_id)
{
    LLInventoryModel::update_list_t update;
    LLInventoryModel::LLCategoryUpdate old_folder(mItem->getParentUUID(), -1);
    update.push_back(old_folder);
    LLInventoryModel::LLCategoryUpdate new_folder(mNewParentId, 1);
    update.push_back(new_folder);
    gInventory.accountForUpdate(update);

    mItem->setParent(mNewParentId);
    mItem->updateParentOnServer(false);

    gInventory.updateItem(mItem);
    gInventory.notifyObservers();
}