LeviLamina
Loading...
Searching...
No Matches
RandomScatteredLargeFeature.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/levelgen/structure/StructureFeature.h"
7
8// auto generated forward declare list
9// clang-format off
10class BiomeSource;
11class BlockPos;
12class ChunkPos;
13class Dimension;
14class HashedString;
16class Random;
17class StructureStart;
18struct BiomeIdType;
19// clang-format on
20
21class RandomScatteredLargeFeature : public ::StructureFeature {
22public:
23 // member variables
24 // NOLINTBEGIN
25 ::ll::TypedStorage<8, 24, ::std::vector<::BiomeIdType>> mAllowedBiomes;
26 ::ll::TypedStorage<4, 4, int> mSpacing;
27 ::ll::TypedStorage<4, 4, int> mMinSeparation;
28 // NOLINTEND
29
30public:
31 // prevent constructor by default
32 RandomScatteredLargeFeature();
33
34public:
35 // virtual functions
36 // NOLINTBEGIN
37 virtual ::gsl::span<::BiomeIdType const> getRequiredBiomes() const /*override*/;
38
39 virtual bool getNearestGeneratedFeature(
40 ::Dimension& dimension,
41 ::BiomeSource const& biomeSource,
42 ::BlockPos const& origin,
43 ::BlockPos& pos,
44 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
45 bool mustBeInNewChunks,
46 ::std::optional<::HashedString> const& biomeTag
47 ) /*override*/;
48
49 virtual bool shouldAddHardcodedSpawnAreas() const /*override*/;
50
51 virtual bool shouldPostProcessMobs() const /*override*/;
52
53 virtual bool isFeatureChunk(
54 ::BiomeSource const& biomeSource,
55 ::Random& random,
56 ::ChunkPos const& pos,
57 uint levelSeed,
58 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
59 ::Dimension const& dimension
60 ) /*override*/;
61
62 virtual ::std::unique_ptr<::StructureStart> createStructureStart(
63 ::Dimension& dimension,
64 ::BiomeSource const& biomeSource,
65 ::Random& cp,
66 ::ChunkPos const& preliminarySurfaceLevel,
68 ) /*override*/;
69 // NOLINTEND
70
71public:
72 // member functions
73 // NOLINTBEGIN
74 MCAPI explicit RandomScatteredLargeFeature(uint seed);
75 // NOLINTEND
76
77public:
78 // constructor thunks
79 // NOLINTBEGIN
80 MCAPI void* $ctor(uint seed);
81 // NOLINTEND
82
83public:
84 // virtual function thunks
85 // NOLINTBEGIN
86 MCFOLD ::gsl::span<::BiomeIdType const> $getRequiredBiomes() const;
87
88 MCAPI bool $getNearestGeneratedFeature(
89 ::Dimension& dimension,
90 ::BiomeSource const& biomeSource,
91 ::BlockPos const& origin,
92 ::BlockPos& pos,
93 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
94 bool mustBeInNewChunks,
95 ::std::optional<::HashedString> const& biomeTag
96 );
97
98 MCFOLD bool $shouldAddHardcodedSpawnAreas() const;
99
100 MCFOLD bool $shouldPostProcessMobs() const;
101
102 MCAPI bool $isFeatureChunk(
103 ::BiomeSource const& biomeSource,
104 ::Random& random,
105 ::ChunkPos const& pos,
106 uint levelSeed,
107 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
108 ::Dimension const& dimension
109 );
110
111 MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart(
112 ::Dimension& dimension,
113 ::BiomeSource const& biomeSource,
114 ::Random& cp,
115 ::ChunkPos const& preliminarySurfaceLevel,
117 );
118
119
120 // NOLINTEND
121
122public:
123 // vftables
124 // NOLINTBEGIN
125 MCAPI static void** $vftable();
126 // NOLINTEND
127};
Definition BiomeSource.h:24
Definition BlockPos.h:21
Definition ChunkPos.h:11
Definition Dimension.h:89
Definition HashedString.h:5
Definition IPreliminarySurfaceProvider.h:8
Definition Random.h:10
static MCAPI void ** $vftable()
Definition StructureStart.h:15
Definition BiomeIdType.h:8