summaryrefslogtreecommitdiff
path: root/apps/essimporter/importscri.cpp
blob: 91971dde3bea953420068b40d655ff74c243a02a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#include "importscri.hpp"

#include <components/esm3/esmreader.hpp>

namespace ESSImport
{

    void SCRI::load(ESM::ESMReader &esm)
    {
        mScript = esm.getHNOString("SCRI");

        int numShorts = 0, numLongs = 0, numFloats = 0;
        if (esm.isNextSub("SLCS"))
        {
            esm.getSubHeader();
            esm.getT(numShorts);
            esm.getT(numLongs);
            esm.getT(numFloats);
        }

        if (esm.isNextSub("SLSD"))
        {
            esm.getSubHeader();
            for (int i=0; i<numShorts; ++i)
            {
                short val;
                esm.getT(val);
                mShorts.push_back(val);
            }
        }
        // I haven't seen Longs in a save file yet, but SLLD would make sense for the name
        // TODO: test this
        if (esm.isNextSub("SLLD"))
        {
            esm.getSubHeader();
            for (int i=0; i<numLongs; ++i)
            {
                int val;
                esm.getT(val);
                mLongs.push_back(val);
            }
        }
        if (esm.isNextSub("SLFD"))
        {
            esm.getSubHeader();
            for (int i=0; i<numFloats; ++i)
            {
                float val;
                esm.getT(val);
                mFloats.push_back(val);
            }
        }
    }

}