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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file llagentaccess.h
  3.  * @brief LLAgentAccess class implementation - manages maturity and godmode info
  4.  *
  5.  * $LicenseInfo:firstyear=2001&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2001-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_LLAGENTACCESS_H
  33. #define LL_LLAGENTACCESS_H
  34. #include "stdtypes.h"
  35. // forward declaration so that we don't have to include the whole class
  36. class LLControlGroup;
  37. class LLAgentAccess
  38. {
  39. public:
  40. LLAgentAccess(LLControlGroup& savedSettings);
  41. bool getAdminOverride() const;
  42. void setAdminOverride(bool b);
  43. void setGodLevel(U8 god_level);
  44. bool isGodlike() const;
  45. U8 getGodLevel() const;
  46. // rather than just expose the preference setting, we're going to actually
  47. // expose what the client code cares about -- what the user should see
  48. // based on a combination of the is* and prefers* flags, combined with God bit.
  49. bool wantsPGOnly() const;
  50. bool canAccessMature() const;
  51. bool canAccessAdult() const;
  52. bool prefersPG() const;
  53. bool prefersMature() const;
  54. bool prefersAdult() const;
  55. bool isTeen() const;
  56. bool isMature() const;
  57. bool isAdult() const;
  58. void setTeen(bool teen);
  59. void setMaturity(char text);
  60. static int convertTextToMaturity(char text);
  61. void setTransition(); // sets the transition bit, which defaults to false
  62. bool isInTransition() const;
  63. bool canSetMaturity(S32 maturity);
  64. private:
  65. U8 mAccess; // SIM_ACCESS_MATURE etc
  66. U8 mGodLevel;
  67. bool mAdminOverride;
  68. // this should be deleted after the 60-day AO transition.
  69. // It should be safe to remove it in Viewer 2009
  70. // It's set by a special short-term flag in login.cgi 
  71. // called ao_transition. When that's gone, this can go, along with
  72. // all of the code that depends on it.
  73. bool mAOTransition;
  74. LLControlGroup& mSavedSettings;
  75. };
  76. #endif // LL_LLAGENTACCESS_H