123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050 |
- //-----------------------------------------------------------------------------
- // Copyright (c) 2013 GarageGames, LLC
- //
- // Permission is hereby granted, free of charge, to any person obtaining a copy
- // of this software and associated documentation files (the "Software"), to
- // deal in the Software without restriction, including without limitation the
- // rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
- // sell copies of the Software, and to permit persons to whom the Software is
- // furnished to do so, subject to the following conditions:
- //
- // The above copyright notice and this permission notice shall be included in
- // all copies or substantial portions of the Software.
- //
- // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
- // IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
- // FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
- // AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
- // LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- // FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
- // IN THE SOFTWARE.
- //-----------------------------------------------------------------------------
- #ifndef IMAGE_ASSET_H
- #include "ImageAsset.h"
- #endif
- #ifndef _ASSET_MANAGER_H_
- #include "assets/assetManager.h"
- #endif
- #ifndef _CONSOLETYPES_H_
- #include "console/consoleTypes.h"
- #endif
- #ifndef _TAML_
- #include "persistence/taml/taml.h"
- #endif
- #ifndef _ASSET_PTR_H_
- #include "assets/assetPtr.h"
- #endif
- #include "gfx/gfxStringEnumTranslate.h"
- #include "ImageAssetInspectors.h"
- // Debug Profiling.
- #include "platform/profiler.h"
- #include "T3D/assets/assetImporter.h"
- #include "gfx/gfxDrawUtil.h"
- #include "gfx/bitmap/ddsFile.h"
- #ifdef __clang__
- #define STBIWDEF static inline
- #endif
- #pragma warning( push )
- #pragma warning( disable : 4505 ) // unreferenced function removed.
- #ifndef STB_IMAGE_IMPLEMENTATION
- #define STB_IMAGE_IMPLEMENTATION
- #define STB_IMAGE_STATIC
- #include "stb_image.h"
- #endif
- #pragma warning(pop)
- //-----------------------------------------------------------------------------
- StringTableEntry ImageAsset::smNoImageAssetFallback = NULL;
- StringTableEntry ImageAsset::smNamedTargetAssetFallback = NULL;
- //-----------------------------------------------------------------------------
- IMPLEMENT_CONOBJECT(ImageAsset);
- //-----------------------------------------------------------------------------
- // REFACTOR
- //-----------------------------------------------------------------------------
- IMPLEMENT_STRUCT(AssetPtr<ImageAsset>, AssetPtrImageAsset,, "")
- END_IMPLEMENT_STRUCT
- ConsoleType(ImageAssetPtr, TypeImageAssetPtr, AssetPtr<ImageAsset>, ASSET_ID_FIELD_PREFIX)
- ConsoleGetType(TypeImageAssetPtr)
- {
- // Fetch asset Id.
- return (*((AssetPtr<ImageAsset>*)dptr)).getAssetId();
- }
- ConsoleSetType(TypeImageAssetPtr)
- {
- // Was a single argument specified?
- if (argc == 1)
- {
- // Yes, so fetch field value.
- const char* pFieldValue = argv[0];
- // Fetch asset pointer.
- AssetPtr<ImageAsset>* pAssetPtr = dynamic_cast<AssetPtr<ImageAsset>*>((AssetPtrBase*)(dptr));
- // Is the asset pointer the correct type?
- if (pAssetPtr == NULL)
- {
- Con::warnf("(TypeImageAssetPtr) - Failed to set asset Id '%d'.", pFieldValue);
- return;
- }
- // Set asset.
- pAssetPtr->setAssetId(pFieldValue);
- return;
- }
- // Warn.
- Con::warnf("(TypeImageAssetPtr) - Cannot set multiple args to a single asset.");
- }
- //-----------------------------------------------------------------------------
- // REFACTOR END
- //-----------------------------------------------------------------------------
- ImplementEnumType(ImageAssetType,
- "Type of mesh data available in a shape.\n"
- "@ingroup gameObjects")
- { ImageAsset::Albedo, "Albedo", "" },
- { ImageAsset::Normal, "Normal", "" },
- { ImageAsset::ORMConfig, "ORMConfig", "" },
- { ImageAsset::GUI, "GUI", "" },
- { ImageAsset::Roughness, "Roughness", "" },
- { ImageAsset::AO, "AO", "" },
- { ImageAsset::Metalness, "Metalness", "" },
- { ImageAsset::Glow, "Glow", "" },
- { ImageAsset::Particle, "Particle", "" },
- { ImageAsset::Decal, "Decal", "" },
- { ImageAsset::Cubemap, "Cubemap", "" },
- EndImplementEnumType;
- const String ImageAsset::mErrCodeStrings[] =
- {
- "TooManyMips",
- "UnKnown"
- };
- //-----------------------------------------------------------------------------
- ImageAsset::ImageAsset() :
- mImageFile(StringTable->EmptyString()),
- mUseMips(true),
- mIsHDRImage(false),
- mImageType(Albedo),
- mIsNamedTarget(false),
- mImageWidth(-1),
- mImageHeight(-1),
- mImageDepth(-1),
- mImageChannels(-1)
- {
- mLoadedState = AssetErrCode::NotLoaded;
- }
- //-----------------------------------------------------------------------------
- ImageAsset::~ImageAsset()
- {
- ImageTextureMap::iterator resIter = mResourceMap.begin();
- for (; resIter != mResourceMap.end(); ++resIter)
- {
- resIter->value.free();
- }
- mResourceMap.clear();
- }
- void ImageAsset::consoleInit()
- {
- Parent::consoleInit();
- Con::addVariable("$Core::NoImageAssetFallback", TypeString, &smNoImageAssetFallback,
- "The assetId of the texture to display when the requested image asset is missing.\n"
- "@ingroup GFX\n");
- Con::addVariable("$Core::NamedTargetFallback", TypeString, &smNamedTargetAssetFallback,
- "The assetId of the texture to display when the requested image asset is named target.\n"
- "@ingroup GFX\n");
- smNoImageAssetFallback = StringTable->insert(Con::getVariable("$Core::NoImageAssetFallback"));
- smNamedTargetAssetFallback = StringTable->insert(Con::getVariable("$Core::NamedTargetFallback"));
- }
- //-----------------------------------------------------------------------------
- void ImageAsset::initPersistFields()
- {
- docsURL;
- // Call parent.
- Parent::initPersistFields();
- addProtectedField("imageFile", TypeAssetLooseFilePath, Offset(mImageFile, ImageAsset), &setImageFile, &getImageFile, &writeImageFile, "Path to the image file.");
- addProtectedField("useMips", TypeBool, Offset(mUseMips, ImageAsset), &setGenMips, &defaultProtectedGetFn, &writeGenMips, "Generate mip maps?");
- addProtectedField("isHDRImage", TypeBool, Offset(mIsHDRImage, ImageAsset), &setTextureHDR, &defaultProtectedGetFn, &writeTextureHDR, "HDR Image?");
- addField("imageType", TypeImageAssetType, Offset(mImageType, ImageAsset), "What the main use-case for the image is for.");
- }
- bool ImageAsset::onAdd()
- {
- // Call Parent.
- if (!Parent::onAdd())
- return false;
- return true;
- }
- void ImageAsset::onRemove()
- {
- Torque::FS::RemoveChangeNotification(mImageFile, this, &ImageAsset::_onResourceChanged);
- // Call Parent.
- Parent::onRemove();
- }
- U32 ImageAsset::getAssetByFilename(StringTableEntry fileName, AssetPtr<ImageAsset>* imageAsset)
- {
- AssetQuery query;
- S32 foundAssetcount = AssetDatabase.findAssetLooseFile(&query, fileName);
- if (foundAssetcount == 0)
- {
- //Didn't work, so have us fall back to a placeholder asset
- imageAsset->setAssetId(ImageAsset::smNoImageAssetFallback);
- if (imageAsset->isNull())
- {
- //Well that's bad, loading the fallback failed.
- Con::warnf("ImageAsset::getAssetByFilename - Finding of asset associated with file %s failed with no fallback asset", fileName);
- return AssetErrCode::Failed;
- }
- //handle noshape not being loaded itself
- if ((*imageAsset)->mLoadedState == BadFileReference)
- {
- Con::warnf("ImageAsset::getAssetByFilename - Finding of associated with file %s failed, and fallback asset reported error of Bad File Reference.", fileName);
- return AssetErrCode::BadFileReference;
- }
- Con::warnf("ImageAsset::getAssetByFilename - Finding of associated with file %s failed, utilizing fallback asset", fileName);
- (*imageAsset)->mLoadedState = AssetErrCode::UsingFallback;
- return AssetErrCode::UsingFallback;
- }
- else
- {
- //acquire and bind the asset, and return it out
- imageAsset->setAssetId(query.mAssetList[0]);
- return (*imageAsset)->load();
- }
- }
- StringTableEntry ImageAsset::getAssetIdByFilename(StringTableEntry fileName)
- {
- if (fileName == StringTable->EmptyString())
- return StringTable->EmptyString();
- StringTableEntry imageAssetId = ImageAsset::smNoImageAssetFallback;
- AssetQuery query;
- S32 foundAssetcount = AssetDatabase.findAssetLooseFile(&query, fileName);
- if (foundAssetcount != 0)
- {
- //acquire and bind the asset, and return it out
- imageAssetId = query.mAssetList[0];
- }
- else
- {
- foundAssetcount = AssetDatabase.findAssetType(&query, "ImageAsset");
- if (foundAssetcount != 0)
- {
- // loop all image assets and see if we can find one
- // using the same image file/named target.
- for (auto imgAsset : query.mAssetList)
- {
- AssetPtr<ImageAsset> temp = imgAsset;
- if (temp.notNull())
- {
- if (temp->getImageFile() == fileName)
- {
- return imgAsset;
- }
- else
- {
- Torque::Path temp1 = temp->getImageFile();
- Torque::Path temp2 = fileName;
- if (temp1.getPath() == temp2.getPath() && temp1.getFileName() == temp2.getFileName())
- {
- return imgAsset;
- }
- }
-
- }
- }
- }
- else
- {
- AssetPtr<ImageAsset> imageAsset = imageAssetId; //ensures the fallback is loaded
- }
- }
- return imageAssetId;
- }
- U32 ImageAsset::getAssetById(StringTableEntry assetId, AssetPtr<ImageAsset>* imageAsset)
- {
- (*imageAsset) = assetId;
- if (imageAsset->notNull())
- {
- return (*imageAsset)->load();
- }
- else
- {
- if (imageAsset->isNull())
- {
- return AssetErrCode::Failed;
- }
- //handle fallback not being loaded itself
- if ((*imageAsset)->mLoadedState == BadFileReference)
- {
- Con::warnf("ImageAsset::getAssetById - Finding of asset with id %s failed, and fallback asset reported error of Bad File Reference.", assetId);
- return AssetErrCode::BadFileReference;
- }
- Con::warnf("ImageAsset::getAssetById - Finding of asset with id %s failed, utilizing fallback asset", assetId);
- (*imageAsset)->mLoadedState = AssetErrCode::UsingFallback;
- return AssetErrCode::UsingFallback;
- }
- }
- void ImageAsset::initializeAsset(void)
- {
- // Call parent.
- Parent::initializeAsset();
- // Ensure the image-file is expanded.
- if (isNamedTarget())
- return;
- mImageFile = expandAssetFilePath(mImageFile);
- if (getOwned())
- Torque::FS::AddChangeNotification(mImageFile, this, &ImageAsset::_onResourceChanged);
- populateImage();
- }
- void ImageAsset::onAssetRefresh(void)
- {
- // Ignore if not yet added to the sim.
- if (!isProperlyAdded())
- return;
- // Call parent.
- Parent::onAssetRefresh();
- populateImage();
- }
- //------------------------------------------------------------------------------
- void ImageAsset::copyTo(SimObject* object)
- {
- // Call to parent.
- Parent::copyTo(object);
- ImageAsset* pAsset = static_cast<ImageAsset*>(object);
- // Sanity!
- AssertFatal(pAsset != NULL, "ImageAsset::copyTo() - Object is not the correct type.");
- pAsset->setImageFile(getImageFile());
- pAsset->setGenMips(getGenMips());
- pAsset->setTextureHDR(getTextureHDR());
- }
- void ImageAsset::setImageFile(StringTableEntry pImageFile)
- {
- // Sanity!
- AssertFatal(pImageFile != NULL, "Cannot use a NULL image file.");
- pImageFile = StringTable->insert(pImageFile);
- if (pImageFile == mImageFile)
- return;
- Torque::FS::RemoveChangeNotification(mImageFile, this, &ImageAsset::_onResourceChanged);
- if (String(pImageFile).startsWith("#") || String(pImageFile).startsWith("$"))
- {
- mImageFile = StringTable->insert(pImageFile);
- mIsNamedTarget = true;
- refreshAsset();
- return;
- }
- mImageFile = getOwned() ? expandAssetFilePath(pImageFile) : StringTable->insert(pImageFile);
- refreshAsset();
- }
- void ImageAsset::setGenMips(const bool pGenMips)
- {
- if (pGenMips == mUseMips)
- return;
- mUseMips = pGenMips;
- refreshAsset();
- }
- void ImageAsset::setTextureHDR(const bool pIsHDR)
- {
- if (pIsHDR == mIsHDRImage)
- return;
- mIsHDRImage = pIsHDR;
- refreshAsset();
- }
- U32 ImageAsset::load()
- {
- if (mLoadedState == Ok)
- return mLoadedState;
- if (!Torque::FS::IsFile(mImageFile))
- {
- if (isNamedTarget())
- {
- mLoadedState = Ok;
- return mLoadedState;
- }
- if (mLoadedState != AssetErrCode::BadFileReference && mLoadedState != AssetErrCode::Failed)
- Con::errorf("ImageAsset::initializeAsset: Attempted to load file %s but it was not valid!", mImageFile);
- mLoadedState = BadFileReference;
- return mLoadedState;
- }
- else
- {
- mLoadedState = Ok;
- }
- return mLoadedState;
- }
- GFXTexHandle ImageAsset::getTexture(GFXTextureProfile* requestedProfile)
- {
- if (mLoadedState == Ok && mResourceMap.contains(requestedProfile))
- {
- return mResourceMap.find(requestedProfile)->value;
- }
- else
- {
- //try a reload
- load();
- }
- if (isNamedTarget())
- {
- GFXTexHandle tex;
- AssetPtr<ImageAsset> fallbackAsset;
- ImageAsset::getAssetById(smNamedTargetAssetFallback, &fallbackAsset);
- if (getNamedTarget().isValid())
- {
- tex = getNamedTarget()->getTexture();
- if (tex.isNull())
- {
- return fallbackAsset->getTexture(requestedProfile);
- }
- mResourceMap.insert(requestedProfile, tex);
- return tex;
- }
- else
- {
- return fallbackAsset->getTexture(requestedProfile);
- }
- }
- if (mLoadedState == Ok)
- {
- //If we don't have an existing map case to the requested format, we'll just create it and insert it in
- GFXTexHandle newTex;
- newTex.set(mImageFile, requestedProfile, avar("%s %s() - mTextureObject (line %d)", mImageFile, __FUNCTION__, __LINE__));
- if (newTex)
- {
- mResourceMap.insert(requestedProfile, newTex);
- return newTex;
- }
- }
- return nullptr;
- }
- const char* ImageAsset::getImageTypeNameFromType(ImageAsset::ImageTypes type)
- {
- // must match ImageTypes order
- static const char* _names[] = {
- "Albedo",
- "Normal",
- "ORMConfig",
- "GUI",
- "Roughness",
- "AO",
- "Metalness",
- "Glow",
- "Particle",
- "Decal",
- "Cubemap"
- };
- if (type < 0 || type >= ImageTypeCount)
- {
- Con::errorf("ImageAsset::getAdapterNameFromType - Invalid ImageType, defaulting to Albedo");
- return _names[Albedo];
- }
- return _names[type];
- }
- ImageAsset::ImageTypes ImageAsset::getImageTypeFromName(StringTableEntry name)
- {
- if (dStrIsEmpty(name))
- {
- return (ImageTypes)Albedo;
- }
- S32 ret = -1;
- for (S32 i = 0; i < ImageTypeCount; i++)
- {
- if (!dStricmp(getImageTypeNameFromType((ImageTypes)i), name))
- ret = i;
- }
- if (ret == -1)
- {
- Con::errorf("ImageAsset::getImageTypeFromName - Invalid ImageType name, defaulting to Albedo");
- ret = Albedo;
- }
- return (ImageTypes)ret;
- }
- void ImageAsset::_onResourceChanged(const Torque::Path& path)
- {
- if (path != Torque::Path(mImageFile))
- return;
- refreshAsset();
- }
- void ImageAsset::onTamlPreWrite(void)
- {
- // Call parent.
- Parent::onTamlPreWrite();
- if (isNamedTarget())
- return;
- // Ensure the image-file is collapsed.
- mImageFile = collapseAssetFilePath(mImageFile);
- }
- void ImageAsset::onTamlPostWrite(void)
- {
- // Call parent.
- Parent::onTamlPostWrite();
- if (isNamedTarget())
- return;
- // Ensure the image-file is expanded.
- mImageFile = expandAssetFilePath(mImageFile);
- }
- void ImageAsset::onTamlCustomWrite(TamlCustomNodes& customNodes)
- {
- // Debug Profiling.
- PROFILE_SCOPE(ImageAsset_OnTamlCustomWrite);
- // Call parent.
- Parent::onTamlCustomWrite(customNodes);
- TamlCustomNode* pImageMetaData = customNodes.addNode(StringTable->insert("ImageMetadata"));
- TamlCustomNode* pImageInfoNode = pImageMetaData->addNode(StringTable->insert("ImageInfo"));
- pImageInfoNode->addField(StringTable->insert("ImageWidth"), mImageWidth);
- pImageInfoNode->addField(StringTable->insert("ImageHeight"), mImageHeight);
- pImageInfoNode->addField(StringTable->insert("ImageDepth"), mImageDepth);
- }
- void ImageAsset::onTamlCustomRead(const TamlCustomNodes& customNodes)
- {
- // Debug Profiling.
- PROFILE_SCOPE(ImageAsset_OnTamlCustomRead);
- // Call parent.
- Parent::onTamlCustomRead(customNodes);
- const TamlCustomNode* pImageMetaDataNode = customNodes.findNode(StringTable->insert("ImageMetadata"));
- if (pImageMetaDataNode != NULL)
- {
- const TamlCustomNode* pImageInfoNode = pImageMetaDataNode->findNode(StringTable->insert("ImageInfo"));
- // Fetch fields.
- const TamlCustomFieldVector& fields = pImageInfoNode->getFields();
- // Iterate property fields.
- for (TamlCustomFieldVector::const_iterator fieldItr = fields.begin(); fieldItr != fields.end(); ++fieldItr)
- {
- // Fetch field.
- const TamlCustomField* pField = *fieldItr;
- // Fetch field name.
- StringTableEntry fieldName = pField->getFieldName();
- if (fieldName == StringTable->insert("ImageWidth"))
- {
- pField->getFieldValue(mImageWidth);
- }
- else if (fieldName == StringTable->insert("ImageHeight"))
- {
- pField->getFieldValue(mImageHeight);
- }
- else if (fieldName == StringTable->insert("ImageDepth"))
- {
- pField->getFieldValue(mImageDepth);
- }
- else
- {
- // Unknown name so warn.
- Con::warnf("ImageAsset::onTamlCustomRead() - Encountered an unknown custom field name of '%s'.", fieldName);
- continue;
- }
- }
- }
- }
- void ImageAsset::populateImage(void)
- {
- if (Torque::FS::IsFile(mImageFile))
- {
- if (dStrEndsWith(mImageFile, ".dds"))
- {
- DDSFile* tempFile = new DDSFile();
- FileStream* ddsFs;
- if ((ddsFs = FileStream::createAndOpen(mImageFile, Torque::FS::File::Read)) == NULL)
- {
- Con::errorf("ImageAsset::setImageFile Failed to open ddsfile: %s", mImageFile);
- }
- if (!tempFile->readHeader(*ddsFs))
- {
- Con::errorf("ImageAsset::setImageFile Failed to read header of ddsfile: %s", mImageFile);
- }
- else
- {
- mImageWidth = tempFile->mWidth;
- mImageHeight = tempFile->mHeight;
- }
- ddsFs->close();
- delete tempFile;
- }
- else
- {
- if (!stbi_info(mImageFile, &mImageWidth, &mImageHeight, &mImageChannels))
- {
- StringTableEntry stbErr = stbi_failure_reason();
- if (stbErr == StringTable->EmptyString())
- stbErr = "ImageAsset::Unkown Error!";
- Con::errorf("ImageAsset::setImageFile STB Get file info failed: %s", stbErr);
- }
- }
- // we only support 2d textures..... for now ;)
- mImageDepth = 1;
- }
- }
- const char* ImageAsset::getImageInfo()
- {
- if (isAssetValid())
- {
- static const U32 bufSize = 2048;
- char* returnBuffer = Con::getReturnBuffer(bufSize);
- GFXTexHandle newTex = TEXMGR->createTexture(mImageFile, &GFXStaticTextureSRGBProfile);
- if (newTex)
- {
- dSprintf(returnBuffer, bufSize, "%s %d %d %d", GFXStringTextureFormat[newTex->getFormat()], newTex->getHeight(), newTex->getWidth(), newTex->getDepth());
- newTex = nullptr;
- }
- else
- {
- dSprintf(returnBuffer, bufSize, "ImageAsset::getImageInfo() - Failed to get image info for %s", getAssetId());
- }
- return returnBuffer;
- }
- return "";
- }
- DefineEngineMethod(ImageAsset, getImagePath, const char*, (), ,
- "Gets the image filepath of this asset.\n"
- "@return File path of the image file.")
- {
- return object->getImageFile();
- }
- DefineEngineMethod(ImageAsset, getImageInfo, const char*, (), ,
- "Gets the info and properties of the image.\n"
- "@return The info/properties of the image.")
- {
- return object->getImageInfo();
- }
- DefineEngineMethod(ImageAsset, isNamedTarget, bool, (), ,
- "Gets whether this image is a named target.\n"
- "@return bool for isNamedTarget.")
- {
- return object->isNamedTarget();
- }
- #ifdef TORQUE_TOOLS
- DefineEngineStaticMethod(ImageAsset, getAssetIdByFilename, const char*, (const char* filePath), (""),
- "Queries the Asset Database to see if any asset exists that is associated with the provided file path.\n"
- "@return The AssetId of the associated asset, if any.")
- {
- return ImageAsset::getAssetIdByFilename(StringTable->insert(filePath));
- }
- //-----------------------------------------------------------------------------
- // GuiInspectorTypeAssetId
- //-----------------------------------------------------------------------------
- IMPLEMENT_CONOBJECT(GuiInspectorTypeImageAssetPtr);
- ConsoleDocClass(GuiInspectorTypeImageAssetPtr,
- "@brief Inspector field type for Shapes\n\n"
- "Editor use only.\n\n"
- "@internal"
- );
- void GuiInspectorTypeImageAssetPtr::consoleInit()
- {
- Parent::consoleInit();
- ConsoleBaseType::getType(TypeImageAssetPtr)->setInspectorFieldType("GuiInspectorTypeImageAssetPtr");
- }
- GuiControl* GuiInspectorTypeImageAssetPtr::constructEditControl()
- {
- // Create base filename edit controls
- GuiControl* retCtrl = Parent::constructEditControl();
- if (retCtrl == NULL)
- return retCtrl;
- retCtrl->getRenderTooltipDelegate().bind(this, &GuiInspectorTypeImageAssetPtr::renderTooltip);
- // Change filespec
- char szBuffer[512];
- const char* previewImage;
- if (mInspector->getInspectObject() != nullptr)
- {
- dSprintf(szBuffer, sizeof(szBuffer), "AssetBrowser.showDialog(\"ImageAsset\", \"AssetBrowser.changeAsset\", %s);",
- getIdString());
- mBrowseButton->setField("Command", szBuffer);
- setDataField(StringTable->insert("targetObject"), NULL, mInspector->getInspectObject()->getIdString());
- previewImage = getData();
- }
- else
- {
- //if we don't have a target object, we'll be manipulating the desination value directly
- dSprintf(szBuffer, sizeof(szBuffer), "AssetBrowser.showDialog(\"ImageAsset\", \"AssetBrowser.changeAsset\", %s, \"%s\");",
- mInspector->getIdString(), mVariableName);
- mBrowseButton->setField("Command", szBuffer);
- previewImage = Con::getVariable(mVariableName);
- }
- mLabel = new GuiTextCtrl();
- mLabel->registerObject();
- mLabel->setControlProfile(mProfile);
- mLabel->setText(mCaption);
- addObject(mLabel);
- //
- GuiTextEditCtrl* editTextCtrl = static_cast<GuiTextEditCtrl*>(retCtrl);
- GuiControlProfile* toolEditProfile;
- if (Sim::findObject("ToolsGuiTextEditProfile", toolEditProfile))
- editTextCtrl->setControlProfile(toolEditProfile);
- editTextCtrl->setPlaceholderText("(None)");
- GuiControlProfile* toolDefaultProfile = nullptr;
- Sim::findObject("ToolsGuiDefaultProfile", toolDefaultProfile);
- //
- mPreviewImage = new GuiBitmapCtrl();
- mPreviewImage->registerObject();
- if (toolDefaultProfile)
- mPreviewImage->setControlProfile(toolDefaultProfile);
- updatePreviewImage();
- addObject(mPreviewImage);
- //
- mPreviewBorderButton = new GuiBitmapButtonCtrl();
- mPreviewBorderButton->registerObject();
- if (toolDefaultProfile)
- mPreviewBorderButton->setControlProfile(toolDefaultProfile);
- mPreviewBorderButton->_setBitmap(StringTable->insert("ToolsModule:cubemapBtnBorder_n_image"));
- mPreviewBorderButton->setField("Command", szBuffer); //clicking the preview does the same thing as the edit button, for simplicity
- addObject(mPreviewBorderButton);
- //
- // Create "Open in Editor" button
- mEditButton = new GuiBitmapButtonCtrl();
- if (mInspector->getInspectObject() != nullptr)
- dSprintf(szBuffer, sizeof(szBuffer), "%d.apply(\"\");", getId());
- else
- dSprintf(szBuffer, sizeof(szBuffer), "%s = \"\";", mVariableName);
- mEditButton->setField("Command", szBuffer);
- mEditButton->setBitmap(StringTable->insert("ToolsModule:delete_n_image"));
- mEditButton->setSizing(horizResizeRight, vertResizeAspectBottom);
- mEditButton->setDataField(StringTable->insert("Profile"), NULL, "ToolsGuiButtonProfile");
- mEditButton->setDataField(StringTable->insert("tooltipprofile"), NULL, "GuiToolTipProfile");
- mEditButton->setDataField(StringTable->insert("hovertime"), NULL, "1000");
- mEditButton->setDataField(StringTable->insert("tooltip"), NULL, "Clear this ImageAsset");
- mEditButton->registerObject();
- addObject(mEditButton);
- //
- mUseHeightOverride = true;
- mHeightOverride = 72;
- return retCtrl;
- }
- bool GuiInspectorTypeImageAssetPtr::updateRects()
- {
- S32 rowSize = 18;
- S32 dividerPos, dividerMargin;
- mInspector->getDivider(dividerPos, dividerMargin);
- Point2I fieldExtent = getExtent();
- Point2I fieldPos = getPosition();
- mEditCtrlRect.set(0, 0, fieldExtent.x, fieldExtent.y);
- mLabel->resize(Point2I(mProfile->mTextOffset.x, 0), Point2I(fieldExtent.x, rowSize));
- RectI previewRect = RectI(Point2I(mProfile->mTextOffset.x, rowSize), Point2I(50, 50));
- mPreviewBorderButton->resize(previewRect.point, previewRect.extent);
- mPreviewImage->resize(previewRect.point, previewRect.extent);
- S32 editPos = previewRect.point.x + previewRect.extent.x + 10;
- mEdit->resize(Point2I(editPos, rowSize * 1.5), Point2I(fieldExtent.x - editPos - 5 - rowSize, rowSize));
- mEditButton->resize(Point2I(mEdit->getPosition().x + mEdit->getExtent().x, mEdit->getPosition().y), Point2I(rowSize, rowSize));
- mBrowseButton->setHidden(true);
- return true;
- }
- bool GuiInspectorTypeImageAssetPtr::renderTooltip(const Point2I& hoverPos, const Point2I& cursorPos, const char* tipText)
- {
- if (!mAwake)
- return false;
- GuiCanvas* root = getRoot();
- if (!root)
- return false;
- AssetPtr<ImageAsset> imgAsset;
- U32 assetState = ImageAsset::getAssetById(getData(), &imgAsset);
- if (imgAsset == NULL || assetState == ImageAsset::Failed)
- return false;
- StringTableEntry filename = imgAsset->getImageFile();
- if (!filename || !filename[0])
- return false;
- StringTableEntry previewFilename = filename;
- if (Con::isFunction("getAssetPreviewImage"))
- {
- ConsoleValue consoleRet = Con::executef("getAssetPreviewImage", filename);
- previewFilename = StringTable->insert(consoleRet.getString());
- if (AssetDatabase.isDeclaredAsset(previewFilename))
- {
- ImageAsset* previewAsset = AssetDatabase.acquireAsset<ImageAsset>(previewFilename);
- previewFilename = previewAsset->getImageFile();
- }
- }
- GFXTexHandle texture(previewFilename, &GFXStaticTextureSRGBProfile, avar("%s() - tooltip texture (line %d)", __FUNCTION__, __LINE__));
- if (texture.isNull())
- return false;
- // Render image at a reasonable screen size while
- // keeping its aspect ratio...
- Point2I screensize = getRoot()->getWindowSize();
- Point2I offset = hoverPos;
- Point2I tipBounds;
- U32 texWidth = texture.getWidth();
- U32 texHeight = texture.getHeight();
- F32 aspect = (F32)texHeight / (F32)texWidth;
- const F32 newWidth = 150.0f;
- F32 newHeight = aspect * newWidth;
- // Offset below cursor image
- offset.y += 20; // TODO: Attempt to fix?: root->getCursorExtent().y;
- tipBounds.x = newWidth;
- tipBounds.y = newHeight;
- // Make sure all of the tooltip will be rendered width the app window,
- // 5 is given as a buffer against the edge
- if (screensize.x < offset.x + tipBounds.x + 5)
- offset.x = screensize.x - tipBounds.x - 5;
- if (screensize.y < offset.y + tipBounds.y + 5)
- offset.y = hoverPos.y - tipBounds.y - 5;
- RectI oldClip = GFX->getClipRect();
- RectI rect(offset, tipBounds);
- GFX->setClipRect(rect);
- GFXDrawUtil* drawer = GFX->getDrawUtil();
- drawer->clearBitmapModulation();
- GFX->getDrawUtil()->drawBitmapStretch(texture, rect);
- GFX->setClipRect(oldClip);
- return true;
- }
- void GuiInspectorTypeImageAssetPtr::updateValue()
- {
- Parent::updateValue();
- updatePreviewImage();
- }
- void GuiInspectorTypeImageAssetPtr::updatePreviewImage()
- {
- const char* previewImage;
- if (mInspector->getInspectObject() != nullptr)
- previewImage = getData();
- else
- previewImage = Con::getVariable(mVariableName);
- //if what we're working with isn't even a valid asset, don't present like we found a good one
- if (!AssetDatabase.isDeclaredAsset(previewImage))
- {
- mPreviewImage->_setBitmap(StringTable->insert("ToolsModule:unknownImage_image"));
- return;
- }
- String imgPreviewAssetId = String(previewImage) + "_PreviewImage";
- imgPreviewAssetId.replace(":", "_");
- imgPreviewAssetId = "ToolsModule:" + imgPreviewAssetId;
- if (AssetDatabase.isDeclaredAsset(imgPreviewAssetId.c_str()))
- {
- mPreviewImage->setBitmap(StringTable->insert(imgPreviewAssetId.c_str()));
- }
- else
- {
- if (AssetDatabase.isDeclaredAsset(previewImage))
- {
- mPreviewImage->_setBitmap(previewImage);
- }
- }
- if (mPreviewImage->getBitmapAsset().isNull())
- mPreviewImage->_setBitmap(StringTable->insert("ToolsModule:genericAssetIcon_image"));
- }
- void GuiInspectorTypeImageAssetPtr::setPreviewImage(StringTableEntry assetId)
- {
- //if what we're working with isn't even a valid asset, don't present like we found a good one
- if (!AssetDatabase.isDeclaredAsset(assetId))
- {
- mPreviewImage->_setBitmap(StringTable->insert("ToolsModule:unknownImage_image"));
- return;
- }
- String imgPreviewAssetId = String(assetId) + "_PreviewImage";
- imgPreviewAssetId.replace(":", "_");
- imgPreviewAssetId = "ToolsModule:" + imgPreviewAssetId;
- if (AssetDatabase.isDeclaredAsset(imgPreviewAssetId.c_str()))
- {
- mPreviewImage->setBitmap(StringTable->insert(imgPreviewAssetId.c_str()));
- }
- else
- {
- if (AssetDatabase.isDeclaredAsset(assetId))
- {
- mPreviewImage->_setBitmap(assetId);
- }
- }
- if (mPreviewImage->getBitmapAsset().isNull())
- mPreviewImage->_setBitmap(StringTable->insert("ToolsModule:genericAssetIcon_image"));
- }
- void GuiInspectorTypeImageAssetPtr::setCaption(StringTableEntry caption)
- {
- mCaption = caption;
- mLabel->setText(mCaption);
- }
- DefineEngineMethod(GuiInspectorTypeImageAssetPtr, setCaption, void, (String newCaption), , "() - Sets the caption of the field.")
- {
- object->setCaption(StringTable->insert(newCaption.c_str()));
- }
- DefineEngineMethod(GuiInspectorTypeImageAssetPtr, setIsDeleteBtnVisible, void, (bool isVisible), (false), "() - Sets if the delete/clear button is visible for the field")
- {
- object->setIsDeleteBtnVisible(isVisible);
- }
- #endif
|