object_flags.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /**
  2. * @file object_flags.h
  3. * @brief Flags for object creation and transmission
  4. *
  5. * $LicenseInfo:firstyear=2001&license=viewergpl$
  6. *
  7. * Copyright (c) 2001-2009, 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_OBJECT_FLAGS_H
  33. #define LL_OBJECT_FLAGS_H
  34. // Downstream flags from sim->viewer
  35. constexpr U32 FLAGS_USE_PHYSICS = (1U << 0);
  36. constexpr U32 FLAGS_CREATE_SELECTED = (1U << 1);
  37. constexpr U32 FLAGS_OBJECT_MODIFY = (1U << 2);
  38. constexpr U32 FLAGS_OBJECT_COPY = (1U << 3);
  39. constexpr U32 FLAGS_OBJECT_ANY_OWNER = (1U << 4);
  40. constexpr U32 FLAGS_OBJECT_YOU_OWNER = (1U << 5);
  41. constexpr U32 FLAGS_SCRIPTED = (1U << 6);
  42. constexpr U32 FLAGS_HANDLE_TOUCH = (1U << 7);
  43. constexpr U32 FLAGS_OBJECT_MOVE = (1U << 8);
  44. constexpr U32 FLAGS_TAKES_MONEY = (1U << 9);
  45. constexpr U32 FLAGS_PHANTOM = (1U << 10);
  46. constexpr U32 FLAGS_INVENTORY_EMPTY = (1U << 11);
  47. constexpr U32 FLAGS_AFFECTS_NAVMESH = (1U << 12);
  48. constexpr U32 FLAGS_CHARACTER = (1U << 13);
  49. constexpr U32 FLAGS_VOLUME_DETECT = (1U << 14);
  50. constexpr U32 FLAGS_INCLUDE_IN_SEARCH = (1U << 15);
  51. constexpr U32 FLAGS_ALLOW_INVENTORY_DROP = (1U << 16);
  52. constexpr U32 FLAGS_OBJECT_TRANSFER = (1U << 17);
  53. constexpr U32 FLAGS_OBJECT_GROUP_OWNED = (1U << 18);
  54. //constexpr U32 FLAGS_OBJECT_YOU_OFFICER = (1U << 19); // No more in use
  55. constexpr U32 FLAGS_CAMERA_DECOUPLED = (1U << 20);
  56. constexpr U32 FLAGS_ANIM_SOURCE = (1U << 21);
  57. constexpr U32 FLAGS_CAMERA_SOURCE = (1U << 22);
  58. //constexpr U32 FLAGS_CAST_SHADOWS = (1U << 23); // No more in use
  59. constexpr U32 FLAGS_OBJECT_OWNER_MODIFY = (1U << 28);
  60. constexpr U32 FLAGS_TEMPORARY_ON_REZ = (1U << 29);
  61. //constexpr U32 FLAGS_TEMPORARY = (1U << 30); // No more in use
  62. //constexpr U32 FLAGS_ZLIB_COMPRESSED = (1U << 31); // No more in use
  63. constexpr U32 FLAGS_LOCAL = FLAGS_ANIM_SOURCE | FLAGS_CAMERA_SOURCE;
  64. typedef enum e_havok_joint_type
  65. {
  66. HJT_INVALID = 0,
  67. HJT_HINGE = 1,
  68. HJT_POINT = 2,
  69. // HJT_LPOINT = 3,
  70. // HJT_WHEEL = 4,
  71. HJT_EOF = 3
  72. } EHavokJointType;
  73. #endif