LeviLamina
Loading...
Searching...
No Matches
DiscardSystem.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/ecs/Optional.h"
7#include "mc/deps/ecs/ViewT.h"
8#include "mc/deps/ecs/strict/AddRemove.h"
9#include "mc/deps/ecs/strict/EntityFactoryT.h"
10#include "mc/deps/ecs/strict/Filter.h"
11#include "mc/deps/ecs/strict/GlobalRead.h"
12#include "mc/deps/ecs/strict/GlobalWrite.h"
13#include "mc/deps/ecs/strict/IStrictTickingSystem.h"
14#include "mc/deps/ecs/strict/Read.h"
15#include "mc/deps/ecs/strict/StrictExecutionContext.h"
16#include "mc/deps/ecs/strict/Write.h"
17
18// auto generated forward declare list
19// clang-format off
28// clang-format on
29
30namespace ClientRewind {
31
32struct DiscardSystem : public ::IStrictTickingSystem<::StrictExecutionContext<
33 ::Filter<::ActorMovementTickNeededComponent>,
34 ::Read<
35 ::ActorDataFlagComponent,
36 ::ActorDataHorseFlagComponent,
37 ::ActorDataJumpDurationComponent,
38 ::ActorDataBoundingBoxComponent,
39 ::ActorDataSeatOffsetComponent>,
40 ::Write<::ReplayStateTrackerComponent>,
41 ::AddRemove<>,
42 ::GlobalRead<>,
43 ::GlobalWrite<>,
44 ::EntityFactoryT<>>> {
45public:
46 // virtual functions
47 // NOLINTBEGIN
48 // vIndex: 5
49 virtual void tick(
52 ::Read<
62 ::EntityFactoryT<>>& executionContext
63 ) /*override*/;
64
65 // vIndex: 6
66 virtual void singleTick(
69 ::Read<
79 ::EntityFactoryT<>>& executionContext,
80 ::StrictEntityContext& entityContext
81 ) /*override*/;
82
83 // vIndex: 0
84 virtual ~DiscardSystem() /*override*/ = default;
85 // NOLINTEND
86
87public:
88 // static functions
89 // NOLINTBEGIN
90 MCNAPI static void tickEntity(
91 ::StrictEntityContext const& entity,
93 ::ViewT<
100 );
101 // NOLINTEND
102
103public:
104 // virtual function thunks
105 // NOLINTBEGIN
106 MCNAPI void $tick(
109 ::Read<
119 ::EntityFactoryT<>>& executionContext
120 );
121
122 MCNAPI void $singleTick(
125 ::Read<
135 ::EntityFactoryT<>>& executionContext,
136 ::StrictEntityContext& entityContext
137 );
138 // NOLINTEND
139
140public:
141 // vftables
142 // NOLINTBEGIN
143 MCNAPI static void** $vftable();
144 // NOLINTEND
145};
146
147} // namespace ClientRewind
Definition IStrictTickingSystem.h:6
Definition Optional.h:8
Definition StrictEntityContext.h:8
Definition StrictExecutionContext.h:6
Definition ViewT.h:6
Definition ActorDataBoundingBoxComponent.h:8
Definition ActorDataFlagComponent.h:9
Definition ActorDataHorseFlagComponent.h:8
Definition ActorDataJumpDurationComponent.h:8
Definition ActorDataSeatOffsetComponent.h:8
Definition ActorMovementTickNeededComponent.h:5
Definition AddRemove.h:6
Definition DiscardSystem.h:44
static MCAPI void tickEntity(::StrictEntityContext const &entity, ::ReplayStateTrackerComponent &tracker, ::ViewT< ::StrictEntityContext, ::ActorDataFlagComponent const, ::Optional<::ActorDataHorseFlagComponent const >, ::Optional<::ActorDataJumpDurationComponent const >, ::Optional<::ActorDataBoundingBoxComponent const >, ::Optional<::ActorDataSeatOffsetComponent const > > const &tracked)
MCAPI void $singleTick(::StrictExecutionContext< ::Filter<::ActorMovementTickNeededComponent >, ::Read< ::ActorDataFlagComponent, ::ActorDataHorseFlagComponent, ::ActorDataJumpDurationComponent, ::ActorDataBoundingBoxComponent, ::ActorDataSeatOffsetComponent >, ::Write<::ReplayStateTrackerComponent >, ::AddRemove<>, ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<> > &executionContext, ::StrictEntityContext &entityContext)
MCAPI void $tick(::StrictExecutionContext< ::Filter<::ActorMovementTickNeededComponent >, ::Read< ::ActorDataFlagComponent, ::ActorDataHorseFlagComponent, ::ActorDataJumpDurationComponent, ::ActorDataBoundingBoxComponent, ::ActorDataSeatOffsetComponent >, ::Write<::ReplayStateTrackerComponent >, ::AddRemove<>, ::GlobalRead<>, ::GlobalWrite<>, ::EntityFactoryT<> > &executionContext)
static MCAPI void ** $vftable()
Definition EntityFactoryT.h:6
Definition Filter.h:6
Definition GlobalRead.h:6
Definition GlobalWrite.h:6
Definition Read.h:6
Definition ReplayStateTrackerComponent.h:8
Definition Write.h:6