ScaleProcess.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. /*
  2. Open Asset Import Library (assimp)
  3. ----------------------------------------------------------------------
  4. Copyright (c) 2006-2021, assimp team
  5. All rights reserved.
  6. Redistribution and use of this software in source and binary forms,
  7. with or without modification, are permitted provided that the
  8. following conditions are met:
  9. * Redistributions of source code must retain the above
  10. copyright notice, this list of conditions and the
  11. following disclaimer.
  12. * Redistributions in binary form must reproduce the above
  13. copyright notice, this list of conditions and the
  14. following disclaimer in the documentation and/or other
  15. materials provided with the distribution.
  16. * Neither the name of the assimp team, nor the names of its
  17. contributors may be used to endorse or promote products
  18. derived from this software without specific prior
  19. written permission of the assimp team.
  20. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
  21. "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
  22. LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
  23. A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
  24. OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  25. SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  26. LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
  27. DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
  28. THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  29. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
  30. OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  31. ----------------------------------------------------------------------
  32. */
  33. #ifndef SCALE_PROCESS_H_
  34. #define SCALE_PROCESS_H_
  35. #include "Common/BaseProcess.h"
  36. struct aiNode;
  37. #if (!defined AI_CONFIG_GLOBAL_SCALE_FACTOR_DEFAULT)
  38. # define AI_CONFIG_GLOBAL_SCALE_FACTOR_DEFAULT 1.0f
  39. #endif // !! AI_DEBONE_THRESHOLD
  40. namespace Assimp {
  41. // ---------------------------------------------------------------------------
  42. /** ScaleProcess: Class to rescale the whole model.
  43. * Now rescales animations, bones, and blend shapes properly.
  44. * Please note this will not write to 'scale' transform it will rewrite mesh
  45. * and matrixes so that your scale values
  46. * from your model package are preserved, so this is completely intentional
  47. * bugs should be reported as soon as they are found.
  48. */
  49. class ASSIMP_API ScaleProcess : public BaseProcess {
  50. public:
  51. /// The default class constructor.
  52. ScaleProcess();
  53. /// The class destructor.
  54. virtual ~ScaleProcess();
  55. /// Will set the scale manually.
  56. void setScale( ai_real scale );
  57. /// Returns the current scaling value.
  58. ai_real getScale() const;
  59. /// Overwritten, @see BaseProcess
  60. virtual bool IsActive( unsigned int pFlags ) const;
  61. /// Overwritten, @see BaseProcess
  62. virtual void SetupProperties( const Importer* pImp );
  63. /// Overwritten, @see BaseProcess
  64. virtual void Execute( aiScene* pScene );
  65. private:
  66. void traverseNodes( aiNode *currentNode, unsigned int nested_node_id = 0 );
  67. void applyScaling( aiNode *currentNode );
  68. private:
  69. ai_real mScale;
  70. };
  71. } // Namespace Assimp
  72. #endif // SCALE_PROCESS_H_