00001 // Copyright (c) 1998-2014 by Tech Soft 3D, Inc. 00002 // 00003 // The information contained herein is confidential and proprietary to Tech Soft 3D, Inc., 00004 // and considered a trade secret as defined under civil and criminal statutes. 00005 // Tech Soft 3D, Inc. shall pursue its civil and criminal remedies in the event of 00006 // unauthorized use or misappropriation of its trade secrets. Use of this information 00007 // by anyone other than authorized employees of Tech Soft 3D, Inc. is granted only under 00008 // a written non-disclosure agreement, expressly prescribing the scope and manner of such use. 00009 00010 #pragma once 00011 00012 #include "ImageRepository.h" 00013 00014 #include <HIOUtilityMagick.h> 00015 00016 class ImageRepository3DF : public ImageRepository 00017 { 00018 public: 00019 ImageRepository3DF(HC_KEY includeSegmentKey, TextureWriter& textureWriter); 00020 00021 private: 00022 ImageRepository3DF(const ImageRepository3DF&); 00023 ImageRepository3DF& operator=(const ImageRepository3DF&); 00024 00025 virtual bool LoadTextureFile(std::string const & directory, int32_t textureId); 00026 00027 void AssignNameToImage(HC_KEY imageKey, std::string& imageName); 00028 00029 HIOUtilityMagick _hioMagick; 00030 HC_KEY _imagesSegmentKey; 00031 };