llviewermenu.cpp
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:209k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. case DRD_TRASH:
  2. if( (node->mPermissions->allowTransferTo(gAgent.getID()) && object->permModify())
  3. || (node->allowOperationOnNode(PERM_OWNER, GP_OBJECT_MANIPULATE)) )
  4. {
  5. can_derez_current = TRUE;
  6. }
  7. break;
  8. case DRD_RETURN_TO_OWNER:
  9. can_derez_current = TRUE;
  10. break;
  11. default:
  12. if((node->mPermissions->allowTransferTo(gAgent.getID())
  13. && object->permCopy())
  14.    || gAgent.isGodlike())
  15. {
  16. can_derez_current = TRUE;
  17. }
  18. break;
  19. }
  20. if(can_derez_current)
  21. {
  22. derez_objects.put(object);
  23. }
  24. }
  25. // This constant is based on (1200 - HEADER_SIZE) / 4 bytes per
  26. // root.  I lopped off a few (33) to provide a bit
  27. // pad. HEADER_SIZE is currently 67 bytes, most of which is UUIDs.
  28. // This gives us a maximum of 63500 root objects - which should
  29. // satisfy anybody.
  30. const S32 MAX_ROOTS_PER_PACKET = 250;
  31. const S32 MAX_PACKET_COUNT = 254;
  32. F32 packets = ceil((F32)derez_objects.count() / (F32)MAX_ROOTS_PER_PACKET);
  33. if(packets > (F32)MAX_PACKET_COUNT)
  34. {
  35. error = "AcquireErrorTooManyObjects";
  36. }
  37. if(error.empty() && derez_objects.count() > 0)
  38. {
  39. U8 d = (U8)dest;
  40. LLUUID tid;
  41. tid.generate();
  42. U8 packet_count = (U8)packets;
  43. S32 object_index = 0;
  44. S32 objects_in_packet = 0;
  45. LLMessageSystem* msg = gMessageSystem;
  46. for(U8 packet_number = 0;
  47. packet_number < packet_count;
  48. ++packet_number)
  49. {
  50. msg->newMessageFast(_PREHASH_DeRezObject);
  51. msg->nextBlockFast(_PREHASH_AgentData);
  52. msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID());
  53. msg->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID());
  54. msg->nextBlockFast(_PREHASH_AgentBlock);
  55. msg->addUUIDFast(_PREHASH_GroupID, gAgent.getGroupID());
  56. msg->addU8Fast(_PREHASH_Destination, d);
  57. msg->addUUIDFast(_PREHASH_DestinationID, dest_id);
  58. msg->addUUIDFast(_PREHASH_TransactionID, tid);
  59. msg->addU8Fast(_PREHASH_PacketCount, packet_count);
  60. msg->addU8Fast(_PREHASH_PacketNumber, packet_number);
  61. objects_in_packet = 0;
  62. while((object_index < derez_objects.count())
  63.   && (objects_in_packet++ < MAX_ROOTS_PER_PACKET))
  64. {
  65. LLViewerObject* object = derez_objects.get(object_index++);
  66. msg->nextBlockFast(_PREHASH_ObjectData);
  67. msg->addU32Fast(_PREHASH_ObjectLocalID, object->getLocalID());
  68. // VEFFECT: DerezObject
  69. LLHUDEffectSpiral* effectp = (LLHUDEffectSpiral*)LLHUDManager::getInstance()->createViewerEffect(LLHUDObject::LL_HUD_EFFECT_POINT, TRUE);
  70. effectp->setPositionGlobal(object->getPositionGlobal());
  71. effectp->setColor(LLColor4U(gAgent.getEffectColor()));
  72. }
  73. msg->sendReliable(first_region->getHost());
  74. }
  75. make_ui_sound("UISndObjectRezOut");
  76. // Busy count decremented by inventory update, so only increment
  77. // if will be causing an update.
  78. if (dest != DRD_RETURN_TO_OWNER)
  79. {
  80. gViewerWindow->getWindow()->incBusyCount();
  81. }
  82. }
  83. else if(!error.empty())
  84. {
  85. LLNotificationsUtil::add(error);
  86. }
  87. }
  88. void handle_take_copy()
  89. {
  90. if (LLSelectMgr::getInstance()->getSelection()->isEmpty()) return;
  91. const LLUUID category_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_OBJECT);
  92. derez_objects(DRD_ACQUIRE_TO_AGENT_INVENTORY, category_id);
  93. }
  94. // You can return an object to its owner if it is on your land.
  95. class LLObjectReturn : public view_listener_t
  96. {
  97. bool handleEvent(const LLSD& userdata)
  98. {
  99. if (LLSelectMgr::getInstance()->getSelection()->isEmpty()) return true;
  100. mObjectSelection = LLSelectMgr::getInstance()->getEditSelection();
  101. LLNotificationsUtil::add("ReturnToOwner", LLSD(), LLSD(), boost::bind(&LLObjectReturn::onReturnToOwner, this, _1, _2));
  102. return true;
  103. }
  104. bool onReturnToOwner(const LLSD& notification, const LLSD& response)
  105. {
  106. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  107. if (0 == option)
  108. {
  109. // Ignore category ID for this derez destination.
  110. derez_objects(DRD_RETURN_TO_OWNER, LLUUID::null);
  111. }
  112. // drop reference to current selection
  113. mObjectSelection = NULL;
  114. return false;
  115. }
  116. protected:
  117. LLObjectSelectionHandle mObjectSelection;
  118. };
  119. // Allow return to owner if one or more of the selected items is
  120. // over land you own.
  121. class LLObjectEnableReturn : public view_listener_t
  122. {
  123. bool handleEvent(const LLSD& userdata)
  124. {
  125. #ifdef HACKED_GODLIKE_VIEWER
  126. bool new_value = true;
  127. #else
  128. bool new_value = false;
  129. if (gAgent.isGodlike())
  130. {
  131. new_value = true;
  132. }
  133. else
  134. {
  135. LLViewerRegion* region = gAgent.getRegion();
  136. if (region)
  137. {
  138. // Estate owners and managers can always return objects.
  139. if (region->canManageEstate())
  140. {
  141. new_value = true;
  142. }
  143. else
  144. {
  145. struct f : public LLSelectedObjectFunctor
  146. {
  147. virtual bool apply(LLViewerObject* obj)
  148. {
  149. return (obj->isOverAgentOwnedLand() ||
  150. obj->isOverGroupOwnedLand() ||
  151. obj->permModify());
  152. }
  153. } func;
  154. const bool firstonly = true;
  155. new_value = LLSelectMgr::getInstance()->getSelection()->applyToRootObjects(&func, firstonly);
  156. }
  157. }
  158. }
  159. #endif
  160. return new_value;
  161. }
  162. };
  163. void force_take_copy(void*)
  164. {
  165. if (LLSelectMgr::getInstance()->getSelection()->isEmpty()) return;
  166. const LLUUID category_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_OBJECT);
  167. derez_objects(DRD_FORCE_TO_GOD_INVENTORY, category_id);
  168. }
  169. void handle_take()
  170. {
  171. // we want to use the folder this was derezzed from if it's
  172. // available. Otherwise, derez to the normal place.
  173. if(LLSelectMgr::getInstance()->getSelection()->isEmpty())
  174. {
  175. return;
  176. }
  177. BOOL you_own_everything = TRUE;
  178. BOOL locked_but_takeable_object = FALSE;
  179. LLUUID category_id;
  180. for (LLObjectSelection::root_iterator iter = LLSelectMgr::getInstance()->getSelection()->root_begin();
  181.  iter != LLSelectMgr::getInstance()->getSelection()->root_end(); iter++)
  182. {
  183. LLSelectNode* node = *iter;
  184. LLViewerObject* object = node->getObject();
  185. if(object)
  186. {
  187. if(!object->permYouOwner())
  188. {
  189. you_own_everything = FALSE;
  190. }
  191. if(!object->permMove())
  192. {
  193. locked_but_takeable_object = TRUE;
  194. }
  195. }
  196. if(node->mFolderID.notNull())
  197. {
  198. if(category_id.isNull())
  199. {
  200. category_id = node->mFolderID;
  201. }
  202. else if(category_id != node->mFolderID)
  203. {
  204. // we have found two potential destinations. break out
  205. // now and send to the default location.
  206. category_id.setNull();
  207. break;
  208. }
  209. }
  210. }
  211. if(category_id.notNull())
  212. {
  213. // there is an unambiguous destination. See if this agent has
  214. // such a location and it is not in the trash or library
  215. if(!gInventory.getCategory(category_id))
  216. {
  217. // nope, set to NULL.
  218. category_id.setNull();
  219. }
  220. if(category_id.notNull())
  221. {
  222.         // check trash
  223. const LLUUID trash = gInventory.findCategoryUUIDForType(LLFolderType::FT_TRASH);
  224. if(category_id == trash || gInventory.isObjectDescendentOf(category_id, trash))
  225. {
  226. category_id.setNull();
  227. }
  228. // check library
  229. if(gInventory.isObjectDescendentOf(category_id, gInventory.getLibraryRootFolderID()))
  230. {
  231. category_id.setNull();
  232. }
  233. }
  234. }
  235. if(category_id.isNull())
  236. {
  237. category_id = gInventory.findCategoryUUIDForType(LLFolderType::FT_OBJECT);
  238. }
  239. LLSD payload;
  240. payload["folder_id"] = category_id;
  241. LLNotification::Params params("ConfirmObjectTakeLock");
  242. params.payload(payload);
  243. params.functor.function(confirm_take);
  244. if(locked_but_takeable_object ||
  245.    !you_own_everything)
  246. {
  247. if(locked_but_takeable_object && you_own_everything)
  248. {
  249. params.name("ConfirmObjectTakeLock");
  250. }
  251. else if(!locked_but_takeable_object && !you_own_everything)
  252. {
  253. params.name("ConfirmObjectTakeNoOwn");
  254. }
  255. else
  256. {
  257. params.name("ConfirmObjectTakeLockNoOwn");
  258. }
  259. LLNotifications::instance().add(params);
  260. }
  261. else
  262. {
  263. LLNotifications::instance().forceResponse(params, 0);
  264. }
  265. }
  266. bool confirm_take(const LLSD& notification, const LLSD& response)
  267. {
  268. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  269. if(enable_take() && (option == 0))
  270. {
  271. derez_objects(DRD_TAKE_INTO_AGENT_INVENTORY, notification["payload"]["folder_id"].asUUID());
  272. }
  273. return false;
  274. }
  275. // You can take an item when it is public and transferrable, or when
  276. // you own it. We err on the side of enabling the item when at least
  277. // one item selected can be copied to inventory.
  278. BOOL enable_take()
  279. {
  280. if (sitting_on_selection())
  281. {
  282. return FALSE;
  283. }
  284. for (LLObjectSelection::valid_root_iterator iter = LLSelectMgr::getInstance()->getSelection()->valid_root_begin();
  285.  iter != LLSelectMgr::getInstance()->getSelection()->valid_root_end(); iter++)
  286. {
  287. LLSelectNode* node = *iter;
  288. LLViewerObject* object = node->getObject();
  289. if (object->isAvatar())
  290. {
  291. // ...don't acquire avatars
  292. continue;
  293. }
  294. #ifdef HACKED_GODLIKE_VIEWER
  295. return TRUE;
  296. #else
  297. # ifdef TOGGLE_HACKED_GODLIKE_VIEWER
  298. if (!LLViewerLogin::getInstance()->isInProductionGrid() 
  299.             && gAgent.isGodlike())
  300. {
  301. return TRUE;
  302. }
  303. # endif
  304. if((node->mPermissions->allowTransferTo(gAgent.getID())
  305. && object->permModify())
  306.    || (node->mPermissions->getOwner() == gAgent.getID()))
  307. {
  308. return TRUE;
  309. }
  310. #endif
  311. }
  312. return FALSE;
  313. }
  314. void handle_buy_or_take()
  315. {
  316. if (LLSelectMgr::getInstance()->getSelection()->isEmpty())
  317. {
  318. return;
  319. }
  320. if (is_selection_buy_not_take())
  321. {
  322. S32 total_price = selection_price();
  323. if (total_price <= gStatusBar->getBalance() || total_price == 0)
  324. {
  325. handle_buy();
  326. }
  327. else
  328. {
  329. LLFloaterBuyCurrency::buyCurrency(
  330. "Buying this costs", total_price);
  331. }
  332. }
  333. else
  334. {
  335. handle_take();
  336. }
  337. }
  338. bool visible_buy_object()
  339. {
  340. return is_selection_buy_not_take() && enable_buy_object();
  341. }
  342. bool visible_take_object()
  343. {
  344. return !is_selection_buy_not_take() && enable_take();
  345. }
  346. class LLToolsEnableBuyOrTake : public view_listener_t
  347. {
  348. bool handleEvent(const LLSD& userdata)
  349. {
  350. bool is_buy = is_selection_buy_not_take();
  351. bool new_value = is_buy ? enable_buy_object() : enable_take();
  352. // Update label
  353. std::string label;
  354. std::string buy_text;
  355. std::string take_text;
  356. std::string param = userdata.asString();
  357. std::string::size_type offset = param.find(",");
  358. if (offset != param.npos)
  359. {
  360. buy_text = param.substr(0, offset);
  361. take_text = param.substr(offset+1);
  362. }
  363. if (is_buy)
  364. {
  365. label = buy_text;
  366. }
  367. else
  368. {
  369. label = take_text;
  370. }
  371. gMenuHolder->childSetText("Pie Object Take", label);
  372. gMenuHolder->childSetText("Menu Object Take", label);
  373. return new_value;
  374. }
  375. };
  376. // This is a small helper function to determine if we have a buy or a
  377. // take in the selection. This method is to help with the aliasing
  378. // problems of putting buy and take in the same pie menu space. After
  379. // a fair amont of discussion, it was determined to prefer buy over
  380. // take. The reasoning follows from the fact that when users walk up
  381. // to buy something, they will click on one or more items. Thus, if
  382. // anything is for sale, it becomes a buy operation, and the server
  383. // will group all of the buy items, and copyable/modifiable items into
  384. // one package and give the end user as much as the permissions will
  385. // allow. If the user wanted to take something, they will select fewer
  386. // and fewer items until only 'takeable' items are left. The one
  387. // exception is if you own everything in the selection that is for
  388. // sale, in this case, you can't buy stuff from yourself, so you can
  389. // take it.
  390. // return value = TRUE if selection is a 'buy'.
  391. //                FALSE if selection is a 'take'
  392. BOOL is_selection_buy_not_take()
  393. {
  394. for (LLObjectSelection::root_iterator iter = LLSelectMgr::getInstance()->getSelection()->root_begin();
  395.  iter != LLSelectMgr::getInstance()->getSelection()->root_end(); iter++)
  396. {
  397. LLSelectNode* node = *iter;
  398. LLViewerObject* obj = node->getObject();
  399. if(obj && !(obj->permYouOwner()) && (node->mSaleInfo.isForSale()))
  400. {
  401. // you do not own the object and it is for sale, thus,
  402. // it's a buy
  403. return TRUE;
  404. }
  405. }
  406. return FALSE;
  407. }
  408. S32 selection_price()
  409. {
  410. S32 total_price = 0;
  411. for (LLObjectSelection::root_iterator iter = LLSelectMgr::getInstance()->getSelection()->root_begin();
  412.  iter != LLSelectMgr::getInstance()->getSelection()->root_end(); iter++)
  413. {
  414. LLSelectNode* node = *iter;
  415. LLViewerObject* obj = node->getObject();
  416. if(obj && !(obj->permYouOwner()) && (node->mSaleInfo.isForSale()))
  417. {
  418. // you do not own the object and it is for sale.
  419. // Add its price.
  420. total_price += node->mSaleInfo.getSalePrice();
  421. }
  422. }
  423. return total_price;
  424. }
  425. /*
  426. bool callback_show_buy_currency(const LLSD& notification, const LLSD& response)
  427. {
  428. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  429. if (0 == option)
  430. {
  431. llinfos << "Loading page " << LLNotifications::instance().getGlobalString("BUY_CURRENCY_URL") << llendl;
  432. LLWeb::loadURL(LLNotifications::instance().getGlobalString("BUY_CURRENCY_URL"));
  433. }
  434. return false;
  435. }
  436. */
  437. void show_buy_currency(const char* extra)
  438. {
  439. // Don't show currency web page for branded clients.
  440. /*
  441. std::ostringstream mesg;
  442. if (extra != NULL)
  443. {
  444. mesg << extra << "n n";
  445. }
  446. mesg << "Go to " << LLNotifications::instance().getGlobalString("BUY_CURRENCY_URL")<< "nfor information on purchasing currency?";
  447. */
  448. LLSD args;
  449. if (extra != NULL)
  450. {
  451. args["EXTRA"] = extra;
  452. }
  453. LLNotificationsUtil::add("PromptGoToCurrencyPage", args);//, LLSD(), callback_show_buy_currency);
  454. }
  455. void handle_buy()
  456. {
  457. if (LLSelectMgr::getInstance()->getSelection()->isEmpty()) return;
  458. LLSaleInfo sale_info;
  459. BOOL valid = LLSelectMgr::getInstance()->selectGetSaleInfo(sale_info);
  460. if (!valid) return;
  461. if (sale_info.getSaleType() == LLSaleInfo::FS_CONTENTS)
  462. {
  463. handle_buy_contents(sale_info);
  464. }
  465. else
  466. {
  467. handle_buy_object(sale_info);
  468. }
  469. }
  470. bool anyone_copy_selection(LLSelectNode* nodep)
  471. {
  472. bool perm_copy = (bool)(nodep->getObject()->permCopy());
  473. bool all_copy = (bool)(nodep->mPermissions->getMaskEveryone() & PERM_COPY);
  474. return perm_copy && all_copy;
  475. }
  476. bool for_sale_selection(LLSelectNode* nodep)
  477. {
  478. return nodep->mSaleInfo.isForSale()
  479. && nodep->mPermissions->getMaskOwner() & PERM_TRANSFER
  480. && (nodep->mPermissions->getMaskOwner() & PERM_COPY
  481. || nodep->mSaleInfo.getSaleType() != LLSaleInfo::FS_COPY);
  482. }
  483. BOOL sitting_on_selection()
  484. {
  485. LLSelectNode* node = LLSelectMgr::getInstance()->getSelection()->getFirstRootNode();
  486. if (!node)
  487. {
  488. return FALSE;
  489. }
  490. if (!node->mValid)
  491. {
  492. return FALSE;
  493. }
  494. LLViewerObject* root_object = node->getObject();
  495. if (!root_object)
  496. {
  497. return FALSE;
  498. }
  499. // Need to determine if avatar is sitting on this object
  500. LLVOAvatar* avatar = gAgent.getAvatarObject();
  501. if (!avatar)
  502. {
  503. return FALSE;
  504. }
  505. return (avatar->isSitting() && avatar->getRoot() == root_object);
  506. }
  507. class LLToolsSaveToInventory : public view_listener_t
  508. {
  509. bool handleEvent(const LLSD& userdata)
  510. {
  511. if(enable_save_into_inventory(NULL))
  512. {
  513. derez_objects(DRD_SAVE_INTO_AGENT_INVENTORY, LLUUID::null);
  514. }
  515. return true;
  516. }
  517. };
  518. class LLToolsSaveToObjectInventory : public view_listener_t
  519. {
  520. bool handleEvent(const LLSD& userdata)
  521. {
  522. LLSelectNode* node = LLSelectMgr::getInstance()->getSelection()->getFirstRootNode();
  523. if(node && (node->mValid) && (!node->mFromTaskID.isNull()))
  524. {
  525. // *TODO: check to see if the fromtaskid object exists.
  526. derez_objects(DRD_SAVE_INTO_TASK_INVENTORY, node->mFromTaskID);
  527. }
  528. return true;
  529. }
  530. };
  531. // Round the position of all root objects to the grid
  532. class LLToolsSnapObjectXY : public view_listener_t
  533. {
  534. bool handleEvent(const LLSD& userdata)
  535. {
  536. F64 snap_size = (F64)gSavedSettings.getF32("GridResolution");
  537. for (LLObjectSelection::root_iterator iter = LLSelectMgr::getInstance()->getSelection()->root_begin();
  538.  iter != LLSelectMgr::getInstance()->getSelection()->root_end(); iter++)
  539. {
  540. LLSelectNode* node = *iter;
  541. LLViewerObject* obj = node->getObject();
  542. if (obj->permModify())
  543. {
  544. LLVector3d pos_global = obj->getPositionGlobal();
  545. F64 round_x = fmod(pos_global.mdV[VX], snap_size);
  546. if (round_x < snap_size * 0.5)
  547. {
  548. // closer to round down
  549. pos_global.mdV[VX] -= round_x;
  550. }
  551. else
  552. {
  553. // closer to round up
  554. pos_global.mdV[VX] -= round_x;
  555. pos_global.mdV[VX] += snap_size;
  556. }
  557. F64 round_y = fmod(pos_global.mdV[VY], snap_size);
  558. if (round_y < snap_size * 0.5)
  559. {
  560. pos_global.mdV[VY] -= round_y;
  561. }
  562. else
  563. {
  564. pos_global.mdV[VY] -= round_y;
  565. pos_global.mdV[VY] += snap_size;
  566. }
  567. obj->setPositionGlobal(pos_global, FALSE);
  568. }
  569. }
  570. LLSelectMgr::getInstance()->sendMultipleUpdate(UPD_POSITION);
  571. return true;
  572. }
  573. };
  574. // Determine if the option to cycle between linked prims is shown
  575. class LLToolsEnableSelectNextPart : public view_listener_t
  576. {
  577. bool handleEvent(const LLSD& userdata)
  578. {
  579. bool new_value = (gSavedSettings.getBOOL("EditLinkedParts") &&
  580.  !LLSelectMgr::getInstance()->getSelection()->isEmpty());
  581. return new_value;
  582. }
  583. };
  584. // Cycle selection through linked children in selected object.
  585. // FIXME: Order of children list is not always the same as sim's idea of link order. This may confuse
  586. // resis. Need link position added to sim messages to address this.
  587. class LLToolsSelectNextPart : public view_listener_t
  588. {
  589. bool handleEvent(const LLSD& userdata)
  590. {
  591. S32 object_count = LLSelectMgr::getInstance()->getSelection()->getObjectCount();
  592. if (gSavedSettings.getBOOL("EditLinkedParts") && object_count)
  593. {
  594. LLViewerObject* selected = LLSelectMgr::getInstance()->getSelection()->getFirstObject();
  595. if (selected && selected->getRootEdit())
  596. {
  597. bool fwd = (userdata.asString() == "next");
  598. bool prev = (userdata.asString() == "previous");
  599. bool ifwd = (userdata.asString() == "includenext");
  600. bool iprev = (userdata.asString() == "includeprevious");
  601. LLViewerObject* to_select = NULL;
  602. LLViewerObject::child_list_t children = selected->getRootEdit()->getChildren();
  603. children.push_front(selected->getRootEdit()); // need root in the list too
  604. for (LLViewerObject::child_list_t::iterator iter = children.begin(); iter != children.end(); ++iter)
  605. {
  606. if ((*iter)->isSelected())
  607. {
  608. if (object_count > 1 && (fwd || prev)) // multiple selection, find first or last selected if not include
  609. {
  610. to_select = *iter;
  611. if (fwd)
  612. {
  613. // stop searching if going forward; repeat to get last hit if backward
  614. break;
  615. }
  616. }
  617. else if ((object_count == 1) || (ifwd || iprev)) // single selection or include
  618. {
  619. if (fwd || ifwd)
  620. {
  621. ++iter;
  622. while (iter != children.end() && ((*iter)->isAvatar() || (ifwd && (*iter)->isSelected())))
  623. {
  624. ++iter; // skip sitting avatars and selected if include
  625. }
  626. }
  627. else // backward
  628. {
  629. iter = (iter == children.begin() ? children.end() : iter);
  630. --iter;
  631. while (iter != children.begin() && ((*iter)->isAvatar() || (iprev && (*iter)->isSelected())))
  632. {
  633. --iter; // skip sitting avatars and selected if include
  634. }
  635. }
  636. iter = (iter == children.end() ? children.begin() : iter);
  637. to_select = *iter;
  638. break;
  639. }
  640. }
  641. }
  642. if (to_select)
  643. {
  644. if (gFocusMgr.childHasKeyboardFocus(gFloaterTools))
  645. {
  646. gFocusMgr.setKeyboardFocus(NULL); // force edit toolbox to commit any changes
  647. }
  648. if (fwd || prev)
  649. {
  650. LLSelectMgr::getInstance()->deselectAll();
  651. }
  652. LLSelectMgr::getInstance()->selectObjectOnly(to_select);
  653. return true;
  654. }
  655. }
  656. }
  657. return true;
  658. }
  659. };
  660. // in order to link, all objects must have the same owner, and the
  661. // agent must have the ability to modify all of the objects. However,
  662. // we're not answering that question with this method. The question
  663. // we're answering is: does the user have a reasonable expectation
  664. // that a link operation should work? If so, return true, false
  665. // otherwise. this allows the handle_link method to more finely check
  666. // the selection and give an error message when the uer has a
  667. // reasonable expectation for the link to work, but it will fail.
  668. class LLToolsEnableLink : public view_listener_t
  669. {
  670. bool handleEvent(const LLSD& userdata)
  671. {
  672. bool new_value = false;
  673. // check if there are at least 2 objects selected, and that the
  674. // user can modify at least one of the selected objects.
  675. // in component mode, can't link
  676. if (!gSavedSettings.getBOOL("EditLinkedParts"))
  677. {
  678. if(LLSelectMgr::getInstance()->selectGetAllRootsValid() && LLSelectMgr::getInstance()->getSelection()->getRootObjectCount() >= 2)
  679. {
  680. struct f : public LLSelectedObjectFunctor
  681. {
  682. virtual bool apply(LLViewerObject* object)
  683. {
  684. return object->permModify();
  685. }
  686. } func;
  687. const bool firstonly = true;
  688. new_value = LLSelectMgr::getInstance()->getSelection()->applyToRootObjects(&func, firstonly);
  689. }
  690. }
  691. return new_value;
  692. }
  693. };
  694. class LLToolsLink : public view_listener_t
  695. {
  696. bool handleEvent(const LLSD& userdata)
  697. {
  698. if(!LLSelectMgr::getInstance()->selectGetAllRootsValid())
  699. {
  700. LLNotificationsUtil::add("UnableToLinkWhileDownloading");
  701. return true;
  702. }
  703. S32 object_count = LLSelectMgr::getInstance()->getSelection()->getObjectCount();
  704. if (object_count > MAX_CHILDREN_PER_TASK + 1)
  705. {
  706. LLSD args;
  707. args["COUNT"] = llformat("%d", object_count);
  708. int max = MAX_CHILDREN_PER_TASK+1;
  709. args["MAX"] = llformat("%d", max);
  710. LLNotificationsUtil::add("UnableToLinkObjects", args);
  711. return true;
  712. }
  713. if(LLSelectMgr::getInstance()->getSelection()->getRootObjectCount() < 2)
  714. {
  715. LLNotificationsUtil::add("CannotLinkIncompleteSet");
  716. return true;
  717. }
  718. if(!LLSelectMgr::getInstance()->selectGetRootsModify())
  719. {
  720. LLNotificationsUtil::add("CannotLinkModify");
  721. return true;
  722. }
  723. LLUUID owner_id;
  724. std::string owner_name;
  725. if(!LLSelectMgr::getInstance()->selectGetOwner(owner_id, owner_name))
  726. {
  727. // we don't actually care if you're the owner, but novices are
  728. // the most likely to be stumped by this one, so offer the
  729. // easiest and most likely solution.
  730. LLNotificationsUtil::add("CannotLinkDifferentOwners");
  731. return true;
  732. }
  733. LLSelectMgr::getInstance()->sendLink();
  734. return true;
  735. }
  736. };
  737. class LLToolsEnableUnlink : public view_listener_t
  738. {
  739. bool handleEvent(const LLSD& userdata)
  740. {
  741. LLViewerObject* first_editable_object = LLSelectMgr::getInstance()->getSelection()->getFirstEditableObject();
  742. bool new_value = LLSelectMgr::getInstance()->selectGetAllRootsValid() &&
  743. first_editable_object &&
  744. !first_editable_object->isAttachment();
  745. return new_value;
  746. }
  747. };
  748. class LLToolsUnlink : public view_listener_t
  749. {
  750. bool handleEvent(const LLSD& userdata)
  751. {
  752. LLSelectMgr::getInstance()->sendDelink();
  753. return true;
  754. }
  755. };
  756. class LLToolsStopAllAnimations : public view_listener_t
  757. {
  758. bool handleEvent(const LLSD& userdata)
  759. {
  760. gAgent.stopCurrentAnimations();
  761. return true;
  762. }
  763. };
  764. class LLToolsReleaseKeys : public view_listener_t
  765. {
  766. bool handleEvent(const LLSD& userdata)
  767. {
  768. gAgent.forceReleaseControls();
  769. return true;
  770. }
  771. };
  772. class LLToolsEnableReleaseKeys : public view_listener_t
  773. {
  774. bool handleEvent(const LLSD& userdata)
  775. {
  776. return gAgent.anyControlGrabbed();
  777. }
  778. };
  779. class LLEditEnableCut : public view_listener_t
  780. {
  781. bool handleEvent(const LLSD& userdata)
  782. {
  783. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canCut();
  784. return new_value;
  785. }
  786. };
  787. class LLEditCut : public view_listener_t
  788. {
  789. bool handleEvent(const LLSD& userdata)
  790. {
  791. if( LLEditMenuHandler::gEditMenuHandler )
  792. {
  793. LLEditMenuHandler::gEditMenuHandler->cut();
  794. }
  795. return true;
  796. }
  797. };
  798. class LLEditEnableCopy : public view_listener_t
  799. {
  800. bool handleEvent(const LLSD& userdata)
  801. {
  802. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canCopy();
  803. return new_value;
  804. }
  805. };
  806. class LLEditCopy : public view_listener_t
  807. {
  808. bool handleEvent(const LLSD& userdata)
  809. {
  810. if( LLEditMenuHandler::gEditMenuHandler )
  811. {
  812. LLEditMenuHandler::gEditMenuHandler->copy();
  813. }
  814. return true;
  815. }
  816. };
  817. class LLEditEnablePaste : public view_listener_t
  818. {
  819. bool handleEvent(const LLSD& userdata)
  820. {
  821. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canPaste();
  822. return new_value;
  823. }
  824. };
  825. class LLEditPaste : public view_listener_t
  826. {
  827. bool handleEvent(const LLSD& userdata)
  828. {
  829. if( LLEditMenuHandler::gEditMenuHandler )
  830. {
  831. LLEditMenuHandler::gEditMenuHandler->paste();
  832. }
  833. return true;
  834. }
  835. };
  836. class LLEditEnableDelete : public view_listener_t
  837. {
  838. bool handleEvent(const LLSD& userdata)
  839. {
  840. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canDoDelete();
  841. return new_value;
  842. }
  843. };
  844. class LLEditDelete : public view_listener_t
  845. {
  846. bool handleEvent(const LLSD& userdata)
  847. {
  848. // If a text field can do a deletion, it gets precedence over deleting
  849. // an object in the world.
  850. if( LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canDoDelete())
  851. {
  852. LLEditMenuHandler::gEditMenuHandler->doDelete();
  853. }
  854. // and close any pie/context menus when done
  855. gMenuHolder->hideMenus();
  856. // When deleting an object we may not actually be done
  857. // Keep selection so we know what to delete when confirmation is needed about the delete
  858. gMenuObject->hide();
  859. return true;
  860. }
  861. };
  862. bool enable_object_delete()
  863. {
  864. bool new_value = 
  865. #ifdef HACKED_GODLIKE_VIEWER
  866. TRUE;
  867. #else
  868. # ifdef TOGGLE_HACKED_GODLIKE_VIEWER
  869. (!LLViewerLogin::getInstance()->isInProductionGrid()
  870.      && gAgent.isGodlike()) ||
  871. # endif
  872. LLSelectMgr::getInstance()->canDoDelete();
  873. #endif
  874. return new_value;
  875. }
  876. void handle_object_delete()
  877. {
  878. if (LLSelectMgr::getInstance())
  879. {
  880. LLSelectMgr::getInstance()->doDelete();
  881. }
  882. // and close any pie/context menus when done
  883. gMenuHolder->hideMenus();
  884. // When deleting an object we may not actually be done
  885. // Keep selection so we know what to delete when confirmation is needed about the delete
  886. gMenuObject->hide();
  887. return;
  888. }
  889. void handle_force_delete(void*)
  890. {
  891. LLSelectMgr::getInstance()->selectForceDelete();
  892. }
  893. class LLViewEnableJoystickFlycam : public view_listener_t
  894. {
  895. bool handleEvent(const LLSD& userdata)
  896. {
  897. bool new_value = (gSavedSettings.getBOOL("JoystickEnabled") && gSavedSettings.getBOOL("JoystickFlycamEnabled"));
  898. return new_value;
  899. }
  900. };
  901. class LLViewEnableLastChatter : public view_listener_t
  902. {
  903. bool handleEvent(const LLSD& userdata)
  904. {
  905. // *TODO: add check that last chatter is in range
  906. bool new_value = (gAgent.cameraThirdPerson() && gAgent.getLastChatter().notNull());
  907. return new_value;
  908. }
  909. };
  910. class LLEditEnableDeselect : public view_listener_t
  911. {
  912. bool handleEvent(const LLSD& userdata)
  913. {
  914. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canDeselect();
  915. return new_value;
  916. }
  917. };
  918. class LLEditDeselect : public view_listener_t
  919. {
  920. bool handleEvent(const LLSD& userdata)
  921. {
  922. if( LLEditMenuHandler::gEditMenuHandler )
  923. {
  924. LLEditMenuHandler::gEditMenuHandler->deselect();
  925. }
  926. return true;
  927. }
  928. };
  929. class LLEditEnableSelectAll : public view_listener_t
  930. {
  931. bool handleEvent(const LLSD& userdata)
  932. {
  933. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canSelectAll();
  934. return new_value;
  935. }
  936. };
  937. class LLEditSelectAll : public view_listener_t
  938. {
  939. bool handleEvent(const LLSD& userdata)
  940. {
  941. if( LLEditMenuHandler::gEditMenuHandler )
  942. {
  943. LLEditMenuHandler::gEditMenuHandler->selectAll();
  944. }
  945. return true;
  946. }
  947. };
  948. class LLEditEnableUndo : public view_listener_t
  949. {
  950. bool handleEvent(const LLSD& userdata)
  951. {
  952. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canUndo();
  953. return new_value;
  954. }
  955. };
  956. class LLEditUndo : public view_listener_t
  957. {
  958. bool handleEvent(const LLSD& userdata)
  959. {
  960. if( LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canUndo() )
  961. {
  962. LLEditMenuHandler::gEditMenuHandler->undo();
  963. }
  964. return true;
  965. }
  966. };
  967. class LLEditEnableRedo : public view_listener_t
  968. {
  969. bool handleEvent(const LLSD& userdata)
  970. {
  971. bool new_value = LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canRedo();
  972. return new_value;
  973. }
  974. };
  975. class LLEditRedo : public view_listener_t
  976. {
  977. bool handleEvent(const LLSD& userdata)
  978. {
  979. if( LLEditMenuHandler::gEditMenuHandler && LLEditMenuHandler::gEditMenuHandler->canRedo() )
  980. {
  981. LLEditMenuHandler::gEditMenuHandler->redo();
  982. }
  983. return true;
  984. }
  985. };
  986. void print_object_info(void*)
  987. {
  988. LLSelectMgr::getInstance()->selectionDump();
  989. }
  990. void print_agent_nvpairs(void*)
  991. {
  992. LLViewerObject *objectp;
  993. llinfos << "Agent Name Value Pairs" << llendl;
  994. objectp = gObjectList.findObject(gAgentID);
  995. if (objectp)
  996. {
  997. objectp->printNameValuePairs();
  998. }
  999. else
  1000. {
  1001. llinfos << "Can't find agent object" << llendl;
  1002. }
  1003. llinfos << "Camera at " << gAgent.getCameraPositionGlobal() << llendl;
  1004. }
  1005. void show_debug_menus()
  1006. {
  1007. // this might get called at login screen where there is no menu so only toggle it if one exists
  1008. if ( gMenuBarView )
  1009. {
  1010. BOOL debug = gSavedSettings.getBOOL("UseDebugMenus");
  1011. BOOL qamode = gSavedSettings.getBOOL("QAMode");
  1012. gMenuBarView->setItemVisible("Advanced", debug);
  1013. //  gMenuBarView->setItemEnabled("Advanced", debug); // Don't disable Advanced keyboard shortcuts when hidden
  1014. gMenuBarView->setItemVisible("Debug", qamode);
  1015. gMenuBarView->setItemEnabled("Debug", qamode);
  1016. gMenuBarView->setItemVisible("Develop", qamode);
  1017. gMenuBarView->setItemEnabled("Develop", qamode);
  1018. // Server ('Admin') menu hidden when not in godmode.
  1019. const bool show_server_menu = (gAgent.getGodLevel() > GOD_NOT || (debug && gAgent.getAdminOverride()));
  1020. gMenuBarView->setItemVisible("Admin", show_server_menu);
  1021. gMenuBarView->setItemEnabled("Admin", show_server_menu);
  1022. }
  1023. if (gLoginMenuBarView)
  1024. {
  1025. BOOL debug = gSavedSettings.getBOOL("UseDebugMenus");
  1026. gLoginMenuBarView->setItemVisible("Debug", debug);
  1027. gLoginMenuBarView->setItemEnabled("Debug", debug);
  1028. }
  1029. }
  1030. void toggle_debug_menus(void*)
  1031. {
  1032. BOOL visible = ! gSavedSettings.getBOOL("UseDebugMenus");
  1033. gSavedSettings.setBOOL("UseDebugMenus", visible);
  1034. if(visible)
  1035. {
  1036. //LLFirstUse::useDebugMenus();
  1037. }
  1038. show_debug_menus();
  1039. }
  1040. // LLUUID gExporterRequestID;
  1041. // std::string gExportDirectory;
  1042. // LLUploadDialog *gExportDialog = NULL;
  1043. // void handle_export_selected( void * )
  1044. // {
  1045. //  LLObjectSelectionHandle selection = LLSelectMgr::getInstance()->getSelection();
  1046. //  if (selection->isEmpty())
  1047. //  {
  1048. //  return;
  1049. //  }
  1050. //  llinfos << "Exporting selected objects:" << llendl;
  1051. //  gExporterRequestID.generate();
  1052. //  gExportDirectory = "";
  1053. //  LLMessageSystem* msg = gMessageSystem;
  1054. //  msg->newMessageFast(_PREHASH_ObjectExportSelected);
  1055. //  msg->nextBlockFast(_PREHASH_AgentData);
  1056. //  msg->addUUIDFast(_PREHASH_AgentID, gAgent.getID());
  1057. //  msg->addUUIDFast(_PREHASH_RequestID, gExporterRequestID);
  1058. //  msg->addS16Fast(_PREHASH_VolumeDetail, 4);
  1059. //  for (LLObjectSelection::root_iterator iter = selection->root_begin();
  1060. //   iter != selection->root_end(); iter++)
  1061. //  {
  1062. //  LLSelectNode* node = *iter;
  1063. //  LLViewerObject* object = node->getObject();
  1064. //  msg->nextBlockFast(_PREHASH_ObjectData);
  1065. //  msg->addUUIDFast(_PREHASH_ObjectID, object->getID());
  1066. //  llinfos << "Object: " << object->getID() << llendl;
  1067. //  }
  1068. //  msg->sendReliable(gAgent.getRegion()->getHost());
  1069. //  gExportDialog = LLUploadDialog::modalUploadDialog("Exporting selected objects...");
  1070. // }
  1071. //
  1072. class LLWorldSetHomeLocation : public view_listener_t
  1073. {
  1074. bool handleEvent(const LLSD& userdata)
  1075. {
  1076. // we just send the message and let the server check for failure cases
  1077. // server will echo back a "Home position set." alert if it succeeds
  1078. // and the home location screencapture happens when that alert is recieved
  1079. gAgent.setStartPosition(START_LOCATION_ID_HOME);
  1080. return true;
  1081. }
  1082. };
  1083. class LLWorldTeleportHome : public view_listener_t
  1084. {
  1085. bool handleEvent(const LLSD& userdata)
  1086. {
  1087. gAgent.teleportHome();
  1088. return true;
  1089. }
  1090. };
  1091. class LLWorldAlwaysRun : public view_listener_t
  1092. {
  1093. bool handleEvent(const LLSD& userdata)
  1094. {
  1095. // as well as altering the default walk-vs-run state,
  1096. // we also change the *current* walk-vs-run state.
  1097. if (gAgent.getAlwaysRun())
  1098. {
  1099. gAgent.clearAlwaysRun();
  1100. gAgent.clearRunning();
  1101. }
  1102. else
  1103. {
  1104. gAgent.setAlwaysRun();
  1105. gAgent.setRunning();
  1106. }
  1107. // tell the simulator.
  1108. gAgent.sendWalkRun(gAgent.getAlwaysRun());
  1109. // Update Movement Controls according to AlwaysRun mode
  1110. LLFloaterMove::setAlwaysRunMode(gAgent.getAlwaysRun());
  1111. return true;
  1112. }
  1113. };
  1114. class LLWorldCheckAlwaysRun : public view_listener_t
  1115. {
  1116. bool handleEvent(const LLSD& userdata)
  1117. {
  1118. bool new_value = gAgent.getAlwaysRun();
  1119. return new_value;
  1120. }
  1121. };
  1122. class LLWorldSetAway : public view_listener_t
  1123. {
  1124. bool handleEvent(const LLSD& userdata)
  1125. {
  1126. if (gAgent.getAFK())
  1127. {
  1128. gAgent.clearAFK();
  1129. }
  1130. else
  1131. {
  1132. gAgent.setAFK();
  1133. }
  1134. return true;
  1135. }
  1136. };
  1137. class LLWorldSetBusy : public view_listener_t
  1138. {
  1139. bool handleEvent(const LLSD& userdata)
  1140. {
  1141. if (gAgent.getBusy())
  1142. {
  1143. gAgent.clearBusy();
  1144. }
  1145. else
  1146. {
  1147. gAgent.setBusy();
  1148. LLNotificationsUtil::add("BusyModeSet");
  1149. }
  1150. return true;
  1151. }
  1152. };
  1153. class LLWorldCreateLandmark : public view_listener_t
  1154. {
  1155. bool handleEvent(const LLSD& userdata)
  1156. {
  1157. LLSideTray::getInstance()->showPanel("panel_places", LLSD().with("type", "create_landmark"));
  1158. return true;
  1159. }
  1160. };
  1161. void handle_look_at_selection(const LLSD& param)
  1162. {
  1163. const F32 PADDING_FACTOR = 1.75f;
  1164. BOOL zoom = (param.asString() == "zoom");
  1165. if (!LLSelectMgr::getInstance()->getSelection()->isEmpty())
  1166. {
  1167. gAgent.setFocusOnAvatar(FALSE, ANIMATE);
  1168. LLBBox selection_bbox = LLSelectMgr::getInstance()->getBBoxOfSelection();
  1169. F32 angle_of_view = llmax(0.1f, LLViewerCamera::getInstance()->getAspect() > 1.f ? LLViewerCamera::getInstance()->getView() * LLViewerCamera::getInstance()->getAspect() : LLViewerCamera::getInstance()->getView());
  1170. F32 distance = selection_bbox.getExtentLocal().magVec() * PADDING_FACTOR / atan(angle_of_view);
  1171. LLVector3 obj_to_cam = LLViewerCamera::getInstance()->getOrigin() - selection_bbox.getCenterAgent();
  1172. obj_to_cam.normVec();
  1173. LLUUID object_id;
  1174. if (LLSelectMgr::getInstance()->getSelection()->getPrimaryObject())
  1175. {
  1176. object_id = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject()->mID;
  1177. }
  1178. if (zoom)
  1179. {
  1180. // Make sure we are not increasing the distance between the camera and object
  1181. LLVector3d orig_distance = gAgent.getCameraPositionGlobal() - LLSelectMgr::getInstance()->getSelectionCenterGlobal();
  1182. distance = llmin(distance, (F32) orig_distance.length());
  1183. gAgent.setCameraPosAndFocusGlobal(LLSelectMgr::getInstance()->getSelectionCenterGlobal() + LLVector3d(obj_to_cam * distance), 
  1184. LLSelectMgr::getInstance()->getSelectionCenterGlobal(), 
  1185. object_id );
  1186. }
  1187. else
  1188. {
  1189. gAgent.setFocusGlobal( LLSelectMgr::getInstance()->getSelectionCenterGlobal(), object_id );
  1190. }
  1191. }
  1192. }
  1193. void handle_zoom_to_object(LLUUID object_id)
  1194. {
  1195. const F32 PADDING_FACTOR = 2.f;
  1196. LLViewerObject* object = gObjectList.findObject(object_id);
  1197. if (object)
  1198. {
  1199. gAgent.setFocusOnAvatar(FALSE, ANIMATE);
  1200. LLBBox bbox = object->getBoundingBoxAgent() ;
  1201. F32 angle_of_view = llmax(0.1f, LLViewerCamera::getInstance()->getAspect() > 1.f ? LLViewerCamera::getInstance()->getView() * LLViewerCamera::getInstance()->getAspect() : LLViewerCamera::getInstance()->getView());
  1202. F32 distance = bbox.getExtentLocal().magVec() * PADDING_FACTOR / atan(angle_of_view);
  1203. LLVector3 obj_to_cam = LLViewerCamera::getInstance()->getOrigin() - bbox.getCenterAgent();
  1204. obj_to_cam.normVec();
  1205. LLVector3d object_center_global = gAgent.getPosGlobalFromAgent(bbox.getCenterAgent());
  1206. gAgent.setCameraPosAndFocusGlobal(object_center_global + LLVector3d(obj_to_cam * distance), 
  1207. object_center_global, 
  1208. object_id );
  1209. }
  1210. }
  1211. class LLAvatarInviteToGroup : public view_listener_t
  1212. {
  1213. bool handleEvent(const LLSD& userdata)
  1214. {
  1215. LLVOAvatar* avatar = find_avatar_from_object( LLSelectMgr::getInstance()->getSelection()->getPrimaryObject() );
  1216. if(avatar)
  1217. {
  1218. LLAvatarActions::inviteToGroup(avatar->getID());
  1219. }
  1220. return true;
  1221. }
  1222. };
  1223. class LLAvatarAddFriend : public view_listener_t
  1224. {
  1225. bool handleEvent(const LLSD& userdata)
  1226. {
  1227. LLVOAvatar* avatar = find_avatar_from_object( LLSelectMgr::getInstance()->getSelection()->getPrimaryObject() );
  1228. if(avatar && !LLAvatarActions::isFriend(avatar->getID()))
  1229. {
  1230. request_friendship(avatar->getID());
  1231. }
  1232. return true;
  1233. }
  1234. };
  1235. class LLAvatarAddContact : public view_listener_t
  1236. {
  1237. bool handleEvent(const LLSD& userdata)
  1238. {
  1239. LLVOAvatar* avatar = find_avatar_from_object( LLSelectMgr::getInstance()->getSelection()->getPrimaryObject() );
  1240. if(avatar)
  1241. {
  1242. create_inventory_callingcard(avatar->getID());
  1243. }
  1244. return true;
  1245. }
  1246. };
  1247. bool complete_give_money(const LLSD& notification, const LLSD& response, LLObjectSelectionHandle selection)
  1248. {
  1249. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  1250. if (option == 0)
  1251. {
  1252. gAgent.clearBusy();
  1253. }
  1254. LLViewerObject* objectp = selection->getPrimaryObject();
  1255. // Show avatar's name if paying attachment
  1256. if (objectp && objectp->isAttachment())
  1257. {
  1258. while (objectp && !objectp->isAvatar())
  1259. {
  1260. objectp = (LLViewerObject*)objectp->getParent();
  1261. }
  1262. }
  1263. if (objectp)
  1264. {
  1265. if (objectp->isAvatar())
  1266. {
  1267. const bool is_group = false;
  1268. LLFloaterPayUtil::payDirectly(&give_money,
  1269.   objectp->getID(),
  1270.   is_group);
  1271. }
  1272. else
  1273. {
  1274. LLFloaterPayUtil::payViaObject(&give_money, selection);
  1275. }
  1276. }
  1277. return false;
  1278. }
  1279. void handle_give_money_dialog()
  1280. {
  1281. LLNotification::Params params("BusyModePay");
  1282. params.functor.function(boost::bind(complete_give_money, _1, _2, LLSelectMgr::getInstance()->getSelection()));
  1283. if (gAgent.getBusy())
  1284. {
  1285. // warn users of being in busy mode during a transaction
  1286. LLNotifications::instance().add(params);
  1287. }
  1288. else
  1289. {
  1290. LLNotifications::instance().forceResponse(params, 1);
  1291. }
  1292. }
  1293. bool enable_pay_avatar()
  1294. {
  1295. LLViewerObject* obj = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1296. LLVOAvatar* avatar = find_avatar_from_object(obj);
  1297. return (avatar != NULL);
  1298. }
  1299. bool enable_pay_object()
  1300. {
  1301. LLViewerObject* object = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1302. if( object )
  1303. {
  1304. LLViewerObject *parent = (LLViewerObject *)object->getParent();
  1305. if((object->flagTakesMoney()) || (parent && parent->flagTakesMoney()))
  1306. {
  1307. return true;
  1308. }
  1309. }
  1310. return false;
  1311. }
  1312. class LLObjectEnableSitOrStand : public view_listener_t
  1313. {
  1314. bool handleEvent(const LLSD& userdata)
  1315. {
  1316. bool new_value = false;
  1317. LLViewerObject* dest_object = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1318. if(dest_object)
  1319. {
  1320. if(dest_object->getPCode() == LL_PCODE_VOLUME)
  1321. {
  1322. new_value = true;
  1323. }
  1324. }
  1325. // Update label
  1326. std::string label;
  1327. std::string sit_text;
  1328. std::string stand_text;
  1329. std::string param = userdata.asString();
  1330. std::string::size_type offset = param.find(",");
  1331. if (offset != param.npos)
  1332. {
  1333. sit_text = param.substr(0, offset);
  1334. stand_text = param.substr(offset+1);
  1335. }
  1336. if (sitting_on_selection())
  1337. {
  1338. label = stand_text;
  1339. }
  1340. else
  1341. {
  1342. LLSelectNode* node = LLSelectMgr::getInstance()->getSelection()->getFirstRootNode();
  1343. if (node && node->mValid && !node->mSitName.empty())
  1344. {
  1345. label.assign(node->mSitName);
  1346. }
  1347. else
  1348. {
  1349. label = sit_text;
  1350. }
  1351. }
  1352. gMenuHolder->childSetText("Object Sit", label);
  1353. return new_value;
  1354. }
  1355. };
  1356. void dump_select_mgr(void*)
  1357. {
  1358. LLSelectMgr::getInstance()->dump();
  1359. }
  1360. void dump_inventory(void*)
  1361. {
  1362. gInventory.dumpInventory();
  1363. }
  1364. void handle_dump_followcam(void*)
  1365. {
  1366. LLFollowCamMgr::dump();
  1367. }
  1368. void handle_viewer_enable_message_log(void*)
  1369. {
  1370. gMessageSystem->startLogging();
  1371. }
  1372. void handle_viewer_disable_message_log(void*)
  1373. {
  1374. gMessageSystem->stopLogging();
  1375. }
  1376. void handle_customize_avatar()
  1377. {
  1378. if (gAgentWearables.areWearablesLoaded())
  1379. {
  1380. gAgent.changeCameraToCustomizeAvatar();
  1381. }
  1382. }
  1383. void handle_report_abuse()
  1384. {
  1385. // Prevent menu from appearing in screen shot.
  1386. gMenuHolder->hideMenus();
  1387. LLFloaterReporter::showFromMenu(COMPLAINT_REPORT);
  1388. }
  1389. void handle_buy_currency()
  1390. {
  1391. LLFloaterBuyCurrency::buyCurrency();
  1392. }
  1393. class LLFloaterVisible : public view_listener_t
  1394. {
  1395. bool handleEvent(const LLSD& userdata)
  1396. {
  1397. std::string floater_name = userdata.asString();
  1398. bool new_value = false;
  1399. {
  1400. new_value = LLFloaterReg::instanceVisible(floater_name);
  1401. }
  1402. return new_value;
  1403. }
  1404. };
  1405. class LLShowHelp : public view_listener_t
  1406. {
  1407. bool handleEvent(const LLSD& userdata)
  1408. {
  1409. std::string help_topic = userdata.asString();
  1410. LLViewerHelp* vhelp = LLViewerHelp::getInstance();
  1411. vhelp->showTopic(help_topic);
  1412. return true;
  1413. }
  1414. };
  1415. class LLShowSidetrayPanel : public view_listener_t
  1416. {
  1417. bool handleEvent(const LLSD& userdata)
  1418. {
  1419. std::string panel_name = userdata.asString();
  1420. // Toggle the panel
  1421. if (!LLSideTray::getInstance()->isPanelActive(panel_name))
  1422. {
  1423. // LLFloaterInventory::showAgentInventory();
  1424. LLSideTray::getInstance()->showPanel(panel_name, LLSD());
  1425. }
  1426. else
  1427. {
  1428. LLSideTray::getInstance()->collapseSideBar();
  1429. }
  1430. return true;
  1431. }
  1432. };
  1433. class LLSidetrayPanelVisible : public view_listener_t
  1434. {
  1435. bool handleEvent(const LLSD& userdata)
  1436. {
  1437. std::string panel_name = userdata.asString();
  1438. // Toggle the panel
  1439. if (LLSideTray::getInstance()->isPanelActive(panel_name))
  1440. {
  1441. return true;
  1442. }
  1443. else
  1444. {
  1445. return false;
  1446. }
  1447. }
  1448. };
  1449. bool callback_show_url(const LLSD& notification, const LLSD& response)
  1450. {
  1451. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  1452. if (0 == option)
  1453. {
  1454. LLWeb::loadURL(notification["payload"]["url"].asString());
  1455. }
  1456. return false;
  1457. }
  1458. class LLPromptShowURL : public view_listener_t
  1459. {
  1460. bool handleEvent(const LLSD& userdata)
  1461. {
  1462. std::string param = userdata.asString();
  1463. std::string::size_type offset = param.find(",");
  1464. if (offset != param.npos)
  1465. {
  1466. std::string alert = param.substr(0, offset);
  1467. std::string url = param.substr(offset+1);
  1468. if(gSavedSettings.getBOOL("UseExternalBrowser"))
  1469.      LLSD payload;
  1470.      payload["url"] = url;
  1471.      LLNotificationsUtil::add(alert, LLSD(), payload, callback_show_url);
  1472. }
  1473. else
  1474. {
  1475.         LLWeb::loadURL(url);
  1476. }
  1477. }
  1478. else
  1479. {
  1480. llinfos << "PromptShowURL invalid parameters! Expecting "ALERT,URL"." << llendl;
  1481. }
  1482. return true;
  1483. }
  1484. };
  1485. bool callback_show_file(const LLSD& notification, const LLSD& response)
  1486. {
  1487. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  1488. if (0 == option)
  1489. {
  1490. LLWeb::loadURL(notification["payload"]["url"]);
  1491. }
  1492. return false;
  1493. }
  1494. class LLPromptShowFile : public view_listener_t
  1495. {
  1496. bool handleEvent(const LLSD& userdata)
  1497. {
  1498. std::string param = userdata.asString();
  1499. std::string::size_type offset = param.find(",");
  1500. if (offset != param.npos)
  1501. {
  1502. std::string alert = param.substr(0, offset);
  1503. std::string file = param.substr(offset+1);
  1504. LLSD payload;
  1505. payload["url"] = file;
  1506. LLNotificationsUtil::add(alert, LLSD(), payload, callback_show_file);
  1507. }
  1508. else
  1509. {
  1510. llinfos << "PromptShowFile invalid parameters! Expecting "ALERT,FILE"." << llendl;
  1511. }
  1512. return true;
  1513. }
  1514. };
  1515. class LLShowAgentProfile : public view_listener_t
  1516. {
  1517. bool handleEvent(const LLSD& userdata)
  1518. {
  1519. LLUUID agent_id;
  1520. if (userdata.asString() == "agent")
  1521. {
  1522. agent_id = gAgent.getID();
  1523. }
  1524. else if (userdata.asString() == "hit object")
  1525. {
  1526. LLViewerObject* objectp = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1527. if (objectp)
  1528. {
  1529. agent_id = objectp->getID();
  1530. }
  1531. }
  1532. else
  1533. {
  1534. agent_id = userdata.asUUID();
  1535. }
  1536. LLVOAvatar* avatar = find_avatar_from_object(agent_id);
  1537. if (avatar)
  1538. {
  1539. LLAvatarActions::showProfile(avatar->getID());
  1540. }
  1541. return true;
  1542. }
  1543. };
  1544. class LLLandEdit : public view_listener_t
  1545. {
  1546. bool handleEvent(const LLSD& userdata)
  1547. {
  1548. if (gAgent.getFocusOnAvatar() && gSavedSettings.getBOOL("EditCameraMovement") )
  1549. {
  1550. // zoom in if we're looking at the avatar
  1551. gAgent.setFocusOnAvatar(FALSE, ANIMATE);
  1552. gAgent.setFocusGlobal(LLToolPie::getInstance()->getPick());
  1553. gAgent.cameraOrbitOver( F_PI * 0.25f );
  1554. gViewerWindow->moveCursorToCenter();
  1555. }
  1556. else if ( gSavedSettings.getBOOL("EditCameraMovement") )
  1557. {
  1558. gAgent.setFocusGlobal(LLToolPie::getInstance()->getPick());
  1559. gViewerWindow->moveCursorToCenter();
  1560. }
  1561. LLViewerParcelMgr::getInstance()->selectParcelAt( LLToolPie::getInstance()->getPick().mPosGlobal );
  1562. LLFloaterReg::showInstance("build");
  1563. // Switch to land edit toolset
  1564. LLToolMgr::getInstance()->getCurrentToolset()->selectTool( LLToolSelectLand::getInstance() );
  1565. return true;
  1566. }
  1567. };
  1568. class LLWorldEnableBuyLand : public view_listener_t
  1569. {
  1570. bool handleEvent(const LLSD& userdata)
  1571. {
  1572. bool new_value = LLViewerParcelMgr::getInstance()->canAgentBuyParcel(
  1573. LLViewerParcelMgr::getInstance()->selectionEmpty()
  1574. ? LLViewerParcelMgr::getInstance()->getAgentParcel()
  1575. : LLViewerParcelMgr::getInstance()->getParcelSelection()->getParcel(),
  1576. false);
  1577. return new_value;
  1578. }
  1579. };
  1580. BOOL enable_buy_land(void*)
  1581. {
  1582. return LLViewerParcelMgr::getInstance()->canAgentBuyParcel(
  1583. LLViewerParcelMgr::getInstance()->getParcelSelection()->getParcel(), false);
  1584. }
  1585. void handle_buy_land()
  1586. {
  1587. LLViewerParcelMgr* vpm = LLViewerParcelMgr::getInstance();
  1588. if (vpm->selectionEmpty())
  1589. {
  1590. vpm->selectParcelAt(gAgent.getPositionGlobal());
  1591. }
  1592. vpm->startBuyLand();
  1593. }
  1594. class LLObjectAttachToAvatar : public view_listener_t
  1595. {
  1596. public:
  1597. static void setObjectSelection(LLObjectSelectionHandle selection) { sObjectSelection = selection; }
  1598. private:
  1599. bool handleEvent(const LLSD& userdata)
  1600. {
  1601. setObjectSelection(LLSelectMgr::getInstance()->getSelection());
  1602. LLViewerObject* selectedObject = sObjectSelection->getFirstRootObject();
  1603. if (selectedObject)
  1604. {
  1605. S32 index = userdata.asInteger();
  1606. LLViewerJointAttachment* attachment_point = NULL;
  1607. if (index > 0)
  1608. attachment_point = get_if_there(gAgent.getAvatarObject()->mAttachmentPoints, index, (LLViewerJointAttachment*)NULL);
  1609. confirm_replace_attachment(0, attachment_point);
  1610. }
  1611. return true;
  1612. }
  1613. protected:
  1614. static LLObjectSelectionHandle sObjectSelection;
  1615. };
  1616. LLObjectSelectionHandle LLObjectAttachToAvatar::sObjectSelection;
  1617. void near_attach_object(BOOL success, void *user_data)
  1618. {
  1619. if (success)
  1620. {
  1621. const LLViewerJointAttachment *attachment = (LLViewerJointAttachment *)user_data;
  1622. U8 attachment_id = 0;
  1623. if (attachment)
  1624. {
  1625. for (LLVOAvatar::attachment_map_t::const_iterator iter = gAgent.getAvatarObject()->mAttachmentPoints.begin();
  1626.  iter != gAgent.getAvatarObject()->mAttachmentPoints.end(); ++iter)
  1627. {
  1628. if (iter->second == attachment)
  1629. {
  1630. attachment_id = iter->first;
  1631. break;
  1632. }
  1633. }
  1634. }
  1635. else
  1636. {
  1637. // interpret 0 as "default location"
  1638. attachment_id = 0;
  1639. }
  1640. LLSelectMgr::getInstance()->sendAttach(attachment_id);
  1641. }
  1642. LLObjectAttachToAvatar::setObjectSelection(NULL);
  1643. }
  1644. void confirm_replace_attachment(S32 option, void* user_data)
  1645. {
  1646. if (option == 0/*YES*/)
  1647. {
  1648. LLViewerObject* selectedObject = LLSelectMgr::getInstance()->getSelection()->getFirstRootObject();
  1649. if (selectedObject)
  1650. {
  1651. const F32 MIN_STOP_DISTANCE = 1.f; // meters
  1652. const F32 ARM_LENGTH = 0.5f; // meters
  1653. const F32 SCALE_FUDGE = 1.5f;
  1654. F32 stop_distance = SCALE_FUDGE * selectedObject->getMaxScale() + ARM_LENGTH;
  1655. if (stop_distance < MIN_STOP_DISTANCE)
  1656. {
  1657. stop_distance = MIN_STOP_DISTANCE;
  1658. }
  1659. LLVector3 walkToSpot = selectedObject->getPositionAgent();
  1660. // make sure we stop in front of the object
  1661. LLVector3 delta = walkToSpot - gAgent.getPositionAgent();
  1662. delta.normVec();
  1663. delta = delta * 0.5f;
  1664. walkToSpot -= delta;
  1665. gAgent.startAutoPilotGlobal(gAgent.getPosGlobalFromAgent(walkToSpot), "Attach", NULL, near_attach_object, user_data, stop_distance);
  1666. gAgent.clearFocusObject();
  1667. }
  1668. }
  1669. }
  1670. void callback_attachment_drop(const LLSD& notification, const LLSD& response)
  1671. {
  1672. // Ensure user confirmed the drop
  1673. S32 option = LLNotificationsUtil::getSelectedOption(notification, response);
  1674. if (option != 0) return;
  1675. // Called when the user clicked on an object attached to them
  1676. // and selected "Drop".
  1677. LLUUID object_id = notification["payload"]["object_id"].asUUID();
  1678. LLViewerObject *object = gObjectList.findObject(object_id);
  1679. if (!object)
  1680. {
  1681. llwarns << "handle_drop_attachment() - no object to drop" << llendl;
  1682. return;
  1683. }
  1684. LLViewerObject *parent = (LLViewerObject*)object->getParent();
  1685. while (parent)
  1686. {
  1687. if(parent->isAvatar())
  1688. {
  1689. break;
  1690. }
  1691. object = parent;
  1692. parent = (LLViewerObject*)parent->getParent();
  1693. }
  1694. if (!object)
  1695. {
  1696. llwarns << "handle_detach() - no object to detach" << llendl;
  1697. return;
  1698. }
  1699. if (object->isAvatar())
  1700. {
  1701. llwarns << "Trying to detach avatar from avatar." << llendl;
  1702. return;
  1703. }
  1704. // reselect the object
  1705. LLSelectMgr::getInstance()->selectObjectAndFamily(object);
  1706. LLSelectMgr::getInstance()->sendDropAttachment();
  1707. return;
  1708. }
  1709. class LLAttachmentDrop : public view_listener_t
  1710. {
  1711. bool handleEvent(const LLSD& userdata)
  1712. {
  1713. LLSD payload;
  1714. LLViewerObject *object = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1715. if (object) 
  1716. {
  1717. payload["object_id"] = object->getID();
  1718. }
  1719. else
  1720. {
  1721. llwarns << "Drop object not found" << llendl;
  1722. return true;
  1723. }
  1724. LLNotificationsUtil::add("AttachmentDrop", LLSD(), payload, &callback_attachment_drop);
  1725. return true;
  1726. }
  1727. };
  1728. // called from avatar pie menu
  1729. class LLAttachmentDetachFromPoint : public view_listener_t
  1730. {
  1731. bool handleEvent(const LLSD& user_data)
  1732. {
  1733. const LLViewerJointAttachment *attachment = get_if_there(gAgent.getAvatarObject()->mAttachmentPoints, user_data.asInteger(), (LLViewerJointAttachment*)NULL);
  1734. if (attachment->getNumObjects() > 0)
  1735. {
  1736. gMessageSystem->newMessage("ObjectDetach");
  1737. gMessageSystem->nextBlockFast(_PREHASH_AgentData);
  1738. gMessageSystem->addUUIDFast(_PREHASH_AgentID, gAgent.getID() );
  1739. gMessageSystem->addUUIDFast(_PREHASH_SessionID, gAgent.getSessionID());
  1740. for (LLViewerJointAttachment::attachedobjs_vec_t::const_iterator iter = attachment->mAttachedObjects.begin();
  1741.  iter != attachment->mAttachedObjects.end();
  1742.  iter++)
  1743. {
  1744. LLViewerObject *attached_object = (*iter);
  1745. gMessageSystem->nextBlockFast(_PREHASH_ObjectData);
  1746. gMessageSystem->addU32Fast(_PREHASH_ObjectLocalID, attached_object->getLocalID());
  1747. }
  1748. gMessageSystem->sendReliable( gAgent.getRegionHost() );
  1749. }
  1750. return true;
  1751. }
  1752. };
  1753. static bool onEnableAttachmentLabel(LLUICtrl* ctrl, const LLSD& data)
  1754. {
  1755. std::string label;
  1756. LLMenuItemGL* menu = dynamic_cast<LLMenuItemGL*>(ctrl);
  1757. if (menu)
  1758. {
  1759. const LLViewerJointAttachment *attachment = get_if_there(gAgent.getAvatarObject()->mAttachmentPoints, data["index"].asInteger(), (LLViewerJointAttachment*)NULL);
  1760. if (attachment)
  1761. {
  1762. label = data["label"].asString();
  1763. for (LLViewerJointAttachment::attachedobjs_vec_t::const_iterator attachment_iter = attachment->mAttachedObjects.begin();
  1764.  attachment_iter != attachment->mAttachedObjects.end();
  1765.  ++attachment_iter)
  1766. {
  1767. const LLViewerObject* attached_object = (*attachment_iter);
  1768. if (attached_object)
  1769. {
  1770. LLViewerInventoryItem* itemp = gInventory.getItem(attached_object->getItemID());
  1771. if (itemp)
  1772. {
  1773. label += std::string(" (") + itemp->getName() + std::string(")");
  1774. break;
  1775. }
  1776. }
  1777. }
  1778. }
  1779. menu->setLabel(label);
  1780. }
  1781. return true;
  1782. }
  1783. class LLAttachmentDetach : public view_listener_t
  1784. {
  1785. bool handleEvent(const LLSD& userdata)
  1786. {
  1787. // Called when the user clicked on an object attached to them
  1788. // and selected "Detach".
  1789. LLViewerObject *object = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1790. if (!object)
  1791. {
  1792. llwarns << "handle_detach() - no object to detach" << llendl;
  1793. return true;
  1794. }
  1795. LLViewerObject *parent = (LLViewerObject*)object->getParent();
  1796. while (parent)
  1797. {
  1798. if(parent->isAvatar())
  1799. {
  1800. break;
  1801. }
  1802. object = parent;
  1803. parent = (LLViewerObject*)parent->getParent();
  1804. }
  1805. if (!object)
  1806. {
  1807. llwarns << "handle_detach() - no object to detach" << llendl;
  1808. return true;
  1809. }
  1810. if (object->isAvatar())
  1811. {
  1812. llwarns << "Trying to detach avatar from avatar." << llendl;
  1813. return true;
  1814. }
  1815. // The sendDetach() method works on the list of selected
  1816. // objects.  Thus we need to clear the list, make sure it only
  1817. // contains the object the user clicked, send the message,
  1818. // then clear the list.
  1819. // We use deselectAll to update the simulator's notion of what's
  1820. // selected, and removeAll just to change things locally.
  1821. //RN: I thought it was more useful to detach everything that was selected
  1822. if (LLSelectMgr::getInstance()->getSelection()->isAttachment())
  1823. {
  1824. LLSelectMgr::getInstance()->sendDetach();
  1825. }
  1826. return true;
  1827. }
  1828. };
  1829. //Adding an observer for a Jira 2422 and needs to be a fetch observer
  1830. //for Jira 3119
  1831. class LLWornItemFetchedObserver : public LLInventoryFetchObserver
  1832. {
  1833. public:
  1834. LLWornItemFetchedObserver() {}
  1835. virtual ~LLWornItemFetchedObserver() {}
  1836. protected:
  1837. virtual void done()
  1838. {
  1839. gMenuAttachmentSelf->buildDrawLabels();
  1840. gInventory.removeObserver(this);
  1841. delete this;
  1842. }
  1843. };
  1844. // You can only drop items on parcels where you can build.
  1845. class LLAttachmentEnableDrop : public view_listener_t
  1846. {
  1847. bool handleEvent(const LLSD& userdata)
  1848. {
  1849. BOOL can_build   = gAgent.isGodlike() || (LLViewerParcelMgr::getInstance()->allowAgentBuild());
  1850. //Add an inventory observer to only allow dropping the newly attached item
  1851. //once it exists in your inventory.  Look at Jira 2422.
  1852. //-jwolk
  1853. // A bug occurs when you wear/drop an item before it actively is added to your inventory
  1854. // if this is the case (you're on a slow sim, etc.) a copy of the object,
  1855. // well, a newly created object with the same properties, is placed
  1856. // in your inventory.  Therefore, we disable the drop option until the
  1857. // item is in your inventory
  1858. LLViewerObject*              object         = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1859. LLViewerJointAttachment*     attachment     = NULL;
  1860. LLInventoryItem*             item           = NULL;
  1861. // Do not enable drop if all faces of object are not enabled
  1862. if (object && LLSelectMgr::getInstance()->getSelection()->contains(object,SELECT_ALL_TES ))
  1863. {
  1864.      S32 attachmentID  = ATTACHMENT_ID_FROM_STATE(object->getState());
  1865. attachment = get_if_there(gAgent.getAvatarObject()->mAttachmentPoints, attachmentID, (LLViewerJointAttachment*)NULL);
  1866. if (attachment)
  1867. {
  1868. for (LLViewerJointAttachment::attachedobjs_vec_t::iterator attachment_iter = attachment->mAttachedObjects.begin();
  1869.  attachment_iter != attachment->mAttachedObjects.end();
  1870.  ++attachment_iter)
  1871. {
  1872. // make sure item is in your inventory (it could be a delayed attach message being sent from the sim)
  1873. // so check to see if the item is in the inventory already
  1874. item = gInventory.getItem((*attachment_iter)->getItemID());
  1875. if (!item)
  1876. {
  1877. // Item does not exist, make an observer to enable the pie menu 
  1878. // when the item finishes fetching worst case scenario 
  1879. // if a fetch is already out there (being sent from a slow sim)
  1880. // we refetch and there are 2 fetches
  1881. LLWornItemFetchedObserver* wornItemFetched = new LLWornItemFetchedObserver();
  1882. LLInventoryFetchObserver::item_ref_t items; //add item to the inventory item to be fetched
  1883. items.push_back((*attachment_iter)->getItemID());
  1884. wornItemFetched->fetchItems(items);
  1885. gInventory.addObserver(wornItemFetched);
  1886. }
  1887. }
  1888. }
  1889. }
  1890. //now check to make sure that the item is actually in the inventory before we enable dropping it
  1891. bool new_value = enable_detach() && can_build && item;
  1892. return new_value;
  1893. }
  1894. };
  1895. BOOL enable_detach(const LLSD&)
  1896. {
  1897. LLViewerObject* object = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  1898. // Only enable detach if all faces of object are selected
  1899. if (!object ||
  1900. !object->isAttachment() ||
  1901. !LLSelectMgr::getInstance()->getSelection()->contains(object,SELECT_ALL_TES ))
  1902. {
  1903. return FALSE;
  1904. }
  1905. // Find the avatar who owns this attachment
  1906. LLViewerObject* avatar = object;
  1907. while (avatar)
  1908. {
  1909. // ...if it's you, good to detach
  1910. if (avatar->getID() == gAgent.getID())
  1911. {
  1912. return TRUE;
  1913. }
  1914. avatar = (LLViewerObject*)avatar->getParent();
  1915. }
  1916. return FALSE;
  1917. }
  1918. class LLAttachmentEnableDetach : public view_listener_t
  1919. {
  1920. bool handleEvent(const LLSD& userdata)
  1921. {
  1922. bool new_value = enable_detach();
  1923. return new_value;
  1924. }
  1925. };
  1926. // Used to tell if the selected object can be attached to your avatar.
  1927. BOOL object_selected_and_point_valid()
  1928. {
  1929. LLObjectSelectionHandle selection = LLSelectMgr::getInstance()->getSelection();
  1930. for (LLObjectSelection::root_iterator iter = selection->root_begin();
  1931.  iter != selection->root_end(); iter++)
  1932. {
  1933. LLSelectNode* node = *iter;
  1934. LLViewerObject* object = node->getObject();
  1935. LLViewerObject::const_child_list_t& child_list = object->getChildren();
  1936. for (LLViewerObject::child_list_t::const_iterator iter = child_list.begin();
  1937.  iter != child_list.end(); iter++)
  1938. {
  1939. LLViewerObject* child = *iter;
  1940. if (child->isAvatar())
  1941. {
  1942. return FALSE;
  1943. }
  1944. }
  1945. }
  1946. return (selection->getRootObjectCount() == 1) && 
  1947. (selection->getFirstRootObject()->getPCode() == LL_PCODE_VOLUME) && 
  1948. selection->getFirstRootObject()->permYouOwner() &&
  1949. selection->getFirstRootObject()->flagObjectMove() &&
  1950. !((LLViewerObject*)selection->getFirstRootObject()->getRoot())->isAvatar() && 
  1951. (selection->getFirstRootObject()->getNVPair("AssetContainer") == NULL);
  1952. }
  1953. BOOL object_is_wearable()
  1954. {
  1955. if (!object_selected_and_point_valid())
  1956. {
  1957. return FALSE;
  1958. }
  1959. if (sitting_on_selection())
  1960. {
  1961. return FALSE;
  1962. }
  1963. LLObjectSelectionHandle selection = LLSelectMgr::getInstance()->getSelection();
  1964. for (LLObjectSelection::valid_root_iterator iter = LLSelectMgr::getInstance()->getSelection()->valid_root_begin();
  1965.  iter != LLSelectMgr::getInstance()->getSelection()->valid_root_end(); iter++)
  1966. {
  1967. LLSelectNode* node = *iter;
  1968. if (node->mPermissions->getOwner() == gAgent.getID())
  1969. {
  1970. return TRUE;
  1971. }
  1972. }
  1973. return FALSE;
  1974. }
  1975. class LLAttachmentPointFilled : public view_listener_t
  1976. {
  1977. bool handleEvent(const LLSD& user_data)
  1978. {
  1979. bool enable = false;
  1980. LLVOAvatar::attachment_map_t::iterator found_it = gAgent.getAvatarObject()->mAttachmentPoints.find(user_data.asInteger());
  1981. if (found_it != gAgent.getAvatarObject()->mAttachmentPoints.end())
  1982. {
  1983. enable = found_it->second->getNumObjects() > 0;
  1984. }
  1985. return enable;
  1986. }
  1987. };
  1988. class LLAvatarSendIM : public view_listener_t
  1989. {
  1990. bool handleEvent(const LLSD& userdata)
  1991. {
  1992. LLVOAvatar* avatar = find_avatar_from_object( LLSelectMgr::getInstance()->getSelection()->getPrimaryObject() );
  1993. if(avatar)
  1994. {
  1995. LLAvatarActions::startIM(avatar->getID());
  1996. }
  1997. return true;
  1998. }
  1999. };
  2000. class LLAvatarCall : public view_listener_t
  2001. {
  2002. bool handleEvent(const LLSD& userdata)
  2003. {
  2004. LLVOAvatar* avatar = find_avatar_from_object( LLSelectMgr::getInstance()->getSelection()->getPrimaryObject() );
  2005. if(avatar)
  2006. {
  2007. LLAvatarActions::startCall(avatar->getID());
  2008. }
  2009. return true;
  2010. }
  2011. };
  2012. namespace
  2013. {
  2014. struct QueueObjects : public LLSelectedObjectFunctor
  2015. {
  2016. BOOL scripted;
  2017. BOOL modifiable;
  2018. LLFloaterScriptQueue* mQueue;
  2019. QueueObjects(LLFloaterScriptQueue* q) : mQueue(q), scripted(FALSE), modifiable(FALSE) {}
  2020. virtual bool apply(LLViewerObject* obj)
  2021. {
  2022. scripted = obj->flagScripted();
  2023. modifiable = obj->permModify();
  2024. if( scripted && modifiable )
  2025. {
  2026. mQueue->addObject(obj->getID());
  2027. return false;
  2028. }
  2029. else
  2030. {
  2031. return true; // fail: stop applying
  2032. }
  2033. }
  2034. };
  2035. }
  2036. void queue_actions(LLFloaterScriptQueue* q, const std::string& msg)
  2037. {
  2038. QueueObjects func(q);
  2039. LLSelectMgr *mgr = LLSelectMgr::getInstance();
  2040. LLObjectSelectionHandle selectHandle = mgr->getSelection();
  2041. bool fail = selectHandle->applyToObjects(&func);
  2042. if(fail)
  2043. {
  2044. if ( !func.scripted )
  2045. {
  2046. std::string noscriptmsg = std::string("Cannot") + msg + "SelectObjectsNoScripts";
  2047. LLNotificationsUtil::add(noscriptmsg);
  2048. }
  2049. else if ( !func.modifiable )
  2050. {
  2051. std::string nomodmsg = std::string("Cannot") + msg + "SelectObjectsNoPermission";
  2052. LLNotificationsUtil::add(nomodmsg);
  2053. }
  2054. else
  2055. {
  2056. llerrs << "Bad logic." << llendl;
  2057. }
  2058. }
  2059. else
  2060. {
  2061. if (!q->start())
  2062. {
  2063. llwarns << "Unexpected script compile failure." << llendl;
  2064. }
  2065. }
  2066. }
  2067. class LLToolsSelectedScriptAction : public view_listener_t
  2068. {
  2069. bool handleEvent(const LLSD& userdata)
  2070. {
  2071. std::string action = userdata.asString();
  2072. bool mono = false;
  2073. std::string msg, name;
  2074. if (action == "compile mono")
  2075. {
  2076. name = "compile_queue";
  2077. mono = true;
  2078. msg = "Recompile";
  2079. }
  2080. if (action == "compile lsl")
  2081. {
  2082. name = "compile_queue";
  2083. msg = "Recompile";
  2084. }
  2085. else if (action == "reset")
  2086. {
  2087. name = "reset_queue";
  2088. msg = "Reset";
  2089. }
  2090. else if (action == "start")
  2091. {
  2092. name = "start_queue";
  2093. msg = "Running";
  2094. }
  2095. else if (action == "stop")
  2096. {
  2097. name = "stop_queue";
  2098. msg = "RunningNot";
  2099. }
  2100. LLUUID id; id.generate();
  2101. LLFloaterScriptQueue* queue =LLFloaterReg::getTypedInstance<LLFloaterScriptQueue>(name, LLSD(id));
  2102. if (queue)
  2103. {
  2104. queue->setMono(mono);
  2105. queue_actions(queue, msg);
  2106. }
  2107. else
  2108. {
  2109. llwarns << "Failed to generate LLFloaterScriptQueue with action: " << action << llendl;
  2110. }
  2111. return true;
  2112. }
  2113. };
  2114. void handle_selected_texture_info(void*)
  2115. {
  2116. for (LLObjectSelection::valid_iterator iter = LLSelectMgr::getInstance()->getSelection()->valid_begin();
  2117.     iter != LLSelectMgr::getInstance()->getSelection()->valid_end(); iter++)
  2118. {
  2119. LLSelectNode* node = *iter;
  2120.    
  2121.     std::string msg;
  2122.     msg.assign("Texture info for: ");
  2123.     msg.append(node->mName);
  2124. LLSD args;
  2125. args["MESSAGE"] = msg;
  2126. LLNotificationsUtil::add("SystemMessage", args);
  2127.    
  2128.     U8 te_count = node->getObject()->getNumTEs();
  2129.     // map from texture ID to list of faces using it
  2130.     typedef std::map< LLUUID, std::vector<U8> > map_t;
  2131.     map_t faces_per_texture;
  2132.     for (U8 i = 0; i < te_count; i++)
  2133.     {
  2134.     if (!node->isTESelected(i)) continue;
  2135.    
  2136.     LLViewerTexture* img = node->getObject()->getTEImage(i);
  2137.     LLUUID image_id = img->getID();
  2138.     faces_per_texture[image_id].push_back(i);
  2139.     }
  2140.     // Per-texture, dump which faces are using it.
  2141.     map_t::iterator it;
  2142.     for (it = faces_per_texture.begin(); it != faces_per_texture.end(); ++it)
  2143.     {
  2144.     LLUUID image_id = it->first;
  2145.     U8 te = it->second[0];
  2146.     LLViewerTexture* img = node->getObject()->getTEImage(te);
  2147.     S32 height = img->getHeight();
  2148.     S32 width = img->getWidth();
  2149.     S32 components = img->getComponents();
  2150.     msg = llformat("%dx%d %s on face ",
  2151.     width,
  2152.     height,
  2153.     (components == 4 ? "alpha" : "opaque"));
  2154.     for (U8 i = 0; i < it->second.size(); ++i)
  2155.     {
  2156.     msg.append( llformat("%d ", (S32)(it->second[i])));
  2157.     }
  2158. LLSD args;
  2159. args["MESSAGE"] = msg;
  2160. LLNotificationsUtil::add("SystemMessage", args);
  2161.     }
  2162. }
  2163. }
  2164. void handle_test_male(void*)
  2165. {
  2166. LLAppearanceManager::instance().wearOutfitByName("Male Shape & Outfit");
  2167. //gGestureList.requestResetFromServer( TRUE );
  2168. }
  2169. void handle_test_female(void*)
  2170. {
  2171. LLAppearanceManager::instance().wearOutfitByName("Female Shape & Outfit");
  2172. //gGestureList.requestResetFromServer( FALSE );
  2173. }
  2174. void handle_toggle_pg(void*)
  2175. {
  2176. gAgent.setTeen( !gAgent.isTeen() );
  2177. LLFloaterWorldMap::reloadIcons(NULL);
  2178. llinfos << "PG status set to " << (S32)gAgent.isTeen() << llendl;
  2179. }
  2180. void handle_dump_attachments(void*)
  2181. {
  2182. LLVOAvatar* avatar = gAgent.getAvatarObject();
  2183. if( !avatar )
  2184. {
  2185. llinfos << "NO AVATAR" << llendl;
  2186. return;
  2187. }
  2188. for (LLVOAvatar::attachment_map_t::iterator iter = avatar->mAttachmentPoints.begin(); 
  2189.  iter != avatar->mAttachmentPoints.end(); )
  2190. {
  2191. LLVOAvatar::attachment_map_t::iterator curiter = iter++;
  2192. LLViewerJointAttachment* attachment = curiter->second;
  2193. S32 key = curiter->first;
  2194. for (LLViewerJointAttachment::attachedobjs_vec_t::iterator attachment_iter = attachment->mAttachedObjects.begin();
  2195.  attachment_iter != attachment->mAttachedObjects.end();
  2196.  ++attachment_iter)
  2197. {
  2198. LLViewerObject *attached_object = (*attachment_iter);
  2199. BOOL visible = (attached_object != NULL &&
  2200. attached_object->mDrawable.notNull() && 
  2201. !attached_object->mDrawable->isRenderType(0));
  2202. LLVector3 pos;
  2203. if (visible) pos = attached_object->mDrawable->getPosition();
  2204. llinfos << "ATTACHMENT " << key << ": item_id=" << attached_object->getItemID()
  2205. << (attached_object ? " present " : " absent ")
  2206. << (visible ? "visible " : "invisible ")
  2207. <<  " at " << pos
  2208. << " and " << (visible ? attached_object->getPosition() : LLVector3::zero)
  2209. << llendl;
  2210. }
  2211. }
  2212. }
  2213. // these are used in the gl menus to set control values.
  2214. class LLToggleControl : public view_listener_t
  2215. {
  2216. bool handleEvent(const LLSD& userdata)
  2217. {
  2218. std::string control_name = userdata.asString();
  2219. BOOL checked = gSavedSettings.getBOOL( control_name );
  2220. gSavedSettings.setBOOL( control_name, !checked );
  2221. return true;
  2222. }
  2223. };
  2224. class LLCheckControl : public view_listener_t
  2225. {
  2226. bool handleEvent( const LLSD& userdata)
  2227. {
  2228. std::string callback_data = userdata.asString();
  2229. bool new_value = gSavedSettings.getBOOL(callback_data);
  2230. return new_value;
  2231. }
  2232. };
  2233. void menu_toggle_attached_lights(void* user_data)
  2234. {
  2235. LLPipeline::sRenderAttachedLights = gSavedSettings.getBOOL("RenderAttachedLights");
  2236. }
  2237. void menu_toggle_attached_particles(void* user_data)
  2238. {
  2239. LLPipeline::sRenderAttachedParticles = gSavedSettings.getBOOL("RenderAttachedParticles");
  2240. }
  2241. class LLAdvancedHandleAttachedLightParticles: public view_listener_t
  2242. {
  2243. bool handleEvent(const LLSD& userdata)
  2244. {
  2245. std::string control_name = userdata.asString();
  2246. // toggle the control
  2247. gSavedSettings.setBOOL(control_name,
  2248.        !gSavedSettings.getBOOL(control_name));
  2249. // update internal flags
  2250. if (control_name == "RenderAttachedLights")
  2251. {
  2252. menu_toggle_attached_lights(NULL);
  2253. }
  2254. else if (control_name == "RenderAttachedParticles")
  2255. {
  2256. menu_toggle_attached_particles(NULL);
  2257. }
  2258. return true;
  2259. }
  2260. };
  2261. class LLSomethingSelected : public view_listener_t
  2262. {
  2263. bool handleEvent(const LLSD& userdata)
  2264. {
  2265. bool new_value = !(LLSelectMgr::getInstance()->getSelection()->isEmpty());
  2266. return new_value;
  2267. }
  2268. };
  2269. class LLSomethingSelectedNoHUD : public view_listener_t
  2270. {
  2271. bool handleEvent(const LLSD& userdata)
  2272. {
  2273. LLObjectSelectionHandle selection = LLSelectMgr::getInstance()->getSelection();
  2274. bool new_value = !(selection->isEmpty()) && !(selection->getSelectType() == SELECT_TYPE_HUD);
  2275. return new_value;
  2276. }
  2277. };
  2278. static bool is_editable_selected()
  2279. {
  2280. return (LLSelectMgr::getInstance()->getSelection()->getFirstEditableObject() != NULL);
  2281. }
  2282. class LLEditableSelected : public view_listener_t
  2283. {
  2284. bool handleEvent(const LLSD& userdata)
  2285. {
  2286. return is_editable_selected();
  2287. }
  2288. };
  2289. class LLEditableSelectedMono : public view_listener_t
  2290. {
  2291. bool handleEvent(const LLSD& userdata)
  2292. {
  2293. bool new_value = false;
  2294. LLViewerRegion* region = gAgent.getRegion();
  2295. if(region && gMenuHolder)
  2296. {
  2297. bool have_cap = (! region->getCapability("UpdateScriptTask").empty());
  2298. new_value = is_editable_selected() && have_cap;
  2299. }
  2300. return new_value;
  2301. }
  2302. };
  2303. bool enable_object_take_copy()
  2304. {
  2305. bool all_valid = false;
  2306. if (LLSelectMgr::getInstance())
  2307. {
  2308. if (!LLSelectMgr::getInstance()->getSelection()->isEmpty())
  2309. {
  2310. all_valid = true;
  2311. #ifndef HACKED_GODLIKE_VIEWER
  2312. # ifdef TOGGLE_HACKED_GODLIKE_VIEWER
  2313. if (LLViewerLogin::getInstance()->isInProductionGrid()
  2314.             || !gAgent.isGodlike())
  2315. # endif
  2316. {
  2317. struct f : public LLSelectedObjectFunctor
  2318. {
  2319. virtual bool apply(LLViewerObject* obj)
  2320. {
  2321. return (!obj->permCopy() || obj->isAttachment());
  2322. }
  2323. } func;
  2324. const bool firstonly = true;
  2325. bool any_invalid = LLSelectMgr::getInstance()->getSelection()->applyToRootObjects(&func, firstonly);
  2326. all_valid = !any_invalid;
  2327. }
  2328. #endif // HACKED_GODLIKE_VIEWER
  2329. }
  2330. }
  2331. return all_valid;
  2332. }
  2333. class LLHasAsset : public LLInventoryCollectFunctor
  2334. {
  2335. public:
  2336. LLHasAsset(const LLUUID& id) : mAssetID(id), mHasAsset(FALSE) {}
  2337. virtual ~LLHasAsset() {}
  2338. virtual bool operator()(LLInventoryCategory* cat,
  2339. LLInventoryItem* item);
  2340. BOOL hasAsset() const { return mHasAsset; }
  2341. protected:
  2342. LLUUID mAssetID;
  2343. BOOL mHasAsset;
  2344. };
  2345. bool LLHasAsset::operator()(LLInventoryCategory* cat,
  2346. LLInventoryItem* item)
  2347. {
  2348. if(item && item->getAssetUUID() == mAssetID)
  2349. {
  2350. mHasAsset = TRUE;
  2351. }
  2352. return FALSE;
  2353. }
  2354. BOOL enable_save_into_inventory(void*)
  2355. {
  2356. // *TODO: clean this up
  2357. // find the last root
  2358. LLSelectNode* last_node = NULL;
  2359. for (LLObjectSelection::root_iterator iter = LLSelectMgr::getInstance()->getSelection()->root_begin();
  2360.  iter != LLSelectMgr::getInstance()->getSelection()->root_end(); iter++)
  2361. {
  2362. last_node = *iter;
  2363. }
  2364. #ifdef HACKED_GODLIKE_VIEWER
  2365. return TRUE;
  2366. #else
  2367. # ifdef TOGGLE_HACKED_GODLIKE_VIEWER
  2368. if (!LLViewerLogin::getInstance()->isInProductionGrid()
  2369.         && gAgent.isGodlike())
  2370. {
  2371. return TRUE;
  2372. }
  2373. # endif
  2374. // check all pre-req's for save into inventory.
  2375. if(last_node && last_node->mValid && !last_node->mItemID.isNull()
  2376.    && (last_node->mPermissions->getOwner() == gAgent.getID())
  2377.    && (gInventory.getItem(last_node->mItemID) != NULL))
  2378. {
  2379. LLViewerObject* obj = last_node->getObject();
  2380. if( obj && !obj->isAttachment() )
  2381. {
  2382. return TRUE;
  2383. }
  2384. }
  2385. #endif
  2386. return FALSE;
  2387. }
  2388. class LLToolsEnableSaveToInventory : public view_listener_t
  2389. {
  2390. bool handleEvent(const LLSD& userdata)
  2391. {
  2392. bool new_value = enable_save_into_inventory(NULL);
  2393. return new_value;
  2394. }
  2395. };
  2396. BOOL enable_save_into_task_inventory(void*)
  2397. {
  2398. LLSelectNode* node = LLSelectMgr::getInstance()->getSelection()->getFirstRootNode();
  2399. if(node && (node->mValid) && (!node->mFromTaskID.isNull()))
  2400. {
  2401. // *TODO: check to see if the fromtaskid object exists.
  2402. LLViewerObject* obj = node->getObject();
  2403. if( obj && !obj->isAttachment() )
  2404. {
  2405. return TRUE;
  2406. }
  2407. }
  2408. return FALSE;
  2409. }
  2410. class LLToolsEnableSaveToObjectInventory : public view_listener_t
  2411. {
  2412. bool handleEvent(const LLSD& userdata)
  2413. {
  2414. bool new_value = enable_save_into_task_inventory(NULL);
  2415. return new_value;
  2416. }
  2417. };
  2418. class LLViewEnableMouselook : public view_listener_t
  2419. {
  2420. bool handleEvent(const LLSD& userdata)
  2421. {
  2422. // You can't go directly from customize avatar to mouselook.
  2423. // TODO: write code with appropriate dialogs to handle this transition.
  2424. bool new_value = (CAMERA_MODE_CUSTOMIZE_AVATAR != gAgent.getCameraMode() && !gSavedSettings.getBOOL("FreezeTime"));
  2425. return new_value;
  2426. }
  2427. };
  2428. class LLToolsEnableToolNotPie : public view_listener_t
  2429. {
  2430. bool handleEvent(const LLSD& userdata)
  2431. {
  2432. bool new_value = ( LLToolMgr::getInstance()->getBaseTool() != LLToolPie::getInstance() );
  2433. return new_value;
  2434. }
  2435. };
  2436. class LLWorldEnableCreateLandmark : public view_listener_t
  2437. {
  2438. bool handleEvent(const LLSD& userdata)
  2439. {
  2440. return !LLLandmarkActions::landmarkAlreadyExists();
  2441. }
  2442. };
  2443. class LLWorldEnableSetHomeLocation : public view_listener_t
  2444. {
  2445. bool handleEvent(const LLSD& userdata)
  2446. {
  2447. bool new_value = gAgent.isGodlike() || 
  2448. (gAgent.getRegion() && gAgent.getRegion()->getAllowSetHome());
  2449. return new_value;
  2450. }
  2451. };
  2452. class LLWorldEnableTeleportHome : public view_listener_t
  2453. {
  2454. bool handleEvent(const LLSD& userdata)
  2455. {
  2456. LLViewerRegion* regionp = gAgent.getRegion();
  2457. bool agent_on_prelude = (regionp && regionp->isPrelude());
  2458. bool enable_teleport_home = gAgent.isGodlike() || !agent_on_prelude;
  2459. return enable_teleport_home;
  2460. }
  2461. };
  2462. BOOL enable_god_full(void*)
  2463. {
  2464. return gAgent.getGodLevel() >= GOD_FULL;
  2465. }
  2466. BOOL enable_god_liaison(void*)
  2467. {
  2468. return gAgent.getGodLevel() >= GOD_LIAISON;
  2469. }
  2470. bool is_god_customer_service()
  2471. {
  2472. return gAgent.getGodLevel() >= GOD_CUSTOMER_SERVICE;
  2473. }
  2474. BOOL enable_god_basic(void*)
  2475. {
  2476. return gAgent.getGodLevel() > GOD_NOT;
  2477. }
  2478. void toggle_show_xui_names(void *)
  2479. {
  2480. gSavedSettings.setBOOL("DebugShowXUINames", !gSavedSettings.getBOOL("DebugShowXUINames"));
  2481. }
  2482. BOOL check_show_xui_names(void *)
  2483. {
  2484. return gSavedSettings.getBOOL("DebugShowXUINames");
  2485. }
  2486. class LLToolsSelectOnlyMyObjects : public view_listener_t
  2487. {
  2488. bool handleEvent(const LLSD& userdata)
  2489. {
  2490. BOOL cur_val = gSavedSettings.getBOOL("SelectOwnedOnly");
  2491. gSavedSettings.setBOOL("SelectOwnedOnly", ! cur_val );
  2492. return true;
  2493. }
  2494. };
  2495. class LLToolsSelectOnlyMovableObjects : public view_listener_t
  2496. {
  2497. bool handleEvent(const LLSD& userdata)
  2498. {
  2499. BOOL cur_val = gSavedSettings.getBOOL("SelectMovableOnly");
  2500. gSavedSettings.setBOOL("SelectMovableOnly", ! cur_val );
  2501. return true;
  2502. }
  2503. };
  2504. class LLToolsSelectBySurrounding : public view_listener_t
  2505. {
  2506. bool handleEvent(const LLSD& userdata)
  2507. {
  2508. LLSelectMgr::sRectSelectInclusive = !LLSelectMgr::sRectSelectInclusive;
  2509. gSavedSettings.setBOOL("RectangleSelectInclusive", LLSelectMgr::sRectSelectInclusive);
  2510. return true;
  2511. }
  2512. };
  2513. class LLToolsShowHiddenSelection : public view_listener_t
  2514. {
  2515. bool handleEvent(const LLSD& userdata)
  2516. {
  2517. // TomY TODO Merge these
  2518. LLSelectMgr::sRenderHiddenSelections = !LLSelectMgr::sRenderHiddenSelections;
  2519. gSavedSettings.setBOOL("RenderHiddenSelections", LLSelectMgr::sRenderHiddenSelections);
  2520. return true;
  2521. }
  2522. };
  2523. class LLToolsShowSelectionLightRadius : public view_listener_t
  2524. {
  2525. bool handleEvent(const LLSD& userdata)
  2526. {
  2527. // TomY TODO merge these
  2528. LLSelectMgr::sRenderLightRadius = !LLSelectMgr::sRenderLightRadius;
  2529. gSavedSettings.setBOOL("RenderLightRadius", LLSelectMgr::sRenderLightRadius);
  2530. return true;
  2531. }
  2532. };
  2533. class LLToolsEditLinkedParts : public view_listener_t
  2534. {
  2535. bool handleEvent(const LLSD& userdata)
  2536. {
  2537. BOOL select_individuals = gSavedSettings.getBOOL("EditLinkedParts");
  2538. if (select_individuals)
  2539. {
  2540. LLSelectMgr::getInstance()->demoteSelectionToIndividuals();
  2541. }
  2542. else
  2543. {
  2544. LLSelectMgr::getInstance()->promoteSelectionToRoot();
  2545. }
  2546. return true;
  2547. }
  2548. };
  2549. void reload_vertex_shader(void *)
  2550. {
  2551. //THIS WOULD BE AN AWESOME PLACE TO RELOAD SHADERS... just a thought - DaveP
  2552. }
  2553. void handle_dump_avatar_local_textures(void*)
  2554. {
  2555. gAgent.getAvatarObject()->dumpLocalTextures();
  2556. }
  2557. void handle_dump_timers()
  2558. {
  2559. LLFastTimer::dumpCurTimes();
  2560. }
  2561. void handle_debug_avatar_textures(void*)
  2562. {
  2563. LLViewerObject* objectp = LLSelectMgr::getInstance()->getSelection()->getPrimaryObject();
  2564. if (objectp)
  2565. {
  2566. LLFloaterReg::showInstance( "avatar_textures", LLSD(objectp->getID()) );
  2567. }
  2568. }
  2569. void handle_grab_texture(void* data)
  2570. {
  2571. ETextureIndex tex_index = (ETextureIndex)((intptr_t)data);
  2572. const LLVOAvatarSelf* avatar = gAgent.getAvatarObject();
  2573. if ( avatar )
  2574. {
  2575. // MULTI-WEARABLE: change to support an index
  2576. const LLUUID& asset_id = avatar->grabLocalTexture(tex_index, 0);
  2577. LL_INFOS("texture") << "Adding baked texture " << asset_id << " to inventory." << llendl;
  2578. LLAssetType::EType asset_type = LLAssetType::AT_TEXTURE;
  2579. LLInventoryType::EType inv_type = LLInventoryType::IT_TEXTURE;
  2580. const LLUUID folder_id = gInventory.findCategoryUUIDForType(LLFolderType::assetTypeToFolderType(asset_type));
  2581. if(folder_id.notNull())
  2582. {
  2583. std::string name = "Unknown";
  2584. const LLVOAvatarDictionary::TextureEntry *texture_dict = LLVOAvatarDictionary::getInstance()->getTexture(tex_index);
  2585. if (texture_dict->mIsBakedTexture)
  2586. {
  2587. EBakedTextureIndex baked_index = texture_dict->mBakedTextureIndex;
  2588. name = "Baked " + LLVOAvatarDictionary::getInstance()->getBakedTexture(baked_index)->mNameCapitalized;
  2589. }
  2590. name += " Texture";
  2591. LLUUID item_id;
  2592. item_id.generate();
  2593. LLPermissions perm;
  2594. perm.init(gAgentID,
  2595.   gAgentID,
  2596.   LLUUID::null,
  2597.   LLUUID::null);
  2598. U32 next_owner_perm = PERM_MOVE | PERM_TRANSFER;
  2599. perm.initMasks(PERM_ALL,
  2600.    PERM_ALL,
  2601.    PERM_NONE,
  2602.    PERM_NONE,
  2603.    next_owner_perm);
  2604. time_t creation_date_now = time_corrected();
  2605. LLPointer<LLViewerInventoryItem> item
  2606. = new LLViewerInventoryItem(item_id,
  2607. folder_id,
  2608. perm,
  2609. asset_id,
  2610. asset_type,
  2611. inv_type,
  2612. name,
  2613. LLStringUtil::null,
  2614. LLSaleInfo::DEFAULT,
  2615. LLInventoryItem::II_FLAGS_NONE,
  2616. creation_date_now);
  2617. item->updateServer(TRUE);
  2618. gInventory.updateItem(item);
  2619. gInventory.notifyObservers();
  2620. // Show the preview panel for textures to let
  2621. // user know that the image is now in inventory.
  2622. LLInventoryPanel *active_panel = LLInventoryPanel::getActiveInventoryPanel();
  2623. if(active_panel)
  2624. {
  2625. LLFocusableElement* focus_ctrl = gFocusMgr.getKeyboardFocus();
  2626. active_panel->setSelection(item_id, TAKE_FOCUS_NO);
  2627. active_panel->openSelected();
  2628. //LLFloaterInventory::dumpSelectionInformation((void*)view);
  2629. // restore keyboard focus
  2630. gFocusMgr.setKeyboardFocus(focus_ctrl);
  2631. }
  2632. }
  2633. else
  2634. {
  2635. llwarns << "Can't find a folder to put it in" << llendl;
  2636. }
  2637. }
  2638. }
  2639. BOOL enable_grab_texture(void* data)
  2640. {
  2641. ETextureIndex index = (ETextureIndex)((intptr_t)data);
  2642. const LLVOAvatarSelf* avatar = gAgent.getAvatarObject();
  2643. if ( avatar )
  2644. {
  2645. // MULTI-WEARABLE:
  2646. return avatar->canGrabLocalTexture(index,0);
  2647. }
  2648. return FALSE;
  2649. }
  2650. // Returns a pointer to the avatar give the UUID of the avatar OR of an attachment the avatar is wearing.
  2651. // Returns NULL on failure.
  2652. LLVOAvatar* find_avatar_from_object( LLViewerObject* object )
  2653. {
  2654. if (object)
  2655. {
  2656. if( object->isAttachment() )
  2657. {
  2658. do
  2659. {
  2660. object = (LLViewerObject*) object->getParent();
  2661. }
  2662. while( object && !object->isAvatar() );
  2663. }
  2664. else if( !object->isAvatar() )
  2665. {
  2666. object = NULL;
  2667. }
  2668. }
  2669. return (LLVOAvatar*) object;
  2670. }
  2671. // Returns a pointer to the avatar give the UUID of the avatar OR of an attachment the avatar is wearing.
  2672. // Returns NULL on failure.
  2673. LLVOAvatar* find_avatar_from_object( const LLUUID& object_id )
  2674. {
  2675. return find_avatar_from_object( gObjectList.findObject(object_id) );
  2676. }
  2677. void handle_disconnect_viewer(void *)
  2678. {
  2679. LLAppViewer::instance()->forceDisconnect("Testing viewer disconnect");
  2680. }
  2681. void force_error_breakpoint(void *)
  2682. {
  2683.     LLAppViewer::instance()->forceErrorBreakpoint();
  2684. }
  2685. void force_error_llerror(void *)
  2686. {
  2687.     LLAppViewer::instance()->forceErrorLLError();
  2688. }
  2689. void force_error_bad_memory_access(void *)
  2690. {
  2691.     LLAppViewer::instance()->forceErrorBadMemoryAccess();
  2692. }
  2693. void force_error_infinite_loop(void *)
  2694. {
  2695.     LLAppViewer::instance()->forceErrorInfiniteLoop();
  2696. }
  2697. void force_error_software_exception(void *)
  2698. {
  2699.     LLAppViewer::instance()->forceErrorSoftwareException();
  2700. }
  2701. void force_error_driver_crash(void *)
  2702. {
  2703.     LLAppViewer::instance()->forceErrorDriverCrash();
  2704. }
  2705. class LLToolsUseSelectionForGrid : public view_listener_t
  2706. {
  2707. bool handleEvent(const LLSD& userdata)
  2708. {
  2709. LLSelectMgr::getInstance()->clearGridObjects();
  2710. struct f : public LLSelectedObjectFunctor
  2711. {
  2712. virtual bool apply(LLViewerObject* objectp)
  2713. {
  2714. LLSelectMgr::getInstance()->addGridObject(objectp);
  2715. return true;
  2716. }
  2717. } func;
  2718. LLSelectMgr::getInstance()->getSelection()->applyToRootObjects(&func);
  2719. LLSelectMgr::getInstance()->setGridMode(GRID_MODE_REF_OBJECT);
  2720. if (gFloaterTools)
  2721. {
  2722. gFloaterTools->mComboGridMode->setCurrentByIndex((S32)GRID_MODE_REF_OBJECT);
  2723. }
  2724. return true;
  2725. }
  2726. };
  2727. void handle_test_load_url(void*)
  2728. {
  2729. LLWeb::loadURL("");
  2730. LLWeb::loadURL("hacker://www.google.com/");
  2731. LLWeb::loadURL("http");
  2732. LLWeb::loadURL("http://www.google.com/");
  2733. }
  2734. //
  2735. // LLViewerMenuHolderGL
  2736. //
  2737. static LLDefaultChildRegistry::Register<LLViewerMenuHolderGL> r("menu_holder");
  2738. LLViewerMenuHolderGL::LLViewerMenuHolderGL(const LLViewerMenuHolderGL::Params& p)
  2739. : LLMenuHolderGL(p)
  2740. {}
  2741. BOOL LLViewerMenuHolderGL::hideMenus()
  2742. {
  2743. BOOL handled = LLMenuHolderGL::hideMenus();
  2744. // drop pie menu selection
  2745. mParcelSelection = NULL;
  2746. mObjectSelection = NULL;
  2747. if (gMenuBarView)
  2748. {
  2749. gMenuBarView->clearHoverItem();
  2750. gMenuBarView->resetMenuTrigger();
  2751. }
  2752. return handled;
  2753. }
  2754. void LLViewerMenuHolderGL::setParcelSelection(LLSafeHandle<LLParcelSelection> selection) 
  2755. mParcelSelection = selection; 
  2756. }
  2757. void LLViewerMenuHolderGL::setObjectSelection(LLSafeHandle<LLObjectSelection> selection) 
  2758. mObjectSelection = selection; 
  2759. }
  2760. const LLRect LLViewerMenuHolderGL::getMenuRect() const
  2761. {
  2762. return LLRect(0, getRect().getHeight() - MENU_BAR_HEIGHT, getRect().getWidth(), STATUS_BAR_HEIGHT);
  2763. }
  2764. void handle_save_to_xml(void*)
  2765. {
  2766. LLFloater* frontmost = gFloaterView->getFrontmost();
  2767. if (!frontmost)
  2768. {
  2769.         LLNotificationsUtil::add("NoFrontmostFloater");
  2770. return;
  2771. }
  2772. std::string default_name = "floater_";
  2773. default_name += frontmost->getTitle();
  2774. default_name += ".xml";
  2775. LLStringUtil::toLower(default_name);
  2776. LLStringUtil::replaceChar(default_name, ' ', '_');
  2777. LLStringUtil::replaceChar(default_name, '/', '_');
  2778. LLStringUtil::replaceChar(default_name, ':', '_');
  2779. LLStringUtil::replaceChar(default_name, '"', '_');
  2780. LLFilePicker& picker = LLFilePicker::instance();
  2781. if (picker.getSaveFile(LLFilePicker::FFSAVE_XML, default_name))
  2782. {
  2783. std::string filename = picker.getFirstFile();
  2784. LLUICtrlFactory::getInstance()->saveToXML(frontmost, filename);
  2785. }
  2786. }
  2787. void handle_load_from_xml(void*)
  2788. {
  2789. LLFilePicker& picker = LLFilePicker::instance();
  2790. if (picker.getOpenFile(LLFilePicker::FFLOAD_XML))
  2791. {
  2792. std::string filename = picker.getFirstFile();
  2793. LLFloater* floater = new LLFloater(LLSD());
  2794. LLUICtrlFactory::getInstance()->buildFloater(floater, filename, NULL);
  2795. }
  2796. }
  2797. void handle_web_browser_test(const LLSD& param)
  2798. {
  2799. std::string url = param.asString();
  2800. if (url.empty())
  2801. {
  2802. url = "about:blank";
  2803. }
  2804. LLWeb::loadURL(url);
  2805. }
  2806. void handle_buy_currency_test(void*)
  2807. {
  2808. std::string url =
  2809. "http://sarahd-sl-13041.webdev.lindenlab.com/app/lindex/index.php?agent_id=[AGENT_ID]&secure_session_id=[SESSION_ID]&lang=[LANGUAGE]";
  2810. LLStringUtil::format_map_t replace;
  2811. replace["[AGENT_ID]"] = gAgent.getID().asString();
  2812. replace["[SESSION_ID]"] = gAgent.getSecureSessionID().asString();
  2813. replace["[LANGUAGE]"] = LLUI::getLanguage();
  2814. LLStringUtil::format(url, replace);
  2815. llinfos << "buy currency url " << url << llendl;
  2816. LLFloaterReg::showInstance("buy_currency_html", LLSD(url));
  2817. }
  2818. void handle_rebake_textures(void*)
  2819. {
  2820. LLVOAvatarSelf* avatar = gAgent.getAvatarObject();
  2821. if (!avatar) return;
  2822. // Slam pending upload count to "unstick" things
  2823. bool slam_for_debug = true;
  2824. avatar->forceBakeAllTextures(slam_for_debug);
  2825. }
  2826. void toggle_visibility(void* user_data)
  2827. {
  2828. LLView* viewp = (LLView*)user_data;
  2829. viewp->setVisible(!viewp->getVisible());
  2830. }
  2831. BOOL get_visibility(void* user_data)
  2832. {
  2833. LLView* viewp = (LLView*)user_data;
  2834. return viewp->getVisible();
  2835. }
  2836. // TomY TODO: Get rid of these?
  2837. class LLViewShowHoverTips : public view_listener_t
  2838. {
  2839. bool handleEvent(const LLSD& userdata)
  2840. {
  2841. gSavedSettings.setBOOL("ShowHoverTips", !gSavedSettings.getBOOL("ShowHoverTips"));
  2842. return true;
  2843. }
  2844. };
  2845. class LLViewCheckShowHoverTips : public view_listener_t
  2846. {
  2847. bool handleEvent(const LLSD& userdata)
  2848. {
  2849. bool new_value = gSavedSettings.getBOOL("ShowHoverTips");
  2850. return new_value;
  2851. }
  2852. };
  2853. // TomY TODO: Get rid of these?
  2854. class LLViewHighlightTransparent : public view_listener_t
  2855. {
  2856. bool handleEvent(const LLSD& userdata)
  2857. {
  2858. LLDrawPoolAlpha::sShowDebugAlpha = !LLDrawPoolAlpha::sShowDebugAlpha;
  2859. return true;
  2860. }
  2861. };
  2862. class LLViewCheckHighlightTransparent : public view_listener_t
  2863. {
  2864. bool handleEvent(const LLSD& userdata)
  2865. {
  2866. bool new_value = LLDrawPoolAlpha::sShowDebugAlpha;
  2867. return new_value;
  2868. }
  2869. };
  2870. class LLViewBeaconWidth : public view_listener_t
  2871. {
  2872. bool handleEvent(const LLSD& userdata)
  2873. {
  2874. std::string width = userdata.asString();
  2875. if(width == "1")
  2876. {
  2877. gSavedSettings.setS32("DebugBeaconLineWidth", 1);
  2878. }
  2879. else if(width == "4")
  2880. {
  2881. gSavedSettings.setS32("DebugBeaconLineWidth", 4);
  2882. }
  2883. else if(width == "16")
  2884. {
  2885. gSavedSettings.setS32("DebugBeaconLineWidth", 16);
  2886. }
  2887. else if(width == "32")
  2888. {
  2889. gSavedSettings.setS32("DebugBeaconLineWidth", 32);
  2890. }
  2891. return true;
  2892. }
  2893. };
  2894. class LLViewToggleBeacon : public view_listener_t
  2895. {
  2896. bool handleEvent(const LLSD& userdata)
  2897. {
  2898. std::string beacon = userdata.asString();
  2899. if (beacon == "scriptsbeacon")
  2900. {
  2901. LLPipeline::toggleRenderScriptedBeacons(NULL);
  2902. gSavedSettings.setBOOL( "scriptsbeacon", LLPipeline::getRenderScriptedBeacons(NULL) );
  2903. // toggle the other one off if it's on
  2904. if (LLPipeline::getRenderScriptedBeacons(NULL) && LLPipeline::getRenderScriptedTouchBeacons(NULL))
  2905. {
  2906. LLPipeline::toggleRenderScriptedTouchBeacons(NULL);
  2907. gSavedSettings.setBOOL( "scripttouchbeacon", LLPipeline::getRenderScriptedTouchBeacons(NULL) );
  2908. }
  2909. }
  2910. else if (beacon == "physicalbeacon")
  2911. {
  2912. LLPipeline::toggleRenderPhysicalBeacons(NULL);
  2913. gSavedSettings.setBOOL( "physicalbeacon", LLPipeline::getRenderPhysicalBeacons(NULL) );
  2914. }
  2915. else if (beacon == "soundsbeacon")
  2916. {
  2917. LLPipeline::toggleRenderSoundBeacons(NULL);
  2918. gSavedSettings.setBOOL( "soundsbeacon", LLPipeline::getRenderSoundBeacons(NULL) );
  2919. }
  2920. else if (beacon == "particlesbeacon")
  2921. {
  2922. LLPipeline::toggleRenderParticleBeacons(NULL);
  2923. gSavedSettings.setBOOL( "particlesbeacon", LLPipeline::getRenderParticleBeacons(NULL) );
  2924. }
  2925. else if (beacon == "scripttouchbeacon")
  2926. {
  2927. LLPipeline::toggleRenderScriptedTouchBeacons(NULL);
  2928. gSavedSettings.setBOOL( "scripttouchbeacon", LLPipeline::getRenderScriptedTouchBeacons(NULL) );
  2929. // toggle the other one off if it's on
  2930. if (LLPipeline::getRenderScriptedBeacons(NULL) && LLPipeline::getRenderScriptedTouchBeacons(NULL))
  2931. {
  2932. LLPipeline::toggleRenderScriptedBeacons(NULL);
  2933. gSavedSettings.setBOOL( "scriptsbeacon", LLPipeline::getRenderScriptedBeacons(NULL) );
  2934. }
  2935. }
  2936. else if (beacon == "renderbeacons")
  2937. {
  2938. LLPipeline::toggleRenderBeacons(NULL);
  2939. gSavedSettings.setBOOL( "renderbeacons", LLPipeline::getRenderBeacons(NULL) );
  2940. // toggle the other one on if it's not
  2941. if (!LLPipeline::getRenderBeacons(NULL) && !LLPipeline::getRenderHighlights(NULL))
  2942. {
  2943. LLPipeline::toggleRenderHighlights(NULL);
  2944. gSavedSettings.setBOOL( "renderhighlights", LLPipeline::getRenderHighlights(NULL) );
  2945. }
  2946. }
  2947. else if (beacon == "renderhighlights")
  2948. {
  2949. LLPipeline::toggleRenderHighlights(NULL);
  2950. gSavedSettings.setBOOL( "renderhighlights", LLPipeline::getRenderHighlights(NULL) );
  2951. // toggle the other one on if it's not
  2952. if (!LLPipeline::getRenderBeacons(NULL) && !LLPipeline::getRenderHighlights(NULL))
  2953. {
  2954. LLPipeline::toggleRenderBeacons(NULL);
  2955. gSavedSettings.setBOOL( "renderbeacons", LLPipeline::getRenderBeacons(NULL) );
  2956. }
  2957. }
  2958. return true;
  2959. }
  2960. };
  2961. class LLViewCheckBeaconEnabled : public view_listener_t
  2962. {
  2963. bool handleEvent(const LLSD& userdata)
  2964. {
  2965. std::string beacon = userdata.asString();
  2966. bool new_value = false;
  2967. if (beacon == "scriptsbeacon")
  2968. {
  2969. new_value = gSavedSettings.getBOOL( "scriptsbeacon");
  2970. LLPipeline::setRenderScriptedBeacons(new_value);
  2971. }
  2972. else if (beacon == "physicalbeacon")
  2973. {
  2974. new_value = gSavedSettings.getBOOL( "physicalbeacon");
  2975. LLPipeline::setRenderPhysicalBeacons(new_value);
  2976. }
  2977. else if (beacon == "soundsbeacon")
  2978. {
  2979. new_value = gSavedSettings.getBOOL( "soundsbeacon");
  2980. LLPipeline::setRenderSoundBeacons(new_value);
  2981. }
  2982. else if (beacon == "particlesbeacon")
  2983. {
  2984. new_value = gSavedSettings.getBOOL( "particlesbeacon");
  2985. LLPipeline::setRenderParticleBeacons(new_value);
  2986. }
  2987. else if (beacon == "scripttouchbeacon")
  2988. {
  2989. new_value = gSavedSettings.getBOOL( "scripttouchbeacon");
  2990. LLPipeline::setRenderScriptedTouchBeacons(new_value);
  2991. }
  2992. else if (beacon == "renderbeacons")
  2993. {
  2994. new_value = gSavedSettings.getBOOL( "renderbeacons");
  2995. LLPipeline::setRenderBeacons(new_value);
  2996. }
  2997. else if (beacon == "renderhighlights")
  2998. {
  2999. new_value = gSavedSettings.getBOOL( "renderhighlights");
  3000. LLPipeline::setRenderHighlights(new_value);
  3001. }
  3002. return new_value;
  3003. }
  3004. };
  3005. class LLViewToggleRenderType : public view_listener_t
  3006. {
  3007. bool handleEvent(const LLSD& userdata)
  3008. {
  3009. std::string type = userdata.asString();
  3010. if (type == "hideparticles")
  3011. {
  3012. LLPipeline::toggleRenderType(LLPipeline::RENDER_TYPE_PARTICLES);
  3013. }
  3014. return true;
  3015. }
  3016. };
  3017. class LLViewCheckRenderType : public view_listener_t
  3018. {
  3019. bool handleEvent(const LLSD& userdata)
  3020. {
  3021. std::string type = userdata.asString();
  3022. bool new_value = false;
  3023. if (type == "hideparticles")
  3024. {
  3025. new_value = LLPipeline::toggleRenderTypeControlNegated((void *)LLPipeline::RENDER_TYPE_PARTICLES);
  3026. }
  3027. return new_value;
  3028. }
  3029. };
  3030. class LLViewShowHUDAttachments : public view_listener_t
  3031. {
  3032. bool handleEvent(const LLSD& userdata)
  3033. {
  3034. LLPipeline::sShowHUDAttachments = !LLPipeline::sShowHUDAttachments;
  3035. return true;
  3036. }
  3037. };
  3038. class LLViewCheckHUDAttachments : public view_listener_t
  3039. {
  3040. bool handleEvent(const LLSD& userdata)
  3041. {
  3042. bool new_value = LLPipeline::sShowHUDAttachments;
  3043. return new_value;
  3044. }
  3045. };
  3046. class LLEditEnableTakeOff : public view_listener_t
  3047. {
  3048. bool handleEvent(const LLSD& userdata)
  3049. {
  3050. std::string clothing = userdata.asString();
  3051. EWearableType type = LLWearableDictionary::typeNameToType(clothing);
  3052. if (type >= WT_SHAPE && type < WT_COUNT)
  3053. return LLAgentWearables::selfHasWearable(type);
  3054. return false;
  3055. }
  3056. };
  3057. class LLEditTakeOff : public view_listener_t
  3058. {
  3059. bool handleEvent(const LLSD& userdata)
  3060. {
  3061. std::string clothing = userdata.asString();
  3062. if (clothing == "all")
  3063. LLWearableBridge::removeAllClothesFromAvatar();
  3064. else
  3065. {
  3066. EWearableType type = LLWearableDictionary::typeNameToType(clothing);
  3067. if (type >= WT_SHAPE && type < WT_COUNT)
  3068. {
  3069. // MULTI-WEARABLES
  3070. LLViewerInventoryItem *item = dynamic_cast<LLViewerInventoryItem*>(gAgentWearables.getWearableInventoryItem(type,0));
  3071. LLWearableBridge::removeItemFromAvatar(item);
  3072. }
  3073. }
  3074. return true;
  3075. }
  3076. };
  3077. class LLToolsSelectTool : public view_listener_t
  3078. {
  3079. bool handleEvent(const LLSD& userdata)
  3080. {
  3081. std::string tool_name = userdata.asString();
  3082. if (tool_name == "focus")
  3083. {
  3084. LLToolMgr::getInstance()->getCurrentToolset()->selectToolByIndex(1);
  3085. }
  3086. else if (tool_name == "move")
  3087. {
  3088. LLToolMgr::getInstance()->getCurrentToolset()->selectToolByIndex(2);
  3089. }
  3090. else if (tool_name == "edit")
  3091. {
  3092. LLToolMgr::getInstance()->getCurrentToolset()->selectToolByIndex(3);
  3093. }
  3094. else if (tool_name == "create")
  3095. {
  3096. LLToolMgr::getInstance()->getCurrentToolset()->selectToolByIndex(4);
  3097. }
  3098. else if (tool_name == "land")
  3099. {
  3100. LLToolMgr::getInstance()->getCurrentToolset()->selectToolByIndex(5);
  3101. }
  3102. return true;
  3103. }
  3104. };
  3105. /// WINDLIGHT callbacks
  3106. class LLWorldEnvSettings : public view_listener_t
  3107. {
  3108. bool handleEvent(const LLSD& userdata)
  3109. {
  3110. std::string tod = userdata.asString();
  3111. LLVector3 sun_direction;
  3112. if (tod == "editor")
  3113. {
  3114. // if not there or is hidden, show it
  3115. LLFloaterReg::toggleInstance("env_settings");
  3116. return true;
  3117. }
  3118. if (tod == "sunrise")
  3119. {
  3120. // set the value, turn off animation
  3121. LLWLParamManager::instance()->mAnimator.setDayTime(0.25);
  3122. LLWLParamManager::instance()->mAnimator.mIsRunning = false;
  3123. LLWLParamManager::instance()->mAnimator.mUseLindenTime = false;
  3124. // then call update once
  3125. LLWLParamManager::instance()->mAnimator.update(
  3126. LLWLParamManager::instance()->mCurParams);
  3127. }
  3128. else if (tod == "noon")
  3129. {
  3130. // set the value, turn off animation
  3131. LLWLParamManager::instance()->mAnimator.setDayTime(0.567);
  3132. LLWLParamManager::instance()->mAnimator.mIsRunning = false;
  3133. LLWLParamManager::instance()->mAnimator.mUseLindenTime = false;
  3134. // then call update once
  3135. LLWLParamManager::instance()->mAnimator.update(
  3136. LLWLParamManager::instance()->mCurParams);
  3137. }
  3138. else if (tod == "sunset")
  3139. {
  3140. // set the value, turn off animation
  3141. LLWLParamManager::instance()->mAnimator.setDayTime(0.75);
  3142. LLWLParamManager::instance()->mAnimator.mIsRunning = false;
  3143. LLWLParamManager::instance()->mAnimator.mUseLindenTime = false;
  3144. // then call update once
  3145. LLWLParamManager::instance()->mAnimator.update(
  3146. LLWLParamManager::instance()->mCurParams);
  3147. }
  3148. else if (tod == "midnight")
  3149. {
  3150. // set the value, turn off animation
  3151. LLWLParamManager::instance()->mAnimator.setDayTime(0.0);
  3152. LLWLParamManager::instance()->mAnimator.mIsRunning = false;
  3153. LLWLParamManager::instance()->mAnimator.mUseLindenTime = false;
  3154. // then call update once
  3155. LLWLParamManager::instance()->mAnimator.update(
  3156. LLWLParamManager::instance()->mCurParams);
  3157. }
  3158. else
  3159. {
  3160. LLWLParamManager::instance()->mAnimator.mIsRunning = true;
  3161. LLWLParamManager::instance()->mAnimator.mUseLindenTime = true;
  3162. }
  3163. return true;
  3164. }
  3165. };
  3166. /// Water Menu callbacks
  3167. class LLWorldWaterSettings : public view_listener_t
  3168. {
  3169. bool handleEvent(const LLSD& userdata)
  3170. {
  3171. LLFloaterReg::toggleInstance("env_water");
  3172. return true;
  3173. }
  3174. };
  3175. /// Post-Process callbacks
  3176. class LLWorldPostProcess : public view_listener_t
  3177. {
  3178. bool handleEvent(const LLSD& userdata)
  3179. {
  3180. LLFloaterReg::showInstance("env_post_process");
  3181. return true;
  3182. }
  3183. };
  3184. /// Day Cycle callbacks
  3185. class LLWorldDayCycle : public view_listener_t
  3186. {
  3187. bool handleEvent(const LLSD& userdata)
  3188. {
  3189. LLFloaterReg::showInstance("env_day_cycle");
  3190. return true;
  3191. }
  3192. };
  3193. class LLWorldToggleMovementControls : public view_listener_t
  3194. {
  3195. bool handleEvent(const LLSD& userdata)
  3196. {
  3197. LLBottomTray::getInstance()->toggleMovementControls();
  3198. return true;
  3199. }
  3200. };
  3201. class LLWorldToggleCameraControls : public view_listener_t
  3202. {
  3203. bool handleEvent(const LLSD& userdata)
  3204. {
  3205. LLBottomTray::getInstance()->toggleCameraControls();
  3206. return true;
  3207. }
  3208. };
  3209. void show_navbar_context_menu(LLView* ctrl, S32 x, S32 y)
  3210. {
  3211. static LLMenuGL* show_navbar_context_menu = LLUICtrlFactory::getInstance()->createFromFile<LLMenuGL>("menu_hide_navbar.xml",
  3212. gMenuHolder, LLViewerMenuHolderGL::child_registry_t::instance());
  3213. if(gMenuHolder->hasVisibleMenu())
  3214. {
  3215. gMenuHolder->hideMenus();
  3216. }
  3217. show_navbar_context_menu->buildDrawLabels();
  3218. show_navbar_context_menu->updateParent(LLMenuGL::sMenuContainer);
  3219. LLMenuGL::showPopup(ctrl, show_navbar_context_menu, x, y);
  3220. }
  3221. void initialize_menus()
  3222. {
  3223. // A parameterized event handler used as ctrl-8/9/0 zoom controls below.
  3224. class LLZoomer : public view_listener_t
  3225. {
  3226. public:
  3227. // The "mult" parameter says whether "val" is a multiplier or used to set the value.
  3228. LLZoomer(F32 val, bool mult=true) : mVal(val), mMult(mult) {}
  3229. bool handleEvent(const LLSD& userdata)
  3230. {
  3231. F32 new_fov_rad = mMult ? LLViewerCamera::getInstance()->getDefaultFOV() * mVal : mVal;
  3232. LLViewerCamera::getInstance()->setDefaultFOV(new_fov_rad);
  3233. gSavedSettings.setF32("CameraAngle", LLViewerCamera::getInstance()->getView()); // setView may have clamped it.
  3234. return true;
  3235. }
  3236. private:
  3237. F32 mVal;
  3238. bool mMult;
  3239. };
  3240. LLUICtrl::EnableCallbackRegistry::Registrar& enable = LLUICtrl::EnableCallbackRegistry::currentRegistrar();
  3241. LLUICtrl::CommitCallbackRegistry::Registrar& commit = LLUICtrl::CommitCallbackRegistry::currentRegistrar();
  3242. // Generic enable and visible
  3243. // Don't prepend MenuName.Foo because these can be used in any menu.
  3244. enable.add("IsGodCustomerService", boost::bind(&is_god_customer_service));
  3245. enable.add("IsGodCustomerService", boost::bind(&is_god_customer_service));
  3246. // Agent
  3247. commit.add("Agent.toggleFlying", boost::bind(&LLAgent::toggleFlying));
  3248. enable.add("Agent.enableFlying", boost::bind(&LLAgent::enableFlying));
  3249. // File menu
  3250. init_menu_file();
  3251. // Edit menu
  3252. view_listener_t::addMenu(new LLEditUndo(), "Edit.Undo");
  3253. view_listener_t::addMenu(new LLEditRedo(), "Edit.Redo");
  3254. view_listener_t::addMenu(new LLEditCut(), "Edit.Cut");
  3255. view_listener_t::addMenu(new LLEditCopy(), "Edit.Copy");
  3256. view_listener_t::addMenu(new LLEditPaste(), "Edit.Paste");
  3257. view_listener_t::addMenu(new LLEditDelete(), "Edit.Delete");
  3258. view_listener_t::addMenu(new LLEditSelectAll(), "Edit.SelectAll");
  3259. view_listener_t::addMenu(new LLEditDeselect(), "Edit.Deselect");
  3260. view_listener_t::addMenu(new LLEditDuplicate(), "Edit.Duplicate");
  3261. view_listener_t::addMenu(new LLEditTakeOff(), "Edit.TakeOff");
  3262. view_listener_t::addMenu(new LLEditEnableUndo(), "Edit.EnableUndo");
  3263. view_listener_t::addMenu(new LLEditEnableRedo(), "Edit.EnableRedo");
  3264. view_listener_t::addMenu(new LLEditEnableCut(), "Edit.EnableCut");
  3265. view_listener_t::addMenu(new LLEditEnableCopy(), "Edit.EnableCopy");
  3266. view_listener_t::addMenu(new LLEditEnablePaste(), "Edit.EnablePaste");
  3267. view_listener_t::addMenu(new LLEditEnableDelete(), "Edit.EnableDelete");
  3268. view_listener_t::addMenu(new LLEditEnableSelectAll(), "Edit.EnableSelectAll");
  3269. view_listener_t::addMenu(new LLEditEnableDeselect(), "Edit.EnableDeselect");
  3270. view_listener_t::addMenu(new LLEditEnableDuplicate(), "Edit.EnableDuplicate");
  3271. view_listener_t::addMenu(new LLEditEnableTakeOff(), "Edit.EnableTakeOff");
  3272. view_listener_t::addMenu(new LLEditEnableCustomizeAvatar(), "Edit.EnableCustomizeAvatar");
  3273. commit.add("CustomizeAvatar", boost::bind(&handle_customize_avatar));
  3274. // View menu
  3275. view_listener_t::addMenu(new LLViewMouselook(), "View.Mouselook");
  3276. view_listener_t::addMenu(new LLViewJoystickFlycam(), "View.JoystickFlycam");
  3277. view_listener_t::addMenu(new LLViewResetView(), "View.ResetView");
  3278. view_listener_t::addMenu(new LLViewLookAtLastChatter(), "View.LookAtLastChatter");
  3279. view_listener_t::addMenu(new LLViewShowHoverTips(), "View.ShowHoverTips");
  3280. view_listener_t::addMenu(new LLViewHighlightTransparent(), "View.HighlightTransparent");
  3281. view_listener_t::addMenu(new LLViewToggleRenderType(), "View.ToggleRenderType");
  3282. view_listener_t::addMenu(new LLViewShowHUDAttachments(), "View.ShowHUDAttachments");
  3283. view_listener_t::addMenu(new LLZoomer(1.2f), "View.ZoomOut");
  3284. view_listener_t::addMenu(new LLZoomer(1/1.2f), "View.ZoomIn");
  3285. view_listener_t::addMenu(new LLZoomer(DEFAULT_FIELD_OF_VIEW, false), "View.ZoomDefault");
  3286. view_listener_t::addMenu(new LLViewFullscreen(), "View.Fullscreen");
  3287. view_listener_t::addMenu(new LLViewDefaultUISize(), "View.DefaultUISize");
  3288. view_listener_t::addMenu(new LLViewEnableMouselook(), "View.EnableMouselook");
  3289. view_listener_t::addMenu(new LLViewEnableJoystickFlycam(), "View.EnableJoystickFlycam");
  3290. view_listener_t::addMenu(new LLViewEnableLastChatter(), "View.EnableLastChatter");
  3291. view_listener_t::addMenu(new LLViewCheckJoystickFlycam(), "View.CheckJoystickFlycam");
  3292. view_listener_t::addMenu(new LLViewCheckShowHoverTips(), "View.CheckShowHoverTips");
  3293. view_listener_t::addMenu(new LLViewCheckHighlightTransparent(), "View.CheckHighlightTransparent");
  3294. view_listener_t::addMenu(new LLViewCheckRenderType(), "View.CheckRenderType");
  3295. view_listener_t::addMenu(new LLViewCheckHUDAttachments(), "View.CheckHUDAttachments");
  3296. // World menu
  3297. commit.add("World.Chat", boost::bind(&handle_chat, (void*)NULL));
  3298. view_listener_t::addMenu(new LLWorldAlwaysRun(), "World.AlwaysRun");
  3299. view_listener_t::addMenu(new LLWorldCreateLandmark(), "World.CreateLandmark");
  3300. view_listener_t::addMenu(new LLWorldSetHomeLocation(), "World.SetHomeLocation");
  3301. view_listener_t::addMenu(new LLWorldTeleportHome(), "World.TeleportHome");
  3302. view_listener_t::addMenu(new LLWorldSetAway(), "World.SetAway");
  3303. view_listener_t::addMenu(new LLWorldSetBusy(), "World.SetBusy");
  3304. view_listener_t::addMenu(new LLWorldEnableCreateLandmark(), "World.EnableCreateLandmark");
  3305. view_listener_t::addMenu(new LLWorldEnableSetHomeLocation(), "World.EnableSetHomeLocation");
  3306. view_listener_t::addMenu(new LLWorldEnableTeleportHome(), "World.EnableTeleportHome");
  3307. view_listener_t::addMenu(new LLWorldEnableBuyLand(), "World.EnableBuyLand");
  3308. view_listener_t::addMenu(new LLWorldCheckAlwaysRun(), "World.CheckAlwaysRun");
  3309. view_listener_t::addMenu(new LLWorldEnvSettings(), "World.EnvSettings");
  3310. view_listener_t::addMenu(new LLWorldWaterSettings(), "World.WaterSettings");
  3311. view_listener_t::addMenu(new LLWorldPostProcess(), "World.PostProcess");
  3312. view_listener_t::addMenu(new LLWorldDayCycle(), "World.DayCycle");
  3313. view_listener_t::addMenu(new LLWorldToggleMovementControls(), "World.Toggle.MovementControls");
  3314. view_listener_t::addMenu(new LLWorldToggleCameraControls(), "World.Toggle.CameraControls");
  3315. // Tools menu
  3316. view_listener_t::addMenu(new LLToolsSelectTool(), "Tools.SelectTool");
  3317. view_listener_t::addMenu(new LLToolsSelectOnlyMyObjects(), "Tools.SelectOnlyMyObjects");
  3318. view_listener_t::addMenu(new LLToolsSelectOnlyMovableObjects(), "Tools.SelectOnlyMovableObjects");
  3319. view_listener_t::addMenu(new LLToolsSelectBySurrounding(), "Tools.SelectBySurrounding");
  3320. view_listener_t::addMenu(new LLToolsShowHiddenSelection(), "Tools.ShowHiddenSelection");
  3321. view_listener_t::addMenu(new LLToolsShowSelectionLightRadius(), "Tools.ShowSelectionLightRadius");
  3322. view_listener_t::addMenu(new LLToolsEditLinkedParts(), "Tools.EditLinkedParts");
  3323. view_listener_t::addMenu(new LLToolsSnapObjectXY(), "Tools.SnapObjectXY");
  3324. view_listener_t::addMenu(new LLToolsUseSelectionForGrid(), "Tools.UseSelectionForGrid");
  3325. view_listener_t::addMenu(new LLToolsSelectNextPart(), "Tools.SelectNextPart");
  3326. view_listener_t::addMenu(new LLToolsLink(), "Tools.Link");
  3327. view_listener_t::addMenu(new LLToolsUnlink(), "Tools.Unlink");
  3328. view_listener_t::addMenu(new LLToolsStopAllAnimations(), "Tools.StopAllAnimations");
  3329. view_listener_t::addMenu(new LLToolsReleaseKeys(), "Tools.ReleaseKeys");
  3330. view_listener_t::addMenu(new LLToolsEnableReleaseKeys(), "Tools.EnableReleaseKeys");
  3331. commit.add("Tools.LookAtSelection", boost::bind(&handle_look_at_selection, _2));
  3332. commit.add("Tools.BuyOrTake", boost::bind(&handle_buy_or_take));
  3333. commit.add("Tools.TakeCopy", boost::bind(&handle_take_copy));
  3334. view_listener_t::addMenu(new LLToolsSaveToInventory(), "Tools.SaveToInventory");
  3335. view_listener_t::addMenu(new LLToolsSaveToObjectInventory(), "Tools.SaveToObjectInventory");
  3336. view_listener_t::addMenu(new LLToolsSelectedScriptAction(), "Tools.SelectedScriptAction");
  3337. view_listener_t::addMenu(new LLToolsEnableToolNotPie(), "Tools.EnableToolNotPie");
  3338. view_listener_t::addMenu(new LLToolsEnableSelectNextPart(), "Tools.EnableSelectNextPart");
  3339. view_listener_t::addMenu(new LLToolsEnableLink(), "Tools.EnableLink");
  3340. view_listener_t::addMenu(new LLToolsEnableUnlink(), "Tools.EnableUnlink");
  3341. view_listener_t::addMenu(new LLToolsEnableBuyOrTake(), "Tools.EnableBuyOrTake");
  3342. enable.add("Tools.EnableTakeCopy", boost::bind(&enable_object_take_copy));
  3343. view_listener_t::addMenu(new LLToolsEnableSaveToInventory(), "Tools.EnableSaveToInventory");
  3344. view_listener_t::addMenu(new LLToolsEnableSaveToObjectInventory(), "Tools.EnableSaveToObjectInventory");
  3345. /*view_listener_t::addMenu(new LLToolsVisibleBuyObject(), "Tools.VisibleBuyObject");
  3346. view_listener_t::addMenu(new LLToolsVisibleTakeObject(), "Tools.VisibleTakeObject");*/
  3347. // Help menu
  3348. // most items use the ShowFloater method
  3349. // Advance menu
  3350. view_listener_t::addMenu(new LLAdvancedToggleConsole(), "Advanced.ToggleConsole");
  3351. view_listener_t::addMenu(new LLAdvancedCheckConsole(), "Advanced.CheckConsole");
  3352. view_listener_t::addMenu(new LLAdvancedDumpInfoToConsole(), "Advanced.DumpInfoToConsole");
  3353. // Advanced > HUD Info
  3354. view_listener_t::addMenu(new LLAdvancedToggleHUDInfo(), "Advanced.ToggleHUDInfo");
  3355. view_listener_t::addMenu(new LLAdvancedCheckHUDInfo(), "Advanced.CheckHUDInfo");
  3356. // Advanced Other Settings
  3357. view_listener_t::addMenu(new LLAdvancedClearGroupCache(), "Advanced.ClearGroupCache");
  3358. // Advanced > Shortcuts
  3359. view_listener_t::addMenu(new LLAdvancedAgentFlyingInfo(), "Agent.getFlying");
  3360. // Advanced > Render > Types
  3361. view_listener_t::addMenu(new LLAdvancedToggleRenderType(), "Advanced.ToggleRenderType");
  3362. view_listener_t::addMenu(new LLAdvancedCheckRenderType(), "Advanced.CheckRenderType");
  3363. //// Advanced > Render > Features
  3364. view_listener_t::addMenu(new LLAdvancedToggleFeature(), "Advanced.ToggleFeature");
  3365. view_listener_t::addMenu(new LLAdvancedCheckFeature(), "Advanced.CheckFeature");
  3366. // Advanced > Render > Info Displays
  3367. view_listener_t::addMenu(new LLAdvancedToggleInfoDisplay(), "Advanced.ToggleInfoDisplay");
  3368. view_listener_t::addMenu(new LLAdvancedCheckInfoDisplay(), "Advanced.CheckInfoDisplay");
  3369. view_listener_t::addMenu(new LLAdvancedSelectedTextureInfo(), "Advanced.SelectedTextureInfo");
  3370. view_listener_t::addMenu(new LLAdvancedToggleWireframe(), "Advanced.ToggleWireframe");
  3371. view_listener_t::addMenu(new LLAdvancedCheckWireframe(), "Advanced.CheckWireframe");
  3372. view_listener_t::addMenu(new LLAdvancedToggleTextureAtlas(), "Advanced.ToggleTextureAtlas");
  3373. view_listener_t::addMenu(new LLAdvancedCheckTextureAtlas(), "Advanced.CheckTextureAtlas");
  3374. view_listener_t::addMenu(new LLAdvancedEnableObjectObjectOcclusion(), "Advanced.EnableObjectObjectOcclusion");
  3375. view_listener_t::addMenu(new LLAdvancedEnableRenderFBO(), "Advanced.EnableRenderFBO");
  3376. view_listener_t::addMenu(new LLAdvancedEnableRenderDeferred(), "Advanced.EnableRenderDeferred");
  3377. view_listener_t::addMenu(new LLAdvancedEnableRenderDeferredGI(), "Advanced.EnableRenderDeferredGI");
  3378. view_listener_t::addMenu(new LLAdvancedToggleRandomizeFramerate(), "Advanced.ToggleRandomizeFramerate");
  3379. view_listener_t::addMenu(new LLAdvancedCheckRandomizeFramerate(), "Advanced.CheckRandomizeFramerate");
  3380. view_listener_t::addMenu(new LLAdvancedTogglePeriodicSlowFrame(), "Advanced.TogglePeriodicSlowFrame");
  3381. view_listener_t::addMenu(new LLAdvancedCheckPeriodicSlowFrame(), "Advanced.CheckPeriodicSlowFrame");
  3382. view_listener_t::addMenu(new LLAdvancedVectorizePerfTest(), "Advanced.VectorizePerfTest");
  3383. view_listener_t::addMenu(new LLAdvancedToggleFrameTest(), "Advanced.ToggleFrameTest");
  3384. view_listener_t::addMenu(new LLAdvancedCheckFrameTest(), "Advanced.CheckFrameTest");
  3385. view_listener_t::addMenu(new LLAdvancedHandleAttachedLightParticles(), "Advanced.HandleAttachedLightParticles");
  3386. #ifdef TOGGLE_HACKED_GODLIKE_VIEWER
  3387. view_listener_t::addMenu(new LLAdvancedHandleToggleHackedGodmode(), "Advanced.HandleToggleHackedGodmode");
  3388. view_listener_t::addMenu(new LLAdvancedCheckToggleHackedGodmode(), "Advanced.CheckToggleHackedGodmode");
  3389. view_listener_t::addMenu(new LLAdvancedEnableToggleHackedGodmode(), "Advanced.EnableToggleHackedGodmode");
  3390. #endif
  3391. // Advanced > World
  3392. view_listener_t::addMenu(new LLAdvancedDumpScriptedCamera(), "Advanced.DumpScriptedCamera");
  3393. view_listener_t::addMenu(new LLAdvancedDumpRegionObjectCache(), "Advanced.DumpRegionObjectCache");
  3394. // Advanced > UI
  3395. commit.add("Advanced.WebBrowserTest", boost::bind(&handle_web_browser_test, _2));
  3396. view_listener_t::addMenu(new LLAdvancedBuyCurrencyTest(), "Advanced.BuyCurrencyTest");
  3397. view_listener_t::addMenu(new LLAdvancedDumpSelectMgr(), "Advanced.DumpSelectMgr");
  3398. view_listener_t::addMenu(new LLAdvancedDumpInventory(), "Advanced.DumpInventory");
  3399. commit.add("Advanced.DumpTimers", boost::bind(&handle_dump_timers) );
  3400. commit.add("Advanced.DumpFocusHolder", boost::bind(&handle_dump_focus) );
  3401. view_listener_t::addMenu(new LLAdvancedPrintSelectedObjectInfo(), "Advanced.PrintSelectedObjectInfo");
  3402. view_listener_t::addMenu(new LLAdvancedPrintAgentInfo(), "Advanced.PrintAgentInfo");
  3403. view_listener_t::addMenu(new LLAdvancedPrintTextureMemoryStats(), "Advanced.PrintTextureMemoryStats");
  3404. view_listener_t::addMenu(new LLAdvancedToggleDebugClicks(), "Advanced.ToggleDebugClicks");
  3405. view_listener_t::addMenu(new LLAdvancedCheckDebugClicks(), "Advanced.CheckDebugClicks");
  3406. view_listener_t::addMenu(new LLAdvancedCheckDebugViews(), "Advanced.CheckDebugViews");
  3407. view_listener_t::addMenu(new LLAdvancedToggleDebugViews(), "Advanced.ToggleDebugViews");
  3408. view_listener_t::addMenu(new LLAdvancedToggleXUINameTooltips(), "Advanced.ToggleXUINameTooltips");
  3409. view_listener_t::addMenu(new LLAdvancedCheckXUINameTooltips(), "Advanced.CheckXUINameTooltips");
  3410. view_listener_t::addMenu(new LLAdvancedToggleDebugMouseEvents(), "Advanced.ToggleDebugMouseEvents");
  3411. view_listener_t::addMenu(new LLAdvancedCheckDebugMouseEvents(), "Advanced.CheckDebugMouseEvents");
  3412. view_listener_t::addMenu(new LLAdvancedToggleDebugKeys(), "Advanced.ToggleDebugKeys");
  3413. view_listener_t::addMenu(new LLAdvancedCheckDebugKeys(), "Advanced.CheckDebugKeys");
  3414. view_listener_t::addMenu(new LLAdvancedToggleDebugWindowProc(), "Advanced.ToggleDebugWindowProc");
  3415. view_listener_t::addMenu(new LLAdvancedCheckDebugWindowProc(), "Advanced.CheckDebugWindowProc");
  3416. commit.add("Advanced.ShowSideTray", boost::bind(&handle_show_side_tray));
  3417. // Advanced > XUI
  3418. commit.add("Advanced.ReloadColorSettings", boost::bind(&LLUIColorTable::loadFromSettings, LLUIColorTable::getInstance()));
  3419. view_listener_t::addMenu(new LLAdvancedLoadUIFromXML(), "Advanced.LoadUIFromXML");
  3420. view_listener_t::addMenu(new LLAdvancedSaveUIToXML(), "Advanced.SaveUIToXML");
  3421. view_listener_t::addMenu(new LLAdvancedToggleXUINames(), "Advanced.ToggleXUINames");
  3422. view_listener_t::addMenu(new LLAdvancedCheckXUINames(), "Advanced.CheckXUINames");
  3423. view_listener_t::addMenu(new LLAdvancedSendTestIms(), "Advanced.SendTestIMs");
  3424. // Advanced > Character > Grab Baked Texture
  3425. view_listener_t::addMenu(new LLAdvancedGrabBakedTexture(), "Advanced.GrabBakedTexture");
  3426. view_listener_t::addMenu(new LLAdvancedEnableGrabBakedTexture(), "Advanced.EnableGrabBakedTexture");
  3427. // Advanced > Character > Character Tests
  3428. view_listener_t::addMenu(new LLAdvancedAppearanceToXML(), "Advanced.AppearanceToXML");
  3429. view_listener_t::addMenu(new LLAdvancedToggleCharacterGeometry(), "Advanced.ToggleCharacterGeometry");
  3430. view_listener_t::addMenu(new LLAdvancedTestMale(), "Advanced.TestMale");
  3431. view_listener_t::addMenu(new LLAdvancedTestFemale(), "Advanced.TestFemale");
  3432. view_listener_t::addMenu(new LLAdvancedTogglePG(), "Advanced.TogglePG");
  3433. // Advanced > Character (toplevel)
  3434. view_listener_t::addMenu(new LLAdvancedForceParamsToDefault(), "Advanced.ForceParamsToDefault");
  3435. view_listener_t::addMenu(new LLAdvancedReloadVertexShader(), "Advanced.ReloadVertexShader");
  3436. view_listener_t::addMenu(new LLAdvancedToggleAnimationInfo(), "Advanced.ToggleAnimationInfo");
  3437. view_listener_t::addMenu(new LLAdvancedCheckAnimationInfo(), "Advanced.CheckAnimationInfo");
  3438. view_listener_t::addMenu(new LLAdvancedToggleShowLookAt(), "Advanced.ToggleShowLookAt");
  3439. view_listener_t::addMenu(new LLAdvancedCheckShowLookAt(), "Advanced.CheckShowLookAt");
  3440. view_listener_t::addMenu(new LLAdvancedToggleShowPointAt(), "Advanced.ToggleShowPointAt");
  3441. view_listener_t::addMenu(new LLAdvancedCheckShowPointAt(), "Advanced.CheckShowPointAt");
  3442. view_listener_t::addMenu(new LLAdvancedToggleDebugJointUpdates(), "Advanced.ToggleDebugJointUpdates");
  3443. view_listener_t::addMenu(new LLAdvancedCheckDebugJointUpdates(), "Advanced.CheckDebugJointUpdates");
  3444. view_listener_t::addMenu(new LLAdvancedToggleDisableLOD(), "Advanced.ToggleDisableLOD");
  3445. view_listener_t::addMenu(new LLAdvancedCheckDisableLOD(), "Advanced.CheckDisableLOD");
  3446. view_listener_t::addMenu(new LLAdvancedToggleDebugCharacterVis(), "Advanced.ToggleDebugCharacterVis");
  3447. view_listener_t::addMenu(new LLAdvancedCheckDebugCharacterVis(), "Advanced.CheckDebugCharacterVis");
  3448. view_listener_t::addMenu(new LLAdvancedDumpAttachments(), "Advanced.DumpAttachments");
  3449. view_listener_t::addMenu(new LLAdvancedRebakeTextures(), "Advanced.RebakeTextures");
  3450. view_listener_t::addMenu(new LLAdvancedDebugAvatarTextures(), "Advanced.DebugAvatarTextures");
  3451. view_listener_t::addMenu(new LLAdvancedDumpAvatarLocalTextures(), "Advanced.DumpAvatarLocalTextures");
  3452. // Advanced > Network
  3453. view_listener_t::addMenu(new LLAdvancedEnableMessageLog(), "Advanced.EnableMessageLog");
  3454. view_listener_t::addMenu(new LLAdvancedDisableMessageLog(), "Advanced.DisableMessageLog");
  3455. view_listener_t::addMenu(new LLAdvancedDropPacket(), "Advanced.DropPacket");
  3456. // Advanced > Recorder
  3457. view_listener_t::addMenu(new LLAdvancedAgentPilot(), "Advanced.AgentPilot");
  3458. view_listener_t::addMenu(new LLAdvancedToggleAgentPilotLoop(), "Advanced.ToggleAgentPilotLoop");
  3459. view_listener_t::addMenu(new LLAdvancedCheckAgentPilotLoop(), "Advanced.CheckAgentPilotLoop");
  3460. // Advanced > Debugging
  3461. view_listener_t::addMenu(new LLAdvancedForceErrorBreakpoint(), "Advanced.ForceErrorBreakpoint");
  3462. view_listener_t::addMenu(new LLAdvancedForceErrorLlerror(), "Advanced.ForceErrorLlerror");
  3463. view_listener_t::addMenu(new LLAdvancedForceErrorBadMemoryAccess(), "Advanced.ForceErrorBadMemoryAccess");
  3464. view_listener_t::addMenu(new LLAdvancedForceErrorInfiniteLoop(), "Advanced.ForceErrorInfiniteLoop");
  3465. view_listener_t::addMenu(new LLAdvancedForceErrorSoftwareException(), "Advanced.ForceErrorSoftwareException");
  3466. view_listener_t::addMenu(new LLAdvancedForceErrorDriverCrash(), "Advanced.ForceErrorDriverCrash");
  3467. view_listener_t::addMenu(new LLAdvancedForceErrorDisconnectViewer(), "Advanced.ForceErrorDisconnectViewer");
  3468. // Advanced (toplevel)
  3469. view_listener_t::addMenu(new LLAdvancedToggleShowObjectUpdates(), "Advanced.ToggleShowObjectUpdates");
  3470. view_listener_t::addMenu(new LLAdvancedCheckShowObjectUpdates(), "Advanced.CheckShowObjectUpdates");
  3471. view_listener_t::addMenu(new LLAdvancedCompressImage(), "Advanced.CompressImage");
  3472. view_listener_t::addMenu(new LLAdvancedShowDebugSettings(), "Advanced.ShowDebugSettings");
  3473. view_listener_t::addMenu(new LLAdvancedToggleViewAdminOptions(), "Advanced.ToggleViewAdminOptions");
  3474. view_listener_t::addMenu(new LLAdvancedCheckViewAdminOptions(), "Advanced.CheckViewAdminOptions");
  3475. view_listener_t::addMenu(new LLAdvancedRequestAdminStatus(), "Advanced.RequestAdminStatus");
  3476. view_listener_t::addMenu(new LLAdvancedLeaveAdminStatus(), "Advanced.LeaveAdminStatus");
  3477. // Admin >Object
  3478. view_listener_t::addMenu(new LLAdminForceTakeCopy(), "Admin.ForceTakeCopy");
  3479. view_listener_t::addMenu(new LLAdminHandleObjectOwnerSelf(), "Admin.HandleObjectOwnerSelf");
  3480. view_listener_t::addMenu(new LLAdminHandleObjectOwnerPermissive(), "Admin.HandleObjectOwnerPermissive");
  3481. view_listener_t::addMenu(new LLAdminHandleForceDelete(), "Admin.HandleForceDelete");
  3482. view_listener_t::addMenu(new LLAdminHandleObjectLock(), "Admin.HandleObjectLock");
  3483. view_listener_t::addMenu(new LLAdminHandleObjectAssetIDs(), "Admin.HandleObjectAssetIDs");
  3484. // Admin >Parcel 
  3485. view_listener_t::addMenu(new LLAdminHandleForceParcelOwnerToMe(), "Admin.HandleForceParcelOwnerToMe");
  3486. view_listener_t::addMenu(new LLAdminHandleForceParcelToContent(), "Admin.HandleForceParcelToContent");
  3487. view_listener_t::addMenu(new LLAdminHandleClaimPublicLand(), "Admin.HandleClaimPublicLand");
  3488. // Admin >Region
  3489. view_listener_t::addMenu(new LLAdminHandleRegionDumpTempAssetData(), "Admin.HandleRegionDumpTempAssetData");
  3490. // Admin top level
  3491. view_listener_t::addMenu(new LLAdminOnSaveState(), "Admin.OnSaveState");
  3492. // Self pie menu
  3493. view_listener_t::addMenu(new LLSelfStandUp(), "Self.StandUp");
  3494. view_listener_t::addMenu(new LLSelfRemoveAllAttachments(), "Self.RemoveAllAttachments");
  3495. enable.add("Self.EnableStandUp", boost::bind(&enable_standup_self));
  3496. view_listener_t::addMenu(new LLSelfEnableRemoveAllAttachments(), "Self.EnableRemoveAllAttachments");
  3497. // we don't use boost::bind directly to delay side tray construction
  3498. view_listener_t::addMenu( new LLTogglePanelPeopleTab(), "SideTray.PanelPeopleTab");
  3499.  // Avatar pie menu
  3500. view_listener_t::addMenu(new LLObjectMute(), "Avatar.Mute");
  3501. view_listener_t::addMenu(new LLAvatarAddFriend(), "Avatar.AddFriend");
  3502. view_listener_t::addMenu(new LLAvatarAddContact(), "Avatar.AddContact");
  3503. commit.add("Avatar.Freeze", boost::bind(&handle_avatar_freeze, LLSD()));
  3504. view_listener_t::addMenu(new LLAvatarDebug(), "Avatar.Debug");
  3505. view_listener_t::addMenu(new LLAvatarVisibleDebug(), "Avatar.VisibleDebug");
  3506. view_listener_t::addMenu(new LLAvatarInviteToGroup(), "Avatar.InviteToGroup");
  3507. view_listener_t::addMenu(new LLAvatarGiveCard(), "Avatar.GiveCard");
  3508. commit.add("Avatar.Eject", boost::bind(&handle_avatar_eject, LLSD()));
  3509. view_listener_t::addMenu(new LLAvatarSendIM(), "Avatar.SendIM");
  3510. view_listener_t::addMenu(new LLAvatarCall(), "Avatar.Call");
  3511. enable.add("Avatar.EnableCall", boost::bind(&LLAvatarActions::canCall));
  3512. view_listener_t::addMenu(new LLAvatarReportAbuse(), "Avatar.ReportAbuse");
  3513. view_listener_t::addMenu(new LLAvatarEnableAddFriend(), "Avatar.EnableAddFriend");
  3514. enable.add("Avatar.EnableFreezeEject", boost::bind(&enable_freeze_eject, _2));
  3515. enable.add("Avatar.EnableFreezeEject", boost::bind(&enable_freeze_eject, _2));
  3516. // Object pie menu
  3517. view_listener_t::addMenu(new LLObjectBuild(), "Object.Build");
  3518. commit.add("Object.Touch", boost::bind(&handle_object_touch));
  3519. commit.add("Object.SitOrStand", boost::bind(&handle_object_sit_or_stand));
  3520. enable.add("Object.EnableSit", boost::bind(&enable_sit_object));
  3521. commit.add("Object.Delete", boost::bind(&handle_object_delete));
  3522. view_listener_t::addMenu(new LLObjectAttachToAvatar(), "Object.AttachToAvatar");
  3523. view_listener_t::addMenu(new LLObjectReturn(), "Object.Return");
  3524. view_listener_t::addMenu(new LLObjectReportAbuse(), "Object.ReportAbuse");
  3525. view_listener_t::addMenu(new LLObjectMute(), "Object.Mute");
  3526. enable.add("Object.VisibleTake", boost::bind(&visible_take_object));
  3527. enable.add("Object.VisibleBuy", boost::bind(&visible_buy_object));
  3528. commit.add("Object.Buy", boost::bind(&handle_buy));
  3529. commit.add("Object.Edit", boost::bind(&handle_object_edit));
  3530. commit.add("Object.Inspect", boost::bind(&handle_object_inspect));
  3531. commit.add("Object.Open", boost::bind(&handle_object_open));
  3532. commit.add("Object.Take", boost::bind(&handle_take));
  3533. enable.add("Object.EnableOpen", boost::bind(&enable_object_open));
  3534. enable.add("Object.EnableTouch", boost::bind(&enable_object_touch));
  3535. view_listener_t::addMenu(new LLObjectEnableTouch(), "Object.EnableTouch");
  3536. view_listener_t::addMenu(new LLObjectEnableSitOrStand(), "Object.EnableSitOrStand");
  3537. enable.add("Object.EnableDelete", boost::bind(&enable_object_delete));
  3538. enable.add("Object.EnableWear", boost::bind(&object_selected_and_point_valid));
  3539. view_listener_t::addMenu(new LLObjectEnableReturn(), "Object.EnableReturn");
  3540. view_listener_t::addMenu(new LLObjectEnableReportAbuse(), "Object.EnableReportAbuse");
  3541. enable.add("Avatar.EnableMute", boost::bind(&enable_object_mute));
  3542. enable.add("Object.EnableMute", boost::bind(&enable_object_mute));
  3543. enable.add("Object.EnableBuy", boost::bind(&enable_buy_object));
  3544. commit.add("Object.ZoomIn", boost::bind(&handle_look_at_selection, "zoom"));
  3545. // Attachment pie menu
  3546. enable.add("Attachment.Label", boost::bind(&onEnableAttachmentLabel, _1, _2));
  3547. view_listener_t::addMenu(new LLAttachmentDrop(), "Attachment.Drop");
  3548. view_listener_t::addMenu(new LLAttachmentDetachFromPoint(), "Attachment.DetachFromPoint");
  3549. view_listener_t::addMenu(new LLAttachmentDetach(), "Attachment.Detach");
  3550. view_listener_t::addMenu(new LLAttachmentPointFilled(), "Attachment.PointFilled");
  3551. view_listener_t::addMenu(new LLAttachmentEnableDrop(), "Attachment.EnableDrop");
  3552. view_listener_t::addMenu(new LLAttachmentEnableDetach(), "Attachment.EnableDetach");
  3553. // Land pie menu
  3554. view_listener_t::addMenu(new LLLandBuild(), "Land.Build");
  3555. view_listener_t::addMenu(new LLLandSit(), "Land.Sit");
  3556. view_listener_t::addMenu(new LLLandBuyPass(), "Land.BuyPass");
  3557. view_listener_t::addMenu(new LLLandEdit(), "Land.Edit");
  3558. view_listener_t::addMenu(new LLLandEnableBuyPass(), "Land.EnableBuyPass");
  3559. commit.add("Land.Buy", boost::bind(&handle_buy_land));
  3560. // Generic actions
  3561. commit.add("ReportAbuse", boost::bind(&handle_report_abuse));
  3562. commit.add("BuyCurrency", boost::bind(&handle_buy_currency));
  3563. view_listener_t::addMenu(new LLShowHelp(), "ShowHelp");
  3564. view_listener_t::addMenu(new LLPromptShowURL(), "PromptShowURL");
  3565. view_listener_t::addMenu(new LLShowAgentProfile(), "ShowAgentProfile");
  3566. view_listener_t::addMenu(new LLToggleControl(), "ToggleControl");
  3567. view_listener_t::addMenu(new LLCheckControl(), "CheckControl");
  3568. view_listener_t::addMenu(new LLGoToObject(), "GoToObject");
  3569. commit.add("PayObject", boost::bind(&handle_give_money_dialog));
  3570. enable.add("EnablePayObject", boost::bind(&enable_pay_object));
  3571. enable.add("EnablePayAvatar", boost::bind(&enable_pay_avatar));
  3572. enable.add("EnableEdit", boost::bind(&enable_object_edit));
  3573. enable.add("VisibleBuild", boost::bind(&enable_object_build));
  3574. view_listener_t::addMenu(new LLFloaterVisible(), "FloaterVisible");
  3575. view_listener_t::addMenu(new LLShowSidetrayPanel(), "ShowSidetrayPanel");
  3576. view_listener_t::addMenu(new LLSidetrayPanelVisible(), "SidetrayPanelVisible");
  3577. view_listener_t::addMenu(new LLSomethingSelected(), "SomethingSelected");
  3578. view_listener_t::addMenu(new LLSomethingSelectedNoHUD(), "SomethingSelectedNoHUD");
  3579. view_listener_t::addMenu(new LLEditableSelected(), "EditableSelected");
  3580. view_listener_t::addMenu(new LLEditableSelectedMono(), "EditableSelectedMono");
  3581. }