aboutsummaryrefslogtreecommitdiff
path: root/libs/installer_bsplugins/src/TESFile/Stream.h
blob: db22580c24c2ea7746386a85a62a7fe678cb5cc5 (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
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
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
#ifndef TESFILE_STREAM_H
#define TESFILE_STREAM_H

#include "Type.h"

#include <algorithm>
#include <cctype>
#include <cstdint>
#include <cstring>
#include <istream>
#include <ranges>
#include <utility>

namespace TESFile
{

template <typename T>
inline T readType(std::istream& stream)
{
  union
  {
    char buffer[sizeof(T)];
    T value;
  };
  std::memset(buffer, 0x42, sizeof(T));
  stream.read(buffer, sizeof(T));
  return value;
}

inline std::string readZstring(std::istream& stream)
{
  std::string value;
  std::getline(stream, value, '\0');
  return value;
}

inline int icompare(const std::string& a, const std::string& b)
{
  const std::size_t n = std::min(a.size(), b.size());
  for (std::size_t i = 0; i < n; ++i) {
    const unsigned char ca =
        static_cast<unsigned char>(std::tolower(static_cast<unsigned char>(a[i])));
    const unsigned char cb =
        static_cast<unsigned char>(std::tolower(static_cast<unsigned char>(b[i])));
    if (ca != cb)
      return ca < cb ? -1 : 1;
  }
  if (a.size() == b.size())
    return 0;
  return a.size() < b.size() ? -1 : 1;
}

inline bool iequals(const std::string& a, const std::string& b)
{
  return icompare(a, b) == 0;
}

template <std::ranges::input_range R, typename Proj = std::identity>
inline auto find(R&& r, const std::string& value, Proj proj = {})
{
  return std::ranges::find_if(
      r,
      [&](auto&& val) {
        return iequals(val, value);
      },
      proj);
}

struct less
{
  bool operator()(const std::string& a, const std::string& b) const
  {
    return icompare(a, b) < 0;
  }
};

enum class TESFormat
{
  Standard,
  Oblivion,
  Morrowind,
};

enum class GroupType : std::int32_t
{
  Top,
  WorldChildren,
  InteriorCellBlock,
  InteriorCellSubBlock,
  ExteriorCellBlock,
  ExteriorCellSubBlock,
  CellChildren,
  TopicChildren,
  CellPersistentChildren,
  CellTemporaryChildren,
  QuestChildren,
  CellVisibleDistantChildren = 10,
};

struct RecordFlags
{
  enum TES4Flag : std::uint32_t
  {
    Master    = 0x1,
    Optimized = 0x10,
    Localized = 0x80,
    SmallNew  = 0x100,
    SmallOld  = 0x200,
    Update    = 0x200,
    Medium    = 0x400,
    Blueprint = 0x800,
  };

  enum Flag : std::uint32_t
  {
    Compressed = 0x40000,
  };
};

struct RecordHeader
{
  Type type;
  std::uint32_t dataSize;
  union
  {
    struct
    {
      std::uint32_t flags;
      std::uint32_t formId;
    } formData;
    struct
    {
      std::uint32_t label;
      GroupType groupType;
    } groupData;
  };
  union
  {
    struct
    {
      std::uint32_t revision;
      Type firstChunk;
    } old;
    struct
    {
      std::uint16_t timestamp;
      std::uint16_t revision;
      std::uint16_t version;
      std::uint16_t unknown1;
    };
  };
};
static_assert(sizeof(RecordHeader) == 24);

struct ChunkHeader
{
  Type type;
  std::uint16_t dataSize;
};
static_assert(sizeof(ChunkHeader) == 6);

class GroupData final
{
public:
  constexpr GroupData() : formId_{0}, groupType_{GroupType::Top} {}

  constexpr GroupData(std::uint32_t label, GroupType type)
      : formId_{label}, groupType_{type}
  {}

  constexpr auto operator<=>(const GroupData& other) const
  {
    if (groupType_ != other.groupType_) {
      return groupType_ <=> other.groupType_;
    } else {
      if (hasFormType()) {
        return formType() <=> other.formType();
      } else if (hasBlock()) {
        return block() <=> other.block();
      } else if (hasGridCell()) {
        return gridCell() <=> other.gridCell();
      } else {
        return formId_ <=> other.formId_;
      }
    }
  }

  constexpr bool operator==(const GroupData& other) const
  {
    return groupType_ == other.groupType_ && formId_ == other.formId_;
  }

  [[nodiscard]] constexpr GroupType type() const { return groupType_; }

  [[nodiscard]] constexpr bool hasFormType() const
  {
    return groupType_ == GroupType::Top;
  }

  [[nodiscard]] constexpr bool hasParent() const
  {
    return groupType_ == GroupType::WorldChildren ||
           groupType_ == GroupType::CellChildren ||
           groupType_ == GroupType::TopicChildren ||
           groupType_ == GroupType::CellPersistentChildren ||
           groupType_ == GroupType::CellTemporaryChildren ||
           groupType_ == GroupType::QuestChildren;
  }

  [[nodiscard]] constexpr bool hasDirectParent() const
  {
    return groupType_ == GroupType::WorldChildren ||
           groupType_ == GroupType::CellChildren ||
           groupType_ == GroupType::TopicChildren ||
           groupType_ == GroupType::QuestChildren;
  }

  [[nodiscard]] constexpr bool hasBlock() const
  {
    return groupType_ == GroupType::InteriorCellBlock ||
           groupType_ == GroupType::InteriorCellSubBlock;
  }

  [[nodiscard]] constexpr bool hasGridCell() const
  {
    return groupType_ == GroupType::ExteriorCellBlock ||
           groupType_ == GroupType::ExteriorCellSubBlock;
  }

  [[nodiscard]] constexpr Type formType() const { return formType_; }

  [[nodiscard]] constexpr std::uint32_t parent() const { return formId_; }

  [[nodiscard]] constexpr std::int32_t block() const { return number_; }

  [[nodiscard]] constexpr std::pair<std::int16_t, std::int16_t> gridCell() const
  {
    return {cell_.x, cell_.y};
  }

  constexpr void setLocalIndex(std::uint8_t index)
  {
    if (hasParent()) {
      formId_ = (formId_ & 0xFFFFFFU) | (index << 24U);
    }
  }

private:
  GroupType groupType_;
  union
  {
    Type formType_;
    std::uint32_t formId_;
    std::int32_t number_;
    struct
    {
      std::int16_t y;
      std::int16_t x;
    } cell_;
  };
};

class FormData final
{
public:
  constexpr FormData(Type type, std::uint32_t flags, std::uint32_t formId, std::uint16_t formVersion)
      : type_{type}, flags_{flags}, formId_{formId}, formVersion_{formVersion}
  {}

  [[nodiscard]] constexpr Type type() const { return type_; }

  [[nodiscard]] constexpr std::uint32_t flags() const { return flags_; }

  [[nodiscard]] constexpr std::uint32_t formId() const { return formId_; }

  [[nodiscard]] constexpr std::uint16_t formVersion() const { return formVersion_; }

  [[nodiscard]] constexpr std::uint8_t localModIndex() const { return formId_ >> 24; }

private:
  Type type_;
  std::uint32_t flags_;
  std::uint32_t formId_;
  std::uint16_t formVersion_;
};

}  // namespace TESFile

using namespace TESFile::literals;

#endif  // TESFILE_STREAM_H