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

游戏引擎

开发平台:

C++ Builder

  1. /** 
  2.  * @file roles_constants.h
  3.  * @brief General Roles Constants
  4.  *
  5.  * $LicenseInfo:firstyear=2006&license=viewergpl$
  6.  * 
  7.  * Copyright (c) 2006-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_ROLES_CONSTANTS_H
  33. #define LL_ROLES_CONSTANTS_H
  34. // This value includes the everyone group.
  35. const S32 MAX_ROLES = 10;
  36. enum LLRoleMemberChangeType
  37. {
  38. RMC_ADD,
  39. RMC_REMOVE,
  40. RMC_NONE
  41. };
  42. enum LLRoleChangeType
  43. {
  44. RC_UPDATE_NONE,
  45. RC_UPDATE_DATA,
  46. RC_UPDATE_POWERS,
  47. RC_UPDATE_ALL,
  48. RC_CREATE,
  49. RC_DELETE
  50. };
  51. //
  52. // Powers
  53. //
  54. // KNOWN HOLES: use these for any single bit powers you need
  55. // bit 0x1 << 41
  56. // bit 0x1 << 46
  57. // bit 0x1 << 49 and above
  58. // These powers were removed to make group roles simpler
  59. // bit 0x1 << 41 (GP_ACCOUNTING_VIEW)
  60. // bit 0x1 << 46 (GP_PROPOSAL_VIEW)
  61. const U64 GP_NO_POWERS = 0x0;
  62. const U64 GP_ALL_POWERS = 0xFFFFFFFFFFFFFFFFLL;
  63. // Membership
  64. const U64 GP_MEMBER_INVITE = 0x1 << 1; // Invite member
  65. const U64 GP_MEMBER_EJECT = 0x1 << 2; // Eject member from group
  66. const U64 GP_MEMBER_OPTIONS = 0x1 << 3; // Toggle "Open enrollment" and change "Signup Fee"
  67. const U64 GP_MEMBER_VISIBLE_IN_DIR = 0x1LL << 47;
  68. // Roles
  69. const U64 GP_ROLE_CREATE = 0x1 << 4; // Create new roles
  70. const U64 GP_ROLE_DELETE = 0x1 << 5; // Delete roles
  71. const U64 GP_ROLE_PROPERTIES = 0x1 << 6; // Change Role Names, Titles, and Descriptions (Of roles the user is in, only, or any role in group?)
  72. const U64 GP_ROLE_ASSIGN_MEMBER_LIMITED = 0x1 << 7; // Assign Member to a Role that the assigner is in
  73. const U64 GP_ROLE_ASSIGN_MEMBER = 0x1 << 8; // Assign Member to Role
  74. const U64 GP_ROLE_REMOVE_MEMBER = 0x1 << 9; // Remove Member from Role
  75. const U64 GP_ROLE_CHANGE_ACTIONS = 0x1 << 10; // Change actions a role can perform
  76. // Group Identity
  77. const U64 GP_GROUP_CHANGE_IDENTITY = 0x1 << 11; // Charter, insignia, 'Show In Group List', 'Publish on the web', 'Mature', all 'Show Member In Group Profile' checkboxes
  78. // Parcel Management
  79. const U64 GP_LAND_DEED = 0x1 << 12; // Deed Land and Buy Land for Group
  80. const U64 GP_LAND_RELEASE = 0x1 << 13; // Release Land (to Gov. Linden)
  81. const U64 GP_LAND_SET_SALE_INFO = 0x1 << 14; // Set for sale info (Toggle "For Sale", Set Price, Set Target, Toggle "Sell objects with the land")
  82. const U64 GP_LAND_DIVIDE_JOIN = 0x1 << 15; // Divide and Join Parcels
  83. // Parcel Identity
  84. const U64 GP_LAND_FIND_PLACES = 0x1 << 17; // Toggle "Show in Find Places" and Set Category.
  85. const U64 GP_LAND_CHANGE_IDENTITY = 0x1 << 18; // Change Parcel Identity: Parcel Name, Parcel Description, Snapshot, 'Publish on the web', and 'Mature' checkbox
  86. const U64 GP_LAND_SET_LANDING_POINT = 0x1 << 19; // Set Landing Point
  87. // Parcel Settings
  88. const U64 GP_LAND_CHANGE_MEDIA = 0x1 << 20; // Change Media Settings
  89. const U64 GP_LAND_EDIT = 0x1 << 21; // Toggle Edit Land
  90. const U64 GP_LAND_OPTIONS = 0x1 << 22; // Toggle Set Home Point, Fly, Outside Scripts, Create/Edit Objects, Landmark, and Damage checkboxes
  91. // Parcel Powers
  92. const U64 GP_LAND_ALLOW_EDIT_LAND = 0x1 << 23; // Bypass Edit Land Restriction
  93. const U64 GP_LAND_ALLOW_FLY = 0x1 << 24; // Bypass Fly Restriction
  94. const U64 GP_LAND_ALLOW_CREATE = 0x1 << 25; // Bypass Create/Edit Objects Restriction
  95. const U64 GP_LAND_ALLOW_LANDMARK = 0x1 << 26; // Bypass Landmark Restriction
  96. const U64 GP_LAND_ALLOW_SET_HOME = 0x1 << 28; // Bypass Set Home Point Restriction
  97. // Parcel Access
  98. const U64 GP_LAND_MANAGE_ALLOWED = 0x1 << 29; // Manage Allowed List
  99. const U64 GP_LAND_MANAGE_BANNED = 0x1 << 30; // Manage Banned List
  100. const U64 GP_LAND_MANAGE_PASSES = 0x1LL << 31; // Change Sell Pass Settings
  101. const U64 GP_LAND_ADMIN = 0x1LL << 32; // Eject and Freeze Users on the land
  102. // Parcel Content
  103. const U64 GP_LAND_RETURN_GROUP_SET = 0x1LL << 33; // Return objects on parcel that are set to group
  104. const U64 GP_LAND_RETURN_NON_GROUP = 0x1LL << 34; // Return objects on parcel that are not set to group
  105. const U64 GP_LAND_RETURN_GROUP_OWNED= 0x1LL << 48; // Return objects on parcel that are owned by the group
  106. // Select a power-bit based on an object's relationship to a parcel.
  107. const U64 GP_LAND_RETURN = GP_LAND_RETURN_GROUP_OWNED 
  108. | GP_LAND_RETURN_GROUP_SET
  109. | GP_LAND_RETURN_NON_GROUP;
  110. const U64 GP_LAND_GARDENING = 0x1LL << 35; // Parcel Gardening - plant and move linden trees
  111. // Object Management
  112. const U64 GP_OBJECT_DEED = 0x1LL << 36; // Deed Object
  113. const U64 GP_OBJECT_MANIPULATE = 0x1LL << 38; // Manipulate Group Owned Objects (Move, Copy, Mod)
  114. const U64 GP_OBJECT_SET_SALE = 0x1LL << 39; // Set Group Owned Object for Sale
  115. // Accounting
  116. const U64 GP_ACCOUNTING_ACCOUNTABLE = 0x1LL << 40; // Pay Group Liabilities and Receive Group Dividends
  117. // Notices
  118. const U64 GP_NOTICES_SEND = 0x1LL << 42; // Send Notices
  119. const U64 GP_NOTICES_RECEIVE = 0x1LL << 43; // Receive Notices and View Notice History
  120. // Proposals
  121. // TODO: _DEPRECATED suffix as part of vote removal - DEV-24856:
  122. const U64 GP_PROPOSAL_START = 0x1LL << 44; // Start Proposal
  123. // TODO: _DEPRECATED suffix as part of vote removal - DEV-24856:
  124. const U64 GP_PROPOSAL_VOTE = 0x1LL << 45; // Vote on Proposal
  125. // Group chat moderation related
  126. const U64 GP_SESSION_JOIN = 0x1LL << 16; //can join session
  127. const U64 GP_SESSION_VOICE = 0x1LL << 27; //can hear/talk
  128. const U64 GP_SESSION_MODERATOR = 0x1LL << 37; //can mute people's session
  129. const U64 GP_DEFAULT_MEMBER = GP_ACCOUNTING_ACCOUNTABLE
  130. | GP_LAND_ALLOW_SET_HOME
  131. | GP_NOTICES_RECEIVE
  132. | GP_SESSION_JOIN
  133. | GP_SESSION_VOICE
  134. ;
  135. const U64 GP_DEFAULT_OFFICER = GP_DEFAULT_MEMBER // Superset of GP_DEFAULT_MEMBER
  136. | GP_GROUP_CHANGE_IDENTITY
  137. | GP_LAND_ADMIN
  138. | GP_LAND_ALLOW_EDIT_LAND
  139. | GP_LAND_ALLOW_FLY
  140. | GP_LAND_ALLOW_CREATE
  141. | GP_LAND_ALLOW_LANDMARK
  142. | GP_LAND_CHANGE_IDENTITY
  143. | GP_LAND_CHANGE_MEDIA
  144. | GP_LAND_DEED
  145. | GP_LAND_DIVIDE_JOIN
  146. | GP_LAND_EDIT
  147. | GP_LAND_FIND_PLACES
  148. | GP_LAND_GARDENING
  149. | GP_LAND_MANAGE_ALLOWED
  150. | GP_LAND_MANAGE_BANNED
  151. | GP_LAND_MANAGE_PASSES
  152. | GP_LAND_OPTIONS
  153. | GP_LAND_RELEASE
  154. | GP_LAND_RETURN_GROUP_OWNED
  155. | GP_LAND_RETURN_GROUP_SET
  156. | GP_LAND_RETURN_NON_GROUP
  157. | GP_LAND_SET_LANDING_POINT
  158. | GP_LAND_SET_SALE_INFO
  159. | GP_MEMBER_EJECT
  160. | GP_MEMBER_INVITE
  161. | GP_MEMBER_OPTIONS
  162. | GP_MEMBER_VISIBLE_IN_DIR
  163. | GP_NOTICES_SEND
  164. | GP_OBJECT_DEED
  165. | GP_OBJECT_MANIPULATE
  166. | GP_OBJECT_SET_SALE
  167. | GP_ROLE_ASSIGN_MEMBER_LIMITED
  168. | GP_ROLE_PROPERTIES
  169. | GP_SESSION_MODERATOR
  170. ;
  171. #endif