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.
30 lines
578 B
C++
30 lines
578 B
C++
14 years ago
|
#include "loadregn.hpp"
|
||
|
|
||
|
namespace ESM
|
||
|
{
|
||
|
|
||
|
void Region::load(ESMReader &esm)
|
||
|
{
|
||
|
name = esm.getHNString("FNAM");
|
||
|
|
||
|
if (esm.getVer() == VER_12)
|
||
|
esm.getHNExact(&data, sizeof(data) - 2, "WEAT");
|
||
|
else if (esm.getVer() == VER_13)
|
||
|
esm.getHNExact(&data, sizeof(data), "WEAT");
|
||
|
else
|
||
|
esm.fail("Don't know what to do in this version");
|
||
|
|
||
|
sleepList = esm.getHNOString("BNAM");
|
||
|
|
||
|
esm.getHNT(mapColor, "CNAM");
|
||
|
|
||
|
while (esm.hasMoreSubs())
|
||
|
{
|
||
|
SoundRef sr;
|
||
|
esm.getHNT(sr, "SNAM", 33);
|
||
|
soundList.push_back(sr);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|