mirror of
https://github.com/mod-playerbots/azerothcore-wotlk.git
synced 2026-01-15 18:10:26 +00:00
61 lines
1.8 KiB
C++
61 lines
1.8 KiB
C++
/*
|
|
* Copyright (C)
|
|
*
|
|
* Copyright (C) 2008-2016 TrinityCore <http://www.trinitycore.org/>
|
|
* Copyright (C) 2005-2009 MaNGOS <http://getmangos.com/>
|
|
*/
|
|
|
|
#include "ADT.h"
|
|
#include "DoodadHandler.h"
|
|
#include "LiquidHandler.h"
|
|
#include "WorldModelHandler.h"
|
|
|
|
ADT::ADT( std::string file, int x, int y ) : ObjectData(NULL), Data(NULL), HasObjectData(false),
|
|
_DoodadHandler(NULL), _WorldModelHandler(NULL), _LiquidHandler(NULL), X(x), Y(y)
|
|
{
|
|
Data = new ChunkedData(file);
|
|
ObjectData = new ChunkedData(file);
|
|
if (ObjectData->Stream)
|
|
HasObjectData = true;
|
|
else
|
|
ObjectData = NULL;
|
|
}
|
|
|
|
ADT::~ADT()
|
|
{
|
|
delete ObjectData;
|
|
delete Data;
|
|
|
|
for (std::vector<MapChunk*>::iterator itr = MapChunks.begin(); itr != MapChunks.end(); ++itr)
|
|
delete *itr;
|
|
|
|
MapChunks.clear();
|
|
delete _DoodadHandler;
|
|
delete _WorldModelHandler;
|
|
delete _LiquidHandler;
|
|
}
|
|
|
|
void ADT::Read()
|
|
{
|
|
Header.Read(Data->GetChunkByName("MHDR")->GetStream());
|
|
MapChunks.reserve(16 * 16);
|
|
|
|
for (std::vector<Chunk*>::iterator itr = Data->Chunks.begin(); itr != Data->Chunks.end(); ++itr)
|
|
if ((*itr)->Name == "MCNK")
|
|
MapChunks.push_back(new MapChunk(this, *itr));
|
|
|
|
_LiquidHandler = new LiquidHandler(this);
|
|
|
|
// do this separate from map chunk initialization to access liquid data
|
|
for (std::vector<MapChunk*>::iterator itr = MapChunks.begin(); itr != MapChunks.end(); ++itr)
|
|
(*itr)->GenerateTriangles();
|
|
|
|
_DoodadHandler = new DoodadHandler(this);
|
|
for (std::vector<MapChunk*>::iterator itr = MapChunks.begin(); itr != MapChunks.end(); ++itr)
|
|
_DoodadHandler->ProcessMapChunk(*itr);
|
|
|
|
_WorldModelHandler = new WorldModelHandler(this);
|
|
for (std::vector<MapChunk*>::iterator itr = MapChunks.begin(); itr != MapChunks.end(); ++itr)
|
|
_WorldModelHandler->ProcessMapChunk(*itr);
|
|
}
|