LeviLamina
Loading...
Searching...
No Matches
OceanMixerOperationNode.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/biome/BiomeTemperatureCategory.h"
7#include "mc/world/level/newbiome/MixerOperationNode.h"
8#include "mc/world/level/newbiome/OperationGraphResult.h"
9#include "mc/world/level/newbiome/OperationNode.h"
10#include "mc/world/level/newbiome/operation_node_details/WorkingData.h"
11
12// auto generated forward declare list
13// clang-format off
14class Biome;
15class BiomeRegistry;
16class Pos2d;
17// clang-format on
18
19class OceanMixerOperationNode
20: public ::MixerOperationNode<::Biome const*, ::Pos2d, ::Biome const*, ::BiomeTemperatureCategory> {
21public:
22 // OceanMixerOperationNode inner types define
24
25public:
26 // member variables
27 // NOLINTBEGIN
28 ::ll::TypedStorage<8, 8, ::Biome const*> mGenericShallowOcean;
29 ::ll::TypedStorage<8, 8, ::Biome const*> mGenericDeepOcean;
30 ::ll::TypedStorage<8, 120, ::std::vector<::std::pair<::Biome const*, uint>>[5]> mShallowOceanBiomes;
31 ::ll::TypedStorage<8, 120, ::std::vector<::std::pair<::Biome const*, uint>>[5]> mDeepOceanBiomes;
32 // NOLINTEND
33
34public:
35 // prevent constructor by default
36 OceanMixerOperationNode();
37
38public:
39 // virtual functions
40 // NOLINTBEGIN
41 virtual void _fillArea(
43 ::Pos2d const& origin,
44 ::Pos2d const& size,
45 int pw,
47 ) const /*override*/;
48
49 virtual ::std::tuple<::Pos2d, ::Pos2d> _getAreaRead(::Pos2d const& origin, ::Pos2d const& size) const /*override*/;
50
51 virtual ~OceanMixerOperationNode() /*override*/ = default;
52 // NOLINTEND
53
54public:
55 // member functions
56 // NOLINTBEGIN
57 MCAPI OceanMixerOperationNode(
58 uint seedMixup,
59 ::std::shared_ptr<::OperationNode<::Biome const*, ::Pos2d>>& biomeLayer,
60 ::std::shared_ptr<::OperationNode<::BiomeTemperatureCategory, ::Pos2d>>& oceanLayer,
61 ::BiomeRegistry const& registry,
62 ::Biome const& genericShallowOcean,
63 ::Biome const& genericDeepOcean
64 );
65 // NOLINTEND
66
67public:
68 // constructor thunks
69 // NOLINTBEGIN
70 MCAPI void* $ctor(
71 uint seedMixup,
72 ::std::shared_ptr<::OperationNode<::Biome const*, ::Pos2d>>& biomeLayer,
73 ::std::shared_ptr<::OperationNode<::BiomeTemperatureCategory, ::Pos2d>>& oceanLayer,
74 ::BiomeRegistry const& registry,
75 ::Biome const& genericShallowOcean,
76 ::Biome const& genericDeepOcean
77 );
78 // NOLINTEND
79
80public:
81 // virtual function thunks
82 // NOLINTBEGIN
83 MCAPI void $_fillArea(
85 ::Pos2d const& origin,
86 ::Pos2d const& size,
87 int pw,
89 ) const;
90
91 MCFOLD ::std::tuple<::Pos2d, ::Pos2d> $_getAreaRead(::Pos2d const& origin, ::Pos2d const& size) const;
92
93
94 // NOLINTEND
95
96public:
97 // vftables
98 // NOLINTBEGIN
99 MCNAPI static void** $vftable();
100 // NOLINTEND
101};
Definition BiomeRegistry.h:37
Definition Biome.h:23
Definition MixerOperationNode.h:6
static MCAPI void ** $vftable()
Definition OperationGraphResult.h:6
Definition WorkingData.h:8
Definition OperationNode.h:6
Definition Pos2d.h:6