CommonLibSSE NG
BGSEquipSlot.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include "RE/B/BSTArray.h"
4 #include "RE/F/FormTypes.h"
5 #include "RE/T/TESForm.h"
6 
7 namespace RE
8 {
9  class BGSEquipSlot : public TESForm
10  {
11  public:
12  inline static constexpr auto RTTI = RTTI_BGSEquipSlot;
13  inline static constexpr auto VTABLE = VTABLE_BGSEquipSlot;
14  inline static constexpr auto FORMTYPE = FormType::EquipSlot;
15 
16  enum class Flag // DATA
17  {
18  kNone = 0,
19  kUseAllParents = 1 << 0,
20  kParentsOptional = 1 << 1,
21  kItemSlot = 1 << 2
22  };
23 
24  struct RecordFlags
25  {
26  enum RecordFlag : std::uint32_t
27  {
28  kDeleted = 1 << 5,
29  kIgnored = 1 << 12
30  };
31  };
32 
33  ~BGSEquipSlot() override; // 00
34 
35  // override (TESForm)
36  void InitializeData() override; // 04
37  void ClearData() override; // 05
38  bool Load(TESFile* a_mod) override; // 06
39  void InitItemImpl() override; // 13
40 
41  // members
44  std::uint32_t pad3C; // 3C
45  };
46  static_assert(sizeof(BGSEquipSlot) == 0x40);
47 }
Definition: BGSEquipSlot.h:10
std::uint32_t pad3C
Definition: BGSEquipSlot.h:44
bool Load(TESFile *a_mod) override
static constexpr auto VTABLE
Definition: BGSEquipSlot.h:13
stl::enumeration< Flag, std::uint32_t > flags
Definition: BGSEquipSlot.h:43
void InitItemImpl() override
void ClearData() override
static constexpr auto RTTI
Definition: BGSEquipSlot.h:12
void InitializeData() override
BSTArray< BGSEquipSlot * > parentSlots
Definition: BGSEquipSlot.h:42
static constexpr auto FORMTYPE
Definition: BGSEquipSlot.h:14
~BGSEquipSlot() override
Flag
Definition: BGSEquipSlot.h:17
Definition: BSTArray.h:377
Definition: TESFile.h:17
Definition: TESForm.h:36
Definition: AbsorbEffect.h:6
constexpr REL::VariantID RTTI_BGSEquipSlot(514003, 393156, 0x1ee4960)
constexpr std::array< REL::VariantID, 1 > VTABLE_BGSEquipSlot
Definition: Offsets_VTABLE.h:865
Definition: BGSEquipSlot.h:25
RecordFlag
Definition: BGSEquipSlot.h:27
@ kDeleted
Definition: BGSEquipSlot.h:28
@ kIgnored
Definition: BGSEquipSlot.h:29