ShapeAnimationAsset.cpp 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. //-----------------------------------------------------------------------------
  2. // Copyright (c) 2013 GarageGames, LLC
  3. //
  4. // Permission is hereby granted, free of charge, to any person obtaining a copy
  5. // of this software and associated documentation files (the "Software"), to
  6. // deal in the Software without restriction, including without limitation the
  7. // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  8. // sell copies of the Software, and to permit persons to whom the Software is
  9. // furnished to do so, subject to the following conditions:
  10. //
  11. // The above copyright notice and this permission notice shall be included in
  12. // all copies or substantial portions of the Software.
  13. //
  14. // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  15. // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  16. // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  17. // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  18. // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  19. // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  20. // IN THE SOFTWARE.
  21. //-----------------------------------------------------------------------------
  22. #ifndef SHAPE_ANIMATION_ASSET_H
  23. #include "ShapeAnimationAsset.h"
  24. #endif
  25. #ifndef _ASSET_MANAGER_H_
  26. #include "assets/assetManager.h"
  27. #endif
  28. #ifndef _CONSOLETYPES_H_
  29. #include "console/consoleTypes.h"
  30. #endif
  31. #ifndef _TAML_
  32. #include "persistence/taml/taml.h"
  33. #endif
  34. #ifndef _ASSET_PTR_H_
  35. #include "assets/assetPtr.h"
  36. #endif
  37. #include "core/resourceManager.h"
  38. // Debug Profiling.
  39. #include "platform/profiler.h"
  40. //-----------------------------------------------------------------------------
  41. IMPLEMENT_CONOBJECT(ShapeAnimationAsset);
  42. ConsoleType(ShapeAnimationAssetPtr, TypeShapeAnimationAssetPtr, ShapeAnimationAsset, ASSET_ID_FIELD_PREFIX)
  43. //-----------------------------------------------------------------------------
  44. ConsoleGetType(TypeShapeAnimationAssetPtr)
  45. {
  46. // Fetch asset Id.
  47. return (*((AssetPtr<ShapeAnimationAsset>*)dptr)).getAssetId();
  48. }
  49. //-----------------------------------------------------------------------------
  50. ConsoleSetType(TypeShapeAnimationAssetPtr)
  51. {
  52. // Was a single argument specified?
  53. if (argc == 1)
  54. {
  55. // Yes, so fetch field value.
  56. const char* pFieldValue = argv[0];
  57. // Fetch asset pointer.
  58. AssetPtr<ShapeAnimationAsset>* pAssetPtr = dynamic_cast<AssetPtr<ShapeAnimationAsset>*>((AssetPtrBase*)(dptr));
  59. // Is the asset pointer the correct type?
  60. if (pAssetPtr == NULL)
  61. {
  62. // No, so fail.
  63. //Con::warnf("(TypeShapeAnimationAssetPtr) - Failed to set asset Id '%d'.", pFieldValue);
  64. return;
  65. }
  66. // Set asset.
  67. pAssetPtr->setAssetId(pFieldValue);
  68. return;
  69. }
  70. // Warn.
  71. Con::warnf("(TypeShapeAnimationAssetPtr) - Cannot set multiple args to a single asset.");
  72. }
  73. //-----------------------------------------------------------------------------
  74. ShapeAnimationAsset::ShapeAnimationAsset()
  75. {
  76. }
  77. //-----------------------------------------------------------------------------
  78. ShapeAnimationAsset::~ShapeAnimationAsset()
  79. {
  80. // If the asset manager does not own the asset then we own the
  81. // asset definition so delete it.
  82. if (!getOwned())
  83. delete mpAssetDefinition;
  84. }
  85. //-----------------------------------------------------------------------------
  86. void ShapeAnimationAsset::initPersistFields()
  87. {
  88. // Call parent.
  89. Parent::initPersistFields();
  90. addField("animationFile", TypeFilename, Offset(mFileName, ShapeAnimationAsset), "Path to the file name containing the animation");
  91. addField("animationName", TypeString, Offset(mAnimationName, ShapeAnimationAsset), "Name of the animation");
  92. addField("startFrame", TypeS32, Offset(mStartFrame, ShapeAnimationAsset), "What frame does this animation clip start on");
  93. addField("endFrame", TypeS32, Offset(mEndFrame, ShapeAnimationAsset), "What fram does this animation clip end on");
  94. addField("padRotation", TypeBool, Offset(mPadRotation, ShapeAnimationAsset), "Are the rotation values padded");
  95. addField("padTransforms", TypeBool, Offset(mPadTransforms, ShapeAnimationAsset), "Are the transform values padded");
  96. }
  97. //------------------------------------------------------------------------------
  98. void ShapeAnimationAsset::copyTo(SimObject* object)
  99. {
  100. // Call to parent.
  101. Parent::copyTo(object);
  102. }