-
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
12 changed files
with
181 additions
and
159 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#pragma once | ||
|
||
#include "RE/T/TESForm.h" | ||
|
||
namespace RE | ||
{ | ||
class __declspec(novtable) BGSStoryManagerTreeForm : | ||
public TESForm | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(BGSStoryManagerTreeForm); | ||
}; | ||
} |
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,34 @@ | ||
#pragma once | ||
|
||
#include "RE/B/BSTArray.h" | ||
|
||
namespace RE | ||
{ | ||
class TESQuest; | ||
|
||
class __declspec(novtable) BGSStoryTeller | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(BGSStoryTeller); | ||
|
||
[[nodiscard]] static BGSStoryTeller* GetSingleton() | ||
{ | ||
static REL::Relocation<BGSStoryTeller**> singleton{ REL::ID(878850) }; | ||
return *singleton; | ||
} | ||
|
||
// members | ||
std::byte pad00[0x38]; | ||
BSTArray<TESQuest*> queuedStartQuests; | ||
BSTArray<TESQuest*> runningQuests; | ||
BSTArray<TESQuest*> queuedStopQuests; | ||
std::byte pad70[0x10]; | ||
BSTArray<TESQuest*> unk78; | ||
BSTArray<TESQuest*> unk88; | ||
}; | ||
static_assert(offsetof(BGSStoryTeller, queuedStartQuests) == 0x38); | ||
static_assert(offsetof(BGSStoryTeller, runningQuests) == 0x48); | ||
static_assert(offsetof(BGSStoryTeller, queuedStopQuests) == 0x58); | ||
static_assert(offsetof(BGSStoryTeller, unk78) == 0x78); | ||
static_assert(offsetof(BGSStoryTeller, unk88) == 0x88); | ||
} |
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,43 @@ | ||
#pragma once | ||
|
||
#include "RE/B/BSTArray.h" | ||
#include "RE/B/BSTEvent.h" | ||
#include "RE/B/BSTSingleton.h" | ||
|
||
namespace RE | ||
{ | ||
struct PositionPlayerEvent; | ||
|
||
class __declspec(novtable) ProcessLists : | ||
public BSTEventSink<PositionPlayerEvent>, // 000 | ||
public BSTSingletonSDM<ProcessLists> // 008 | ||
{ | ||
public: | ||
SF_RTTI_VTABLE(ProcessLists); | ||
|
||
virtual ~ProcessLists(); // 00 | ||
|
||
// override | ||
virtual BSEventNotifyControl ProcessEvent(const PositionPlayerEvent&, BSTEventSource<PositionPlayerEvent>*) override; // 01 | ||
|
||
[[nodiscard]] static ProcessLists* GetSingleton() | ||
{ | ||
static REL::Relocation<ProcessLists**> singleton{ REL::ID(878338) }; | ||
return *singleton; | ||
} | ||
|
||
// members | ||
std::byte pad10[0x3B]; // 010 | ||
bool runDetection; // 044 | ||
std::byte pad45[0x13]; // 045 | ||
BSTArray<std::uint32_t> highActorHandles; // 058 | ||
BSTArray<std::uint32_t> lowActorHandles; // 068 | ||
BSTArray<std::uint32_t> middleHighActorHandles; // 078 | ||
BSTArray<std::uint32_t> middleLowActorHandles; // 088 | ||
}; | ||
static_assert(offsetof(ProcessLists, runDetection) == 0x44); | ||
static_assert(offsetof(ProcessLists, highActorHandles) == 0x58); | ||
static_assert(offsetof(ProcessLists, lowActorHandles) == 0x68); | ||
static_assert(offsetof(ProcessLists, middleHighActorHandles) == 0x78); | ||
static_assert(offsetof(ProcessLists, middleLowActorHandles) == 0x88); | ||
} |
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.