Skip to content

Commit f30e129

Browse files
committed
chore: transition
1 parent 6e5bda3 commit f30e129

63 files changed

Lines changed: 102 additions & 149 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

include/RE/A/Actor.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -382,7 +382,7 @@ namespace RE
382382
}
383383

384384
// members
385-
REX::EnumSet<BOOL_BITS, std::uint32_t> boolBits; // 208
385+
REX::TEnumSet<BOOL_BITS, std::uint32_t> boolBits; // 208
386386
float unk20C; // 20C
387387
BSGuarded<BSTArray<void*>, BSSpinLock> unk210; // 210 - BGSBody?
388388
AIProcess* currentProcess; // 228
@@ -394,7 +394,7 @@ namespace RE
394394
std::uint64_t unk258; // 258
395395
ActorValueStorage avStorage; // 260
396396
std::uint64_t unk288; // 288
397-
REX::EnumSet<ACTOR_CRITICAL_STAGE, std::int32_t> criticalStage; // 290
397+
REX::TEnumSet<ACTOR_CRITICAL_STAGE, std::int32_t> criticalStage; // 290
398398
std::uint32_t dialogueItemTarget; // 294 - TESPointerHandle
399399
std::uint32_t currentCombatTarget; // 298 - TESPointerHandle
400400
std::uint32_t myKiller; // 29C - TESPointerHandle
@@ -428,8 +428,8 @@ namespace RE
428428
std::uint32_t unk368; // 368
429429
mutable BSReadWriteLock perkArrayLock; // 36C
430430
std::uint32_t unk374; // 374
431-
REX::EnumSet<BOOL_FLAGS, std::uint32_t> boolFlags; // 378
432-
REX::EnumSet<BOOL_FLAGS2, std::uint32_t> boolFlags2; // 37C
431+
REX::TEnumSet<BOOL_FLAGS, std::uint32_t> boolFlags; // 378
432+
REX::TEnumSet<BOOL_FLAGS2, std::uint32_t> boolFlags2; // 37C
433433
std::uint64_t unk380; // 380
434434
std::uint64_t unk388; // 388
435435
std::uint64_t unk390; // 390

include/RE/B/BGSAimDownSightModel.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ namespace RE
5353
float heightDelayADS; // 28
5454
bool depthEnabledADS; // 2C
5555
float depthDelayADS; // 30
56-
REX::EnumSet<OVERLAY, std::uint8_t> overlay; // 34
56+
REX::TEnumSet<OVERLAY, std::uint8_t> overlay; // 34
5757
};
5858
static_assert(sizeof(AimDownSightData) == 0x38);
5959

include/RE/B/BGSAtmosphere.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ namespace RE
9393

9494
struct MiscSettings
9595
{
96-
REX::Enum<ATMOSPHERE_TYPE, std::uint32_t> atmosphereType; // 00
96+
REX::TEnum<ATMOSPHERE_TYPE, std::uint32_t> atmosphereType; // 00
9797
BSTArray<BGSResource*> inorganicResources; // 08
9898
TESImageSpace* imageSpaceDay; // 18
9999
TESImageSpace* imageSpaceNight; // 20

include/RE/B/BGSBodyPartData.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ namespace RE
2424
float unk00; // 00
2525
float unk04; // 04
2626
std::uint8_t flags; // 08
27-
REX::Enum<BGSBodyPartDefs::LIMB_ENUM, std::uint8_t> limbEnum; // 09
27+
REX::TEnum<BGSBodyPartDefs::LIMB_ENUM, std::uint8_t> limbEnum; // 09
2828
std::uint8_t unk0A; // 0A
2929
std::uint16_t unk0C; // 0C
3030
BGSDebris* onCrippleDebris; // 10

include/RE/B/BGSCameraShot.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ namespace RE
5151
};
5252

5353
// members
54-
REX::Enum<CAM_ACTION, std::int32_t> cameraAction; // 00
55-
REX::Enum<CAM_OBJECT, std::int32_t> location; // 04
56-
REX::Enum<CAM_OBJECT, std::int32_t> target; // 08
54+
REX::TEnum<CAM_ACTION, std::int32_t> cameraAction; // 00
55+
REX::TEnum<CAM_OBJECT, std::int32_t> location; // 04
56+
REX::TEnum<CAM_OBJECT, std::int32_t> target; // 08
5757
std::uint32_t flags; // 0C
5858
float playerTimeMult; // 10
5959
float targetTimeMult; // 14

include/RE/B/BGSCollisionLayer.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace RE
2525
// members
2626
std::uint32_t collisionIdx; // 30
2727
std::uint32_t debugColor; // 34
28-
REX::EnumSet<Flag, std::uint32_t> flags; // 38
28+
REX::TEnumSet<Flag, std::uint32_t> flags; // 38
2929
BSFixedString name; // 40
3030
BSTArray<BGSCollisionLayer*> collidesWith; // 48
3131
};

include/RE/B/BGSColorForm.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ namespace RE
3131
float remappingIndex;
3232
}; // 40
3333
TESCondition conditions; // 48
34-
REX::EnumSet<Flag, std::uint32_t> flags; // 58
34+
REX::TEnumSet<Flag, std::uint32_t> flags; // 58
3535
};
3636
static_assert(sizeof(BGSColorForm) == 0x68);
3737
}

include/RE/B/BGSConstructibleObject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ namespace RE
3838
BGSCurveForm* unk168; // 168
3939
TESGlobal* buildLimit; // 170
4040
BSTArray<BSTTuple3<TESForm*, BGSCurveForm*, BGSTypedFormValuePair::SharedVal>>* unk178; // 178
41-
REX::Enum<LEARN_METHOD, std::uint8_t> learnMethod; // 180
41+
REX::TEnum<LEARN_METHOD, std::uint8_t> learnMethod; // 180
4242
TESGlobal* unk188; // 188
4343
BGSKeyword* unk190; // 190
4444
std::uint32_t unk198; // 198

include/RE/B/BGSDefaultObject.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ namespace RE
1616
// members
1717
BGSEditorID formEditorID; // 30
1818
TESForm* object; // 40
19-
REX::Enum<FormType, std::uint8_t> objectType; // 48
19+
REX::TEnum<FormType, std::uint8_t> objectType; // 48
2020
};
2121
static_assert(sizeof(BGSDefaultObject) == 0x58);
2222
}

include/RE/B/BGSDefaultObjectManager.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,9 +395,9 @@ namespace RE
395395
public:
396396
// members
397397
const char* name; // 00
398-
REX::Enum<FormType, std::uint8_t> type; // 08
398+
REX::TEnum<FormType, std::uint8_t> type; // 08
399399
char uniqueID[4]; // 0C
400-
REX::Enum<DEFAULT_OBJECT_TYPE, std::uint32_t> doType; // 10
400+
REX::TEnum<DEFAULT_OBJECT_TYPE, std::uint32_t> doType; // 10
401401
const char* newObjectName; // 18
402402
};
403403
static_assert(sizeof(DEFAULT_OBJECT_DATA) == 0x20);

0 commit comments

Comments
 (0)