2010-11-20 10:37:14 +00:00
|
|
|
/* (c) Magnus Auvinen. 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. */
|
2011-08-31 11:56:04 +00:00
|
|
|
|
|
|
|
#include <base/tl/array.h>
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
#include "editor.h"
|
2010-10-30 12:06:28 +00:00
|
|
|
#include <engine/client.h>
|
2010-08-17 22:06:00 +00:00
|
|
|
#include <engine/console.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <engine/graphics.h>
|
2010-11-17 12:08:29 +00:00
|
|
|
#include <engine/serverbrowser.h>
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <engine/storage.h>
|
2010-08-06 18:18:53 +00:00
|
|
|
#include <game/gamecore.h>
|
2018-10-08 20:44:49 +00:00
|
|
|
#include <game/mapitems_ex.h>
|
2008-01-17 23:09:49 +00:00
|
|
|
|
|
|
|
template<typename T>
|
2010-05-29 07:25:38 +00:00
|
|
|
static int MakeVersion(int i, const T &v)
|
2020-09-26 19:41:58 +00:00
|
|
|
{
|
|
|
|
return (i << 16) + sizeof(T);
|
|
|
|
}
|
2008-01-17 23:09:49 +00:00
|
|
|
|
2018-02-04 15:00:47 +00:00
|
|
|
// backwards compatibility
|
2009-10-27 14:38:53 +00:00
|
|
|
/*
|
2008-03-05 19:38:47 +00:00
|
|
|
void editor_load_old(DATAFILE *df, MAP *map)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
|
|
|
class mapres_image
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int image_data;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mapres_tilemap
|
|
|
|
{
|
|
|
|
int image;
|
|
|
|
int width;
|
|
|
|
int height;
|
|
|
|
int x, y;
|
|
|
|
int scale;
|
|
|
|
int data;
|
|
|
|
int main;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mapres_entity
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
int data[1];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mapres_spawnpoint
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mapres_item
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
int type;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct mapres_flagstand
|
|
|
|
{
|
|
|
|
int x, y;
|
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
MAPRES_ENTS_START=1,
|
|
|
|
MAPRES_SPAWNPOINT=1,
|
|
|
|
MAPRES_ITEM=2,
|
|
|
|
MAPRES_SPAWNPOINT_RED=3,
|
|
|
|
MAPRES_SPAWNPOINT_BLUE=4,
|
|
|
|
MAPRES_FLAGSTAND_RED=5,
|
|
|
|
MAPRES_FLAGSTAND_BLUE=6,
|
|
|
|
MAPRES_ENTS_END,
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
ITEM_NULL=0,
|
|
|
|
ITEM_WEAPON_GUN=0x00010001,
|
|
|
|
ITEM_WEAPON_SHOTGUN=0x00010002,
|
|
|
|
ITEM_WEAPON_ROCKET=0x00010003,
|
|
|
|
ITEM_WEAPON_SNIPER=0x00010004,
|
|
|
|
ITEM_WEAPON_HAMMER=0x00010005,
|
|
|
|
ITEM_HEALTH =0x00020001,
|
|
|
|
ITEM_ARMOR=0x00030001,
|
|
|
|
ITEM_NINJA=0x00040001,
|
|
|
|
};
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
MAPRES_REGISTERED=0x8000,
|
|
|
|
MAPRES_IMAGE=0x8001,
|
|
|
|
MAPRES_TILEMAP=0x8002,
|
|
|
|
MAPRES_COLLISIONMAP=0x8003,
|
|
|
|
MAPRES_TEMP_THEME=0x8fff,
|
|
|
|
};
|
|
|
|
|
|
|
|
// load tilemaps
|
|
|
|
int game_width = 0;
|
|
|
|
int game_height = 0;
|
|
|
|
{
|
|
|
|
int start, num;
|
|
|
|
datafile_get_type(df, MAPRES_TILEMAP, &start, &num);
|
|
|
|
for(int t = 0; t < num; t++)
|
|
|
|
{
|
|
|
|
mapres_tilemap *tmap = (mapres_tilemap *)datafile_get_item(df, start+t,0,0);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CLayerTiles *l = new CLayerTiles(tmap->width, tmap->height);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
if(tmap->main)
|
|
|
|
{
|
|
|
|
// move game layer to correct position
|
2008-03-05 19:38:47 +00:00
|
|
|
for(int i = 0; i < map->groups[0]->layers.len()-1; i++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2009-10-27 14:38:53 +00:00
|
|
|
if(map->groups[0]->layers[i] == pEditor->map.game_layer)
|
2008-03-05 19:38:47 +00:00
|
|
|
map->groups[0]->swap_layers(i, i+1);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
game_width = tmap->width;
|
|
|
|
game_height = tmap->height;
|
|
|
|
}
|
|
|
|
|
|
|
|
// add new layer
|
2008-03-05 19:38:47 +00:00
|
|
|
map->groups[0]->add_layer(l);
|
2008-01-17 23:09:49 +00:00
|
|
|
|
|
|
|
// process the data
|
|
|
|
unsigned char *src_data = (unsigned char *)datafile_get_data(df, tmap->data);
|
2010-05-29 07:25:38 +00:00
|
|
|
CTile *dst_data = l->tiles;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
for(int y = 0; y < tmap->height; y++)
|
|
|
|
for(int x = 0; x < tmap->width; x++, dst_data++, src_data+=2)
|
|
|
|
{
|
|
|
|
dst_data->index = src_data[0];
|
|
|
|
dst_data->flags = src_data[1];
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
l->image = tmap->image;
|
|
|
|
}
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// load images
|
|
|
|
{
|
|
|
|
int start, count;
|
|
|
|
datafile_get_type(df, MAPRES_IMAGE, &start, &count);
|
|
|
|
for(int i = 0; i < count; i++)
|
|
|
|
{
|
|
|
|
mapres_image *imgres = (mapres_image *)datafile_get_item(df, start+i, 0, 0);
|
|
|
|
void *data = datafile_get_data(df, imgres->image_data);
|
|
|
|
|
2008-06-12 10:51:48 +00:00
|
|
|
EDITOR_IMAGE *img = new EDITOR_IMAGE;
|
2008-01-17 23:09:49 +00:00
|
|
|
img->width = imgres->width;
|
|
|
|
img->height = imgres->height;
|
2010-05-29 07:25:38 +00:00
|
|
|
img->format = CImageInfo::FORMAT_RGBA;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// copy image data
|
|
|
|
img->data = mem_alloc(img->width*img->height*4, 1);
|
|
|
|
mem_copy(img->data, data, img->width*img->height*4);
|
2010-05-29 07:25:38 +00:00
|
|
|
img->tex_id = Graphics()->LoadTextureRaw(img->width, img->height, img->format, img->data, CImageInfo::FORMAT_AUTO, 0);
|
2008-03-09 23:29:14 +00:00
|
|
|
map->images.add(img);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// unload image
|
|
|
|
datafile_unload_data(df, imgres->image_data);
|
|
|
|
}
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// load entities
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CLayerGame *g = map->game_layer;
|
2008-01-17 23:09:49 +00:00
|
|
|
g->resize(game_width, game_height);
|
|
|
|
for(int t = MAPRES_ENTS_START; t < MAPRES_ENTS_END; t++)
|
|
|
|
{
|
|
|
|
// fetch entities of this class
|
|
|
|
int start, num;
|
|
|
|
datafile_get_type(df, t, &start, &num);
|
|
|
|
|
|
|
|
|
|
|
|
for(int i = 0; i < num; i++)
|
|
|
|
{
|
|
|
|
mapres_entity *e = (mapres_entity *)datafile_get_item(df, start+i,0,0);
|
|
|
|
int x = e->x/32;
|
|
|
|
int y = e->y/32;
|
|
|
|
int id = -1;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
if(t == MAPRES_SPAWNPOINT) id = ENTITY_SPAWN;
|
|
|
|
else if(t == MAPRES_SPAWNPOINT_RED) id = ENTITY_SPAWN_RED;
|
|
|
|
else if(t == MAPRES_SPAWNPOINT_BLUE) id = ENTITY_SPAWN_BLUE;
|
|
|
|
else if(t == MAPRES_FLAGSTAND_RED) id = ENTITY_FLAGSTAND_RED;
|
|
|
|
else if(t == MAPRES_FLAGSTAND_BLUE) id = ENTITY_FLAGSTAND_BLUE;
|
|
|
|
else if(t == MAPRES_ITEM)
|
|
|
|
{
|
|
|
|
if(e->data[0] == ITEM_WEAPON_SHOTGUN) id = ENTITY_WEAPON_SHOTGUN;
|
2008-02-02 18:05:16 +00:00
|
|
|
else if(e->data[0] == ITEM_WEAPON_ROCKET) id = ENTITY_WEAPON_GRENADE;
|
2008-01-17 23:09:49 +00:00
|
|
|
else if(e->data[0] == ITEM_NINJA) id = ENTITY_POWERUP_NINJA;
|
|
|
|
else if(e->data[0] == ITEM_ARMOR) id = ENTITY_ARMOR_1;
|
|
|
|
else if(e->data[0] == ITEM_HEALTH) id = ENTITY_HEALTH_1;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
if(id > 0 && x >= 0 && x < g->width && y >= 0 && y < g->height)
|
|
|
|
g->tiles[y*g->width+x].index = id+ENTITY_OFFSET;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2009-10-27 14:38:53 +00:00
|
|
|
}*/
|
2008-01-17 23:09:49 +00:00
|
|
|
|
2014-12-05 13:38:16 +00:00
|
|
|
// compatibility with old sound layers
|
|
|
|
struct CSoundSource_DEPRECATED
|
|
|
|
{
|
|
|
|
CPoint m_Position;
|
|
|
|
int m_Loop;
|
|
|
|
int m_TimeDelay; // in s
|
|
|
|
int m_FalloffDistance;
|
|
|
|
int m_PosEnv;
|
|
|
|
int m_PosEnvOffset;
|
|
|
|
int m_SoundEnv;
|
|
|
|
int m_SoundEnvOffset;
|
|
|
|
};
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int CEditor::Save(const char *pFilename)
|
2008-03-09 23:29:14 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
return m_Map.Save(Kernel()->RequestInterface<IStorage>(), pFilename);
|
2008-03-09 23:29:14 +00:00
|
|
|
}
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int CEditorMap::Save(class IStorage *pStorage, const char *pFileName)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-08-17 22:06:00 +00:00
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "saving to '%s'...", pFileName);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
2010-05-29 07:25:38 +00:00
|
|
|
CDataFileWriter df;
|
|
|
|
if(!df.Open(pStorage, pFileName))
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-08-17 22:06:00 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "failed to open file '%s'...", pFileName);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
2008-01-17 23:09:49 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// save version
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemVersion Item;
|
|
|
|
Item.m_Version = 1;
|
|
|
|
df.AddItem(MAPITEMTYPE_VERSION, 0, sizeof(Item), &Item);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
|
|
|
|
2011-07-12 21:31:39 +00:00
|
|
|
// save map info
|
|
|
|
{
|
2011-07-13 20:38:32 +00:00
|
|
|
CMapItemInfoSettings Item;
|
2011-07-12 21:31:39 +00:00
|
|
|
Item.m_Version = 1;
|
|
|
|
|
|
|
|
if(m_MapInfo.m_aAuthor[0])
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_Author = df.AddData(str_length(m_MapInfo.m_aAuthor) + 1, m_MapInfo.m_aAuthor);
|
2011-07-12 21:31:39 +00:00
|
|
|
else
|
|
|
|
Item.m_Author = -1;
|
|
|
|
if(m_MapInfo.m_aVersion[0])
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_MapVersion = df.AddData(str_length(m_MapInfo.m_aVersion) + 1, m_MapInfo.m_aVersion);
|
2011-07-12 21:31:39 +00:00
|
|
|
else
|
|
|
|
Item.m_MapVersion = -1;
|
|
|
|
if(m_MapInfo.m_aCredits[0])
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_Credits = df.AddData(str_length(m_MapInfo.m_aCredits) + 1, m_MapInfo.m_aCredits);
|
2011-07-12 21:31:39 +00:00
|
|
|
else
|
|
|
|
Item.m_Credits = -1;
|
|
|
|
if(m_MapInfo.m_aLicense[0])
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_License = df.AddData(str_length(m_MapInfo.m_aLicense) + 1, m_MapInfo.m_aLicense);
|
2011-07-12 21:31:39 +00:00
|
|
|
else
|
|
|
|
Item.m_License = -1;
|
|
|
|
|
2011-07-13 20:38:32 +00:00
|
|
|
Item.m_Settings = -1;
|
|
|
|
if(m_lSettings.size())
|
|
|
|
{
|
|
|
|
int Size = 0;
|
|
|
|
for(int i = 0; i < m_lSettings.size(); i++)
|
|
|
|
{
|
|
|
|
Size += str_length(m_lSettings[i].m_aCommand) + 1;
|
|
|
|
}
|
|
|
|
|
2020-10-12 14:07:29 +00:00
|
|
|
// Checked that m_lSettings.size() is not 0, thus Size is > 0 as ell
|
|
|
|
char *pSettings = (char *)malloc(Size); // NOLINT(clang-analyzer-optin.portability.UnixAPI)
|
2011-07-13 20:38:32 +00:00
|
|
|
char *pNext = pSettings;
|
|
|
|
for(int i = 0; i < m_lSettings.size(); i++)
|
|
|
|
{
|
2017-03-12 18:52:29 +00:00
|
|
|
int Length = str_length(m_lSettings[i].m_aCommand) + 1;
|
2011-07-13 20:38:32 +00:00
|
|
|
mem_copy(pNext, m_lSettings[i].m_aCommand, Length);
|
2015-08-27 10:47:13 +00:00
|
|
|
pNext += Length;
|
2011-07-13 20:38:32 +00:00
|
|
|
}
|
|
|
|
Item.m_Settings = df.AddData(Size, pSettings);
|
2018-04-09 09:56:39 +00:00
|
|
|
free(pSettings);
|
2011-07-13 20:38:32 +00:00
|
|
|
}
|
|
|
|
|
2011-07-12 21:31:39 +00:00
|
|
|
df.AddItem(MAPITEMTYPE_INFO, 0, sizeof(Item), &Item);
|
|
|
|
}
|
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// save images
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int i = 0; i < m_lImages.size(); i++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CEditorImage *pImg = m_lImages[i];
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-03-29 11:44:03 +00:00
|
|
|
// analyse the image for when saving (should be done when we load the image)
|
|
|
|
// TODO!
|
2010-05-29 07:25:38 +00:00
|
|
|
pImg->AnalyseTileFlags();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemImage Item;
|
|
|
|
Item.m_Version = 1;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Item.m_Width = pImg->m_Width;
|
|
|
|
Item.m_Height = pImg->m_Height;
|
|
|
|
Item.m_External = pImg->m_External;
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_ImageName = df.AddData(str_length(pImg->m_aName) + 1, pImg->m_aName);
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pImg->m_External)
|
|
|
|
Item.m_ImageData = -1;
|
2008-01-19 14:23:53 +00:00
|
|
|
else
|
2015-04-04 15:16:20 +00:00
|
|
|
{
|
|
|
|
if(pImg->m_Format == CImageInfo::FORMAT_RGB)
|
2015-04-04 16:07:57 +00:00
|
|
|
{
|
|
|
|
// Convert to RGBA
|
2020-10-05 17:03:14 +00:00
|
|
|
unsigned char *pDataRGBA = (unsigned char *)malloc((size_t)Item.m_Width * Item.m_Height * 4);
|
2017-03-12 18:52:29 +00:00
|
|
|
unsigned char *pDataRGB = (unsigned char *)pImg->m_pData;
|
2020-09-26 19:41:58 +00:00
|
|
|
for(int i = 0; i < Item.m_Width * Item.m_Height; i++)
|
2015-04-04 16:07:57 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
pDataRGBA[i * 4] = pDataRGB[i * 3];
|
|
|
|
pDataRGBA[i * 4 + 1] = pDataRGB[i * 3 + 1];
|
|
|
|
pDataRGBA[i * 4 + 2] = pDataRGB[i * 3 + 2];
|
|
|
|
pDataRGBA[i * 4 + 3] = 255;
|
2015-04-04 16:07:57 +00:00
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_ImageData = df.AddData(Item.m_Width * Item.m_Height * 4, pDataRGBA);
|
2018-04-09 09:56:39 +00:00
|
|
|
free(pDataRGBA);
|
2015-04-04 16:07:57 +00:00
|
|
|
}
|
2015-04-04 15:16:20 +00:00
|
|
|
else
|
2015-04-04 16:07:57 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_ImageData = df.AddData(Item.m_Width * Item.m_Height * 4, pImg->m_pData);
|
2015-04-04 16:07:57 +00:00
|
|
|
}
|
2015-04-04 15:16:20 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
df.AddItem(MAPITEMTYPE_IMAGE, i, sizeof(Item), &Item);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2014-10-11 11:38:45 +00:00
|
|
|
// save sounds
|
|
|
|
for(int i = 0; i < m_lSounds.size(); i++)
|
|
|
|
{
|
|
|
|
CEditorSound *pSound = m_lSounds[i];
|
|
|
|
|
|
|
|
CMapItemSound Item;
|
|
|
|
Item.m_Version = 1;
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2020-10-17 14:41:00 +00:00
|
|
|
Item.m_External = 0;
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_SoundName = df.AddData(str_length(pSound->m_aName) + 1, pSound->m_aName);
|
2020-10-17 14:41:00 +00:00
|
|
|
Item.m_SoundData = df.AddData(pSound->m_DataSize, pSound->m_pData);
|
|
|
|
Item.m_SoundDataSize = pSound->m_DataSize;
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2014-10-11 11:38:45 +00:00
|
|
|
df.AddItem(MAPITEMTYPE_SOUND, i, sizeof(Item), &Item);
|
|
|
|
}
|
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// save layers
|
2010-10-16 16:50:05 +00:00
|
|
|
int LayerCount = 0, GroupCount = 0;
|
2018-10-08 20:44:49 +00:00
|
|
|
int AutomapperCount = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int g = 0; g < m_lGroups.size(); g++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2017-03-12 18:52:29 +00:00
|
|
|
CLayerGroup *pGroup = m_lGroups[g];
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemGroup GItem;
|
|
|
|
GItem.m_Version = CMapItemGroup::CURRENT_VERSION;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
GItem.m_ParallaxX = pGroup->m_ParallaxX;
|
|
|
|
GItem.m_ParallaxY = pGroup->m_ParallaxY;
|
|
|
|
GItem.m_OffsetX = pGroup->m_OffsetX;
|
|
|
|
GItem.m_OffsetY = pGroup->m_OffsetY;
|
|
|
|
GItem.m_UseClipping = pGroup->m_UseClipping;
|
|
|
|
GItem.m_ClipX = pGroup->m_ClipX;
|
|
|
|
GItem.m_ClipY = pGroup->m_ClipY;
|
|
|
|
GItem.m_ClipW = pGroup->m_ClipW;
|
|
|
|
GItem.m_ClipH = pGroup->m_ClipH;
|
|
|
|
GItem.m_StartLayer = LayerCount;
|
|
|
|
GItem.m_NumLayers = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-12 01:14:46 +00:00
|
|
|
// save group name
|
2020-09-26 19:41:58 +00:00
|
|
|
StrToInts(GItem.m_aName, sizeof(GItem.m_aName) / sizeof(int), pGroup->m_aName);
|
2011-07-12 01:14:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int l = 0; l < pGroup->m_lLayers.size(); l++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pGroup->m_lLayers[l]->m_Type == LAYERTYPE_TILES)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-08-17 22:06:00 +00:00
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "editor", "saving tiles layer");
|
2010-05-29 07:25:38 +00:00
|
|
|
CLayerTiles *pLayer = (CLayerTiles *)pGroup->m_lLayers[l];
|
|
|
|
pLayer->PrepareForSave();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemLayerTilemap Item;
|
2011-07-12 01:14:46 +00:00
|
|
|
Item.m_Version = 3;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-10-13 07:53:33 +00:00
|
|
|
Item.m_Layer.m_Version = 0; // was previously uninitialized, do not rely on it being 0
|
2010-05-29 07:25:38 +00:00
|
|
|
Item.m_Layer.m_Flags = pLayer->m_Flags;
|
|
|
|
Item.m_Layer.m_Type = pLayer->m_Type;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-18 10:05:12 +00:00
|
|
|
Item.m_Color = pLayer->m_Color;
|
|
|
|
Item.m_ColorEnv = pLayer->m_ColorEnv;
|
|
|
|
Item.m_ColorEnvOffset = pLayer->m_ColorEnvOffset;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Item.m_Width = pLayer->m_Width;
|
|
|
|
Item.m_Height = pLayer->m_Height;
|
2011-08-13 00:12:40 +00:00
|
|
|
// Item.m_Flags = pLayer->m_Game ? TILESLAYERFLAG_GAME : 0;
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2010-09-30 21:31:19 +00:00
|
|
|
if(pLayer->m_Tele)
|
2011-08-13 00:12:40 +00:00
|
|
|
Item.m_Flags = TILESLAYERFLAG_TELE;
|
2010-09-30 21:31:19 +00:00
|
|
|
else if(pLayer->m_Speedup)
|
2011-08-13 00:12:40 +00:00
|
|
|
Item.m_Flags = TILESLAYERFLAG_SPEEDUP;
|
2010-09-30 21:31:19 +00:00
|
|
|
else if(pLayer->m_Front)
|
2011-08-13 00:12:40 +00:00
|
|
|
Item.m_Flags = TILESLAYERFLAG_FRONT;
|
2010-09-30 21:31:19 +00:00
|
|
|
else if(pLayer->m_Switch)
|
2011-08-13 00:12:40 +00:00
|
|
|
Item.m_Flags = TILESLAYERFLAG_SWITCH;
|
2014-03-12 22:47:11 +00:00
|
|
|
else if(pLayer->m_Tune)
|
|
|
|
Item.m_Flags = TILESLAYERFLAG_TUNE;
|
2010-09-30 21:31:19 +00:00
|
|
|
else
|
2011-08-13 00:12:40 +00:00
|
|
|
Item.m_Flags = pLayer->m_Game ? TILESLAYERFLAG_GAME : 0;
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Item.m_Image = pLayer->m_Image;
|
2016-07-09 19:46:47 +00:00
|
|
|
|
2020-10-02 15:45:28 +00:00
|
|
|
// the following values were previously uninitialized, do not rely on them being -1 when unused
|
|
|
|
Item.m_Tele = -1;
|
|
|
|
Item.m_Speedup = -1;
|
|
|
|
Item.m_Front = -1;
|
|
|
|
Item.m_Switch = -1;
|
|
|
|
Item.m_Tune = -1;
|
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(Item.m_Flags && !(pLayer->m_Game))
|
2014-03-12 22:47:11 +00:00
|
|
|
{
|
2020-10-05 17:03:14 +00:00
|
|
|
CTile *pEmptyTiles = (CTile *)calloc((size_t)pLayer->m_Width * pLayer->m_Height, sizeof(CTile));
|
|
|
|
mem_zero(pEmptyTiles, (size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CTile));
|
|
|
|
Item.m_Data = df.AddData((size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CTile), pEmptyTiles);
|
2018-04-09 09:56:39 +00:00
|
|
|
free(pEmptyTiles);
|
2016-07-09 19:46:47 +00:00
|
|
|
|
2017-03-31 17:13:32 +00:00
|
|
|
if(pLayer->m_Tele)
|
2020-10-05 17:03:14 +00:00
|
|
|
Item.m_Tele = df.AddData((size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CTeleTile), ((CLayerTele *)pLayer)->m_pTeleTile);
|
2017-03-31 17:13:32 +00:00
|
|
|
else if(pLayer->m_Speedup)
|
2020-10-05 17:03:14 +00:00
|
|
|
Item.m_Speedup = df.AddData((size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CSpeedupTile), ((CLayerSpeedup *)pLayer)->m_pSpeedupTile);
|
2017-03-31 17:13:32 +00:00
|
|
|
else if(pLayer->m_Front)
|
2020-10-05 17:03:14 +00:00
|
|
|
Item.m_Front = df.AddData((size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CTile), pLayer->m_pTiles);
|
2017-03-31 17:13:32 +00:00
|
|
|
else if(pLayer->m_Switch)
|
2020-10-05 17:03:14 +00:00
|
|
|
Item.m_Switch = df.AddData((size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CSwitchTile), ((CLayerSwitch *)pLayer)->m_pSwitchTile);
|
2017-03-31 17:13:32 +00:00
|
|
|
else if(pLayer->m_Tune)
|
2020-10-05 17:03:14 +00:00
|
|
|
Item.m_Tune = df.AddData((size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CTuneTile), ((CLayerTune *)pLayer)->m_pTuneTile);
|
2014-03-12 22:47:11 +00:00
|
|
|
}
|
2010-09-30 21:31:19 +00:00
|
|
|
else
|
2020-10-05 17:03:14 +00:00
|
|
|
Item.m_Data = df.AddData((size_t)pLayer->m_Width * pLayer->m_Height * sizeof(CTile), pLayer->m_pTiles);
|
2011-07-12 01:14:46 +00:00
|
|
|
|
|
|
|
// save layer name
|
2020-09-26 19:41:58 +00:00
|
|
|
StrToInts(Item.m_aName, sizeof(Item.m_aName) / sizeof(int), pLayer->m_aName);
|
2011-07-12 01:14:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
df.AddItem(MAPITEMTYPE_LAYER, LayerCount, sizeof(Item), &Item);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-10-05 17:36:29 +00:00
|
|
|
// save auto mapper of each tile layer (not physics layer)
|
2020-10-05 17:59:48 +00:00
|
|
|
if(!Item.m_Flags)
|
|
|
|
{
|
2020-10-05 17:36:29 +00:00
|
|
|
CMapItemAutoMapperConfig ItemAutomapper;
|
|
|
|
ItemAutomapper.m_Version = CMapItemAutoMapperConfig::CURRENT_VERSION;
|
|
|
|
ItemAutomapper.m_GroupId = GroupCount;
|
|
|
|
ItemAutomapper.m_LayerId = GItem.m_NumLayers;
|
|
|
|
ItemAutomapper.m_AutomapperConfig = pLayer->m_AutoMapperConfig;
|
|
|
|
ItemAutomapper.m_AutomapperSeed = pLayer->m_Seed;
|
|
|
|
ItemAutomapper.m_Flags = 0;
|
|
|
|
if(pLayer->m_AutoAutoMap)
|
|
|
|
ItemAutomapper.m_Flags |= CMapItemAutoMapperConfig::FLAG_AUTOMATIC;
|
|
|
|
|
|
|
|
df.AddItem(MAPITEMTYPE_AUTOMAPPER_CONFIG, AutomapperCount, sizeof(ItemAutomapper), &ItemAutomapper);
|
|
|
|
AutomapperCount++;
|
|
|
|
}
|
2018-10-08 20:44:49 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
GItem.m_NumLayers++;
|
|
|
|
LayerCount++;
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
else if(pGroup->m_lLayers[l]->m_Type == LAYERTYPE_QUADS)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-08-17 22:06:00 +00:00
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "editor", "saving quads layer");
|
2010-05-29 07:25:38 +00:00
|
|
|
CLayerQuads *pLayer = (CLayerQuads *)pGroup->m_lLayers[l];
|
|
|
|
if(pLayer->m_lQuads.size())
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemLayerQuads Item;
|
2011-07-12 01:14:46 +00:00
|
|
|
Item.m_Version = 2;
|
2020-10-13 07:53:33 +00:00
|
|
|
Item.m_Layer.m_Version = 0; // was previously uninitialized, do not rely on it being 0
|
2011-04-13 18:37:12 +00:00
|
|
|
Item.m_Layer.m_Flags = pLayer->m_Flags;
|
2010-05-29 07:25:38 +00:00
|
|
|
Item.m_Layer.m_Type = pLayer->m_Type;
|
|
|
|
Item.m_Image = pLayer->m_Image;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// add the data
|
2010-05-29 07:25:38 +00:00
|
|
|
Item.m_NumQuads = pLayer->m_lQuads.size();
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_Data = df.AddDataSwapped(pLayer->m_lQuads.size() * sizeof(CQuad), pLayer->m_lQuads.base_ptr());
|
2011-07-12 01:14:46 +00:00
|
|
|
|
|
|
|
// save layer name
|
2020-09-26 19:41:58 +00:00
|
|
|
StrToInts(Item.m_aName, sizeof(Item.m_aName) / sizeof(int), pLayer->m_aName);
|
2011-07-12 01:14:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
df.AddItem(MAPITEMTYPE_LAYER, LayerCount, sizeof(Item), &Item);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// clean up
|
|
|
|
//mem_free(quads);
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
GItem.m_NumLayers++;
|
|
|
|
LayerCount++;
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
|
|
|
}
|
2014-10-09 09:28:02 +00:00
|
|
|
else if(pGroup->m_lLayers[l]->m_Type == LAYERTYPE_SOUNDS)
|
|
|
|
{
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "editor", "saving sounds layer");
|
|
|
|
CLayerSounds *pLayer = (CLayerSounds *)pGroup->m_lLayers[l];
|
2014-10-11 18:05:48 +00:00
|
|
|
if(pLayer->m_lSources.size())
|
2014-10-09 09:28:02 +00:00
|
|
|
{
|
|
|
|
CMapItemLayerSounds Item;
|
|
|
|
Item.m_Version = CMapItemLayerSounds::CURRENT_VERSION;
|
2020-10-13 07:53:33 +00:00
|
|
|
Item.m_Layer.m_Version = 0; // was previously uninitialized, do not rely on it being 0
|
2014-10-09 09:28:02 +00:00
|
|
|
Item.m_Layer.m_Flags = pLayer->m_Flags;
|
|
|
|
Item.m_Layer.m_Type = pLayer->m_Type;
|
|
|
|
Item.m_Sound = pLayer->m_Sound;
|
|
|
|
|
2014-10-09 10:44:03 +00:00
|
|
|
// add the data
|
|
|
|
Item.m_NumSources = pLayer->m_lSources.size();
|
2020-09-26 19:41:58 +00:00
|
|
|
Item.m_Data = df.AddDataSwapped(pLayer->m_lSources.size() * sizeof(CSoundSource), pLayer->m_lSources.base_ptr());
|
2014-10-09 09:28:02 +00:00
|
|
|
|
|
|
|
// save layer name
|
2020-09-26 19:41:58 +00:00
|
|
|
StrToInts(Item.m_aName, sizeof(Item.m_aName) / sizeof(int), pLayer->m_aName);
|
2014-10-09 09:28:02 +00:00
|
|
|
|
|
|
|
df.AddItem(MAPITEMTYPE_LAYER, LayerCount, sizeof(Item), &Item);
|
|
|
|
GItem.m_NumLayers++;
|
|
|
|
LayerCount++;
|
|
|
|
}
|
|
|
|
}
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-10-16 16:50:05 +00:00
|
|
|
df.AddItem(MAPITEMTYPE_GROUP, GroupCount++, sizeof(GItem), &GItem);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// save envelopes
|
2010-05-29 07:25:38 +00:00
|
|
|
int PointCount = 0;
|
|
|
|
for(int e = 0; e < m_lEnvelopes.size(); e++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemEnvelope Item;
|
2011-12-04 13:34:27 +00:00
|
|
|
Item.m_Version = CMapItemEnvelope::CURRENT_VERSION;
|
2010-05-29 07:25:38 +00:00
|
|
|
Item.m_Channels = m_lEnvelopes[e]->m_Channels;
|
|
|
|
Item.m_StartPoint = PointCount;
|
|
|
|
Item.m_NumPoints = m_lEnvelopes[e]->m_lPoints.size();
|
2011-12-04 13:34:27 +00:00
|
|
|
Item.m_Synchronized = m_lEnvelopes[e]->m_Synchronized;
|
2020-09-26 19:41:58 +00:00
|
|
|
StrToInts(Item.m_aName, sizeof(Item.m_aName) / sizeof(int), m_lEnvelopes[e]->m_aName);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
df.AddItem(MAPITEMTYPE_ENVELOPE, e, sizeof(Item), &Item);
|
|
|
|
PointCount += Item.m_NumPoints;
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-10-12 14:07:29 +00:00
|
|
|
if(PointCount > 0)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2020-10-12 14:07:29 +00:00
|
|
|
// save points
|
|
|
|
int TotalSize = sizeof(CEnvPoint) * PointCount;
|
|
|
|
CEnvPoint *pPoints = (CEnvPoint *)calloc(PointCount, sizeof(*pPoints));
|
|
|
|
PointCount = 0;
|
2008-01-17 23:09:49 +00:00
|
|
|
|
2020-10-12 14:07:29 +00:00
|
|
|
for(int e = 0; e < m_lEnvelopes.size(); e++)
|
|
|
|
{
|
|
|
|
int Count = m_lEnvelopes[e]->m_lPoints.size();
|
|
|
|
mem_copy(&pPoints[PointCount], m_lEnvelopes[e]->m_lPoints.base_ptr(), sizeof(CEnvPoint) * Count);
|
|
|
|
PointCount += Count;
|
|
|
|
}
|
|
|
|
|
|
|
|
df.AddItem(MAPITEMTYPE_ENVPOINTS, 0, TotalSize, pPoints);
|
|
|
|
free(pPoints);
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// finish the data file
|
2010-05-29 07:25:38 +00:00
|
|
|
df.Finish();
|
2010-08-17 22:06:00 +00:00
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_ADDINFO, "editor", "saving done");
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-03-21 00:13:55 +00:00
|
|
|
// send rcon.. if we can
|
2010-10-30 12:06:28 +00:00
|
|
|
if(m_pEditor->Client()->RconAuthed())
|
2008-03-21 00:13:55 +00:00
|
|
|
{
|
2010-11-17 12:08:29 +00:00
|
|
|
CServerInfo CurrentServerInfo;
|
|
|
|
m_pEditor->Client()->GetServerInfo(&CurrentServerInfo);
|
2020-09-26 19:41:58 +00:00
|
|
|
const unsigned char ipv4Localhost[16] = {127, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0};
|
|
|
|
const unsigned char ipv6Localhost[16] = {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1};
|
2014-01-24 02:41:30 +00:00
|
|
|
|
|
|
|
// and if we're on localhost
|
2020-09-26 19:41:58 +00:00
|
|
|
if(!mem_comp(CurrentServerInfo.m_NetAddr.ip, ipv4Localhost, sizeof(ipv4Localhost)) || !mem_comp(CurrentServerInfo.m_NetAddr.ip, ipv6Localhost, sizeof(ipv6Localhost)))
|
2014-01-24 02:41:30 +00:00
|
|
|
{
|
|
|
|
char aMapName[128];
|
2017-08-30 11:59:42 +00:00
|
|
|
IStorage::StripPathAndExtension(pFileName, aMapName, sizeof(aMapName));
|
2014-01-24 02:41:30 +00:00
|
|
|
if(!str_comp(aMapName, CurrentServerInfo.m_aMap))
|
|
|
|
m_pEditor->Client()->Rcon("reload");
|
|
|
|
}
|
2010-11-17 12:08:29 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2010-10-07 21:51:07 +00:00
|
|
|
int CEditor::Load(const char *pFileName, int StorageType)
|
2008-03-05 19:38:47 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
Reset();
|
2016-08-23 01:08:36 +00:00
|
|
|
int result = m_Map.Load(Kernel()->RequestInterface<IStorage>(), pFileName, StorageType);
|
2020-09-26 19:41:58 +00:00
|
|
|
if(result)
|
2016-08-23 01:08:36 +00:00
|
|
|
{
|
|
|
|
str_copy(m_aFileName, pFileName, 512);
|
|
|
|
SortImages();
|
2020-09-21 17:36:26 +00:00
|
|
|
SelectGameLayer();
|
2016-08-23 01:08:36 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
m_aFileName[0] = 0;
|
|
|
|
Reset();
|
|
|
|
}
|
|
|
|
return result;
|
2008-03-05 19:38:47 +00:00
|
|
|
}
|
|
|
|
|
2010-10-07 21:51:07 +00:00
|
|
|
int CEditorMap::Load(class IStorage *pStorage, const char *pFileName, int StorageType)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CDataFileReader DataFile;
|
|
|
|
//DATAFILE *df = datafile_load(filename);
|
2010-10-07 21:51:07 +00:00
|
|
|
if(!DataFile.Open(pStorage, pFileName, StorageType))
|
2008-01-17 23:09:49 +00:00
|
|
|
return 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
Clean();
|
2008-01-17 23:09:49 +00:00
|
|
|
|
|
|
|
// check version
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemVersion *pItem = (CMapItemVersion *)DataFile.FindItem(MAPITEMTYPE_VERSION, 0);
|
|
|
|
if(!pItem)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
|
|
|
// import old map
|
2009-10-27 14:38:53 +00:00
|
|
|
/*MAP old_mapstuff;
|
|
|
|
editor->reset();
|
2008-03-21 00:13:55 +00:00
|
|
|
editor_load_old(df, this);
|
2009-10-27 14:38:53 +00:00
|
|
|
*/
|
2013-05-26 08:58:03 +00:00
|
|
|
return 0;
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
else if(pItem->m_Version == 1)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2008-03-09 23:29:14 +00:00
|
|
|
//editor.reset(false);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-12 21:31:39 +00:00
|
|
|
// load map info
|
|
|
|
{
|
2011-07-13 20:38:32 +00:00
|
|
|
int Start, Num;
|
|
|
|
DataFile.GetType(MAPITEMTYPE_INFO, &Start, &Num);
|
|
|
|
for(int i = Start; i < Start + Num; i++)
|
2011-07-12 21:31:39 +00:00
|
|
|
{
|
2017-08-28 16:06:19 +00:00
|
|
|
int ItemSize = DataFile.GetItemSize(Start);
|
2011-07-13 20:38:32 +00:00
|
|
|
int ItemID;
|
|
|
|
CMapItemInfoSettings *pItem = (CMapItemInfoSettings *)DataFile.GetItem(i, 0, &ItemID);
|
|
|
|
if(!pItem || ItemID != 0)
|
|
|
|
continue;
|
|
|
|
|
2011-07-12 21:31:39 +00:00
|
|
|
if(pItem->m_Author > -1)
|
|
|
|
str_copy(m_MapInfo.m_aAuthor, (char *)DataFile.GetData(pItem->m_Author), sizeof(m_MapInfo.m_aAuthor));
|
|
|
|
if(pItem->m_MapVersion > -1)
|
|
|
|
str_copy(m_MapInfo.m_aVersion, (char *)DataFile.GetData(pItem->m_MapVersion), sizeof(m_MapInfo.m_aVersion));
|
|
|
|
if(pItem->m_Credits > -1)
|
|
|
|
str_copy(m_MapInfo.m_aCredits, (char *)DataFile.GetData(pItem->m_Credits), sizeof(m_MapInfo.m_aCredits));
|
|
|
|
if(pItem->m_License > -1)
|
|
|
|
str_copy(m_MapInfo.m_aLicense, (char *)DataFile.GetData(pItem->m_License), sizeof(m_MapInfo.m_aLicense));
|
2011-07-13 20:38:32 +00:00
|
|
|
|
|
|
|
if(pItem->m_Version != 1 || ItemSize < (int)sizeof(CMapItemInfoSettings))
|
|
|
|
break;
|
|
|
|
|
|
|
|
if(!(pItem->m_Settings > -1))
|
|
|
|
break;
|
|
|
|
|
2017-08-30 06:36:17 +00:00
|
|
|
const unsigned Size = DataFile.GetDataSize(pItem->m_Settings);
|
2011-07-13 20:38:32 +00:00
|
|
|
char *pSettings = (char *)DataFile.GetData(pItem->m_Settings);
|
|
|
|
char *pNext = pSettings;
|
|
|
|
while(pNext < pSettings + Size)
|
|
|
|
{
|
|
|
|
int StrSize = str_length(pNext) + 1;
|
|
|
|
CSetting Setting;
|
|
|
|
str_copy(Setting.m_aCommand, pNext, sizeof(Setting.m_aCommand));
|
|
|
|
m_lSettings.add(Setting);
|
|
|
|
pNext += StrSize;
|
|
|
|
}
|
2011-07-12 21:31:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// load images
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
int Start, Num;
|
2020-09-26 19:41:58 +00:00
|
|
|
DataFile.GetType(MAPITEMTYPE_IMAGE, &Start, &Num);
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int i = 0; i < Num; i++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
CMapItemImage *pItem = (CMapItemImage *)DataFile.GetItem(Start + i, 0, 0);
|
2010-05-29 07:25:38 +00:00
|
|
|
char *pName = (char *)DataFile.GetData(pItem->m_ImageName);
|
2008-01-19 14:23:53 +00:00
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
// copy base info
|
2010-05-29 07:25:38 +00:00
|
|
|
CEditorImage *pImg = new CEditorImage(m_pEditor);
|
|
|
|
pImg->m_External = pItem->m_External;
|
2008-01-19 14:23:53 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pItem->m_External)
|
2008-01-19 14:23:53 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
char aBuf[256];
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "mapres/%s.png", pName);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-19 14:23:53 +00:00
|
|
|
// load external
|
2010-05-29 07:25:38 +00:00
|
|
|
CEditorImage ImgInfo(m_pEditor);
|
2010-10-06 21:07:35 +00:00
|
|
|
if(m_pEditor->Graphics()->LoadPNG(&ImgInfo, aBuf, IStorage::TYPE_ALL))
|
2008-01-19 14:23:53 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
*pImg = ImgInfo;
|
2020-09-21 03:57:54 +00:00
|
|
|
int TextureLoadFlag = m_pEditor->Graphics()->HasTextureArrays() ? IGraphics::TEXLOAD_TO_2D_ARRAY_TEXTURE : IGraphics::TEXLOAD_TO_3D_TEXTURE;
|
|
|
|
if(ImgInfo.m_Width % 16 != 0 || ImgInfo.m_Height % 16 != 0)
|
|
|
|
TextureLoadFlag = 0;
|
|
|
|
pImg->m_Texture = m_pEditor->Graphics()->LoadTextureRaw(ImgInfo.m_Width, ImgInfo.m_Height, ImgInfo.m_Format, ImgInfo.m_pData, CImageInfo::FORMAT_AUTO, TextureLoadFlag, aBuf);
|
2012-07-08 11:13:21 +00:00
|
|
|
ImgInfo.m_pData = 0;
|
2010-05-29 07:25:38 +00:00
|
|
|
pImg->m_External = 1;
|
2008-01-19 14:23:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
pImg->m_Width = pItem->m_Width;
|
|
|
|
pImg->m_Height = pItem->m_Height;
|
|
|
|
pImg->m_Format = CImageInfo::FORMAT_RGBA;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-19 14:23:53 +00:00
|
|
|
// copy image data
|
2010-05-29 07:25:38 +00:00
|
|
|
void *pData = DataFile.GetData(pItem->m_ImageData);
|
2020-10-05 17:03:14 +00:00
|
|
|
pImg->m_pData = malloc((size_t)pImg->m_Width * pImg->m_Height * 4);
|
2020-09-21 03:57:54 +00:00
|
|
|
mem_copy(pImg->m_pData, pData, pImg->m_Width * pImg->m_Height * 4);
|
|
|
|
int TextureLoadFlag = m_pEditor->Graphics()->HasTextureArrays() ? IGraphics::TEXLOAD_TO_2D_ARRAY_TEXTURE : IGraphics::TEXLOAD_TO_3D_TEXTURE;
|
|
|
|
if(pImg->m_Width % 16 != 0 || pImg->m_Height % 16 != 0)
|
|
|
|
TextureLoadFlag = 0;
|
|
|
|
pImg->m_Texture = m_pEditor->Graphics()->LoadTextureRaw(pImg->m_Width, pImg->m_Height, pImg->m_Format, pImg->m_pData, CImageInfo::FORMAT_AUTO, TextureLoadFlag);
|
2008-01-19 14:23:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// copy image name
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pName)
|
|
|
|
str_copy(pImg->m_aName, pName, 128);
|
2008-01-19 14:23:53 +00:00
|
|
|
|
2011-07-08 23:09:06 +00:00
|
|
|
// load auto mapper file
|
|
|
|
pImg->m_AutoMapper.Load(pImg->m_aName);
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
m_lImages.add(pImg);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// unload image
|
2010-05-29 07:25:38 +00:00
|
|
|
DataFile.UnloadData(pItem->m_ImageData);
|
|
|
|
DataFile.UnloadData(pItem->m_ImageName);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2014-10-11 11:38:45 +00:00
|
|
|
// load sounds
|
|
|
|
{
|
|
|
|
int Start, Num;
|
2020-09-26 19:41:58 +00:00
|
|
|
DataFile.GetType(MAPITEMTYPE_SOUND, &Start, &Num);
|
2014-10-11 11:38:45 +00:00
|
|
|
for(int i = 0; i < Num; i++)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
CMapItemSound *pItem = (CMapItemSound *)DataFile.GetItem(Start + i, 0, 0);
|
2014-10-11 11:38:45 +00:00
|
|
|
char *pName = (char *)DataFile.GetData(pItem->m_SoundName);
|
|
|
|
|
|
|
|
// copy base info
|
|
|
|
CEditorSound *pSound = new CEditorSound(m_pEditor);
|
|
|
|
|
|
|
|
if(pItem->m_External)
|
|
|
|
{
|
|
|
|
char aBuf[256];
|
2020-09-26 19:41:58 +00:00
|
|
|
str_format(aBuf, sizeof(aBuf), "mapres/%s.opus", pName);
|
2014-10-11 11:38:45 +00:00
|
|
|
|
|
|
|
// load external
|
2014-10-11 12:50:16 +00:00
|
|
|
IOHANDLE SoundFile = pStorage->OpenFile(pName, IOFLAG_READ, IStorage::TYPE_ALL);
|
|
|
|
if(SoundFile)
|
|
|
|
{
|
|
|
|
// read the whole file into memory
|
|
|
|
pSound->m_DataSize = io_length(SoundFile);
|
2014-10-24 21:03:16 +00:00
|
|
|
|
|
|
|
if(pSound->m_DataSize > 0)
|
|
|
|
{
|
2018-04-09 09:56:39 +00:00
|
|
|
pSound->m_pData = malloc(pSound->m_DataSize);
|
2014-10-24 21:03:16 +00:00
|
|
|
io_read(SoundFile, pSound->m_pData, pSound->m_DataSize);
|
|
|
|
}
|
2014-10-11 12:50:16 +00:00
|
|
|
io_close(SoundFile);
|
2014-10-24 21:03:16 +00:00
|
|
|
if(pSound->m_DataSize > 0)
|
|
|
|
{
|
2014-10-27 15:23:53 +00:00
|
|
|
pSound->m_SoundID = m_pEditor->Sound()->LoadOpusFromMem(pSound->m_pData, pSound->m_DataSize, true);
|
2014-10-24 21:03:16 +00:00
|
|
|
}
|
2014-10-11 12:50:16 +00:00
|
|
|
}
|
2014-10-11 11:38:45 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2014-10-11 12:50:16 +00:00
|
|
|
pSound->m_DataSize = pItem->m_SoundDataSize;
|
2014-10-11 11:38:45 +00:00
|
|
|
|
2014-10-11 12:50:16 +00:00
|
|
|
// copy sample data
|
|
|
|
void *pData = DataFile.GetData(pItem->m_SoundData);
|
2018-04-09 09:56:39 +00:00
|
|
|
pSound->m_pData = malloc(pSound->m_DataSize);
|
2014-10-11 12:50:16 +00:00
|
|
|
mem_copy(pSound->m_pData, pData, pSound->m_DataSize);
|
2014-10-27 15:23:53 +00:00
|
|
|
pSound->m_SoundID = m_pEditor->Sound()->LoadOpusFromMem(pSound->m_pData, pSound->m_DataSize, true);
|
2014-10-11 11:38:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// copy image name
|
|
|
|
if(pName)
|
|
|
|
str_copy(pSound->m_aName, pName, sizeof(pSound->m_aName));
|
|
|
|
|
|
|
|
m_lSounds.add(pSound);
|
|
|
|
|
|
|
|
// unload image
|
|
|
|
DataFile.UnloadData(pItem->m_SoundData);
|
|
|
|
DataFile.UnloadData(pItem->m_SoundName);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// load groups
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
int LayersStart, LayersNum;
|
|
|
|
DataFile.GetType(MAPITEMTYPE_LAYER, &LayersStart, &LayersNum);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int Start, Num;
|
|
|
|
DataFile.GetType(MAPITEMTYPE_GROUP, &Start, &Num);
|
|
|
|
for(int g = 0; g < Num; g++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
CMapItemGroup *pGItem = (CMapItemGroup *)DataFile.GetItem(Start + g, 0, 0);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pGItem->m_Version < 1 || pGItem->m_Version > CMapItemGroup::CURRENT_VERSION)
|
2008-03-29 11:44:03 +00:00
|
|
|
continue;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
CLayerGroup *pGroup = NewGroup();
|
|
|
|
pGroup->m_ParallaxX = pGItem->m_ParallaxX;
|
|
|
|
pGroup->m_ParallaxY = pGItem->m_ParallaxY;
|
|
|
|
pGroup->m_OffsetX = pGItem->m_OffsetX;
|
|
|
|
pGroup->m_OffsetY = pGItem->m_OffsetY;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pGItem->m_Version >= 2)
|
2008-03-29 11:44:03 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
pGroup->m_UseClipping = pGItem->m_UseClipping;
|
|
|
|
pGroup->m_ClipX = pGItem->m_ClipX;
|
|
|
|
pGroup->m_ClipY = pGItem->m_ClipY;
|
|
|
|
pGroup->m_ClipW = pGItem->m_ClipW;
|
|
|
|
pGroup->m_ClipH = pGItem->m_ClipH;
|
2008-03-29 11:44:03 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-12 01:14:46 +00:00
|
|
|
// load group name
|
|
|
|
if(pGItem->m_Version >= 3)
|
2020-09-26 19:41:58 +00:00
|
|
|
IntsToStr(pGItem->m_aName, sizeof(pGroup->m_aName) / sizeof(int), pGroup->m_aName);
|
2011-07-12 01:14:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int l = 0; l < pGItem->m_NumLayers; l++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CLayer *pLayer = 0;
|
2020-09-26 19:41:58 +00:00
|
|
|
CMapItemLayer *pLayerItem = (CMapItemLayer *)DataFile.GetItem(LayersStart + pGItem->m_StartLayer + l, 0, 0);
|
2010-05-29 07:25:38 +00:00
|
|
|
if(!pLayerItem)
|
2008-01-17 23:09:49 +00:00
|
|
|
continue;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pLayerItem->m_Type == LAYERTYPE_TILES)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemLayerTilemap *pTilemapItem = (CMapItemLayerTilemap *)pLayerItem;
|
|
|
|
CLayerTiles *pTiles = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
if(pTilemapItem->m_Flags & TILESLAYERFLAG_GAME)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
pTiles = new CLayerGame(pTilemapItem->m_Width, pTilemapItem->m_Height);
|
|
|
|
MakeGameLayer(pTiles);
|
|
|
|
MakeGameGroup(pGroup);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(pTilemapItem->m_Flags & TILESLAYERFLAG_TELE)
|
2010-09-30 21:31:19 +00:00
|
|
|
{
|
2011-08-13 00:12:40 +00:00
|
|
|
if(pTilemapItem->m_Version <= 2)
|
2020-09-26 19:41:58 +00:00
|
|
|
pTilemapItem->m_Tele = *((int *)(pTilemapItem) + 15);
|
2011-08-13 00:12:40 +00:00
|
|
|
|
2010-09-30 21:31:19 +00:00
|
|
|
pTiles = new CLayerTele(pTilemapItem->m_Width, pTilemapItem->m_Height);
|
|
|
|
MakeTeleLayer(pTiles);
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(pTilemapItem->m_Flags & TILESLAYERFLAG_SPEEDUP)
|
2010-09-30 21:31:19 +00:00
|
|
|
{
|
2011-08-13 00:12:40 +00:00
|
|
|
if(pTilemapItem->m_Version <= 2)
|
2020-09-26 19:41:58 +00:00
|
|
|
pTilemapItem->m_Speedup = *((int *)(pTilemapItem) + 16);
|
2011-08-13 00:12:40 +00:00
|
|
|
|
2010-09-30 21:31:19 +00:00
|
|
|
pTiles = new CLayerSpeedup(pTilemapItem->m_Width, pTilemapItem->m_Height);
|
|
|
|
MakeSpeedupLayer(pTiles);
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(pTilemapItem->m_Flags & TILESLAYERFLAG_FRONT)
|
2010-09-30 21:31:19 +00:00
|
|
|
{
|
2011-08-13 00:12:40 +00:00
|
|
|
if(pTilemapItem->m_Version <= 2)
|
2020-09-26 19:41:58 +00:00
|
|
|
pTilemapItem->m_Front = *((int *)(pTilemapItem) + 17);
|
2011-08-13 00:12:40 +00:00
|
|
|
|
2010-09-30 21:31:19 +00:00
|
|
|
pTiles = new CLayerFront(pTilemapItem->m_Width, pTilemapItem->m_Height);
|
|
|
|
MakeFrontLayer(pTiles);
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(pTilemapItem->m_Flags & TILESLAYERFLAG_SWITCH)
|
2010-09-30 21:31:19 +00:00
|
|
|
{
|
2011-08-13 00:12:40 +00:00
|
|
|
if(pTilemapItem->m_Version <= 2)
|
2020-09-26 19:41:58 +00:00
|
|
|
pTilemapItem->m_Switch = *((int *)(pTilemapItem) + 18);
|
2011-08-13 00:12:40 +00:00
|
|
|
|
2010-09-30 21:31:19 +00:00
|
|
|
pTiles = new CLayerSwitch(pTilemapItem->m_Width, pTilemapItem->m_Height);
|
|
|
|
MakeSwitchLayer(pTiles);
|
|
|
|
}
|
2020-09-26 19:41:58 +00:00
|
|
|
else if(pTilemapItem->m_Flags & TILESLAYERFLAG_TUNE)
|
2014-03-12 22:47:11 +00:00
|
|
|
{
|
|
|
|
if(pTilemapItem->m_Version <= 2)
|
2020-09-26 19:41:58 +00:00
|
|
|
pTilemapItem->m_Tune = *((int *)(pTilemapItem) + 19);
|
2014-03-12 22:47:11 +00:00
|
|
|
|
|
|
|
pTiles = new CLayerTune(pTilemapItem->m_Width, pTilemapItem->m_Height);
|
|
|
|
MakeTuneLayer(pTiles);
|
|
|
|
}
|
2008-01-17 23:09:49 +00:00
|
|
|
else
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
pTiles = new CLayerTiles(pTilemapItem->m_Width, pTilemapItem->m_Height);
|
|
|
|
pTiles->m_pEditor = m_pEditor;
|
2011-07-18 10:05:12 +00:00
|
|
|
pTiles->m_Color = pTilemapItem->m_Color;
|
|
|
|
pTiles->m_ColorEnv = pTilemapItem->m_ColorEnv;
|
|
|
|
pTiles->m_ColorEnvOffset = pTilemapItem->m_ColorEnvOffset;
|
2010-05-29 07:25:38 +00:00
|
|
|
}
|
2008-03-21 17:39:09 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
pLayer = pTiles;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
pGroup->AddLayer(pTiles);
|
|
|
|
void *pData = DataFile.GetData(pTilemapItem->m_Data);
|
2017-08-30 06:36:17 +00:00
|
|
|
unsigned int Size = DataFile.GetDataSize(pTilemapItem->m_Data);
|
2010-05-29 07:25:38 +00:00
|
|
|
pTiles->m_Image = pTilemapItem->m_Image;
|
2020-09-26 19:41:58 +00:00
|
|
|
pTiles->m_Game = pTilemapItem->m_Flags & TILESLAYERFLAG_GAME;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-07-12 01:14:46 +00:00
|
|
|
// load layer name
|
|
|
|
if(pTilemapItem->m_Version >= 3)
|
2020-09-26 19:41:58 +00:00
|
|
|
IntsToStr(pTilemapItem->m_aName, sizeof(pTiles->m_aName) / sizeof(int), pTiles->m_aName);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-09-30 21:31:19 +00:00
|
|
|
if(pTiles->m_Tele)
|
|
|
|
{
|
|
|
|
void *pTeleData = DataFile.GetData(pTilemapItem->m_Tele);
|
2017-08-30 06:36:17 +00:00
|
|
|
unsigned int Size = DataFile.GetDataSize(pTilemapItem->m_Tele);
|
2020-10-05 17:03:14 +00:00
|
|
|
if(Size >= (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTeleTile))
|
2010-09-30 21:31:19 +00:00
|
|
|
{
|
2017-03-12 18:52:29 +00:00
|
|
|
static const int s_aTilesRep[] = {
|
|
|
|
TILE_TELEIN,
|
|
|
|
TILE_TELEINEVIL,
|
|
|
|
TILE_TELEOUT,
|
|
|
|
TILE_TELECHECK,
|
|
|
|
TILE_TELECHECKIN,
|
|
|
|
TILE_TELECHECKINEVIL,
|
|
|
|
TILE_TELECHECKOUT,
|
|
|
|
TILE_TELEINWEAPON,
|
2020-09-26 19:41:58 +00:00
|
|
|
TILE_TELEINHOOK};
|
2020-10-05 17:03:14 +00:00
|
|
|
mem_copy(((CLayerTele *)pTiles)->m_pTeleTile, pTeleData, (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTeleTile));
|
2014-01-10 23:46:32 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
for(int i = 0; i < pTiles->m_Width * pTiles->m_Height; i++)
|
2014-01-10 23:46:32 +00:00
|
|
|
{
|
2016-07-09 19:46:47 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
2020-10-26 13:11:11 +00:00
|
|
|
for(int e : s_aTilesRep)
|
2016-07-09 19:46:47 +00:00
|
|
|
{
|
2020-10-26 13:11:11 +00:00
|
|
|
if(((CLayerTele *)pTiles)->m_pTeleTile[i].m_Type == e)
|
|
|
|
pTiles->m_pTiles[i].m_Index = e;
|
2016-07-09 19:46:47 +00:00
|
|
|
}
|
2014-01-10 23:46:32 +00:00
|
|
|
}
|
2010-09-30 21:31:19 +00:00
|
|
|
}
|
|
|
|
DataFile.UnloadData(pTilemapItem->m_Tele);
|
|
|
|
}
|
|
|
|
else if(pTiles->m_Speedup)
|
|
|
|
{
|
|
|
|
void *pSpeedupData = DataFile.GetData(pTilemapItem->m_Speedup);
|
2017-08-30 06:36:17 +00:00
|
|
|
unsigned int Size = DataFile.GetDataSize(pTilemapItem->m_Speedup);
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2020-10-05 17:03:14 +00:00
|
|
|
if(Size >= (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CSpeedupTile))
|
2010-09-30 21:31:19 +00:00
|
|
|
{
|
2020-10-05 17:03:14 +00:00
|
|
|
mem_copy(((CLayerSpeedup *)pTiles)->m_pSpeedupTile, pSpeedupData, (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CSpeedupTile));
|
2014-01-10 23:46:32 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
for(int i = 0; i < pTiles->m_Width * pTiles->m_Height; i++)
|
2014-01-10 23:46:32 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(((CLayerSpeedup *)pTiles)->m_pSpeedupTile[i].m_Force > 0)
|
2016-07-09 19:46:47 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = TILE_BOOST;
|
2014-01-10 23:46:32 +00:00
|
|
|
else
|
2016-07-09 19:46:47 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
2014-01-10 23:46:32 +00:00
|
|
|
}
|
2010-09-30 21:31:19 +00:00
|
|
|
}
|
2011-04-09 06:41:31 +00:00
|
|
|
|
2010-09-30 21:31:19 +00:00
|
|
|
DataFile.UnloadData(pTilemapItem->m_Speedup);
|
|
|
|
}
|
|
|
|
else if(pTiles->m_Front)
|
|
|
|
{
|
|
|
|
void *pFrontData = DataFile.GetData(pTilemapItem->m_Front);
|
2017-08-30 06:36:17 +00:00
|
|
|
unsigned int Size = DataFile.GetDataSize(pTilemapItem->m_Front);
|
2020-10-05 17:03:14 +00:00
|
|
|
if(Size >= (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTile))
|
|
|
|
mem_copy(((CLayerFront *)pTiles)->m_pTiles, pFrontData, (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTile));
|
2010-09-30 21:31:19 +00:00
|
|
|
|
|
|
|
DataFile.UnloadData(pTilemapItem->m_Front);
|
|
|
|
}
|
|
|
|
else if(pTiles->m_Switch)
|
|
|
|
{
|
|
|
|
void *pSwitchData = DataFile.GetData(pTilemapItem->m_Switch);
|
2017-08-30 06:36:17 +00:00
|
|
|
unsigned int Size = DataFile.GetDataSize(pTilemapItem->m_Switch);
|
2020-10-05 17:03:14 +00:00
|
|
|
if(Size >= (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CSwitchTile))
|
2010-09-30 21:31:19 +00:00
|
|
|
{
|
2017-03-12 18:52:29 +00:00
|
|
|
const int s_aTilesComp[] = {
|
|
|
|
TILE_SWITCHTIMEDOPEN,
|
|
|
|
TILE_SWITCHTIMEDCLOSE,
|
|
|
|
TILE_SWITCHOPEN,
|
2017-07-15 16:11:01 +00:00
|
|
|
TILE_SWITCHCLOSE,
|
2017-03-12 18:52:29 +00:00
|
|
|
TILE_FREEZE,
|
|
|
|
TILE_DFREEZE,
|
|
|
|
TILE_DUNFREEZE,
|
2020-09-13 20:00:49 +00:00
|
|
|
TILE_HIT_ENABLE,
|
|
|
|
TILE_HIT_DISABLE,
|
2017-03-12 18:52:29 +00:00
|
|
|
TILE_JUMP,
|
2020-09-13 20:00:49 +00:00
|
|
|
TILE_ADD_TIME,
|
|
|
|
TILE_SUBSTRACT_TIME,
|
2018-11-02 23:02:20 +00:00
|
|
|
TILE_ALLOW_TELE_GUN,
|
2020-09-14 14:00:32 +00:00
|
|
|
TILE_ALLOW_BLUE_TELE_GUN};
|
2017-03-12 18:52:29 +00:00
|
|
|
CSwitchTile *pLayerSwitchTiles = ((CLayerSwitch *)pTiles)->m_pSwitchTile;
|
2020-10-05 17:03:14 +00:00
|
|
|
mem_copy(((CLayerSwitch *)pTiles)->m_pSwitchTile, pSwitchData, (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CSwitchTile));
|
2014-01-10 23:46:32 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
for(int i = 0; i < pTiles->m_Width * pTiles->m_Height; i++)
|
2013-08-23 23:03:45 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
if(((pLayerSwitchTiles[i].m_Type > (ENTITY_CRAZY_SHOTGUN + ENTITY_OFFSET) && ((CLayerSwitch *)pTiles)->m_pSwitchTile[i].m_Type < (ENTITY_DRAGGER_WEAK + ENTITY_OFFSET)) || ((CLayerSwitch *)pTiles)->m_pSwitchTile[i].m_Type == (ENTITY_LASER_O_FAST + 1 + ENTITY_OFFSET)))
|
2014-01-10 23:46:32 +00:00
|
|
|
continue;
|
2016-07-09 19:46:47 +00:00
|
|
|
else if(pLayerSwitchTiles[i].m_Type >= (ENTITY_ARMOR_1 + ENTITY_OFFSET) && pLayerSwitchTiles[i].m_Type <= (ENTITY_DOOR + ENTITY_OFFSET))
|
2014-01-10 23:46:32 +00:00
|
|
|
{
|
2016-07-09 19:46:47 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = pLayerSwitchTiles[i].m_Type;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = pLayerSwitchTiles[i].m_Flags;
|
|
|
|
continue;
|
2014-02-09 22:31:29 +00:00
|
|
|
}
|
2016-07-09 19:46:47 +00:00
|
|
|
|
2020-10-26 13:11:11 +00:00
|
|
|
for(int e : s_aTilesComp)
|
2015-03-10 21:57:40 +00:00
|
|
|
{
|
2020-10-26 13:11:11 +00:00
|
|
|
if(pLayerSwitchTiles[i].m_Type == e)
|
2016-07-09 19:46:47 +00:00
|
|
|
{
|
2020-10-26 13:11:11 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = e;
|
2016-07-09 19:46:47 +00:00
|
|
|
pTiles->m_pTiles[i].m_Flags = pLayerSwitchTiles[i].m_Flags;
|
|
|
|
}
|
2015-03-10 21:57:40 +00:00
|
|
|
}
|
2011-07-25 20:16:20 +00:00
|
|
|
}
|
2010-09-30 21:31:19 +00:00
|
|
|
}
|
|
|
|
DataFile.UnloadData(pTilemapItem->m_Switch);
|
|
|
|
}
|
2014-03-12 22:47:11 +00:00
|
|
|
else if(pTiles->m_Tune)
|
|
|
|
{
|
|
|
|
void *pTuneData = DataFile.GetData(pTilemapItem->m_Tune);
|
2017-08-30 06:36:17 +00:00
|
|
|
unsigned int Size = DataFile.GetDataSize(pTilemapItem->m_Tune);
|
2020-10-05 17:03:14 +00:00
|
|
|
if(Size >= (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTuneTile))
|
2014-03-12 22:47:11 +00:00
|
|
|
{
|
2017-03-12 18:52:29 +00:00
|
|
|
CTuneTile *pLayerTuneTiles = ((CLayerTune *)pTiles)->m_pTuneTile;
|
2020-10-05 17:03:14 +00:00
|
|
|
mem_copy(((CLayerTune *)pTiles)->m_pTuneTile, pTuneData, (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTuneTile));
|
2014-03-12 22:47:11 +00:00
|
|
|
|
2020-09-26 19:41:58 +00:00
|
|
|
for(int i = 0; i < pTiles->m_Width * pTiles->m_Height; i++)
|
2014-03-12 22:47:11 +00:00
|
|
|
{
|
2020-09-13 20:00:49 +00:00
|
|
|
if(pLayerTuneTiles[i].m_Type == TILE_TUNE)
|
|
|
|
pTiles->m_pTiles[i].m_Index = TILE_TUNE;
|
2014-03-12 22:47:11 +00:00
|
|
|
else
|
2016-07-09 19:46:47 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
2014-03-12 22:47:11 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
DataFile.UnloadData(pTilemapItem->m_Tune);
|
|
|
|
}
|
2016-05-11 10:13:54 +00:00
|
|
|
else // regular tile layer or game layer
|
|
|
|
{
|
2020-10-05 17:03:14 +00:00
|
|
|
if(Size >= (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTile))
|
2016-05-11 10:13:54 +00:00
|
|
|
{
|
2020-10-05 17:03:14 +00:00
|
|
|
mem_copy(pTiles->m_pTiles, pData, (size_t)pTiles->m_Width * pTiles->m_Height * sizeof(CTile));
|
2016-05-11 10:13:54 +00:00
|
|
|
|
|
|
|
if(pTiles->m_Game && pTilemapItem->m_Version == MakeVersion(1, *pTilemapItem))
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
for(int i = 0; i < pTiles->m_Width * pTiles->m_Height; i++)
|
2016-05-11 10:13:54 +00:00
|
|
|
{
|
|
|
|
if(pTiles->m_pTiles[i].m_Index)
|
|
|
|
pTiles->m_pTiles[i].m_Index += ENTITY_OFFSET;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DataFile.UnloadData(pTilemapItem->m_Data);
|
|
|
|
|
|
|
|
// Remove unused tiles on game and front layers
|
2017-06-11 18:18:28 +00:00
|
|
|
/*if(pTiles->m_Game)
|
2016-05-11 10:13:54 +00:00
|
|
|
{
|
|
|
|
for(int i = 0; i < pTiles->m_Width*pTiles->m_Height; i++)
|
|
|
|
{
|
|
|
|
if(!IsValidGameTile(pTiles->m_pTiles[i].m_Index))
|
|
|
|
{
|
2017-06-11 18:18:28 +00:00
|
|
|
if(pTiles->m_pTiles[i].m_Index) {
|
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "game layer, tile %d", pTiles->m_pTiles[i].m_Index);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
|
|
|
Changed = true;
|
|
|
|
}
|
2016-05-11 10:13:54 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-06-11 17:53:55 +00:00
|
|
|
else if(pTiles->m_Front)
|
2016-05-11 10:13:54 +00:00
|
|
|
{
|
|
|
|
for(int i = 0; i < pTiles->m_Width*pTiles->m_Height; i++)
|
|
|
|
{
|
|
|
|
if(!IsValidFrontTile(pTiles->m_pTiles[i].m_Index))
|
|
|
|
{
|
2017-06-11 18:18:28 +00:00
|
|
|
if(pTiles->m_pTiles[i].m_Index) {
|
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "front layer, tile %d", pTiles->m_pTiles[i].m_Index);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
|
|
|
Changed = true;
|
|
|
|
}
|
2017-06-11 17:53:55 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(pTiles->m_Tele)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < pTiles->m_Width*pTiles->m_Height; i++)
|
|
|
|
{
|
|
|
|
if(!IsValidTeleTile(pTiles->m_pTiles[i].m_Index))
|
|
|
|
{
|
2017-06-11 18:18:28 +00:00
|
|
|
if(pTiles->m_pTiles[i].m_Index) {
|
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "tele layer, tile %d", pTiles->m_pTiles[i].m_Index);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
|
|
|
Changed = true;
|
|
|
|
}
|
2017-06-11 17:53:55 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(pTiles->m_Speedup)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < pTiles->m_Width*pTiles->m_Height; i++)
|
|
|
|
{
|
|
|
|
if(!IsValidSpeedupTile(pTiles->m_pTiles[i].m_Index))
|
|
|
|
{
|
2017-06-11 18:18:28 +00:00
|
|
|
if(pTiles->m_pTiles[i].m_Index) {
|
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "speedup layer, tile %d", pTiles->m_pTiles[i].m_Index);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
|
|
|
Changed = true;
|
|
|
|
}
|
2017-06-11 17:53:55 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if(pTiles->m_Switch)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < pTiles->m_Width*pTiles->m_Height; i++)
|
|
|
|
{
|
|
|
|
if(!IsValidSwitchTile(pTiles->m_pTiles[i].m_Index))
|
|
|
|
{
|
2017-06-11 18:18:28 +00:00
|
|
|
if(pTiles->m_pTiles[i].m_Index) {
|
|
|
|
char aBuf[256];
|
|
|
|
str_format(aBuf, sizeof(aBuf), "switch layer, tile %d", pTiles->m_pTiles[i].m_Index);
|
|
|
|
m_pEditor->Console()->Print(IConsole::OUTPUT_LEVEL_STANDARD, "editor", aBuf);
|
|
|
|
Changed = true;
|
|
|
|
}
|
2016-05-11 10:13:54 +00:00
|
|
|
pTiles->m_pTiles[i].m_Index = 0;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = 0;
|
|
|
|
}
|
|
|
|
}
|
2017-06-11 18:18:28 +00:00
|
|
|
}*/
|
2016-05-11 10:13:54 +00:00
|
|
|
|
|
|
|
// Convert race stoppers to ddrace stoppers
|
|
|
|
/*if(pTiles->m_Game)
|
|
|
|
{
|
|
|
|
for(int i = 0; i < pTiles->m_Width*pTiles->m_Height; i++)
|
|
|
|
{
|
|
|
|
if(pTiles->m_pTiles[i].m_Index == 29)
|
|
|
|
{
|
|
|
|
pTiles->m_pTiles[i].m_Index = 60;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = TILEFLAG_HFLIP|TILEFLAG_VFLIP|TILEFLAG_ROTATE;
|
|
|
|
}
|
|
|
|
else if(pTiles->m_pTiles[i].m_Index == 30)
|
|
|
|
{
|
|
|
|
pTiles->m_pTiles[i].m_Index = 60;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = TILEFLAG_ROTATE;
|
|
|
|
}
|
|
|
|
else if(pTiles->m_pTiles[i].m_Index == 31)
|
|
|
|
{
|
|
|
|
pTiles->m_pTiles[i].m_Index = 60;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = TILEFLAG_HFLIP|TILEFLAG_VFLIP;
|
|
|
|
}
|
|
|
|
else if(pTiles->m_pTiles[i].m_Index == 32)
|
|
|
|
{
|
|
|
|
pTiles->m_pTiles[i].m_Index = 60;
|
|
|
|
pTiles->m_pTiles[i].m_Flags = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}*/
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
else if(pLayerItem->m_Type == LAYERTYPE_QUADS)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CMapItemLayerQuads *pQuadsItem = (CMapItemLayerQuads *)pLayerItem;
|
|
|
|
CLayerQuads *pQuads = new CLayerQuads;
|
|
|
|
pQuads->m_pEditor = m_pEditor;
|
|
|
|
pLayer = pQuads;
|
|
|
|
pQuads->m_Image = pQuadsItem->m_Image;
|
|
|
|
if(pQuads->m_Image < -1 || pQuads->m_Image >= m_lImages.size())
|
|
|
|
pQuads->m_Image = -1;
|
2011-07-12 01:14:46 +00:00
|
|
|
|
|
|
|
// load layer name
|
|
|
|
if(pQuadsItem->m_Version >= 2)
|
2020-09-26 19:41:58 +00:00
|
|
|
IntsToStr(pQuadsItem->m_aName, sizeof(pQuads->m_aName) / sizeof(int), pQuads->m_aName);
|
2011-07-12 01:14:46 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
void *pData = DataFile.GetDataSwapped(pQuadsItem->m_Data);
|
|
|
|
pGroup->AddLayer(pQuads);
|
|
|
|
pQuads->m_lQuads.set_size(pQuadsItem->m_NumQuads);
|
2020-09-26 19:41:58 +00:00
|
|
|
mem_copy(pQuads->m_lQuads.base_ptr(), pData, sizeof(CQuad) * pQuadsItem->m_NumQuads);
|
2010-05-29 07:25:38 +00:00
|
|
|
DataFile.UnloadData(pQuadsItem->m_Data);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2014-10-09 09:28:02 +00:00
|
|
|
else if(pLayerItem->m_Type == LAYERTYPE_SOUNDS)
|
|
|
|
{
|
|
|
|
CMapItemLayerSounds *pSoundsItem = (CMapItemLayerSounds *)pLayerItem;
|
2014-11-27 15:18:15 +00:00
|
|
|
if(pSoundsItem->m_Version < 1 || pSoundsItem->m_Version > CMapItemLayerSounds::CURRENT_VERSION)
|
|
|
|
continue;
|
|
|
|
|
2014-10-09 09:28:02 +00:00
|
|
|
CLayerSounds *pSounds = new CLayerSounds;
|
|
|
|
pSounds->m_pEditor = m_pEditor;
|
|
|
|
pLayer = pSounds;
|
|
|
|
pSounds->m_Sound = pSoundsItem->m_Sound;
|
|
|
|
|
2014-10-11 18:05:48 +00:00
|
|
|
// validate m_Sound
|
|
|
|
if(pSounds->m_Sound < -1 || pSounds->m_Sound >= m_lSounds.size())
|
|
|
|
pSounds->m_Sound = -1;
|
2014-10-09 09:28:02 +00:00
|
|
|
|
|
|
|
// load layer name
|
|
|
|
if(pSoundsItem->m_Version >= 1)
|
2020-09-26 19:41:58 +00:00
|
|
|
IntsToStr(pSoundsItem->m_aName, sizeof(pSounds->m_aName) / sizeof(int), pSounds->m_aName);
|
2014-10-09 09:28:02 +00:00
|
|
|
|
2014-10-09 10:44:03 +00:00
|
|
|
// load data
|
|
|
|
void *pData = DataFile.GetDataSwapped(pSoundsItem->m_Data);
|
2014-10-09 09:28:02 +00:00
|
|
|
pGroup->AddLayer(pSounds);
|
2014-10-09 10:44:03 +00:00
|
|
|
pSounds->m_lSources.set_size(pSoundsItem->m_NumSources);
|
2020-09-26 19:41:58 +00:00
|
|
|
mem_copy(pSounds->m_lSources.base_ptr(), pData, sizeof(CSoundSource) * pSoundsItem->m_NumSources);
|
2014-10-09 10:44:03 +00:00
|
|
|
DataFile.UnloadData(pSoundsItem->m_Data);
|
2014-10-09 09:28:02 +00:00
|
|
|
}
|
2014-12-05 13:38:16 +00:00
|
|
|
else if(pLayerItem->m_Type == LAYERTYPE_SOUNDS_DEPRECATED)
|
|
|
|
{
|
|
|
|
// compatibility with old sound layers
|
|
|
|
CMapItemLayerSounds *pSoundsItem = (CMapItemLayerSounds *)pLayerItem;
|
|
|
|
if(pSoundsItem->m_Version < 1 || pSoundsItem->m_Version > CMapItemLayerSounds::CURRENT_VERSION)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
CLayerSounds *pSounds = new CLayerSounds;
|
|
|
|
pSounds->m_pEditor = m_pEditor;
|
|
|
|
pLayer = pSounds;
|
|
|
|
pSounds->m_Sound = pSoundsItem->m_Sound;
|
|
|
|
|
|
|
|
// validate m_Sound
|
|
|
|
if(pSounds->m_Sound < -1 || pSounds->m_Sound >= m_lSounds.size())
|
|
|
|
pSounds->m_Sound = -1;
|
|
|
|
|
|
|
|
// load layer name
|
|
|
|
if(pSoundsItem->m_Version >= 1)
|
2020-09-26 19:41:58 +00:00
|
|
|
IntsToStr(pSoundsItem->m_aName, sizeof(pSounds->m_aName) / sizeof(int), pSounds->m_aName);
|
2014-12-05 13:38:16 +00:00
|
|
|
|
|
|
|
// load data
|
|
|
|
CSoundSource_DEPRECATED *pData = (CSoundSource_DEPRECATED *)DataFile.GetDataSwapped(pSoundsItem->m_Data);
|
|
|
|
pGroup->AddLayer(pSounds);
|
|
|
|
pSounds->m_lSources.set_size(pSoundsItem->m_NumSources);
|
|
|
|
|
|
|
|
for(int i = 0; i < pSoundsItem->m_NumSources; i++)
|
|
|
|
{
|
|
|
|
CSoundSource_DEPRECATED *pOldSource = &pData[i];
|
|
|
|
|
|
|
|
CSoundSource &Source = pSounds->m_lSources[i];
|
|
|
|
Source.m_Position = pOldSource->m_Position;
|
|
|
|
Source.m_Loop = pOldSource->m_Loop;
|
|
|
|
Source.m_Pan = true;
|
|
|
|
Source.m_TimeDelay = pOldSource->m_TimeDelay;
|
|
|
|
Source.m_Falloff = 0;
|
|
|
|
|
|
|
|
Source.m_PosEnv = pOldSource->m_PosEnv;
|
|
|
|
Source.m_PosEnvOffset = pOldSource->m_PosEnvOffset;
|
|
|
|
Source.m_SoundEnv = pOldSource->m_SoundEnv;
|
|
|
|
Source.m_SoundEnvOffset = pOldSource->m_SoundEnvOffset;
|
|
|
|
|
|
|
|
Source.m_Shape.m_Type = CSoundShape::SHAPE_CIRCLE;
|
|
|
|
Source.m_Shape.m_Circle.m_Radius = pOldSource->m_FalloffDistance;
|
|
|
|
}
|
|
|
|
|
|
|
|
DataFile.UnloadData(pSoundsItem->m_Data);
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
if(pLayer)
|
|
|
|
pLayer->m_Flags = pLayerItem->m_Flags;
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
// load envelopes
|
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CEnvPoint *pPoints = 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
int Start, Num;
|
|
|
|
DataFile.GetType(MAPITEMTYPE_ENVPOINTS, &Start, &Num);
|
|
|
|
if(Num)
|
|
|
|
pPoints = (CEnvPoint *)DataFile.GetItem(Start, 0, 0);
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
int Start, Num;
|
|
|
|
DataFile.GetType(MAPITEMTYPE_ENVELOPE, &Start, &Num);
|
|
|
|
for(int e = 0; e < Num; e++)
|
2008-01-17 23:09:49 +00:00
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
CMapItemEnvelope *pItem = (CMapItemEnvelope *)DataFile.GetItem(Start + e, 0, 0);
|
2010-05-29 07:25:38 +00:00
|
|
|
CEnvelope *pEnv = new CEnvelope(pItem->m_Channels);
|
|
|
|
pEnv->m_lPoints.set_size(pItem->m_NumPoints);
|
2020-09-26 19:41:58 +00:00
|
|
|
mem_copy(pEnv->m_lPoints.base_ptr(), &pPoints[pItem->m_StartPoint], sizeof(CEnvPoint) * pItem->m_NumPoints);
|
|
|
|
if(pItem->m_aName[0] != -1) // compatibility with old maps
|
|
|
|
IntsToStr(pItem->m_aName, sizeof(pItem->m_aName) / sizeof(int), pEnv->m_aName);
|
2010-05-29 07:25:38 +00:00
|
|
|
m_lEnvelopes.add(pEnv);
|
2011-12-04 13:34:27 +00:00
|
|
|
if(pItem->m_Version >= 2)
|
|
|
|
pEnv->m_Synchronized = pItem->m_Synchronized;
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
|
|
|
}
|
2018-10-08 20:44:49 +00:00
|
|
|
|
|
|
|
{
|
|
|
|
int Start, Num;
|
|
|
|
DataFile.GetType(MAPITEMTYPE_AUTOMAPPER_CONFIG, &Start, &Num);
|
|
|
|
for(int i = 0; i < Num; i++)
|
|
|
|
{
|
2020-09-26 19:41:58 +00:00
|
|
|
CMapItemAutoMapperConfig *pItem = (CMapItemAutoMapperConfig *)DataFile.GetItem(Start + i, 0, 0);
|
|
|
|
if(pItem->m_Version == CMapItemAutoMapperConfig::CURRENT_VERSION)
|
|
|
|
{
|
|
|
|
if(pItem->m_GroupId >= 0 && pItem->m_GroupId < m_lGroups.size() &&
|
2020-10-05 18:09:19 +00:00
|
|
|
pItem->m_LayerId >= 0 && pItem->m_LayerId < m_lGroups[pItem->m_GroupId]->m_lLayers.size())
|
2020-09-26 19:41:58 +00:00
|
|
|
{
|
2020-10-05 17:36:29 +00:00
|
|
|
CLayer *pLayer = m_lGroups[pItem->m_GroupId]->m_lLayers[pItem->m_LayerId];
|
2020-10-05 18:09:19 +00:00
|
|
|
if(pLayer->m_Type == LAYERTYPE_TILES)
|
2020-10-05 17:59:48 +00:00
|
|
|
{
|
2020-10-05 17:36:29 +00:00
|
|
|
CLayerTiles *pLayer = (CLayerTiles *)m_lGroups[pItem->m_GroupId]->m_lLayers[pItem->m_LayerId];
|
|
|
|
// only load auto mappers for tile layers (not physics layers)
|
2020-10-05 18:09:19 +00:00
|
|
|
if(!(pLayer->m_Game || pLayer->m_Tele || pLayer->m_Speedup ||
|
|
|
|
pLayer->m_Front || pLayer->m_Switch || pLayer->m_Tune))
|
2020-10-05 17:59:48 +00:00
|
|
|
{
|
2020-10-05 17:36:29 +00:00
|
|
|
pLayer->m_AutoMapperConfig = pItem->m_AutomapperConfig;
|
|
|
|
pLayer->m_Seed = pItem->m_AutomapperSeed;
|
|
|
|
pLayer->m_AutoAutoMap = !!(pItem->m_Flags & CMapItemAutoMapperConfig::FLAG_AUTOMATIC);
|
|
|
|
}
|
|
|
|
}
|
2018-10-08 20:44:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2013-05-26 08:58:03 +00:00
|
|
|
else
|
|
|
|
return 0;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2020-05-16 06:17:48 +00:00
|
|
|
m_Modified = false;
|
2010-05-29 07:25:38 +00:00
|
|
|
return 1;
|
2008-01-17 23:09:49 +00:00
|
|
|
}
|
2008-03-05 19:38:47 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
static int gs_ModifyAddAmount = 0;
|
|
|
|
static void ModifyAdd(int *pIndex)
|
2008-03-09 23:29:14 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(*pIndex >= 0)
|
|
|
|
*pIndex += gs_ModifyAddAmount;
|
2008-03-09 23:29:14 +00:00
|
|
|
}
|
2008-03-05 19:38:47 +00:00
|
|
|
|
2010-10-07 21:51:07 +00:00
|
|
|
int CEditor::Append(const char *pFileName, int StorageType)
|
2008-03-05 19:38:47 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
CEditorMap NewMap;
|
|
|
|
NewMap.m_pEditor = this;
|
|
|
|
|
|
|
|
int Err;
|
2010-10-07 21:51:07 +00:00
|
|
|
Err = NewMap.Load(Kernel()->RequestInterface<IStorage>(), pFileName, StorageType);
|
2010-05-31 21:55:45 +00:00
|
|
|
if(!Err)
|
2010-05-29 07:25:38 +00:00
|
|
|
return Err;
|
2008-03-09 23:29:14 +00:00
|
|
|
|
2011-04-13 18:37:12 +00:00
|
|
|
// modify indecies
|
2010-05-29 07:25:38 +00:00
|
|
|
gs_ModifyAddAmount = m_Map.m_lImages.size();
|
|
|
|
NewMap.ModifyImageIndex(ModifyAdd);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
gs_ModifyAddAmount = m_Map.m_lEnvelopes.size();
|
|
|
|
NewMap.ModifyEnvelopeIndex(ModifyAdd);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-03-09 23:29:14 +00:00
|
|
|
// transfer images
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int i = 0; i < NewMap.m_lImages.size(); i++)
|
|
|
|
m_Map.m_lImages.add(NewMap.m_lImages[i]);
|
|
|
|
NewMap.m_lImages.clear();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-03-09 23:29:14 +00:00
|
|
|
// transfer envelopes
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int i = 0; i < NewMap.m_lEnvelopes.size(); i++)
|
|
|
|
m_Map.m_lEnvelopes.add(NewMap.m_lEnvelopes[i]);
|
|
|
|
NewMap.m_lEnvelopes.clear();
|
2008-03-09 23:29:14 +00:00
|
|
|
|
|
|
|
// transfer groups
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
for(int i = 0; i < NewMap.m_lGroups.size(); i++)
|
2008-03-09 23:29:14 +00:00
|
|
|
{
|
2010-05-29 07:25:38 +00:00
|
|
|
if(NewMap.m_lGroups[i] == NewMap.m_pGameGroup)
|
|
|
|
delete NewMap.m_lGroups[i];
|
2008-03-09 23:29:14 +00:00
|
|
|
else
|
2010-05-29 07:25:38 +00:00
|
|
|
{
|
|
|
|
NewMap.m_lGroups[i]->m_pMap = &m_Map;
|
|
|
|
m_Map.m_lGroups.add(NewMap.m_lGroups[i]);
|
|
|
|
}
|
2008-03-09 23:29:14 +00:00
|
|
|
}
|
2010-05-29 07:25:38 +00:00
|
|
|
NewMap.m_lGroups.clear();
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2008-03-09 23:29:14 +00:00
|
|
|
// all done \o/
|
2008-03-05 19:38:47 +00:00
|
|
|
return 0;
|
|
|
|
}
|