mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-06 00:55:50 +00:00
37 lines
687 B
C++
37 lines
687 B
C++
#include "loadsoun.hpp"
|
|
|
|
#include "esmreader.hpp"
|
|
#include "esmwriter.hpp"
|
|
#include "defs.hpp"
|
|
|
|
namespace ESM
|
|
{
|
|
unsigned int Sound::sRecordId = REC_SOUN;
|
|
|
|
void Sound::load(ESMReader &esm)
|
|
{
|
|
mSound = esm.getHNOString("FNAM");
|
|
esm.getHNT(mData, "DATA", 3);
|
|
/*
|
|
cout << "vol=" << (int)data.volume
|
|
<< " min=" << (int)data.minRange
|
|
<< " max=" << (int)data.maxRange
|
|
<< endl;
|
|
*/
|
|
}
|
|
void Sound::save(ESMWriter &esm) const
|
|
{
|
|
esm.writeHNOCString("FNAM", mSound);
|
|
esm.writeHNT("DATA", mData, 3);
|
|
}
|
|
|
|
void Sound::blank()
|
|
{
|
|
mSound.clear();
|
|
|
|
mData.mVolume = 128;
|
|
mData.mMinRange = 0;
|
|
mData.mMaxRange = 255;
|
|
}
|
|
}
|