File: loadarmo.hpp

package info (click to toggle)
openmw 0.49.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 33,992 kB
  • sloc: cpp: 372,479; xml: 2,149; sh: 1,403; python: 797; makefile: 26
file content (191 lines) | stat: -rw-r--r-- 6,270 bytes parent folder | download
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
/*
  Copyright (C) 2016, 2018-2020 cc9cii

  This software is provided 'as-is', without any express or implied
  warranty.  In no event will the authors be held liable for any damages
  arising from the use of this software.

  Permission is granted to anyone to use this software for any purpose,
  including commercial applications, and to alter it and redistribute it
  freely, subject to the following restrictions:

  1. The origin of this software must not be misrepresented; you must not
     claim that you wrote the original software. If you use this software
     in a product, an acknowledgment in the product documentation would be
     appreciated but is not required.
  2. Altered source versions must be plainly marked as such, and must not be
     misrepresented as being the original software.
  3. This notice may not be removed or altered from any source distribution.

  cc9cii cc9c@iinet.net.au

  Much of the information on the data structures are based on the information
  from Tes4Mod:Mod_File_Format and Tes5Mod:File_Formats but also refined by
  trial & error.  See http://en.uesp.net/wiki for details.

*/
#ifndef ESM4_ARMO_H
#define ESM4_ARMO_H

#include <cstdint>
#include <string>
#include <vector>

#include <components/esm/defs.hpp>
#include <components/esm/formid.hpp>

namespace ESM4
{
    class Reader;
    class Writer;

    struct Armor
    {
        // WARN: TES4 Armorflags still has the general flags high bits
        enum ArmorFlags
        {
            TES4_Head = 0x00000001,
            TES4_Hair = 0x00000002,
            TES4_UpperBody = 0x00000004,
            TES4_LowerBody = 0x00000008,
            TES4_Hands = 0x00000010,
            TES4_Feet = 0x00000020,
            TES4_RightRing = 0x00000040,
            TES4_LeftRing = 0x00000080,
            TES4_Amulet = 0x00000100,
            TES4_Weapon = 0x00000200,
            TES4_BackWeapon = 0x00000400,
            TES4_SideWeapon = 0x00000800,
            TES4_Quiver = 0x00001000,
            TES4_Shield = 0x00002000,
            TES4_Torch = 0x00004000,
            TES4_Tail = 0x00008000,
            //
            FO3_Head = 0x00000001,
            FO3_Hair = 0x00000002,
            FO3_UpperBody = 0x00000004,
            FO3_LeftHand = 0x00000008,
            FO3_RightHand = 0x00000010,
            FO3_Weapon = 0x00000020,
            FO3_PipBoy = 0x00000040,
            FO3_Backpack = 0x00000080,
            FO3_Necklace = 0x00000100,
            FO3_Headband = 0x00000200,
            FO3_Hat = 0x00000400,
            FO3_EyeGlasses = 0x00000800,
            FO3_NoseRing = 0x00001000,
            FO3_Earrings = 0x00002000,
            FO3_Mask = 0x00004000,
            FO3_Choker = 0x00008000,
            FO3_MouthObject = 0x00010000,
            FO3_BodyAddOn1 = 0x00020000,
            FO3_BodyAddOn2 = 0x00040000,
            FO3_BodyAddOn3 = 0x00080000,
            //
            TES5_Head = 0x00000001,
            TES5_Hair = 0x00000002,
            TES5_Body = 0x00000004,
            TES5_Hands = 0x00000008,
            TES5_Forearms = 0x00000010,
            TES5_Amulet = 0x00000020,
            TES5_Ring = 0x00000040,
            TES5_Feet = 0x00000080,
            TES5_Calves = 0x00000100,
            TES5_Shield = 0x00000200,
            TES5_Tail = 0x00000400,
            TES5_LongHair = 0x00000800,
            TES5_Circlet = 0x00001000,
            TES5_Ears = 0x00002000,
            TES5_BodyAddOn3 = 0x00004000,
            TES5_BodyAddOn4 = 0x00008000,
            TES5_BodyAddOn5 = 0x00010000,
            TES5_BodyAddOn6 = 0x00020000,
            TES5_BodyAddOn7 = 0x00040000,
            TES5_BodyAddOn8 = 0x00080000,
            TES5_DecapHead = 0x00100000,
            TES5_Decapitate = 0x00200000,
            TES5_BodyAddOn9 = 0x00400000,
            TES5_BodyAddOn10 = 0x00800000,
            TES5_BodyAddOn11 = 0x01000000,
            TES5_BodyAddOn12 = 0x02000000,
            TES5_BodyAddOn13 = 0x04000000,
            TES5_BodyAddOn14 = 0x08000000,
            TES5_BodyAddOn15 = 0x10000000,
            TES5_BodyAddOn16 = 0x20000000,
            TES5_BodyAddOn17 = 0x40000000,
            TES5_FX01 = 0x80000000
        };

        enum GeneralFlags
        {
            TYPE_TES4 = 0x1000,
            TYPE_FO3 = 0x2000,
            TYPE_TES5 = 0x3000,
            TYPE_FONV = 0x4000,
            //
            TES4_HideRings = 0x0001,
            TES4_HideAmulet = 0x0002,
            TES4_NonPlayable = 0x0040,
            TES4_HeavyArmor = 0x0080,
            //
            FO3_PowerArmor = 0x0020,
            FO3_NonPlayable = 0x0040,
            FO3_HeavyArmor = 0x0080,
            //
            TES5_LightArmor = 0x0000,
            TES5_HeavyArmor = 0x0001,
            TES5_None = 0x0002,
            TES5_ModVoice = 0x0004, // note bit shift
            TES5_NonPlayable = 0x0040 // note bit shift
        };

#pragma pack(push, 1)
        struct Data
        {
            std::uint16_t armor; // only in TES4?
            std::uint32_t value;
            std::uint32_t health; // not in TES5?
            float weight;
        };
#pragma pack(pop)

        ESM::FormId mId; // from the header
        std::uint32_t mFlags; // from the header, see enum type RecordFlag for details

        std::string mEditorId;
        std::string mFullName;
        std::string mModelMale;
        std::string mModelMaleWorld;
        std::string mModelFemale;
        std::string mModelFemaleWorld;
        std::string mText;
        std::string mIconMale;
        std::string mMiniIconMale;
        std::string mIconFemale;
        std::string mMiniIconFemale;

        ESM::FormId mPickUpSound;
        ESM::FormId mDropSound;

        std::string mModel; // FIXME: for OpenCS

        float mBoundRadius;

        std::uint32_t mArmorFlags;
        std::uint32_t mGeneralFlags;
        ESM::FormId mScriptId;
        std::uint16_t mEnchantmentPoints;
        ESM::FormId mEnchantment;

        std::vector<ESM::FormId> mAddOns; // TES5 ARMA
        Data mData;

        void load(ESM4::Reader& reader);
        // void save(ESM4::Writer& writer) const;

        // void blank();
        static constexpr ESM::RecNameInts sRecordId = ESM::RecNameInts::REC_ARMO4;
    };
}

#endif // ESM4_ARMO_H