LSL_Constants.cs 47 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  1. /*
  2. * Copyright (c) Contributors, http://opensimulator.org/
  3. * See CONTRIBUTORS.TXT for a full list of copyright holders.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions are met:
  7. * * Redistributions of source code must retain the above copyright
  8. * notice, this list of conditions and the following disclaimer.
  9. * * Redistributions in binary form must reproduce the above copyright
  10. * notice, this list of conditions and the following disclaimer in the
  11. * documentation and/or other materials provided with the distribution.
  12. * * Neither the name of the OpenSimulator Project nor the
  13. * names of its contributors may be used to endorse or promote products
  14. * derived from this software without specific prior written permission.
  15. *
  16. * THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY
  17. * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  18. * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  19. * DISCLAIMED. IN NO EVENT SHALL THE CONTRIBUTORS BE LIABLE FOR ANY
  20. * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  21. * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  22. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  23. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  24. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  25. * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  26. */
  27. using System;
  28. using vector = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Vector3;
  29. using rotation = OpenSim.Region.ScriptEngine.Shared.LSL_Types.Quaternion;
  30. using LSLInteger = OpenSim.Region.ScriptEngine.Shared.LSL_Types.LSLInteger;
  31. namespace OpenSim.Region.ScriptEngine.Shared.ScriptBase
  32. {
  33. public partial class ScriptBaseClass
  34. {
  35. // SCRIPTS CONSTANTS
  36. public static readonly LSLInteger OS_APIVERSION = 17;
  37. public static readonly LSLInteger TRUE = 1;
  38. public static readonly LSLInteger FALSE = 0;
  39. public const int STATUS_PHYSICS = 1;
  40. public const int STATUS_ROTATE_X = 2;
  41. public const int STATUS_ROTATE_Y = 4;
  42. public const int STATUS_ROTATE_Z = 8;
  43. public const int STATUS_PHANTOM = 16;
  44. public const int STATUS_SANDBOX = 32;
  45. public const int STATUS_BLOCK_GRAB = 64;
  46. public const int STATUS_DIE_AT_EDGE = 128;
  47. public const int STATUS_RETURN_AT_EDGE = 256;
  48. public const int STATUS_CAST_SHADOWS = 512;
  49. public const int STATUS_BLOCK_GRAB_OBJECT = 1024;
  50. public const int AGENT = 1;
  51. public const int AGENT_BY_LEGACY_NAME = 1;
  52. public const int AGENT_BY_USERNAME = 0x10;
  53. public const int NPC = 0x20;
  54. //ApiDesc Objects running a script or physically moving
  55. public const int ACTIVE = 2;
  56. public const int PASSIVE = 4;
  57. public const int SCRIPTED = 8;
  58. public const int CONTROL_FWD = 1;
  59. public const int CONTROL_BACK = 2;
  60. public const int CONTROL_LEFT = 4;
  61. public const int CONTROL_RIGHT = 8;
  62. public const int CONTROL_UP = 16;
  63. public const int CONTROL_DOWN = 32;
  64. public const int CONTROL_ROT_LEFT = 256;
  65. public const int CONTROL_ROT_RIGHT = 512;
  66. public const int CONTROL_LBUTTON = 268435456;
  67. public const int CONTROL_ML_LBUTTON = 1073741824;
  68. //Permissions
  69. public const int PERMISSION_DEBIT = 0x02;
  70. public const int PERMISSION_TAKE_CONTROLS = 0x04;
  71. public const int PERMISSION_REMAP_CONTROLS = 0x08;
  72. public const int PERMISSION_TRIGGER_ANIMATION = 0x010;
  73. public const int PERMISSION_ATTACH = 0x20;
  74. public const int PERMISSION_RELEASE_OWNERSHIP = 0x40;
  75. public const int PERMISSION_CHANGE_LINKS = 0x80;
  76. public const int PERMISSION_CHANGE_JOINTS = 0x100;
  77. public const int PERMISSION_CHANGE_PERMISSIONS = 0x200;
  78. public const int PERMISSION_TRACK_CAMERA = 0x400;
  79. public const int PERMISSION_CONTROL_CAMERA = 0x800;
  80. public const int PERMISSION_TELEPORT = 0x1000;
  81. public const int PERMISSION_SILENT_ESTATE_MANAGEMENT = 0x4000;
  82. public const int PERMISSION_OVERRIDE_ANIMATIONS = 0x8000;
  83. public const int PERMISSION_RETURN_OBJECTS = 0x10000;
  84. public const int AGENT_FLYING = 0x1;
  85. //ApiDesc The agent has attachments
  86. public const int AGENT_ATTACHMENTS = 0x2;
  87. //ApiDesc The agent has scripted attachments
  88. public const int AGENT_SCRIPTED = 0x4;
  89. public const int AGENT_MOUSELOOK = 0x8;
  90. public const int AGENT_SITTING = 0x10;
  91. public const int AGENT_ON_OBJECT = 0x20;
  92. public const int AGENT_AWAY = 0x40;
  93. public const int AGENT_WALKING = 0x80;
  94. public const int AGENT_IN_AIR = 0x100;
  95. public const int AGENT_TYPING = 0x200;
  96. public const int AGENT_CROUCHING = 0x400;
  97. public const int AGENT_BUSY = 0x800;
  98. public const int AGENT_ALWAYS_RUN = 0x1000;
  99. public const int AGENT_AUTOPILOT = 0x2000;
  100. public const int AGENT_MALE = 0x40000000;
  101. //Particle Systems
  102. public const int PSYS_PART_INTERP_COLOR_MASK = 1;
  103. public const int PSYS_PART_INTERP_SCALE_MASK = 2;
  104. public const int PSYS_PART_BOUNCE_MASK = 4;
  105. public const int PSYS_PART_WIND_MASK = 8;
  106. public const int PSYS_PART_FOLLOW_SRC_MASK = 16;
  107. public const int PSYS_PART_FOLLOW_VELOCITY_MASK = 32;
  108. public const int PSYS_PART_TARGET_POS_MASK = 64;
  109. public const int PSYS_PART_TARGET_LINEAR_MASK = 128;
  110. public const int PSYS_PART_EMISSIVE_MASK = 256;
  111. public const int PSYS_PART_RIBBON_MASK = 1024;
  112. public const int PSYS_PART_FLAGS = 0;
  113. public const int PSYS_PART_START_COLOR = 1;
  114. public const int PSYS_PART_START_ALPHA = 2;
  115. public const int PSYS_PART_END_COLOR = 3;
  116. public const int PSYS_PART_END_ALPHA = 4;
  117. public const int PSYS_PART_START_SCALE = 5;
  118. public const int PSYS_PART_END_SCALE = 6;
  119. public const int PSYS_PART_MAX_AGE = 7;
  120. public const int PSYS_SRC_ACCEL = 8;
  121. public const int PSYS_SRC_PATTERN = 9;
  122. public const int PSYS_SRC_INNERANGLE = 10;
  123. public const int PSYS_SRC_OUTERANGLE = 11;
  124. public const int PSYS_SRC_TEXTURE = 12;
  125. public const int PSYS_SRC_BURST_RATE = 13;
  126. public const int PSYS_SRC_BURST_PART_COUNT = 15;
  127. public const int PSYS_SRC_BURST_RADIUS = 16;
  128. public const int PSYS_SRC_BURST_SPEED_MIN = 17;
  129. public const int PSYS_SRC_BURST_SPEED_MAX = 18;
  130. public const int PSYS_SRC_MAX_AGE = 19;
  131. public const int PSYS_SRC_TARGET_KEY = 20;
  132. public const int PSYS_SRC_OMEGA = 21;
  133. public const int PSYS_SRC_ANGLE_BEGIN = 22;
  134. public const int PSYS_SRC_ANGLE_END = 23;
  135. public const int PSYS_PART_BLEND_FUNC_SOURCE = 24;
  136. public const int PSYS_PART_BLEND_FUNC_DEST = 25;
  137. public const int PSYS_PART_START_GLOW = 26;
  138. public const int PSYS_PART_END_GLOW = 27;
  139. public const int PSYS_PART_BF_ONE = 0;
  140. public const int PSYS_PART_BF_ZERO = 1;
  141. public const int PSYS_PART_BF_DEST_COLOR = 2;
  142. public const int PSYS_PART_BF_SOURCE_COLOR = 3;
  143. public const int PSYS_PART_BF_ONE_MINUS_DEST_COLOR = 4;
  144. public const int PSYS_PART_BF_ONE_MINUS_SOURCE_COLOR = 5;
  145. public const int PSYS_PART_BF_SOURCE_ALPHA = 7;
  146. public const int PSYS_PART_BF_ONE_MINUS_SOURCE_ALPHA = 9;
  147. public const int PSYS_SRC_PATTERN_DROP = 1;
  148. public const int PSYS_SRC_PATTERN_EXPLODE = 2;
  149. public const int PSYS_SRC_PATTERN_ANGLE = 4;
  150. public const int PSYS_SRC_PATTERN_ANGLE_CONE = 8;
  151. public const int PSYS_SRC_PATTERN_ANGLE_CONE_EMPTY = 16;
  152. public const int VEHICLE_TYPE_NONE = 0;
  153. public const int VEHICLE_TYPE_SLED = 1;
  154. public const int VEHICLE_TYPE_CAR = 2;
  155. public const int VEHICLE_TYPE_BOAT = 3;
  156. public const int VEHICLE_TYPE_AIRPLANE = 4;
  157. public const int VEHICLE_TYPE_BALLOON = 5;
  158. public const int VEHICLE_LINEAR_FRICTION_TIMESCALE = 16;
  159. public const int VEHICLE_ANGULAR_FRICTION_TIMESCALE = 17;
  160. public const int VEHICLE_LINEAR_MOTOR_DIRECTION = 18;
  161. public const int VEHICLE_LINEAR_MOTOR_OFFSET = 20;
  162. public const int VEHICLE_ANGULAR_MOTOR_DIRECTION = 19;
  163. public const int VEHICLE_HOVER_HEIGHT = 24;
  164. public const int VEHICLE_HOVER_EFFICIENCY = 25;
  165. public const int VEHICLE_HOVER_TIMESCALE = 26;
  166. public const int VEHICLE_BUOYANCY = 27;
  167. public const int VEHICLE_LINEAR_DEFLECTION_EFFICIENCY = 28;
  168. public const int VEHICLE_LINEAR_DEFLECTION_TIMESCALE = 29;
  169. public const int VEHICLE_LINEAR_MOTOR_TIMESCALE = 30;
  170. public const int VEHICLE_LINEAR_MOTOR_DECAY_TIMESCALE = 31;
  171. public const int VEHICLE_ANGULAR_DEFLECTION_EFFICIENCY = 32;
  172. public const int VEHICLE_ANGULAR_DEFLECTION_TIMESCALE = 33;
  173. public const int VEHICLE_ANGULAR_MOTOR_TIMESCALE = 34;
  174. public const int VEHICLE_ANGULAR_MOTOR_DECAY_TIMESCALE = 35;
  175. public const int VEHICLE_VERTICAL_ATTRACTION_EFFICIENCY = 36;
  176. public const int VEHICLE_VERTICAL_ATTRACTION_TIMESCALE = 37;
  177. public const int VEHICLE_BANKING_EFFICIENCY = 38;
  178. public const int VEHICLE_BANKING_MIX = 39;
  179. public const int VEHICLE_BANKING_TIMESCALE = 40;
  180. public const int VEHICLE_REFERENCE_FRAME = 44;
  181. public const int VEHICLE_RANGE_BLOCK = 45;
  182. public const int VEHICLE_ROLL_FRAME = 46;
  183. public const int VEHICLE_FLAG_NO_DEFLECTION_UP = 1;
  184. public const int VEHICLE_FLAG_NO_FLY_UP = 1; //legacy
  185. public const int VEHICLE_FLAG_LIMIT_ROLL_ONLY = 2;
  186. public const int VEHICLE_FLAG_HOVER_WATER_ONLY = 4;
  187. public const int VEHICLE_FLAG_HOVER_TERRAIN_ONLY = 8;
  188. public const int VEHICLE_FLAG_HOVER_GLOBAL_HEIGHT = 16;
  189. public const int VEHICLE_FLAG_HOVER_UP_ONLY = 32;
  190. public const int VEHICLE_FLAG_LIMIT_MOTOR_UP = 64;
  191. public const int VEHICLE_FLAG_MOUSELOOK_STEER = 128;
  192. public const int VEHICLE_FLAG_MOUSELOOK_BANK = 256;
  193. public const int VEHICLE_FLAG_CAMERA_DECOUPLED = 512;
  194. public const int VEHICLE_FLAG_NO_X = 1024;
  195. public const int VEHICLE_FLAG_NO_Y = 2048;
  196. public const int VEHICLE_FLAG_NO_Z = 4096;
  197. public const int VEHICLE_FLAG_LOCK_HOVER_HEIGHT = 8192;
  198. public const int VEHICLE_FLAG_NO_DEFLECTION = 16392;
  199. public const int VEHICLE_FLAG_LOCK_ROTATION = 32784;
  200. public const int INVENTORY_ALL = -1;
  201. public const int INVENTORY_NONE = -1;
  202. public const int INVENTORY_TEXTURE = 0;
  203. public const int INVENTORY_SOUND = 1;
  204. public const int INVENTORY_LANDMARK = 3;
  205. public const int INVENTORY_CLOTHING = 5;
  206. public const int INVENTORY_OBJECT = 6;
  207. public const int INVENTORY_NOTECARD = 7;
  208. public const int INVENTORY_SCRIPT = 10;
  209. public const int INVENTORY_BODYPART = 13;
  210. public const int INVENTORY_ANIMATION = 20;
  211. public const int INVENTORY_GESTURE = 21;
  212. public const int INVENTORY_SETTING = 56;
  213. public const int ATTACH_CHEST = 1;
  214. public const int ATTACH_HEAD = 2;
  215. public const int ATTACH_LSHOULDER = 3;
  216. public const int ATTACH_RSHOULDER = 4;
  217. public const int ATTACH_LHAND = 5;
  218. public const int ATTACH_RHAND = 6;
  219. public const int ATTACH_LFOOT = 7;
  220. public const int ATTACH_RFOOT = 8;
  221. public const int ATTACH_BACK = 9;
  222. public const int ATTACH_PELVIS = 10;
  223. public const int ATTACH_MOUTH = 11;
  224. public const int ATTACH_CHIN = 12;
  225. public const int ATTACH_LEAR = 13;
  226. public const int ATTACH_REAR = 14;
  227. public const int ATTACH_LEYE = 15;
  228. public const int ATTACH_REYE = 16;
  229. public const int ATTACH_NOSE = 17;
  230. public const int ATTACH_RUARM = 18;
  231. public const int ATTACH_RLARM = 19;
  232. public const int ATTACH_LUARM = 20;
  233. public const int ATTACH_LLARM = 21;
  234. public const int ATTACH_RHIP = 22;
  235. public const int ATTACH_RULEG = 23;
  236. public const int ATTACH_RLLEG = 24;
  237. public const int ATTACH_LHIP = 25;
  238. public const int ATTACH_LULEG = 26;
  239. public const int ATTACH_LLLEG = 27;
  240. public const int ATTACH_BELLY = 28;
  241. public const int ATTACH_RPEC = 29;
  242. public const int ATTACH_LPEC = 30;
  243. public const int ATTACH_LEFT_PEC = 29; // Same value as ATTACH_RPEC, see https://jira.secondlife.com/browse/SVC-580
  244. public const int ATTACH_RIGHT_PEC = 30; // Same value as ATTACH_LPEC, see https://jira.secondlife.com/browse/SVC-580
  245. public const int ATTACH_HUD_CENTER_2 = 31;
  246. public const int ATTACH_HUD_TOP_RIGHT = 32;
  247. public const int ATTACH_HUD_TOP_CENTER = 33;
  248. public const int ATTACH_HUD_TOP_LEFT = 34;
  249. public const int ATTACH_HUD_CENTER_1 = 35;
  250. public const int ATTACH_HUD_BOTTOM_LEFT = 36;
  251. public const int ATTACH_HUD_BOTTOM = 37;
  252. public const int ATTACH_HUD_BOTTOM_RIGHT = 38;
  253. public const int ATTACH_NECK = 39;
  254. public const int ATTACH_AVATAR_CENTER = 40;
  255. public const int ATTACH_LHAND_RING1 = 41;
  256. public const int ATTACH_RHAND_RING1 = 42;
  257. public const int ATTACH_TAIL_BASE = 43;
  258. public const int ATTACH_TAIL_TIP = 44;
  259. public const int ATTACH_LWING = 45;
  260. public const int ATTACH_RWING = 46;
  261. public const int ATTACH_FACE_JAW = 47;
  262. public const int ATTACH_FACE_LEAR = 48;
  263. public const int ATTACH_FACE_REAR = 49;
  264. public const int ATTACH_FACE_LEYE = 50;
  265. public const int ATTACH_FACE_REYE = 51;
  266. public const int ATTACH_FACE_TONGUE = 52;
  267. public const int ATTACH_GROIN = 53;
  268. public const int ATTACH_HIND_LFOOT = 54;
  269. public const int ATTACH_HIND_RFOOT = 55;
  270. #region osMessageAttachments constants
  271. /// <summary>
  272. /// Instructs osMessageAttachements to send the message to attachments
  273. /// on every point.
  274. /// </summary>
  275. /// <remarks>
  276. /// One might expect this to be named OS_ATTACH_ALL, but then one might
  277. /// also expect functions designed to attach or detach or get
  278. /// attachments to work with it too. Attaching a no-copy item to
  279. /// many attachments could be dangerous.
  280. /// when combined with OS_ATTACH_MSG_INVERT_POINTS, will prevent the
  281. /// message from being sent.
  282. /// if combined with OS_ATTACH_MSG_OBJECT_CREATOR or
  283. /// OS_ATTACH_MSG_SCRIPT_CREATOR, could result in no message being
  284. /// sent- this is expected behaviour.
  285. /// </remarks>
  286. public const int OS_ATTACH_MSG_ALL = -65535;
  287. /// <summary>
  288. /// Instructs osMessageAttachements to invert how the attachment points
  289. /// list should be treated (e.g. go from inclusive operation to
  290. /// exclusive operation).
  291. /// </summary>
  292. /// <remarks>
  293. /// This might be used if you want to deliver a message to one set of
  294. /// attachments and a different message to everything else. With
  295. /// this flag, you only need to build one explicit list for both calls.
  296. /// </remarks>
  297. public const int OS_ATTACH_MSG_INVERT_POINTS = 1;
  298. /// <summary>
  299. /// Instructs osMessageAttachments to only send the message to
  300. /// attachments with a CreatorID that matches the host object CreatorID
  301. /// </summary>
  302. /// <remarks>
  303. /// This would be used if distributed in an object vendor/updater server.
  304. /// </remarks>
  305. public const int OS_ATTACH_MSG_OBJECT_CREATOR = 2;
  306. /// <summary>
  307. /// Instructs osMessageAttachments to only send the message to
  308. /// attachments with a CreatorID that matches the sending script CreatorID
  309. /// </summary>
  310. /// <remarks>
  311. /// This might be used if the script is distributed independently of a
  312. /// containing object.
  313. /// </remarks>
  314. public const int OS_ATTACH_MSG_SCRIPT_CREATOR = 4;
  315. #endregion
  316. public const int LAND_LEVEL = 0;
  317. public const int LAND_RAISE = 1;
  318. public const int LAND_LOWER = 2;
  319. public const int LAND_SMOOTH = 3;
  320. public const int LAND_NOISE = 4;
  321. public const int LAND_REVERT = 5;
  322. public const int LAND_SMALL_BRUSH = 1;
  323. public const int LAND_MEDIUM_BRUSH = 2;
  324. public const int LAND_LARGE_BRUSH = 3;
  325. //Agent Dataserver
  326. public const int DATA_ONLINE = 1;
  327. public const int DATA_NAME = 2;
  328. public const int DATA_BORN = 3;
  329. public const int DATA_RATING = 4;
  330. public const int DATA_SIM_POS = 5;
  331. public const int DATA_SIM_STATUS = 6;
  332. public const int DATA_SIM_RATING = 7;
  333. public const int DATA_PAYINFO = 8;
  334. public const int DATA_SIM_RELEASE = 128;
  335. public const int ANIM_ON = 1;
  336. public const int LOOP = 2;
  337. public const int REVERSE = 4;
  338. public const int PING_PONG = 8;
  339. public const int SMOOTH = 16;
  340. public const int ROTATE = 32;
  341. public const int SCALE = 64;
  342. public const int ALL_SIDES = -1;
  343. // LINK flags
  344. public const int LINK_SET = -1;
  345. public const int LINK_ROOT = 1;
  346. public const int LINK_ALL_OTHERS = -2;
  347. public const int LINK_ALL_CHILDREN = -3;
  348. public const int LINK_THIS = -4;
  349. public const int CHANGED_INVENTORY = 1;
  350. public const int CHANGED_COLOR = 2;
  351. public const int CHANGED_SHAPE = 4;
  352. public const int CHANGED_SCALE = 8;
  353. public const int CHANGED_TEXTURE = 16;
  354. public const int CHANGED_LINK = 32;
  355. public const int CHANGED_ALLOWED_DROP = 64;
  356. public const int CHANGED_OWNER = 128;
  357. public const int CHANGED_REGION = 256;
  358. public const int CHANGED_TELEPORT = 512;
  359. public const int CHANGED_REGION_RESTART = 1024;
  360. public const int CHANGED_REGION_START = 1024; //LL Changed the constant from CHANGED_REGION_RESTART
  361. public const int CHANGED_MEDIA = 2048;
  362. //ApiDesc opensim specific
  363. public const int CHANGED_ANIMATION = 16384;
  364. //ApiDesc opensim specific
  365. public const int CHANGED_POSITION = 32768;
  366. public const int TYPE_INVALID = 0;
  367. public const int TYPE_INTEGER = 1;
  368. public const int TYPE_FLOAT = 2;
  369. public const int TYPE_STRING = 3;
  370. public const int TYPE_KEY = 4;
  371. public const int TYPE_VECTOR = 5;
  372. public const int TYPE_ROTATION = 6;
  373. //XML RPC Remote Data Channel
  374. public const int REMOTE_DATA_CHANNEL = 1;
  375. public const int REMOTE_DATA_REQUEST = 2;
  376. public const int REMOTE_DATA_REPLY = 3;
  377. //llHTTPRequest
  378. public const int HTTP_METHOD = 0;
  379. public const int HTTP_MIMETYPE = 1;
  380. public const int HTTP_BODY_MAXLENGTH = 2;
  381. public const int HTTP_VERIFY_CERT = 3;
  382. public const int HTTP_VERBOSE_THROTTLE = 4;
  383. public const int HTTP_CUSTOM_HEADER = 5;
  384. public const int HTTP_PRAGMA_NO_CACHE = 6;
  385. // llSetContentType
  386. public const int CONTENT_TYPE_TEXT = 0; //text/plain
  387. public const int CONTENT_TYPE_HTML = 1; //text/html
  388. public const int CONTENT_TYPE_XML = 2; //application/xml
  389. public const int CONTENT_TYPE_XHTML = 3; //application/xhtml+xml
  390. public const int CONTENT_TYPE_ATOM = 4; //application/atom+xml
  391. public const int CONTENT_TYPE_JSON = 5; //application/json
  392. public const int CONTENT_TYPE_LLSD = 6; //application/llsd+xml
  393. public const int CONTENT_TYPE_FORM = 7; //application/x-www-form-urlencoded
  394. public const int CONTENT_TYPE_RSS = 8; //application/rss+xml
  395. //parameters comand flags
  396. public const int PRIM_MATERIAL = 2;
  397. public const int PRIM_PHYSICS = 3;
  398. public const int PRIM_TEMP_ON_REZ = 4;
  399. public const int PRIM_PHANTOM = 5;
  400. public const int PRIM_POSITION = 6;
  401. public const int PRIM_SIZE = 7;
  402. public const int PRIM_ROTATION = 8;
  403. public const int PRIM_TYPE = 9;
  404. // gap 10-16
  405. public const int PRIM_TEXTURE = 17;
  406. public const int PRIM_COLOR = 18;
  407. public const int PRIM_BUMP_SHINY = 19;
  408. public const int PRIM_FULLBRIGHT = 20;
  409. public const int PRIM_FLEXIBLE = 21;
  410. public const int PRIM_TEXGEN = 22;
  411. public const int PRIM_POINT_LIGHT = 23; // Huh?
  412. //ApiDesc not supported
  413. public const int PRIM_CAST_SHADOWS = 24; // Not implemented, here for completeness sake
  414. public const int PRIM_GLOW = 25;
  415. public const int PRIM_TEXT = 26;
  416. public const int PRIM_NAME = 27;
  417. public const int PRIM_DESC = 28;
  418. public const int PRIM_ROT_LOCAL = 29;
  419. public const int PRIM_PHYSICS_SHAPE_TYPE = 30;
  420. public const int PRIM_PHYSICS_MATERIAL = 31; // apparently not on SL wiki
  421. public const int PRIM_OMEGA = 32;
  422. public const int PRIM_POS_LOCAL = 33;
  423. public const int PRIM_LINK_TARGET = 34;
  424. public const int PRIM_SLICE = 35;
  425. public const int PRIM_SPECULAR = 36;
  426. public const int PRIM_NORMAL = 37;
  427. public const int PRIM_ALPHA_MODE = 38;
  428. //ApiDesc not supported
  429. public const int PRIM_ALLOW_UNSIT = 39; // experiences related. unsupported
  430. //ApiDesc not supported
  431. public const int PRIM_SCRIPTED_SIT_ONLY = 40; // experiences related. unsupported
  432. public const int PRIM_SIT_TARGET = 41;
  433. // parameters
  434. public const int PRIM_ALPHA_MODE_NONE = 0;
  435. public const int PRIM_ALPHA_MODE_BLEND = 1;
  436. public const int PRIM_ALPHA_MODE_MASK = 2;
  437. public const int PRIM_ALPHA_MODE_EMISSIVE = 3;
  438. public const int PRIM_TEXGEN_DEFAULT = 0;
  439. public const int PRIM_TEXGEN_PLANAR = 1;
  440. public const int PRIM_TYPE_BOX = 0;
  441. public const int PRIM_TYPE_CYLINDER = 1;
  442. public const int PRIM_TYPE_PRISM = 2;
  443. public const int PRIM_TYPE_SPHERE = 3;
  444. public const int PRIM_TYPE_TORUS = 4;
  445. public const int PRIM_TYPE_TUBE = 5;
  446. public const int PRIM_TYPE_RING = 6;
  447. public const int PRIM_TYPE_SCULPT = 7;
  448. public const int PRIM_HOLE_DEFAULT = 0;
  449. public const int PRIM_HOLE_CIRCLE = 16;
  450. public const int PRIM_HOLE_SQUARE = 32;
  451. public const int PRIM_HOLE_TRIANGLE = 48;
  452. public const int PRIM_MATERIAL_STONE = 0;
  453. public const int PRIM_MATERIAL_METAL = 1;
  454. public const int PRIM_MATERIAL_GLASS = 2;
  455. public const int PRIM_MATERIAL_WOOD = 3;
  456. public const int PRIM_MATERIAL_FLESH = 4;
  457. public const int PRIM_MATERIAL_PLASTIC = 5;
  458. public const int PRIM_MATERIAL_RUBBER = 6;
  459. public const int PRIM_MATERIAL_LIGHT = 7;
  460. public const int PRIM_SHINY_NONE = 0;
  461. public const int PRIM_SHINY_LOW = 1;
  462. public const int PRIM_SHINY_MEDIUM = 2;
  463. public const int PRIM_SHINY_HIGH = 3;
  464. public const int PRIM_BUMP_NONE = 0;
  465. public const int PRIM_BUMP_BRIGHT = 1;
  466. public const int PRIM_BUMP_DARK = 2;
  467. public const int PRIM_BUMP_WOOD = 3;
  468. public const int PRIM_BUMP_BARK = 4;
  469. public const int PRIM_BUMP_BRICKS = 5;
  470. public const int PRIM_BUMP_CHECKER = 6;
  471. public const int PRIM_BUMP_CONCRETE = 7;
  472. public const int PRIM_BUMP_TILE = 8;
  473. public const int PRIM_BUMP_STONE = 9;
  474. public const int PRIM_BUMP_DISKS = 10;
  475. public const int PRIM_BUMP_GRAVEL = 11;
  476. public const int PRIM_BUMP_BLOBS = 12;
  477. public const int PRIM_BUMP_SIDING = 13;
  478. public const int PRIM_BUMP_LARGETILE = 14;
  479. public const int PRIM_BUMP_STUCCO = 15;
  480. public const int PRIM_BUMP_SUCTION = 16;
  481. public const int PRIM_BUMP_WEAVE = 17;
  482. public const int PRIM_SCULPT_TYPE_SPHERE = 1;
  483. public const int PRIM_SCULPT_TYPE_TORUS = 2;
  484. public const int PRIM_SCULPT_TYPE_PLANE = 3;
  485. public const int PRIM_SCULPT_TYPE_CYLINDER = 4;
  486. public const int PRIM_SCULPT_FLAG_INVERT = 0x40;
  487. public const int PRIM_SCULPT_FLAG_MIRROR = 0x80;
  488. //ApiDesc Auxiliar to clear flags keeping scultp type
  489. public const int PRIM_SCULPT_TYPE_MASK = 0x07; // auxiliar mask
  490. public const int PRIM_PHYSICS_SHAPE_PRIM = 0;
  491. public const int PRIM_PHYSICS_SHAPE_NONE = 1;
  492. public const int PRIM_PHYSICS_SHAPE_CONVEX = 2;
  493. public const int PROFILE_NONE = 0;
  494. public const int PROFILE_SCRIPT_MEMORY = 1;
  495. public const int MASK_BASE = 0;
  496. public const int MASK_OWNER = 1;
  497. public const int MASK_GROUP = 2;
  498. public const int MASK_EVERYONE = 3;
  499. public const int MASK_NEXT = 4;
  500. public const int PERM_TRANSFER = 0x2000;
  501. public const int PERM_MODIFY = 0x4000;
  502. public const int PERM_COPY = 0x8000;
  503. public const int PERM_MOVE = 0x80000;
  504. public const int PERM_ALL = 0x7fffffff;
  505. public const int PARCEL_MEDIA_COMMAND_STOP = 0;
  506. public const int PARCEL_MEDIA_COMMAND_PAUSE = 1;
  507. public const int PARCEL_MEDIA_COMMAND_PLAY = 2;
  508. public const int PARCEL_MEDIA_COMMAND_LOOP = 3;
  509. public const int PARCEL_MEDIA_COMMAND_TEXTURE = 4;
  510. public const int PARCEL_MEDIA_COMMAND_URL = 5;
  511. public const int PARCEL_MEDIA_COMMAND_TIME = 6;
  512. public const int PARCEL_MEDIA_COMMAND_AGENT = 7;
  513. public const int PARCEL_MEDIA_COMMAND_UNLOAD = 8;
  514. public const int PARCEL_MEDIA_COMMAND_AUTO_ALIGN = 9;
  515. public const int PARCEL_MEDIA_COMMAND_TYPE = 10;
  516. public const int PARCEL_MEDIA_COMMAND_SIZE = 11;
  517. public const int PARCEL_MEDIA_COMMAND_DESC = 12;
  518. public const int PARCEL_FLAG_ALLOW_FLY = 0x1; // parcel allows flying
  519. public const int PARCEL_FLAG_ALLOW_SCRIPTS = 0x2; // parcel allows outside scripts
  520. public const int PARCEL_FLAG_ALLOW_LANDMARK = 0x8; // parcel allows landmarks to be created
  521. public const int PARCEL_FLAG_ALLOW_TERRAFORM = 0x10; // parcel allows anyone to terraform the land
  522. public const int PARCEL_FLAG_ALLOW_DAMAGE = 0x20; // parcel allows damage
  523. public const int PARCEL_FLAG_ALLOW_CREATE_OBJECTS = 0x40; // parcel allows anyone to create objects
  524. public const int PARCEL_FLAG_USE_ACCESS_GROUP = 0x100; // parcel limits access to a group
  525. public const int PARCEL_FLAG_USE_ACCESS_LIST = 0x200; // parcel limits access to a list of residents
  526. public const int PARCEL_FLAG_USE_BAN_LIST = 0x400; // parcel uses a ban list, including restricting access based on payment info
  527. public const int PARCEL_FLAG_USE_LAND_PASS_LIST = 0x800; // parcel allows passes to be purchased
  528. public const int PARCEL_FLAG_LOCAL_SOUND_ONLY = 0x8000; // parcel restricts spatialized sound to the parcel
  529. public const int PARCEL_FLAG_RESTRICT_PUSHOBJECT = 0x200000; // parcel restricts llPushObject
  530. public const int PARCEL_FLAG_ALLOW_GROUP_SCRIPTS = 0x2000000; // parcel allows scripts owned by group
  531. public const int PARCEL_FLAG_ALLOW_CREATE_GROUP_OBJECTS = 0x4000000; // parcel allows group object creation
  532. public const int PARCEL_FLAG_ALLOW_ALL_OBJECT_ENTRY = 0x8000000; // parcel allows objects owned by any user to enter
  533. public const int PARCEL_FLAG_ALLOW_GROUP_OBJECT_ENTRY = 0x10000000; // parcel allows with the same group to enter
  534. public const int REGION_FLAG_ALLOW_DAMAGE = 0x1; // region is entirely damage enabled
  535. public const int REGION_FLAG_FIXED_SUN = 0x10; // region has a fixed sun position
  536. public const int REGION_FLAG_BLOCK_TERRAFORM = 0x40; // region terraforming disabled
  537. public const int REGION_FLAG_SANDBOX = 0x100; // region is a sandbox
  538. public const int REGION_FLAG_DISABLE_COLLISIONS = 0x1000; // region has disabled collisions
  539. public const int REGION_FLAG_DISABLE_PHYSICS = 0x4000; // region has disabled physics
  540. public const int REGION_FLAG_BLOCK_FLY = 0x80000; // region blocks flying
  541. public const int REGION_FLAG_ALLOW_DIRECT_TELEPORT = 0x100000; // region allows direct teleports
  542. public const int REGION_FLAG_RESTRICT_PUSHOBJECT = 0x400000; // region restricts llPushObject
  543. //llManageEstateAccess
  544. public const int ESTATE_ACCESS_ALLOWED_AGENT_ADD = 0;
  545. public const int ESTATE_ACCESS_ALLOWED_AGENT_REMOVE = 1;
  546. public const int ESTATE_ACCESS_ALLOWED_GROUP_ADD = 2;
  547. public const int ESTATE_ACCESS_ALLOWED_GROUP_REMOVE = 3;
  548. public const int ESTATE_ACCESS_BANNED_AGENT_ADD = 4;
  549. public const int ESTATE_ACCESS_BANNED_AGENT_REMOVE = 5;
  550. public static readonly LSLInteger PAY_HIDE = -1;
  551. public static readonly LSLInteger PAY_DEFAULT = -2;
  552. public const string NULL_KEY = "00000000-0000-0000-0000-000000000000";
  553. public const string EOF = "\n\n\n";
  554. public const double PI = 3.14159274f;
  555. public const double TWO_PI = 6.28318548f;
  556. public const double PI_BY_TWO = 1.57079637f;
  557. public const double DEG_TO_RAD = 0.01745329238f;
  558. public const double RAD_TO_DEG = 57.29578f;
  559. public const double SQRT2 = 1.414213538f;
  560. public const int STRING_TRIM_HEAD = 1;
  561. public const int STRING_TRIM_TAIL = 2;
  562. public const int STRING_TRIM = 3;
  563. public const int LIST_STAT_RANGE = 0;
  564. public const int LIST_STAT_MIN = 1;
  565. public const int LIST_STAT_MAX = 2;
  566. public const int LIST_STAT_MEAN = 3;
  567. public const int LIST_STAT_MEDIAN = 4;
  568. public const int LIST_STAT_STD_DEV = 5;
  569. public const int LIST_STAT_SUM = 6;
  570. public const int LIST_STAT_SUM_SQUARES = 7;
  571. public const int LIST_STAT_NUM_COUNT = 8;
  572. public const int LIST_STAT_GEOMETRIC_MEAN = 9;
  573. public const int LIST_STAT_HARMONIC_MEAN = 100;
  574. //ParcelPrim Categories
  575. public const int PARCEL_COUNT_TOTAL = 0;
  576. public const int PARCEL_COUNT_OWNER = 1;
  577. public const int PARCEL_COUNT_GROUP = 2;
  578. public const int PARCEL_COUNT_OTHER = 3;
  579. public const int PARCEL_COUNT_SELECTED = 4;
  580. public const int PARCEL_COUNT_TEMP = 5;
  581. public const int DEBUG_CHANNEL = 0x7FFFFFFF;
  582. public const int PUBLIC_CHANNEL = 0x00000000;
  583. // Constants for llGetObjectDetails
  584. public const int OBJECT_UNKNOWN_DETAIL = -1;
  585. public const int OBJECT_NAME = 1;
  586. public const int OBJECT_DESC = 2;
  587. public const int OBJECT_POS = 3;
  588. public const int OBJECT_ROT = 4;
  589. public const int OBJECT_VELOCITY = 5;
  590. public const int OBJECT_OWNER = 6;
  591. public const int OBJECT_GROUP = 7;
  592. public const int OBJECT_CREATOR = 8;
  593. public const int OBJECT_RUNNING_SCRIPT_COUNT = 9;
  594. public const int OBJECT_TOTAL_SCRIPT_COUNT = 10;
  595. public const int OBJECT_SCRIPT_MEMORY = 11;
  596. public const int OBJECT_SCRIPT_TIME = 12;
  597. public const int OBJECT_PRIM_EQUIVALENCE = 13;
  598. public const int OBJECT_SERVER_COST = 14;
  599. public const int OBJECT_STREAMING_COST = 15;
  600. public const int OBJECT_PHYSICS_COST = 16;
  601. public const int OBJECT_CHARACTER_TIME = 17;
  602. public const int OBJECT_ROOT = 18;
  603. public const int OBJECT_ATTACHED_POINT = 19;
  604. public const int OBJECT_PATHFINDING_TYPE = 20;
  605. public const int OBJECT_PHYSICS = 21;
  606. public const int OBJECT_PHANTOM = 22;
  607. public const int OBJECT_TEMP_ON_REZ = 23;
  608. public const int OBJECT_RENDER_WEIGHT = 24;
  609. public const int OBJECT_HOVER_HEIGHT = 25;
  610. public const int OBJECT_BODY_SHAPE_TYPE = 26;
  611. public const int OBJECT_LAST_OWNER_ID = 27;
  612. public const int OBJECT_CLICK_ACTION = 28;
  613. public const int OBJECT_OMEGA = 29;
  614. public const int OBJECT_PRIM_COUNT = 30;
  615. public const int OBJECT_TOTAL_INVENTORY_COUNT = 31;
  616. public const int OBJECT_REZZER_KEY = 32;
  617. public const int OBJECT_GROUP_TAG = 33;
  618. public const int OBJECT_TEMP_ATTACHED = 34;
  619. public const int OBJECT_ATTACHED_SLOTS_AVAILABLE = 35;
  620. public const int OBJECT_CREATION_TIME = 36;
  621. public const int OBJECT_SELECT_COUNT = 37;
  622. public const int OBJECT_SIT_COUNT = 38;
  623. public const int OBJECT_ANIMATED_COUNT = 39;
  624. public const int OBJECT_ANIMATED_SLOTS_AVAILABLE = 40;
  625. // Pathfinding types
  626. //ApiDesc not supported
  627. public const int OPT_OTHER = -1;
  628. //ApiDesc not supported
  629. public const int OPT_LEGACY_LINKSET = 0;
  630. //ApiDesc not supported
  631. public const int OPT_AVATAR = 1;
  632. //ApiDesc not supported
  633. public const int OPT_CHARACTER = 2;
  634. //ApiDesc not supported
  635. public const int OPT_WALKABLE = 3;
  636. //ApiDesc not supported
  637. public const int OPT_STATIC_OBSTACLE = 4;
  638. //ApiDesc not supported
  639. public const int OPT_MATERIAL_VOLUME = 5;
  640. //ApiDesc not supported
  641. public const int OPT_EXCLUSION_VOLUME = 6;
  642. // for llGetAgentList
  643. public const int AGENT_LIST_PARCEL = 0x1;
  644. public const int AGENT_LIST_PARCEL_OWNER = 2;
  645. public const int AGENT_LIST_REGION = 4;
  646. public const int AGENT_LIST_EXCLUDENPC = 0x4000000;
  647. // Can not be public const?
  648. public static readonly vector ZERO_VECTOR = new vector(0.0, 0.0, 0.0);
  649. public static readonly rotation ZERO_ROTATION = new rotation(0.0, 0.0, 0.0, 1.0);
  650. // constants for llSetCameraParams
  651. public const int CAMERA_PITCH = 0;
  652. public const int CAMERA_FOCUS_OFFSET = 1;
  653. public const int CAMERA_FOCUS_OFFSET_X = 2;
  654. public const int CAMERA_FOCUS_OFFSET_Y = 3;
  655. public const int CAMERA_FOCUS_OFFSET_Z = 4;
  656. public const int CAMERA_POSITION_LAG = 5;
  657. public const int CAMERA_FOCUS_LAG = 6;
  658. public const int CAMERA_DISTANCE = 7;
  659. public const int CAMERA_BEHINDNESS_ANGLE = 8;
  660. public const int CAMERA_BEHINDNESS_LAG = 9;
  661. public const int CAMERA_POSITION_THRESHOLD = 10;
  662. public const int CAMERA_FOCUS_THRESHOLD = 11;
  663. public const int CAMERA_ACTIVE = 12;
  664. public const int CAMERA_POSITION = 13;
  665. public const int CAMERA_POSITION_X = 14;
  666. public const int CAMERA_POSITION_Y = 15;
  667. public const int CAMERA_POSITION_Z = 16;
  668. public const int CAMERA_FOCUS = 17;
  669. public const int CAMERA_FOCUS_X = 18;
  670. public const int CAMERA_FOCUS_Y = 19;
  671. public const int CAMERA_FOCUS_Z = 20;
  672. public const int CAMERA_POSITION_LOCKED = 21;
  673. public const int CAMERA_FOCUS_LOCKED = 22;
  674. // constants for llGetParcelDetails
  675. public const int PARCEL_DETAILS_NAME = 0;
  676. public const int PARCEL_DETAILS_DESC = 1;
  677. public const int PARCEL_DETAILS_OWNER = 2;
  678. public const int PARCEL_DETAILS_GROUP = 3;
  679. public const int PARCEL_DETAILS_AREA = 4;
  680. public const int PARCEL_DETAILS_ID = 5;
  681. public const int PARCEL_DETAILS_SEE_AVATARS = 6;
  682. public const int PARCEL_DETAILS_ANY_AVATAR_SOUNDS = 7;
  683. public const int PARCEL_DETAILS_GROUP_SOUNDS = 8;
  684. // constants for llGetParcelDetails os specific
  685. public const int PARCEL_DETAILS_DWELL = 64;
  686. //osSetParcelDetails
  687. public const int PARCEL_DETAILS_CLAIMDATE = 10;
  688. // constants for llSetClickAction
  689. public const int CLICK_ACTION_NONE = 0;
  690. public const int CLICK_ACTION_TOUCH = 0;
  691. public const int CLICK_ACTION_SIT = 1;
  692. public const int CLICK_ACTION_BUY = 2;
  693. public const int CLICK_ACTION_PAY = 3;
  694. public const int CLICK_ACTION_OPEN = 4;
  695. public const int CLICK_ACTION_PLAY = 5;
  696. public const int CLICK_ACTION_OPEN_MEDIA = 6;
  697. public const int CLICK_ACTION_ZOOM = 7;
  698. // constants for the llDetectedTouch* functions
  699. public const int TOUCH_INVALID_FACE = -1;
  700. public static readonly vector TOUCH_INVALID_TEXCOORD = new vector(-1.0, -1.0, 0.0);
  701. public static readonly vector TOUCH_INVALID_VECTOR = ZERO_VECTOR;
  702. // constants for llGetPrimMediaParams/llSetPrimMediaParams
  703. public const int PRIM_MEDIA_ALT_IMAGE_ENABLE = 0;
  704. public const int PRIM_MEDIA_CONTROLS = 1;
  705. public const int PRIM_MEDIA_CURRENT_URL = 2;
  706. public const int PRIM_MEDIA_HOME_URL = 3;
  707. public const int PRIM_MEDIA_AUTO_LOOP = 4;
  708. public const int PRIM_MEDIA_AUTO_PLAY = 5;
  709. public const int PRIM_MEDIA_AUTO_SCALE = 6;
  710. public const int PRIM_MEDIA_AUTO_ZOOM = 7;
  711. public const int PRIM_MEDIA_FIRST_CLICK_INTERACT = 8;
  712. public const int PRIM_MEDIA_WIDTH_PIXELS = 9;
  713. public const int PRIM_MEDIA_HEIGHT_PIXELS = 10;
  714. public const int PRIM_MEDIA_WHITELIST_ENABLE = 11;
  715. public const int PRIM_MEDIA_WHITELIST = 12;
  716. public const int PRIM_MEDIA_PERMS_INTERACT = 13;
  717. public const int PRIM_MEDIA_PERMS_CONTROL = 14;
  718. public const int PRIM_MEDIA_CONTROLS_STANDARD = 0;
  719. public const int PRIM_MEDIA_CONTROLS_MINI = 1;
  720. public const int PRIM_MEDIA_PERM_NONE = 0;
  721. public const int PRIM_MEDIA_PERM_OWNER = 1;
  722. public const int PRIM_MEDIA_PERM_GROUP = 2;
  723. public const int PRIM_MEDIA_PERM_ANYONE = 4;
  724. public const int DENSITY = 1;
  725. public const int FRICTION = 2;
  726. public const int RESTITUTION = 4;
  727. public const int GRAVITY_MULTIPLIER = 8;
  728. // extra constants for llSetPrimMediaParams
  729. public static readonly LSLInteger LSL_STATUS_OK = 0;
  730. public static readonly LSLInteger LSL_STATUS_MALFORMED_PARAMS = 1000;
  731. public static readonly LSLInteger LSL_STATUS_TYPE_MISMATCH = 1001;
  732. public static readonly LSLInteger LSL_STATUS_BOUNDS_ERROR = 1002;
  733. public static readonly LSLInteger LSL_STATUS_NOT_FOUND = 1003;
  734. public static readonly LSLInteger LSL_STATUS_NOT_SUPPORTED = 1004;
  735. public static readonly LSLInteger LSL_STATUS_INTERNAL_ERROR = 1999;
  736. public static readonly LSLInteger LSL_STATUS_WHITELIST_FAILED = 2001;
  737. // Constants for default textures
  738. public const string TEXTURE_BLANK = "5748decc-f629-461c-9a36-a35a221fe21f";
  739. public const string TEXTURE_DEFAULT = "89556747-24cb-43ed-920b-47caed15465f";
  740. public const string TEXTURE_PLYWOOD = "89556747-24cb-43ed-920b-47caed15465f";
  741. public const string TEXTURE_TRANSPARENT = "8dcd4a48-2d37-4909-9f78-f7a9eb4ef903";
  742. public const string TEXTURE_MEDIA = "8b5fec65-8d8d-9dc5-cda8-8fdf2716e361";
  743. // Constants for osGetRegionStats
  744. public const int STATS_TIME_DILATION = 0;
  745. public const int STATS_SIM_FPS = 1;
  746. public const int STATS_PHYSICS_FPS = 2;
  747. public const int STATS_AGENT_UPDATES = 3;
  748. public const int STATS_ROOT_AGENTS = 4;
  749. public const int STATS_CHILD_AGENTS = 5;
  750. public const int STATS_TOTAL_PRIMS = 6;
  751. public const int STATS_ACTIVE_PRIMS = 7;
  752. public const int STATS_FRAME_MS = 8;
  753. public const int STATS_NET_MS = 9;
  754. public const int STATS_PHYSICS_MS = 10;
  755. public const int STATS_IMAGE_MS = 11;
  756. public const int STATS_OTHER_MS = 12;
  757. public const int STATS_IN_PACKETS_PER_SECOND = 13;
  758. public const int STATS_OUT_PACKETS_PER_SECOND = 14;
  759. public const int STATS_UNACKED_BYTES = 15;
  760. public const int STATS_AGENT_MS = 16;
  761. public const int STATS_PENDING_DOWNLOADS = 17;
  762. public const int STATS_PENDING_UPLOADS = 18;
  763. public const int STATS_ACTIVE_SCRIPTS = 19;
  764. public const int STATS_SCRIPT_LPS = 20;
  765. // Constants for osNpc* functions
  766. public const int OS_NPC_FLY = 0;
  767. public const int OS_NPC_NO_FLY = 1;
  768. public const int OS_NPC_LAND_AT_TARGET = 2;
  769. public const int OS_NPC_RUNNING = 4;
  770. public const int OS_NPC_SIT_NOW = 0;
  771. public const int OS_NPC_CREATOR_OWNED = 0x1;
  772. public const int OS_NPC_NOT_OWNED = 0x2;
  773. public const int OS_NPC_SENSE_AS_AGENT = 0x4;
  774. public const int OS_NPC_OBJECT_GROUP = 0x08;
  775. public const string URL_REQUEST_GRANTED = "URL_REQUEST_GRANTED";
  776. public const string URL_REQUEST_DENIED = "URL_REQUEST_DENIED";
  777. public static readonly LSLInteger RC_REJECT_TYPES = 0;
  778. public static readonly LSLInteger RC_DETECT_PHANTOM = 1;
  779. public static readonly LSLInteger RC_DATA_FLAGS = 2;
  780. public static readonly LSLInteger RC_MAX_HITS = 3;
  781. public static readonly LSLInteger RC_REJECT_AGENTS = 1;
  782. public static readonly LSLInteger RC_REJECT_PHYSICAL = 2;
  783. public static readonly LSLInteger RC_REJECT_NONPHYSICAL = 4;
  784. public static readonly LSLInteger RC_REJECT_LAND = 8;
  785. public static readonly LSLInteger RC_REJECT_HOST = 0x20000000;
  786. public static readonly LSLInteger RC_REJECT_HOSTGROUP = 0x40000000;
  787. public static readonly LSLInteger RC_GET_NORMAL = 1;
  788. public static readonly LSLInteger RC_GET_ROOT_KEY = 2;
  789. public static readonly LSLInteger RC_GET_LINK_NUM = 4;
  790. public static readonly LSLInteger RCERR_UNKNOWN = -1;
  791. public static readonly LSLInteger RCERR_SIM_PERF_LOW = -2;
  792. public static readonly LSLInteger RCERR_CAST_TIME_EXCEEDED = -3;
  793. public const int KFM_MODE = 1;
  794. public const int KFM_LOOP = 1;
  795. public const int KFM_REVERSE = 3;
  796. public const int KFM_FORWARD = 0;
  797. public const int KFM_PING_PONG = 2;
  798. public const int KFM_DATA = 2;
  799. public const int KFM_TRANSLATION = 2;
  800. public const int KFM_ROTATION = 1;
  801. public const int KFM_COMMAND = 0;
  802. public const int KFM_CMD_PLAY = 0;
  803. public const int KFM_CMD_STOP = 1;
  804. public const int KFM_CMD_PAUSE = 2;
  805. public const string JSON_INVALID = "\uFDD0";
  806. public const string JSON_OBJECT = "\uFDD1";
  807. public const string JSON_ARRAY = "\uFDD2";
  808. public const string JSON_NUMBER = "\uFDD3";
  809. public const string JSON_STRING = "\uFDD4";
  810. public const string JSON_NULL = "\uFDD5";
  811. public const string JSON_TRUE = "\uFDD6";
  812. public const string JSON_FALSE = "\uFDD7";
  813. public const string JSON_DELETE = "\uFDD8";
  814. public const string JSON_APPEND = "-1";
  815. /// <summary>
  816. /// process name parameter as regex
  817. /// </summary>
  818. public const int OS_LISTEN_REGEX_NAME = 0x1;
  819. /// <summary>
  820. /// process message parameter as regex
  821. /// </summary>
  822. public const int OS_LISTEN_REGEX_MESSAGE = 0x2;
  823. // Constants for osTeleportObject
  824. //ApiDesc osTeleportObject no flags
  825. public const int OSTPOBJ_NONE = 0x0;
  826. //ApiDesc osTeleportObject flag: stop at destination
  827. public const int OSTPOBJ_STOPATTARGET = 0x1;
  828. //ApiDesc osTeleportObject flag: stop at jump point if tp fails
  829. public const int OSTPOBJ_STOPONFAIL = 0x2;
  830. //ApiDesc osTeleportObject flag: the rotation is the final rotation, otherwise is a added rotation
  831. public const int OSTPOBJ_SETROT = 0x4;
  832. //ApiDesc osLocalTeleportAgent no flags
  833. public const int OS_LTPAG_NONE = 0x0;
  834. //ApiDesc osLocalTeleportAgent use velocity
  835. public const int OS_LTPAG_USEVEL = 0x1;
  836. //ApiDesc osLocalTeleportAgent use lookat
  837. public const int OS_LTPAG_USELOOKAT = 0x2;
  838. //ApiDesc osLocalTeleportAgent align lookat to velocity
  839. public const int OS_LTPAG_ALGNLV = 0x4;
  840. //ApiDesc osLocalTeleportAgent force fly
  841. public const int OS_LTPAG_FORCEFLY = 0x8;
  842. //ApiDesc osLocalTeleportAgent force no fly
  843. public const int OS_LTPAG_FORCENOFLY = 0x16;
  844. // Constants for Windlight
  845. public const int WL_WATER_COLOR = 0;
  846. public const int WL_WATER_FOG_DENSITY_EXPONENT = 1;
  847. public const int WL_UNDERWATER_FOG_MODIFIER = 2;
  848. public const int WL_REFLECTION_WAVELET_SCALE = 3;
  849. public const int WL_FRESNEL_SCALE = 4;
  850. public const int WL_FRESNEL_OFFSET = 5;
  851. public const int WL_REFRACT_SCALE_ABOVE = 6;
  852. public const int WL_REFRACT_SCALE_BELOW = 7;
  853. public const int WL_BLUR_MULTIPLIER = 8;
  854. public const int WL_BIG_WAVE_DIRECTION = 9;
  855. public const int WL_LITTLE_WAVE_DIRECTION = 10;
  856. public const int WL_NORMAL_MAP_TEXTURE = 11;
  857. public const int WL_HORIZON = 12;
  858. public const int WL_HAZE_HORIZON = 13;
  859. public const int WL_BLUE_DENSITY = 14;
  860. public const int WL_HAZE_DENSITY = 15;
  861. public const int WL_DENSITY_MULTIPLIER = 16;
  862. public const int WL_DISTANCE_MULTIPLIER = 17;
  863. public const int WL_MAX_ALTITUDE = 18;
  864. public const int WL_SUN_MOON_COLOR = 19;
  865. public const int WL_AMBIENT = 20;
  866. public const int WL_EAST_ANGLE = 21;
  867. public const int WL_SUN_GLOW_FOCUS = 22;
  868. public const int WL_SUN_GLOW_SIZE = 23;
  869. public const int WL_SCENE_GAMMA = 24;
  870. public const int WL_STAR_BRIGHTNESS = 25;
  871. public const int WL_CLOUD_COLOR = 26;
  872. public const int WL_CLOUD_XY_DENSITY = 27;
  873. public const int WL_CLOUD_COVERAGE = 28;
  874. public const int WL_CLOUD_SCALE = 29;
  875. public const int WL_CLOUD_DETAIL_XY_DENSITY = 30;
  876. public const int WL_CLOUD_SCROLL_X = 31;
  877. public const int WL_CLOUD_SCROLL_Y = 32;
  878. public const int WL_CLOUD_SCROLL_Y_LOCK = 33;
  879. public const int WL_CLOUD_SCROLL_X_LOCK = 34;
  880. public const int WL_DRAW_CLASSIC_CLOUDS = 35;
  881. public const int WL_SUN_MOON_POSITION = 36;
  882. public const string IMG_USE_BAKED_HEAD = "5a9f4a74-30f2-821c-b88d-70499d3e7183";
  883. public const string IMG_USE_BAKED_UPPER = "ae2de45c-d252-50b8-5c6e-19f39ce79317";
  884. public const string IMG_USE_BAKED_LOWER = "24daea5f-0539-cfcf-047f-fbc40b2786ba";
  885. public const string IMG_USE_BAKED_EYES = "52cc6bb6-2ee5-e632-d3ad-50197b1dcb8a";
  886. public const string IMG_USE_BAKED_SKIRT = "43529ce8-7faa-ad92-165a-bc4078371687";
  887. public const string IMG_USE_BAKED_HAIR = "09aac1fb-6bce-0bee-7d44-caac6dbb6c63";
  888. public const string IMG_USE_BAKED_LEFTARM = "ff62763f-d60a-9855-890b-0c96f8f8cd98";
  889. public const string IMG_USE_BAKED_LEFTLEG = "8e915e25-31d1-cc95-ae08-d58a47488251";
  890. public const string IMG_USE_BAKED_AUX1 = "9742065b-19b5-297c-858a-29711d539043";
  891. public const string IMG_USE_BAKED_AUX2 = "03642e83-2bd1-4eb9-34b4-4c47ed586d2d";
  892. public const string IMG_USE_BAKED_AUX3 = "edd51b77-fc10-ce7a-4b3d-011dfc349e4f";
  893. // llTargetedEmail
  894. public const int TARGETED_EMAIL_ROOT_CREATOR = 1;
  895. public const int TARGETED_EMAIL_OBJECT_OWNER = 2;
  896. public const int NPCLOOKAT_NONE = 0;
  897. public const int NPCLOOKAT_IDLE = 1;
  898. public const int NPCLOOKAT_LISTEN = 2;
  899. public const int NPCLOOKAT_FREELOOK = 3;
  900. public const int NPCLOOKAT_RESPOND = 4;
  901. public const int NPCLOOKAT_HOVER = 5;
  902. public const int NPCLOOKAT_CONVERSATION = 6;
  903. public const int NPCLOOKAT_SELECT = 7;
  904. public const int NPCLOOKAT_FOCUS = 8;
  905. public const int NPCLOOKAT_MOUSELOOK = 9;
  906. public const int NPCLOOKAT_CLEAR = 10;
  907. }
  908. }