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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llvolumemgr.h
  3.  * @brief LLVolumeMgr class.
  4.  *
  5.  * $LicenseInfo:firstyear=2002&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2002-2010, Linden Research, Inc.
  8.  * 
  9.  * Second Life Viewer Source Code
  10.  * The source code in this file ("Source Code") is provided by Linden Lab
  11.  * to you under the terms of the GNU General Public License, version 2.0
  12.  * ("GPL"), unless you have obtained a separate licensing agreement
  13.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  14.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  15.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  16.  * 
  17.  * There are special exceptions to the terms and conditions of the GPL as
  18.  * it is applied to this Source Code. View the full text of the exception
  19.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  20.  * online at
  21.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  22.  * 
  23.  * By copying, modifying or distributing this software, you acknowledge
  24.  * that you have read and understood your obligations described above,
  25.  * and agree to abide by those obligations.
  26.  * 
  27.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  28.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  29.  * COMPLETENESS OR PERFORMANCE.
  30.  * $/LicenseInfo$
  31.  */
  32. #ifndef LL_LLVOLUMEMGR_H
  33. #define LL_LLVOLUMEMGR_H
  34. #include <map>
  35. #include "llvolume.h"
  36. #include "llpointer.h"
  37. #include "llthread.h"
  38. class LLVolumeParams;
  39. class LLVolumeLODGroup;
  40. class LLVolumeLODGroup
  41. {
  42. LOG_CLASS(LLVolumeLODGroup);
  43. public:
  44. enum
  45. {
  46. NUM_LODS = 4
  47. };
  48. LLVolumeLODGroup(const LLVolumeParams &params);
  49. ~LLVolumeLODGroup();
  50. bool cleanupRefs();
  51. static S32 getDetailFromTan(const F32 tan_angle);
  52. static void getDetailProximity(const F32 tan_angle, F32 &to_lower, F32& to_higher);
  53. static F32 getVolumeScaleFromDetail(const S32 detail);
  54. LLVolume* refLOD(const S32 detail);
  55. BOOL derefLOD(LLVolume *volumep);
  56. S32 getNumRefs() const { return mRefs; }
  57. const LLVolumeParams* getVolumeParams() const { return &mVolumeParams; };
  58. F32 dump();
  59. friend std::ostream& operator<<(std::ostream& s, const LLVolumeLODGroup& volgroup);
  60. protected:
  61. LLVolumeParams mVolumeParams;
  62. S32 mRefs;
  63. S32 mLODRefs[NUM_LODS];
  64. LLPointer<LLVolume> mVolumeLODs[NUM_LODS];
  65. static F32 mDetailThresholds[NUM_LODS];
  66. static F32 mDetailScales[NUM_LODS];
  67. S32 mAccessCount[NUM_LODS];
  68. };
  69. class LLVolumeMgr
  70. {
  71. public:
  72. LLVolumeMgr();
  73. virtual ~LLVolumeMgr();
  74. BOOL cleanup(); // Cleanup all volumes being managed, returns TRUE if no dangling references
  75. virtual LLVolumeLODGroup* getGroup( const LLVolumeParams& volume_params ) const;
  76. // whatever calls getVolume() never owns the LLVolume* and
  77. // cannot keep references for long since it may be deleted
  78. // later.  For best results hold it in an LLPointer<LLVolume>.
  79. virtual LLVolume *refVolume(const LLVolumeParams &volume_params, const S32 detail);
  80. virtual void unrefVolume(LLVolume *volumep);
  81. void dump();
  82. // manually call this for mutex magic
  83. void useMutex();
  84. friend std::ostream& operator<<(std::ostream& s, const LLVolumeMgr& volume_mgr);
  85. protected:
  86. void insertGroup(LLVolumeLODGroup* volgroup);
  87. // Overridden in llphysics/abstract/utils/llphysicsvolumemanager.h
  88. virtual LLVolumeLODGroup* createNewGroup(const LLVolumeParams& volume_params);
  89. protected:
  90. typedef std::map<const LLVolumeParams*, LLVolumeLODGroup*, LLVolumeParams::compare> volume_lod_group_map_t;
  91. volume_lod_group_map_t mVolumeLODGroups;
  92. LLMutex* mDataMutex;
  93. };
  94. #endif // LL_LLVOLUMEMGR_H