From f607a8df3ef1088cdfba15322a4686f73539bc75 Mon Sep 17 00:00:00 2001 From: Kitty Barnett <none@none> Date: Sun, 29 Aug 2010 18:08:18 +0200 Subject: [PATCH] - added : @standtp=n --HG-- branch : RLVa --- indra/newview/llagent.cpp | 2 +- indra/newview/llagentlistener.cpp | 12 ++++++++++++ indra/newview/llviewermenu.cpp | 12 ++++++++++++ indra/newview/llvoavatar.cpp | 6 ++---- indra/newview/rlvcommon.cpp | 10 ++++++++++ indra/newview/rlvcommon.h | 6 ++++++ indra/newview/rlvdefines.h | 1 + indra/newview/rlvhandler.cpp | 26 +++++++++++++++++++++++++- indra/newview/rlvhandler.h | 14 ++++++++++---- indra/newview/rlvhelper.cpp | 9 +++++---- 10 files changed, 84 insertions(+), 14 deletions(-) diff --git a/indra/newview/llagent.cpp b/indra/newview/llagent.cpp index 967ab90a97..42a3da8873 100644 --- a/indra/newview/llagent.cpp +++ b/indra/newview/llagent.cpp @@ -3403,7 +3403,7 @@ void LLAgent::teleportCancel() void LLAgent::teleportViaLocation(const LLVector3d& pos_global) { // [RLVa:KB] - Checked: 2010-03-02 (RLVa-1.2.0c) | Modified: RLVa-1.2.0a - if (rlv_handler_t::isEnabled()) + if ( (rlv_handler_t::isEnabled()) && (!RlvUtil::isForceTp()) ) { // If we're getting teleported due to @tpto we should disregard any @tploc=n or @unsit=n restrictions from the same object if ( (gRlvHandler.hasBehaviourExcept(RLV_BHVR_TPLOC, gRlvHandler.getCurrentObject())) || diff --git a/indra/newview/llagentlistener.cpp b/indra/newview/llagentlistener.cpp index 745b9933da..66f3853e79 100644 --- a/indra/newview/llagentlistener.cpp +++ b/indra/newview/llagentlistener.cpp @@ -98,6 +98,18 @@ void LLAgentListener::requestSit(LLSD const & event_data) const if (object && object->getPCode() == LL_PCODE_VOLUME) { +// [RLVa:KB] - Checked: 2010-08-29 (RLVa-1.2.1c) | Added: RLVa-1.2.1c + if ( (gRlvHandler.hasBehaviour(RLV_BHVR_STANDTP)) && (isAgentAvatarValid()) ) + { + if (gAgentAvatarp->isSitting()) + { + gAgent.standUp(); + return; + } + gRlvHandler.setSitSource(gAgent.getPositionGlobal()); + } +// [/RLVa:KB] + gMessageSystem->newMessageFast(_PREHASH_AgentRequestSit); gMessageSystem->nextBlockFast(_PREHASH_AgentData); gMessageSystem->addUUIDFast(_PREHASH_AgentID, mAgent.getID()); diff --git a/indra/newview/llviewermenu.cpp b/indra/newview/llviewermenu.cpp index 48231c6e66..bc8ddaa44e 100644 --- a/indra/newview/llviewermenu.cpp +++ b/indra/newview/llviewermenu.cpp @@ -3768,6 +3768,18 @@ void handle_object_sit_or_stand() ((!rlv_handler_t::isEnabled()) || (gRlvHandler.canSit(object, pick.mObjectOffset))) ) // [/RLVa:KB] { +// [RLVa:KB] - Checked: 2010-08-29 (RLVa-1.2.1c) | Added: RLVa-1.2.1c + if ( (gRlvHandler.hasBehaviour(RLV_BHVR_STANDTP)) && (isAgentAvatarValid()) ) + { + if (gAgentAvatarp->isSitting()) + { + gAgent.standUp(); + return; + } + gRlvHandler.setSitSource(gAgent.getPositionGlobal()); + } +// [/RLVa:KB] + gMessageSystem->newMessageFast(_PREHASH_AgentRequestSit); gMessageSystem->nextBlockFast(_PREHASH_AgentData); gMessageSystem->addUUIDFast(_PREHASH_AgentID, gAgent.getID()); diff --git a/indra/newview/llvoavatar.cpp b/indra/newview/llvoavatar.cpp index 97916f8873..908ef3eaa6 100644 --- a/indra/newview/llvoavatar.cpp +++ b/indra/newview/llvoavatar.cpp @@ -5753,13 +5753,11 @@ void LLVOAvatar::sitDown(BOOL bSitting) // Update Movement Controls according to own Sitting mode LLFloaterMove::setSittingMode(bSitting); -// [RLVa:KB] - Checked: 2010-04-01 (RLVa-1.2.0c) | Added: RLVa-0.2.1d - #ifdef RLV_EXTENSION_STARTLOCATION +// [RLVa:KB] - Checked: 2010-08-29 (RLVa-1.2.1c) | Modified: RLVa-1.2.1c if (rlv_handler_t::isEnabled()) { - RlvSettings::updateLoginLastLocation(); + gRlvHandler.onSitOrStand(bSitting); } - #endif // RLV_EXTENSION_STARTLOCATION // [/RLVa:KB] } } diff --git a/indra/newview/rlvcommon.cpp b/indra/newview/rlvcommon.cpp index 526005b907..4dae07fdf6 100644 --- a/indra/newview/rlvcommon.cpp +++ b/indra/newview/rlvcommon.cpp @@ -330,6 +330,8 @@ bool RlvStrings::hasString(const std::string& strStringName) // RlvUtil // +bool RlvUtil::m_fForceTp = false; + // Checked: 2009-07-04 (RLVa-1.0.0a) | Modified: RLVa-1.0.0a void RlvUtil::filterLocation(std::string& strUTF8Text) { @@ -363,6 +365,14 @@ void RlvUtil::filterNames(std::string& strUTF8Text) } } +// Checked: 2010-08-29 (RLVa-1.2.1c) | Added: RLVa-1.2.1c +void RlvUtil::forceTp(const LLVector3d &posDest) +{ + m_fForceTp = true; + gAgent.teleportViaLocation(posDest); + m_fForceTp = false; +} + // Checked: 2010-04-22 (RLVa-1.2.0f) | Modified: RLVa-1.2.0f bool RlvUtil::isNearbyAgent(const LLUUID& idAgent) { diff --git a/indra/newview/rlvcommon.h b/indra/newview/rlvcommon.h index c7295ce1fd..a0e99b7154 100644 --- a/indra/newview/rlvcommon.h +++ b/indra/newview/rlvcommon.h @@ -129,12 +129,18 @@ public: static void filterLocation(std::string& strUTF8Text); // @showloc static void filterNames(std::string& strUTF8Text); // @shownames + static bool isForceTp() { return m_fForceTp; } + static void forceTp(const LLVector3d& posDest); // Ignores restrictions that might otherwise prevent tp'ing + static void notifyFailedAssertion(const char* pstrAssert, const char* pstrFile, int nLine); static void sendBusyMessage(const LLUUID& idTo, const std::string& strMsg, const LLUUID& idSession = LLUUID::null); static bool isValidReplyChannel(S32 nChannel); static bool sendChatReply(S32 nChannel, const std::string& strUTF8Text); static bool sendChatReply(const std::string& strChannel, const std::string& strUTF8Text); + +protected: + static bool m_fForceTp; // @standtp }; // ============================================================================ diff --git a/indra/newview/rlvdefines.h b/indra/newview/rlvdefines.h index 6d5e9ecfc6..5251252aa0 100644 --- a/indra/newview/rlvdefines.h +++ b/indra/newview/rlvdefines.h @@ -177,6 +177,7 @@ enum ERlvBehaviour { RLV_BHVR_UNSIT, // "unsit" RLV_BHVR_SIT, // "sit" RLV_BHVR_SITTP, // "sittp" + RLV_BHVR_STANDTP, // "standtp" RLV_BHVR_SETDEBUG, // "setdebug" RLV_BHVR_SETENV, // "setenv" RLV_BHVR_DETACHME, // "detachme" diff --git a/indra/newview/rlvhandler.cpp b/indra/newview/rlvhandler.cpp index 83d0cf5a6c..5da6322b30 100644 --- a/indra/newview/rlvhandler.cpp +++ b/indra/newview/rlvhandler.cpp @@ -107,7 +107,7 @@ static bool rlvParseNotifyOption(const std::string& strOption, S32& nChannel, st // // Checked: 2010-04-07 (RLVa-1.2.0d) | Modified: RLVa-1.0.1d -RlvHandler::RlvHandler() : m_fCanCancelTp(true), m_pGCTimer(NULL), m_pWLSnapshot(NULL) +RlvHandler::RlvHandler() : m_fCanCancelTp(true), m_posSitSource(), m_pGCTimer(NULL), m_pWLSnapshot(NULL) { // Array auto-initialization to 0 is non-standard? (Compiler warning in VC-8.0) memset(m_Behaviours, 0, sizeof(S16) * RLV_BHVR_COUNT); @@ -385,6 +385,23 @@ ERlvCmdRet RlvHandler::processClearCommand(const LLUUID& idObj, const RlvCommand // Externally invoked event handlers // +// Checked: 2010-08-29 (RLVa-1.2.1c) | Modified: RLVa-1.2.1c +void RlvHandler::onSitOrStand(bool fSitting) +{ + #ifdef RLV_EXTENSION_STARTLOCATION + if (rlv_handler_t::isEnabled()) + { + RlvSettings::updateLoginLastLocation(); + } + #endif // RLV_EXTENSION_STARTLOCATION + + if ( (hasBehaviour(RLV_BHVR_STANDTP)) && (!fSitting) && (!m_posSitSource.isExactlyZero()) ) + { + RlvUtil::forceTp(m_posSitSource); + m_posSitSource.setZero(); + } +} + // Checked: 2010-03-11 (RLVa-1.2.0a) | Modified: RLVa-1.2.0a void RlvHandler::onAttach(const LLViewerObject* pAttachObj, const LLViewerJointAttachment* pAttachPt) { @@ -1100,6 +1117,7 @@ ERlvCmdRet RlvHandler::processAddRemCommand(const LLUUID& idObj, const RlvComman case RLV_BHVR_SHOWHOVERTEXTHUD: // @showhovertexthud=n|y - Checked: 2010-03-27 (RLVa-1.2.0b) case RLV_BHVR_SHOWHOVERTEXTWORLD: // @showhovertextworld=n|y - Checked: 2010-03-27 (RLVa-1.2.0b) case RLV_BHVR_SHOWHOVERTEXTALL: // @showhovertextall=n|y - Checked: 2010-03-27 (RLVa-1.2.0b) + case RLV_BHVR_STANDTP: // @standtp=n|y - Checked: 2010-08-29 (RLVa-1.2.1c) case RLV_BHVR_TPLM: // @tplm=n|y - Checked: 2009-12-05 (RLVa-1.1.0h) | Modified: RLVa-1.1.0h case RLV_BHVR_TPLOC: // @tploc=n|y - Checked: 2009-12-05 (RLVa-1.1.0h) | Modified: RLVa-1.1.0h case RLV_BHVR_VIEWNOTE: // @viewnote=n|y - Checked: 2010-03-27 (RLVa-1.2.0b) @@ -1464,6 +1482,12 @@ ERlvCmdRet RlvHandler::onForceSit(const LLUUID& idObj, const RlvCommand& rlvCmd) if (!canSit(pObj)) return RLV_RET_FAILED_LOCK; + else if ( (hasBehaviour(RLV_BHVR_STANDTP)) && (isAgentAvatarValid()) ) + { + if (gAgentAvatarp->isSitting()) + return RLV_RET_FAILED_LOCK; + m_posSitSource = gAgent.getPositionGlobal(); + } // Copy/paste from handle_sit_or_stand() [see http://wiki.secondlife.com/wiki/AgentRequestSit] gMessageSystem->newMessageFast(_PREHASH_AgentRequestSit); diff --git a/indra/newview/rlvhandler.h b/indra/newview/rlvhandler.h index 5f9008a2ca..d4af20a7c1 100644 --- a/indra/newview/rlvhandler.h +++ b/indra/newview/rlvhandler.h @@ -86,8 +86,10 @@ public: */ public: // Accessors - bool getCanCancelTp() const { return m_fCanCancelTp; } // @accepttp and @tpto - void setCanCancelTp(bool fAllow) { m_fCanCancelTp = fAllow; } // @accepttp and @tpto + bool getCanCancelTp() const { return m_fCanCancelTp; } // @accepttp and @tpto + void setCanCancelTp(bool fAllow) { m_fCanCancelTp = fAllow; } // @accepttp and @tpto + const LLVector3d& getSitSource() const { return m_posSitSource; } // @standtp + void setSitSource(const LLVector3d& posSource) { m_posSitSource = posSource; } // @standtp // Command specific helper functions bool canShowHoverText(LLViewerObject* pObj) const; // @showhovertext* command family @@ -138,6 +140,7 @@ public: void onDetach(const LLViewerObject* pAttachObj, const LLViewerJointAttachment* pAttachPt); bool onGC(); void onLoginComplete(); + void onSitOrStand(bool fSitting); void onTeleportFailed(); void onTeleportFinished(const LLVector3d& posArrival); static void onIdleStartup(void* pParam); @@ -197,7 +200,8 @@ protected: static BOOL m_fEnabled; // Use setEnabled() to toggle this - bool m_fCanCancelTp; + bool m_fCanCancelTp; // @accepttp and @tpto + mutable LLVector3d m_posSitSource; // @standtp (mutable because onForceXXX handles are all declared as const) friend class RlvSharedRootFetcher; // Fetcher needs access to m_fFetchComplete friend class RlvGCTimer; // Timer clear its own point at destruction @@ -241,12 +245,14 @@ inline bool RlvHandler::canSit(LLViewerObject* pObj, const LLVector3& posOffset // The user can sit on the specified object if: // - not prevented from sitting // - not prevented from standing up or not currently sitting + // - not standtp restricted or not currently sitting (if the user is sitting and tried to sit elsewhere the tp would just kick in) // - [regular sit] not @sittp=n or @fartouch=n restricted or if they clicked on a point within 1.5m of the avie's current position // - [force sit] not @sittp=n restricted by a *different* object than the one that issued the command or the object is within 1.5m return ( (pObj) && (LL_PCODE_VOLUME == pObj->getPCode()) ) && (!hasBehaviour(RLV_BHVR_SIT)) && - ( (!hasBehaviour(RLV_BHVR_UNSIT)) || ((isAgentAvatarValid()) && (!gAgentAvatarp->isSitting())) ) && + ( ((!hasBehaviour(RLV_BHVR_UNSIT)) && (!hasBehaviour(RLV_BHVR_STANDTP))) || + ((isAgentAvatarValid()) && (!gAgentAvatarp->isSitting())) ) && ( ((NULL == getCurrentCommand() || (RLV_BHVR_SIT != getCurrentCommand()->getBehaviourType())) ? ((!hasBehaviour(RLV_BHVR_SITTP)) && (!hasBehaviour(RLV_BHVR_FARTOUCH))) // [regular sit] : (!hasBehaviourExcept(RLV_BHVR_SITTP, getCurrentObject()))) || // [force sit] diff --git a/indra/newview/rlvhelper.cpp b/indra/newview/rlvhelper.cpp index 3311344f32..ec38b3d902 100644 --- a/indra/newview/rlvhelper.cpp +++ b/indra/newview/rlvhelper.cpp @@ -131,10 +131,11 @@ void RlvCommand::initLookupTable() "notify", "showinv", "showminimap", "showworldmap", "showloc", "shownames", "showhovertext", "showhovertexthud", "showhovertextworld", "showhovertextall", "tplm", "tploc", "tplure", "viewnote", "viewscript", "viewtexture", "acceptpermission", "accepttp", "allowidle", "edit", "rez", "fartouch", "interact", "touch", "touchattach", "touchhud", - "touchworld", "fly", "unsit", "sit", "sittp", "setdebug", "setenv", "detachme", "detachthis", "detachall", "detachallthis", - "attachthis", "attachall", "attachallthis", "tpto", "version", "versionnew", "versionnum", "getattach", "getattachnames", - "getaddattachnames", "getremattachnames", "getoutfit", "getoutfitnames", "getaddoutfitnames", "getremoutfitnames", - "findfolder", "findfolders", "getpath", "getpathnew", "getinv", "getinvworn", "getsitid", "getstatus", "getstatusall" + "touchworld", "fly", "unsit", "sit", "sittp", "standtp", "setdebug", "setenv", "detachme", "detachthis", "detachall", + "detachallthis", "attachthis", "attachall", "attachallthis", "tpto", "version", "versionnew", "versionnum", + "getattach", "getattachnames", "getaddattachnames", "getremattachnames", "getoutfit", "getoutfitnames", + "getaddoutfitnames", "getremoutfitnames", "findfolder", "findfolders", "getpath", "getpathnew", "getinv", "getinvworn", + "getsitid", "getstatus", "getstatusall" }; for (int idxBvhr = 0; idxBvhr < RLV_BHVR_COUNT; idxBvhr++) -- GitLab