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.
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;
|
|
}
|
|
}
|