bitpackids.h 3.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798
  1. /*
  2. ** Command & Conquer Renegade(tm)
  3. ** Copyright 2025 Electronic Arts Inc.
  4. **
  5. ** This program is free software: you can redistribute it and/or modify
  6. ** it under the terms of the GNU General Public License as published by
  7. ** the Free Software Foundation, either version 3 of the License, or
  8. ** (at your option) any later version.
  9. **
  10. ** This program is distributed in the hope that it will be useful,
  11. ** but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. ** GNU General Public License for more details.
  14. **
  15. ** You should have received a copy of the GNU General Public License
  16. ** along with this program. If not, see <http://www.gnu.org/licenses/>.
  17. */
  18. /***********************************************************************************************
  19. *** Confidential - Westwood Studios ***
  20. ***********************************************************************************************
  21. * *
  22. * Project Name : Commando *
  23. * *
  24. * $Archive:: /Commando/Code/wwbitpack/bitpackids.h $*
  25. * *
  26. * $Author:: Greg_h $*
  27. * *
  28. * $Modtime:: 10/14/01 11:15a $*
  29. * *
  30. * $Revision:: 6 $*
  31. * *
  32. *---------------------------------------------------------------------------------------------*
  33. * Functions: *
  34. * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  35. #ifndef BITPACKIDS_H
  36. #define BITPACKIDS_H
  37. enum {
  38. /*
  39. //
  40. // 08/30/00 Use of pathfind extents for bitcompression decommissioned.
  41. // Flying vehicles and sea vehicles would have to use world extents
  42. // anyway.
  43. //
  44. //
  45. // Use these for objects restricted to pathfindable areas
  46. //
  47. BITPACK_PATHFIND_POSITION_X,
  48. BITPACK_PATHFIND_POSITION_Y,
  49. BITPACK_PATHFIND_POSITION_Z,
  50. */
  51. //
  52. // Use these for objects restricted to world extents
  53. //
  54. BITPACK_WORLD_POSITION_X,
  55. BITPACK_WORLD_POSITION_Y,
  56. BITPACK_WORLD_POSITION_Z,
  57. BITPACK_ONE_TIME_BOOLEAN_BITS,
  58. BITPACK_CONTINUOUS_BOOLEAN_BITS,
  59. BITPACK_ANALOG_VALUES,
  60. BITPACK_HEALTH,
  61. BITPACK_SHIELD_STRENGTH,
  62. BITPACK_SHIELD_TYPE,
  63. BITPACK_CTF_TEAM_FLAG,
  64. BITPACK_HUMAN_STATE,
  65. BITPACK_HUMAN_SUB_STATE,
  66. BITPACK_VEHICLE_VELOCITY,
  67. BITPACK_VEHICLE_ANGULAR_VELOCITY,
  68. BITPACK_VEHICLE_QUATERNION,
  69. BITPACK_VEHICLE_LOCK_TIMER,
  70. BITPACK_DOOR_STATE,
  71. BITPACK_ELEVATOR_STATE,
  72. BITPACK_ELEVATOR_TOP_DOOR_STATE,
  73. BITPACK_ELEVATOR_BOTTOM_DOOR_STATE,
  74. BITPACK_BUILDING_RADIUS,
  75. BITPACK_BUILDING_STATE,
  76. BITPACK_CONTROL_MOVES_CS,
  77. BITPACK_CONTROL_MOVES_SC,
  78. BITPACK_PACKET_TYPE,
  79. BITPACK_PACKET_ID,
  80. };
  81. #endif // BITPACKIDS_H