wwmathids.h 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /*
  2. ** Command & Conquer Generals Zero Hour(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. *** C O N F I D E N T I A L --- W E S T W O O D S T U D I O S ***
  20. ***********************************************************************************************
  21. * *
  22. * Project Name : WWMath *
  23. * *
  24. * $Archive:: /Commando/Code/wwmath/wwmathids.h $*
  25. * *
  26. * Original Author:: Greg Hjelstrom *
  27. * *
  28. * $Author:: Jani_p $*
  29. * *
  30. * $Modtime:: 5/04/01 8:42p $*
  31. * *
  32. * $Revision:: 3 $*
  33. * *
  34. *---------------------------------------------------------------------------------------------*
  35. * Functions: *
  36. * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - */
  37. #ifndef WWMATHIDS_H
  38. #define WWMATHIDS_H
  39. #include "saveloadids.h"
  40. /*
  41. ** Persist Factory ID's for WWMATH
  42. */
  43. enum
  44. {
  45. WWMATH_CHUNKID_LINEARCURVE1D = CHUNKID_WWMATH_BEGIN,
  46. WWMATH_CHUNKID_HERMITESPLINE1D,
  47. WWMATH_CHUNKID_CATMULLROMSPLINE1D,
  48. WWMATH_CHUNKID_CARDINALSPLINE1D,
  49. WWMATH_CHUNKID_TCBSPLINE1D,
  50. WWMATH_CHUNKID_LINEARCURVE3D = CHUNKID_WWMATH_BEGIN + 0x100,
  51. WWMATH_CHUNKID_HERMITESPLINE3D,
  52. WWMATH_CHUNKID_CATMULLROMSPLINE3D,
  53. WWMATH_CHUNKID_CARDINALSPLINE3D,
  54. WWMATH_CHUNKID_TCBSPLINE3D,
  55. WWMATH_CHUNKID_VEHICLECURVE
  56. };
  57. #endif //WWMATHIDS_H