-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
223 changed files
with
2,754 additions
and
381 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
#pragma once | ||
|
||
#include "ActorPackage.h" | ||
|
||
namespace RE | ||
{ | ||
struct MiddleLowProcessData; | ||
struct MiddleHighProcessData; | ||
struct HighProcessData; | ||
|
||
// F8 | ||
class AIProcess | ||
{ | ||
public: | ||
MiddleLowProcessData* middleLow; // 00 | ||
MiddleHighProcessData* middleHigh; // 08 | ||
HighProcessData* high; // 10 | ||
ActorPackage currentPackage; // 18 | ||
float hourLastProcessed; // 48 | ||
std::uint32_t unk4C; // 4C | ||
std::uint64_t unk50; // 50 | ||
std::uint64_t unk58; // 58 | ||
std::uint64_t unk60; // 60 | ||
std::uint64_t unk68; // 68 | ||
std::uint64_t unk70; // 70 | ||
std::uint64_t unk78; // 78 | ||
std::uint64_t unk80; // 80 | ||
std::uint64_t unk88; // 88 | ||
std::uint64_t unk90; // 90 | ||
std::uint64_t unk98; // 98 | ||
std::uint64_t unkA0; // A0 | ||
std::uint64_t unkA8; // A8 | ||
std::uint64_t unkB0; // B0 | ||
std::uint64_t unkB8; // B8 | ||
std::uint64_t unkC0; // C0 | ||
std::uint64_t unkC8; // C8 | ||
std::uint64_t unkD0; // D0 | ||
std::uint64_t unkD8; // D8 | ||
std::uint64_t unkE0; // E0 | ||
std::uint64_t unkE8; // E8 | ||
std::uint64_t unkF0; // F0 | ||
}; | ||
static_assert(sizeof(AIProcess) == 0xF8); | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#pragma once | ||
|
||
namespace RE | ||
{ | ||
struct ActorPackageData; | ||
class TESPackage; | ||
|
||
class ActorPackage | ||
{ | ||
public: | ||
// members | ||
void* packageLock; // 00 | ||
TESPackage* package; // 08 | ||
ActorPackageData* data; // 10 | ||
void* target; // 18 | ||
std::int32_t currentProcedureIndex; // 1C | ||
float packageStartTime; // 20 | ||
std::uint32_t modifiedPackageFlag; // 24 | ||
std::uint16_t modifiedInterruptFlag; // 28 | ||
std::int8_t actorPackageFlags; // 2A | ||
std::int8_t preferredSpeed; // 2B | ||
}; | ||
static_assert(sizeof(ActorPackage) == 0x30); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
#pragma once | ||
|
||
#include "RE/I/IMovementState.h" | ||
|
||
namespace RE | ||
{ | ||
class ActorState : public IMovementState | ||
{ | ||
public: | ||
SF_RTTI(ActorState); | ||
|
||
~ActorState() override; // 00 | ||
|
||
// add | ||
virtual void Unk_31(); // 31 | ||
virtual void Unk_32(); // 32 | ||
virtual void Unk_33(); // 33 | ||
virtual void Unk_34(); // 34 | ||
|
||
// members | ||
std::uint32_t actorState1; // 08 | ||
std::uint32_t actorState2; // 0C | ||
}; | ||
static_assert(sizeof(ActorState) == 0x10); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,16 +1,21 @@ | ||
#pragma once | ||
|
||
#include "RE/B/BaseFormComponent.h" | ||
#include "RE/N/NiSmartPointer.h" | ||
|
||
namespace RE | ||
{ | ||
class BGSAttackDataMap; | ||
|
||
class BGSAttackDataForm : public BaseFormComponent | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(BGSAttackDataForm); | ||
|
||
virtual ~BGSAttackDataForm(); // 00 | ||
|
||
// members | ||
void* /*NiPointer<BGSAttackDataMap>*/ attackDataMap; // 08 | ||
NiPointer<BGSAttackDataMap> attackDataMap; // 08 | ||
}; | ||
static_assert(sizeof(BGSAttackDataForm) == 0x10); | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,4 +34,4 @@ namespace RE | |
TESForm* _owner; // 08 | ||
}; | ||
static_assert(sizeof(BGSEditorID) == 0x10); | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,4 +10,4 @@ namespace RE | |
SF_RTTI_VTABLE(BGSKeyword); | ||
SF_FORMTYPE(KYWD); | ||
}; | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,4 +21,4 @@ namespace RE | |
std::uint64_t unk28; | ||
}; | ||
static_assert(sizeof(BGSKeywordForm) == 0x30); | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,4 +11,4 @@ namespace RE | |
SF_RTTI_VTABLE(BGSListForm); | ||
SF_FORMTYPE(FLST); | ||
}; | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -30,4 +30,4 @@ namespace RE | |
bool hasBeenEverExplored; // 1DD | ||
// | ||
}; | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,4 +15,4 @@ namespace RE | |
|
||
// | ||
}; | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,4 @@ namespace RE | |
TESObjectARMO* formSkin; // 08 | ||
}; | ||
static_assert(sizeof(BGSSkinForm) == 0x10); | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ namespace RE | |
public: | ||
SF_RTTI_VTABLE(BGSTerminal); | ||
}; | ||
} // namespace RE | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#pragma once | ||
|
||
namespace RE | ||
{ | ||
class BSInputEventUser | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(BSInputEventUser); | ||
|
||
virtual ~BSInputEventUser() = default; // 00 | ||
|
||
// add | ||
virtual void Unk_01(void); // 01 | ||
virtual void Unk_02(void); // 02 | ||
virtual void Unk_03(void); // 03 | ||
virtual void Unk_04(void); // 04 | ||
virtual void Unk_05(void); // 05 | ||
virtual void Unk_06(void); // 06 | ||
virtual void Unk_07(void); // 07 | ||
virtual void Unk_08(void); // 08 | ||
virtual void Unk_09(void); // 09 | ||
|
||
// members | ||
std::uint8_t pad08[0x30]; // 08 | ||
bool inputEventHandlingEnabled{ true }; // 38 | ||
}; | ||
static_assert(sizeof(BSInputEventUser) == 0x40); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.