Skip to content

Commit

Permalink
feat: add TESObjectARMO (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
powerof3 authored Nov 6, 2023
1 parent 862ee57 commit 293cbde
Show file tree
Hide file tree
Showing 13 changed files with 616 additions and 32 deletions.
2 changes: 1 addition & 1 deletion CommonLibSF/include/RE/B/BGSAttachParentArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@ namespace RE
const BSFixedString& GetFormComponentType() const override; // 01 - { return "BGSAttachParentArray_Component"; }
void InitializeDataComponent() override; // 02 - { return; }
};
static_assert(sizeof(BGSAttachParentArray) == 0x18);
static_assert(sizeof(BGSAttachParentArray) == 0x20);
}
26 changes: 26 additions & 0 deletions CommonLibSF/include/RE/B/BGSBlockBashData.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
#pragma once

#include "RE/B/BaseFormComponent.h"

namespace RE
{
class BGSImpactDataSet;
class BGSMaterialType;

class BGSBlockBashData : public BaseFormComponent
{
public:
SF_RTTI_VTABLE(BGSBlockBashData);

~BGSBlockBashData() override; // 00

// override (BaseFormComponent)
const BSFixedString& GetFormComponentType() const override; // 01 - { return "BGSBlockBashData_Component"; }
void InitializeDataComponent() override; // 02 - { return; }

// members
BGSImpactDataSet* blockBashImpactDataSet; // 08
BGSMaterialType* altBlockMaterialType; // 10
};
static_assert(sizeof(BGSBlockBashData) == 0x18);
}
24 changes: 24 additions & 0 deletions CommonLibSF/include/RE/B/BGSInstanceNamingRulesForm.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
#pragma once

#include "RE/B/BaseFormComponent.h"

namespace RE
{
class BGSInstanceNamingRules;

class BGSInstanceNamingRulesForm : public BaseFormComponent
{
public:
SF_RTTI(BGSInstanceNamingRulesForm);

~BGSInstanceNamingRulesForm() override; // 00

// override (BaseFormComponent)
const BSFixedString& GetFormComponentType() const override; // 01 - { return "BGSInstanceNamingRulesForm_Component"; }
void InitializeDataComponent() override; // 02 - { return; }

// members
BGSInstanceNamingRules* instanceNamingRules; // 08
};
static_assert(sizeof(BGSInstanceNamingRulesForm) == 0x10);
}
3 changes: 2 additions & 1 deletion CommonLibSF/include/RE/B/BGSTypedKeywordValueArray.h
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ namespace RE
// members
BGSTypedKeywordValue<TYPE>* array; // 00
std::uint32_t size; // 08
std::uint64_t unk10; // 10
};
static_assert(sizeof(BGSTypedKeywordValueArray<KeywordType::kNone>) == 0x10);
static_assert(sizeof(BGSTypedKeywordValueArray<KeywordType::kNone>) == 0x18);
}
Loading

0 comments on commit 293cbde

Please sign in to comment.