/
dieoska
/
ddnet
Обзор
Документация
Войти
/
dieoska
/
ddnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/tools/map_replace_image.cpp
170 строк
5 KB
Robert Müller
Consistently rename `FileName` variables to `Filename`
18 окт 2025, 21:35
18 окт 2025, 21:35
f40f324
Код
Авторство
О чём код?
/* (c) DDNet developers. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ #include <base/logger.h> #include <base/system.h> #include <engine/gfx/image_loader.h> #include <engine/shared/datafile.h> #include <engine/storage.h> #include <game/mapitems.h> /* Usage: map_replace_image <source map filepath> <dest map filepath> <current image name> <new image filepath> Notes: map filepath must be relative to user default teeworlds folder new image filepath must be absolute or relative to the current position */ static CDataFileReader g_DataReader; // global new image data (set by ReplaceImageItem) static int g_NewNameId = -1; static char g_aNewName[128]; static int g_NewDataId = -1; static int g_NewDataSize = 0; static void *g_pNewData = nullptr; static void *ReplaceImageItem(int Index, CMapItemImage *pImgItem, const char *pImgName, const char *pImgFile, CMapItemImage *pNewImgItem) { const char *pName = g_DataReader.GetDataString(pImgItem->m_ImageName); if(pName == nullptr || pName[0] == '\0') { dbg_msg("map_replace_image", "failed to load name of image %d", Index); return pImgItem; } if(str_comp(pImgName, pName) != 0) return pImgItem; dbg_msg("map_replace_image", "found image '%s'", pImgName); CImageInfo ImgInfo; int PngliteIncompatible; if(!CImageLoader::LoadPng(io_open(pImgName, IOFLAG_READ), pImgName, ImgInfo, PngliteIncompatible)) return nullptr; if(ImgInfo.m_Format != CImageInfo::FORMAT_RGBA) { dbg_msg("map_replace_image", "ERROR: only RGBA PNG images are supported"); ImgInfo.Free(); return nullptr; } *pNewImgItem = *pImgItem; pNewImgItem->m_Width = ImgInfo.m_Width; pNewImgItem->m_Height = ImgInfo.m_Height; g_NewNameId = pImgItem->m_ImageName; IStorage::StripPathAndExtension(pImgFile, g_aNewName, sizeof(g_aNewName)); g_NewDataId = pImgItem->m_ImageData; g_pNewData = ImgInfo.m_pData; g_NewDataSize = ImgInfo.DataSize(); return (void *)pNewImgItem; } int main(int argc, const char **argv) { CCmdlineFix CmdlineFix(&argc, &argv); log_set_global_logger_default(); if(argc != 5) { dbg_msg("map_replace_image", "Invalid arguments"); dbg_msg("map_replace_image", "Usage: map_replace_image <source map filepath> <dest map filepath> <current image name> <new image filepath>"); dbg_msg("map_replace_image", "Notes: map filepath must be relative to user default teeworlds folder"); dbg_msg("map_replace_image", " new image filepath must be absolute or relative to the current position"); return -1; } std::unique_ptr<IStorage> pStorage = std::unique_ptr<IStorage>(CreateStorage(IStorage::EInitializationType::BASIC, argc, argv)); if(!pStorage) { log_error("map_replace_image", "Error creating basic storage"); return -1; } const char *pSourceFilename = argv[1]; const char *pDestFilename = argv[2]; const char *pImageName = argv[3]; const char *pImageFile = argv[4]; if(!g_DataReader.Open(pStorage.get(), pSourceFilename, IStorage::TYPE_ALL)) { dbg_msg("map_replace_image", "failed to open source map. filename='%s'", pSourceFilename); return -1; } CDataFileWriter Writer; if(!Writer.Open(pStorage.get(), pDestFilename)) { dbg_msg("map_replace_image", "failed to open destination map. filename='%s'", pDestFilename); return -1; } // add all items for(int Index = 0; Index < g_DataReader.NumItems(); Index++) { int Type, Id; CUuid Uuid; void *pItem = g_DataReader.GetItem(Index, &Type, &Id, &Uuid); // Filter ITEMTYPE_EX items, they will be automatically added again. if(Type == ITEMTYPE_EX) { continue; } int Size = g_DataReader.GetItemSize(Index); CMapItemImage NewImageItem; if(Type == MAPITEMTYPE_IMAGE) { pItem = ReplaceImageItem(Index, (CMapItemImage *)pItem, pImageName, pImageFile, &NewImageItem); if(!pItem) return -1; Size = sizeof(CMapItemImage); NewImageItem.m_Version = 1; } Writer.AddItem(Type, Id, Size, pItem, &Uuid); } if(g_NewDataId == -1) { dbg_msg("map_replace_image", "image '%s' not found on source map '%s'.", pImageName, pSourceFilename); return -1; } // add all data for(int Index = 0; Index < g_DataReader.NumData(); Index++) { void *pData; int Size; if(Index == g_NewDataId) { pData = g_pNewData; Size = g_NewDataSize; } else if(Index == g_NewNameId) { pData = (void *)g_aNewName; Size = str_length(g_aNewName) + 1; } else { pData = g_DataReader.GetData(Index); Size = g_DataReader.GetDataSize(Index); } Writer.AddData(Size, pData); } g_DataReader.Close(); Writer.Finish(); dbg_msg("map_replace_image", "image '%s' replaced", pImageName); return 0; }