ddnet/src/engine/shared/map.h

47 lines
1.3 KiB
C
Raw Normal View History

2020-09-18 16:45:42 +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. */
#ifndef ENGINE_SHARED_MAP_H
#define ENGINE_SHARED_MAP_H
#include <base/types.h>
2020-09-18 16:45:42 +00:00
#include "datafile.h"
#include <engine/map.h>
class CMap : public IEngineMap
{
CDataFileReader m_DataFile;
public:
CMap();
CDataFileReader *GetReader() { return &m_DataFile; }
int GetDataSize(int Index) const override;
void *GetData(int Index) override;
void *GetDataSwapped(int Index) override;
const char *GetDataString(int Index) override;
void UnloadData(int Index) override;
int NumData() const override;
int GetItemSize(int Index) override;
void *GetItem(int Index, int *pType = nullptr, int *pID = nullptr) override;
void GetType(int Type, int *pStart, int *pNum) override;
int FindItemIndex(int Type, int ID) override;
void *FindItem(int Type, int ID) override;
int NumItems() const override;
2020-09-18 16:45:42 +00:00
bool Load(const char *pMapName) override;
2023-05-15 16:04:58 +00:00
void Unload() override;
bool IsLoaded() const override;
IOHANDLE File() const override;
2020-09-18 16:45:42 +00:00
SHA256_DIGEST Sha256() const override;
unsigned Crc() const override;
int MapSize() const override;
static void ExtractTiles(class CTile *pDest, size_t DestSize, const class CTile *pSrc, size_t SrcSize);
2020-09-18 16:45:42 +00:00
};
#endif