You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
openmw-tes3mp/components/esm/loadland.cpp

206 lines
4.8 KiB
C++

#include "loadland.hpp"
#include "esm_reader.hpp"
#include "esm_writer.hpp"
namespace ESM
{
void Land::LandData::save(ESMWriter &esm)
{
// TODO: Make this actually work.
esm.writeHNT("VNML", mNormals, sizeof(VNML));
esm.writeHNT("VHGT", mHeights, sizeof(VHGT));
//esm.writeHNT("WNAM", 0, 81);
esm.startSubRecord("WNAM");
for (int i = 0; i < 81; i++)
esm.writeT((char)0x80, 1);
esm.endRecord("WNAM");
if (mDataTypes & Land::DATA_VCLR)
esm.writeHNT("VCLR", mColours, 3*LAND_NUM_VERTS);
if (mDataTypes & Land::DATA_VTEX)
esm.writeHNT("VTEX", mTextures, 512);
}
Land::Land()
: mFlags(0)
, mX(0)
, mY(0)
, mEsm(NULL)
// , hasData(false)
, mDataTypes(0)
, mDataLoaded(false)
, mLandData(NULL)
{
}
Land::~Land()
{
delete mLandData;
}
void Land::load(ESMReader &esm)
{
mEsm = &esm;
// Get the grid location
esm.getSubNameIs("INTV");
esm.getSubHeaderIs(8);
esm.getT<int>(mX);
esm.getT<int>(mY);
esm.getHNT(mFlags, "DATA");
// Store the file position
mContext = esm.getContext();
mHasData = false;
// Skip these here. Load the actual data when the cell is loaded.
if (esm.isNextSub("VNML"))
{
esm.skipHSubSize(12675);
mDataTypes |= DATA_VNML;
}
if (esm.isNextSub("VHGT"))
{
esm.skipHSubSize(4232);
mDataTypes |= DATA_VHGT;
}
if (esm.isNextSub("WNAM"))
{
esm.skipHSubSize(81);
mDataTypes |= DATA_WNAM;
}
if (esm.isNextSub("VCLR"))
{
esm.skipHSubSize(12675);
mDataTypes |= DATA_VCLR;
}
if (esm.isNextSub("VTEX"))
{
esm.skipHSubSize(512);
mDataTypes |= DATA_VTEX;
}
// We need all three of VNML, VHGT and VTEX in order to use the
// landscape. (Though Morrowind seems to accept terrain without VTEX/VCLR entries)
mHasData = mDataTypes & (DATA_VNML|DATA_VHGT|DATA_WNAM);
mDataLoaded = false;
mLandData = NULL;
}
void Land::save(ESMWriter &esm)
{
esm.startSubRecord("INTV");
esm.writeT(mX);
esm.writeT(mY);
esm.endRecord("INTV");
esm.writeHNT("DATA", mFlags);
13 years ago
// TODO: Land!
bool wasLoaded = mDataLoaded;
if (mHasData)
loadData(); // I think it might be a good idea to have
// the data loaded before trying to save it
13 years ago
if (mDataLoaded)
mLandData->save(esm);
13 years ago
if (!wasLoaded)
unloadData(); // Don't need to keep the data loaded if it wasn't already
}
void Land::loadData()
{
if (mDataLoaded)
{
return;
}
mLandData = new LandData;
if (mHasData)
{
mEsm->restoreContext(mContext);
memset(mLandData->mNormals, 0, LAND_NUM_VERTS * 3);
//esm.getHNExact(landData->normals, sizeof(VNML), "VNML");
if (mEsm->isNextSub("VNML"))
{
mEsm->skipHSubSize(12675);
}
VHGT rawHeights;
mEsm->getHNExact(&rawHeights, sizeof(VHGT), "VHGT");
int currentHeightOffset = rawHeights.mHeightOffset;
for (int y = 0; y < LAND_SIZE; y++)
{
currentHeightOffset += rawHeights.mHeightData[y * LAND_SIZE];
mLandData->mHeights[y * LAND_SIZE] = currentHeightOffset * HEIGHT_SCALE;
int tempOffset = currentHeightOffset;
for (int x = 1; x < LAND_SIZE; x++)
{
tempOffset += rawHeights.mHeightData[y * LAND_SIZE + x];
mLandData->mHeights[x + y * LAND_SIZE] = tempOffset * HEIGHT_SCALE;
}
}
if (mEsm->isNextSub("WNAM"))
{
mEsm->skipHSubSize(81);
}
if (mEsm->isNextSub("VCLR"))
{
mLandData->mUsingColours = true;
mEsm->getHExact(&mLandData->mColours, 3*LAND_NUM_VERTS);
}else{
mLandData->mUsingColours = false;
}
if (mEsm->isNextSub("VTEX"))
{
//TODO fix magic numbers
uint16_t vtex[512];
mEsm->getHExact(&vtex, 512);
int readPos = 0; //bit ugly, but it works
for ( int y1 = 0; y1 < 4; y1++ )
for ( int x1 = 0; x1 < 4; x1++ )
for ( int y2 = 0; y2 < 4; y2++)
for ( int x2 = 0; x2 < 4; x2++ )
mLandData->mTextures[(y1*4+y2)*16+(x1*4+x2)] = vtex[readPos++];
}
}
else
{
mLandData->mUsingColours = false;
memset(&mLandData->mTextures, 0, 512 * sizeof(uint16_t));
for (int i = 0; i < LAND_NUM_VERTS; i++)
{
mLandData->mHeights[i] = -256.0f * HEIGHT_SCALE;
}
}
mLandData->mDataTypes = mDataTypes;
mDataLoaded = true;
}
void Land::unloadData()
{
if (mDataLoaded)
{
delete mLandData;
mLandData = NULL;
mDataLoaded = false;
}
}
}