aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/hippoLimits.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/hippoLimits.h33
1 files changed, 32 insertions, 1 deletions
diff --git a/linden/indra/newview/hippoLimits.h b/linden/indra/newview/hippoLimits.h
index a5fe351..a5493eb 100644
--- a/linden/indra/newview/hippoLimits.h
+++ b/linden/indra/newview/hippoLimits.h
@@ -11,12 +11,23 @@ public:
11 const F32& getMaxHeight() const { return mMaxHeight; } 11 const F32& getMaxHeight() const { return mMaxHeight; }
12 const F32& getMinHoleSize() const { return mMinHoleSize; } 12 const F32& getMinHoleSize() const { return mMinHoleSize; }
13 const F32& getMaxHollow() const { return mMaxHollow; } 13 const F32& getMaxHollow() const { return mMaxHollow; }
14 const F32& getMinPrimScale() const { return mMinPrimScale; }
15 const S32& getMaxLinkedPrims() const { return mMaxLinkedPrims; } 14 const S32& getMaxLinkedPrims() const { return mMaxLinkedPrims; }
15 const F32& getMaxDragDistance() const { return mMaxDragDistance; }
16 const S32& getMaxPhysLinkedPrims() const { return mMaxPhysLinkedPrims; }
17 const F32& getMaxInventoryItemsTransfer() const { return mMaxInventoryItemsTransfer; }
18
16 19
17 // Returns the max prim size we can use on a grid 20 // Returns the max prim size we can use on a grid
21 F32 getMinPrimScale() const;
18 F32 getMaxPrimScale() const; 22 F32 getMaxPrimScale() const;
19 23
24 F32 getMinPrimXPos() const;
25 F32 getMinPrimYPos() const;
26 F32 getMinPrimZPos() const;
27 F32 getMaxPrimXPos() const;
28 F32 getMaxPrimYPos() const;
29 F32 getMaxPrimZPos() const;
30
20 void setLimits(); 31 void setLimits();
21 32
22 S32 mMaxAgentGroups; 33 S32 mMaxAgentGroups;
@@ -27,6 +38,26 @@ public:
27 F32 mMaxPrimScale; 38 F32 mMaxPrimScale;
28 F32 mMinPrimScale; 39 F32 mMinPrimScale;
29 S32 mMaxLinkedPrims; 40 S32 mMaxLinkedPrims;
41 S32 mMaxPhysLinkedPrims;
42 F32 mMaxPrimXPos;
43 F32 mMaxPrimYPos;
44 F32 mMaxPrimZPos;
45 F32 mMinPrimXPos;
46 F32 mMinPrimYPos;
47 F32 mMinPrimZPos;
48
49 S32 mRenderName;
50
51 F32 mMaxInventoryItemsTransfer;
52 F32 mMaxDragDistance;
53
54 BOOL skyUseClassicClouds;
55 BOOL mAllowParcelWindLight;
56 BOOL mAllowMinimap;
57 BOOL mAllowPhysicalPrims;
58 BOOL mEnableTeenMode;
59 BOOL mEnforceMaxBuild;
60 BOOL mRenderWater;
30 61
31private: 62private:
32 void setOpenSimLimits(); 63 void setOpenSimLimits();