ImageAsset.cpp 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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 IMAGE_ASSET_H
  23. #include "ImageAsset.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. // Debug Profiling.
  38. #include "platform/profiler.h"
  39. //-----------------------------------------------------------------------------
  40. IMPLEMENT_CONOBJECT(ImageAsset);
  41. ConsoleType(ImageAssetPtr, TypeImageAssetPtr, ImageAsset, ASSET_ID_FIELD_PREFIX)
  42. //-----------------------------------------------------------------------------
  43. ConsoleGetType(TypeImageAssetPtr)
  44. {
  45. // Fetch asset Id.
  46. return (*((AssetPtr<ImageAsset>*)dptr)).getAssetId();
  47. }
  48. //-----------------------------------------------------------------------------
  49. ConsoleSetType(TypeImageAssetPtr)
  50. {
  51. // Was a single argument specified?
  52. if (argc == 1)
  53. {
  54. // Yes, so fetch field value.
  55. const char* pFieldValue = argv[0];
  56. // Fetch asset pointer.
  57. AssetPtr<ImageAsset>* pAssetPtr = dynamic_cast<AssetPtr<ImageAsset>*>((AssetPtrBase*)(dptr));
  58. // Is the asset pointer the correct type?
  59. if (pAssetPtr == NULL)
  60. {
  61. // No, so fail.
  62. //Con::warnf("(TypeImageAssetPtr) - Failed to set asset Id '%d'.", pFieldValue);
  63. return;
  64. }
  65. // Set asset.
  66. pAssetPtr->setAssetId(pFieldValue);
  67. return;
  68. }
  69. // Warn.
  70. Con::warnf("(TypeImageAssetPtr) - Cannot set multiple args to a single asset.");
  71. }
  72. //-----------------------------------------------------------------------------
  73. ImageAsset::ImageAsset() : AssetBase(), mImage(nullptr), mUseMips(true), mIsHDRImage(false), mIsValidImage(false)
  74. {
  75. mImageFileName = StringTable->EmptyString();
  76. }
  77. //-----------------------------------------------------------------------------
  78. ImageAsset::~ImageAsset()
  79. {
  80. }
  81. //-----------------------------------------------------------------------------
  82. void ImageAsset::initPersistFields()
  83. {
  84. // Call parent.
  85. Parent::initPersistFields();
  86. addProtectedField("imageFile", TypeAssetLooseFilePath, Offset(mImageFileName, ImageAsset),
  87. &setImageFileName, &getImageFileName, "Path to the image file.");
  88. addField("useMips", TypeBool, Offset(mUseMips, ImageAsset), "Should the image use mips? (Currently unused).");
  89. addField("isHDRImage", TypeBool, Offset(mIsHDRImage, ImageAsset), "Is the image in an HDR format? (Currently unused)");
  90. }
  91. //------------------------------------------------------------------------------
  92. void ImageAsset::copyTo(SimObject* object)
  93. {
  94. // Call to parent.
  95. Parent::copyTo(object);
  96. }
  97. void ImageAsset::loadImage()
  98. {
  99. SAFE_DELETE(mImage);
  100. if (mImageFileName)
  101. {
  102. if (!Platform::isFile(mImageFileName))
  103. {
  104. Con::errorf("ImageAsset::initializeAsset: Attempted to load file %s but it was not valid!", mImageFileName);
  105. return;
  106. }
  107. mImage.set(mImageFileName, &GFXStaticTextureSRGBProfile, avar("%s() - mImage (line %d)", __FUNCTION__, __LINE__));
  108. if (mImage)
  109. {
  110. mIsValidImage = true;
  111. return;
  112. }
  113. }
  114. mIsValidImage = false;
  115. }
  116. void ImageAsset::initializeAsset()
  117. {
  118. setImageFileName(mImageFileName);
  119. }
  120. void ImageAsset::onAssetRefresh()
  121. {
  122. setImageFileName(mImageFileName);
  123. }
  124. void ImageAsset::setImageFileName(const char* pScriptFile)
  125. {
  126. // Sanity!
  127. AssertFatal(pScriptFile != NULL, "Cannot use a NULL image file.");
  128. // Update.
  129. mImageFileName = getOwned() ? expandAssetFilePath(pScriptFile) : StringTable->insert(pScriptFile);
  130. // Refresh the asset.
  131. loadImage();
  132. }
  133. DefineEngineMethod(ImageAsset, getImageFilename, const char*, (), ,
  134. "Creates an instance of the given GameObject given the asset definition.\n"
  135. "@return The GameObject entity created from the asset.")
  136. {
  137. return object->getImageFileName();
  138. }