/
dieoska
/
ddnet
Обзор
Документация
Войти
/
dieoska
/
ddnet
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
src/tools/map_convert_07.cpp
226 строк
6 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/gamecore.h> #include <game/mapitems.h> /* Usage: map_convert_07 <source map filepath> <dest map filepath> */ static CDataFileReader g_DataReader; static CDataFileWriter g_DataWriter; // global new image data (set by ReplaceImageItem) static int g_aNewDataSize[MAX_MAPIMAGES]; static void *g_apNewData[MAX_MAPIMAGES]; static int g_Index = 0; static int g_NextDataItemId = -1; static int g_aImageIds[MAX_MAPIMAGES]; static bool CheckImageDimensions(void *pLayerItem, int LayerType, const char *pFilename) { if(LayerType != MAPITEMTYPE_LAYER) return true; CMapItemLayer *pImgLayer = (CMapItemLayer *)pLayerItem; if(pImgLayer->m_Type != LAYERTYPE_TILES) return true; CMapItemLayerTilemap *pTMap = (CMapItemLayerTilemap *)pImgLayer; if(pTMap->m_Image == -1) return true; int Type; void *pItem = g_DataReader.GetItem(g_aImageIds[pTMap->m_Image], &Type); if(Type != MAPITEMTYPE_IMAGE) return true; CMapItemImage *pImgItem = (CMapItemImage *)pItem; if(pImgItem->m_Width % 16 == 0 && pImgItem->m_Height % 16 == 0 && pImgItem->m_Width > 0 && pImgItem->m_Height > 0) return true; char aTileLayerName[12]; IntsToStr(pTMap->m_aName, std::size(pTMap->m_aName), aTileLayerName, std::size(aTileLayerName)); const char *pName = g_DataReader.GetDataString(pImgItem->m_ImageName); dbg_msg("map_convert_07", "%s: Tile layer \"%s\" uses image \"%s\" with width %d, height %d, which is not divisible by 16. This is not supported in Teeworlds 0.7. Please scale the image and replace it manually.", pFilename, aTileLayerName, pName == nullptr ? "(error)" : pName, pImgItem->m_Width, pImgItem->m_Height); return false; } static void *ReplaceImageItem(int Index, CMapItemImage *pImgItem, CMapItemImage *pNewImgItem) { if(!pImgItem->m_External) return pImgItem; const char *pName = g_DataReader.GetDataString(pImgItem->m_ImageName); if(pName == nullptr || pName[0] == '\0') { dbg_msg("map_convert_07", "failed to load name of image %d", Index); return pImgItem; } dbg_msg("map_convert_07", "embedding image '%s'", pName); char aStr[IO_MAX_PATH_LENGTH]; str_format(aStr, sizeof(aStr), "data/mapres/%s.png", pName); CImageInfo ImgInfo; int PngliteIncompatible; if(!CImageLoader::LoadPng(io_open(aStr, IOFLAG_READ), aStr, ImgInfo, PngliteIncompatible)) return pImgItem; // keep as external if we don't have a mapres to replace const size_t MaxImageDimension = 1 << 13; if(ImgInfo.m_Format != CImageInfo::FORMAT_RGBA || ImgInfo.m_Width > MaxImageDimension || ImgInfo.m_Height > MaxImageDimension) { dbg_msg("map_convert_07", "ERROR: only RGBA PNG images with maximum width/height %" PRIzu " are supported", MaxImageDimension); ImgInfo.Free(); return pImgItem; } *pNewImgItem = *pImgItem; pNewImgItem->m_Width = ImgInfo.m_Width; pNewImgItem->m_Height = ImgInfo.m_Height; pNewImgItem->m_External = false; pNewImgItem->m_ImageData = g_NextDataItemId++; g_apNewData[g_Index] = ImgInfo.m_pData; g_aNewDataSize[g_Index] = ImgInfo.DataSize(); g_Index++; return (void *)pNewImgItem; } int main(int argc, const char **argv) { CCmdlineFix CmdlineFix(&argc, &argv); log_set_global_logger_default(); if(argc < 2 || argc > 3) { dbg_msg("map_convert_07", "Invalid arguments"); dbg_msg("map_convert_07", "Usage: map_convert_07 <source map filepath> [<dest map filepath>]"); return -1; } std::unique_ptr<IStorage> pStorage = std::unique_ptr<IStorage>(CreateStorage(IStorage::EInitializationType::BASIC, argc, argv)); if(!pStorage) { log_error("map_convert_07", "Error creating basic storage"); return -1; } const char *pSourceFilename = argv[1]; char aDestFilename[IO_MAX_PATH_LENGTH]; if(argc == 3) { str_copy(aDestFilename, argv[2], sizeof(aDestFilename)); } else { char aBuf[IO_MAX_PATH_LENGTH]; IStorage::StripPathAndExtension(pSourceFilename, aBuf, sizeof(aBuf)); str_format(aDestFilename, sizeof(aDestFilename), "data/maps7/%s.map", aBuf); if(fs_makedir("data") != 0) { dbg_msg("map_convert_07", "failed to create data directory"); return -1; } if(fs_makedir("data/maps7") != 0) { dbg_msg("map_convert_07", "failed to create data/maps7 directory"); return -1; } } if(!g_DataReader.Open(pStorage.get(), pSourceFilename, IStorage::TYPE_ABSOLUTE)) { dbg_msg("map_convert_07", "failed to open source map. filename='%s'", pSourceFilename); return -1; } if(!g_DataWriter.Open(pStorage.get(), aDestFilename, IStorage::TYPE_ABSOLUTE)) { dbg_msg("map_convert_07", "failed to open destination map. filename='%s'", aDestFilename); return -1; } g_NextDataItemId = g_DataReader.NumData(); size_t i = 0; for(int Index = 0; Index < g_DataReader.NumItems(); Index++) { int Type; g_DataReader.GetItem(Index, &Type); if(Type == MAPITEMTYPE_IMAGE) { if(i >= MAX_MAPIMAGES) { dbg_msg("map_convert_07", "map uses more images than the client maximum of %" PRIzu ". filename='%s'", MAX_MAPIMAGES, pSourceFilename); break; } g_aImageIds[i] = Index; i++; } } bool Success = true; // 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); Success &= CheckImageDimensions(pItem, Type, pSourceFilename); CMapItemImage NewImageItem; if(Type == MAPITEMTYPE_IMAGE) { pItem = ReplaceImageItem(Index, (CMapItemImage *)pItem, &NewImageItem); if(!pItem) return -1; Size = sizeof(CMapItemImage); NewImageItem.m_Version = 1; } g_DataWriter.AddItem(Type, Id, Size, pItem, &Uuid); } // add all data for(int Index = 0; Index < g_DataReader.NumData(); Index++) { void *pData = g_DataReader.GetData(Index); int Size = g_DataReader.GetDataSize(Index); g_DataWriter.AddData(Size, pData); } for(int Index = 0; Index < g_Index; Index++) { g_DataWriter.AddData(g_aNewDataSize[Index], g_apNewData[Index]); } g_DataReader.Close(); g_DataWriter.Finish(); return Success ? 0 : -1; }