/* * ResourceID.cpp, part of VCMI engine * * Authors: listed in file AUTHORS in main folder * * License: GNU General Public License v2.0 or later * Full text of license available in license.txt file, in main folder * */ #include "StdInc.h" #include "ResourceID.h" #include "FileInfo.h" VCMI_LIB_NAMESPACE_BEGIN // trivial to_upper that completely ignores localization and only work with ASCII // Technically not a problem since // 1) Right now VCMI does not supports unicode in filenames on Win // 2) Filesystem case-sensivity is only problem for H3 data which uses ASCII-only symbols // for me (Ivan) this define gives notable decrease in loading times // #define ENABLE_TRIVIAL_TOUPPER #ifdef ENABLE_TRIVIAL_TOUPPER static inline void toUpper(char & symbol) { static const int diff = 'a' - 'A'; if (symbol >= 'a' && symbol <= 'z') symbol -= diff; } static inline void toUpper(std::string & string) { for (char & symbol : string) toUpper(symbol); } #else static inline void toUpper(std::string & string) { boost::to_upper(string); } #endif static inline EResType::Type readType(const std::string& name) { return EResTypeHelper::getTypeFromExtension(FileInfo::GetExtension(name).to_string()); } static inline std::string readName(std::string name) { const auto dotPos = name.find_last_of('.'); //do not cut "extension" of directory name auto delimPos = name.find_last_of('/'); if(delimPos == std::string::npos) delimPos = name.find_last_of('\\'); if((delimPos == std::string::npos || delimPos < dotPos) && dotPos != std::string::npos) { auto type = EResTypeHelper::getTypeFromExtension(name.substr(dotPos)); if(type != EResType::OTHER) name.resize(dotPos); } toUpper(name); return name; } #if 0 ResourceID::ResourceID() :type(EResType::OTHER) { } #endif ResourceID::ResourceID(std::string name_): type{readType(name_)}, name{readName(std::move(name_))} {} ResourceID::ResourceID(std::string name_, EResType::Type type_): type{type_}, name{readName(std::move(name_))} {} #if 0 std::string ResourceID::getName() const { return name; } EResType::Type ResourceID::getType() const { return type; } void ResourceID::setName(std::string name) { // setName shouldn't be used if type is UNDEFINED assert(type != EResType::UNDEFINED); this->name = std::move(name); size_t dotPos = this->name.find_last_of("/."); if(dotPos != std::string::npos && this->name[dotPos] == '.' && this->type == EResTypeHelper::getTypeFromExtension(this->name.substr(dotPos))) { this->name.erase(dotPos); } toUpper(this->name); } void ResourceID::setType(EResType::Type type) { this->type = type; } #endif EResType::Type EResTypeHelper::getTypeFromExtension(std::string extension) { toUpper(extension); static const std::map stringToRes = { {".TXT", EResType::TEXT}, {".JSON", EResType::TEXT}, {".DEF", EResType::ANIMATION}, {".MSK", EResType::MASK}, {".MSG", EResType::MASK}, {".H3C", EResType::CAMPAIGN}, {".H3M", EResType::MAP}, {".FNT", EResType::BMP_FONT}, {".TTF", EResType::TTF_FONT}, {".BMP", EResType::IMAGE}, {".GIF", EResType::IMAGE}, {".JPG", EResType::IMAGE}, {".PCX", EResType::IMAGE}, {".PNG", EResType::IMAGE}, {".TGA", EResType::IMAGE}, {".WAV", EResType::SOUND}, {".82M", EResType::SOUND}, {".MP3", EResType::SOUND}, {".OGG", EResType::SOUND}, {".FLAC", EResType::SOUND}, {".SMK", EResType::VIDEO}, {".BIK", EResType::VIDEO}, {".MJPG", EResType::VIDEO}, {".MPG", EResType::VIDEO}, {".AVI", EResType::VIDEO}, {".ZIP", EResType::ARCHIVE_ZIP}, {".LOD", EResType::ARCHIVE_LOD}, {".PAC", EResType::ARCHIVE_LOD}, {".VID", EResType::ARCHIVE_VID}, {".SND", EResType::ARCHIVE_SND}, {".PAL", EResType::PALETTE}, {".VSGM1", EResType::SAVEGAME}, {".ERM", EResType::ERM}, {".ERT", EResType::ERT}, {".ERS", EResType::ERS}, {".VMAP", EResType::MAP}, {".VCMP", EResType::CAMPAIGN}, {".VERM", EResType::ERM}, {".LUA", EResType::LUA} }; auto iter = stringToRes.find(extension); if (iter == stringToRes.end()) return EResType::OTHER; return iter->second; } std::string EResTypeHelper::getEResTypeAsString(EResType::Type type) { #define MAP_ENUM(value) {EResType::value, #value}, static const std::map stringToRes = { MAP_ENUM(TEXT) MAP_ENUM(ANIMATION) MAP_ENUM(MASK) MAP_ENUM(CAMPAIGN) MAP_ENUM(MAP) MAP_ENUM(BMP_FONT) MAP_ENUM(TTF_FONT) MAP_ENUM(IMAGE) MAP_ENUM(VIDEO) MAP_ENUM(SOUND) MAP_ENUM(ARCHIVE_ZIP) MAP_ENUM(ARCHIVE_LOD) MAP_ENUM(ARCHIVE_SND) MAP_ENUM(ARCHIVE_VID) MAP_ENUM(PALETTE) MAP_ENUM(SAVEGAME) MAP_ENUM(DIRECTORY) MAP_ENUM(ERM) MAP_ENUM(ERT) MAP_ENUM(ERS) MAP_ENUM(OTHER) }; #undef MAP_ENUM auto iter = stringToRes.find(type); assert(iter != stringToRes.end()); return iter->second; } VCMI_LIB_NAMESPACE_END