diff options
author | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
---|---|---|
committer | James Cook <james@lindenlab.com> | 2007-01-02 08:33:20 +0000 |
commit | 420b91db29485df39fd6e724e782c449158811cb (patch) | |
tree | b471a94563af914d3ed3edd3e856d21cb1b69945 /indra/newview/llregionposition.cpp |
Print done when done.
Diffstat (limited to 'indra/newview/llregionposition.cpp')
-rw-r--r-- | indra/newview/llregionposition.cpp | 76 |
1 files changed, 76 insertions, 0 deletions
diff --git a/indra/newview/llregionposition.cpp b/indra/newview/llregionposition.cpp new file mode 100644 index 0000000000..e2a2dc7140 --- /dev/null +++ b/indra/newview/llregionposition.cpp @@ -0,0 +1,76 @@ +/** + * @file llregionposition.cpp + * @brief Region position storing class definition + * + * Copyright (c) 2001-$CurrentYear$, Linden Research, Inc. + * $License$ + */ + +#include "llviewerprecompiledheaders.h" + +#include "llregionposition.h" + +#include "llagent.h" +#include "llworld.h" +#include "llviewerregion.h" + +LLRegionPosition::LLRegionPosition() +{ + mRegionp = NULL; +} + +LLRegionPosition::LLRegionPosition(LLViewerRegion *regionp, const LLVector3 &position) +{ + mRegionp = regionp; + mPositionRegion = position; +} + +LLRegionPosition::LLRegionPosition(const LLVector3d &global_position) +{ + setPositionGlobal(global_position); +} + +LLViewerRegion *LLRegionPosition::getRegion() const +{ + return mRegionp; +} + +const LLVector3 &LLRegionPosition::getPositionRegion() const +{ + return mPositionRegion; +} + +const LLVector3 LLRegionPosition::getPositionAgent() const +{ + return mRegionp->getPosAgentFromRegion( mPositionRegion ); +} + +LLVector3d LLRegionPosition::getPositionGlobal() const +{ + if (mRegionp) + { + return mRegionp->getPosGlobalFromRegion(mPositionRegion); + } + else + { + LLVector3d pos_global; + pos_global.setVec(mPositionRegion); + return pos_global; + } +} + + +void LLRegionPosition::setPositionGlobal(const LLVector3d& position_global ) +{ + mRegionp = gWorldPointer->getRegionFromPosGlobal(position_global); + if (mRegionp) + { + mPositionRegion = mRegionp->getPosRegionFromGlobal(position_global); + } + else + { + mRegionp = gAgent.getRegion(); + llassert(mRegionp); + mPositionRegion = mRegionp->getPosRegionFromGlobal(position_global); + } +} |