LeviLamina
Loading...
Searching...
No Matches
RuinedPortalFeature.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;
18// clang-format on
19
21public:
22 // member variables
23 // NOLINTBEGIN
24 ::ll::TypedStorage<1, 1, bool const> mNether;
25 ::ll::TypedStorage<4, 4, int const> mOverworldSpacing;
26 ::ll::TypedStorage<4, 4, int const> mOverworldMinSeparation;
27 ::ll::TypedStorage<4, 4, int const> mNetherSpacing;
28 ::ll::TypedStorage<4, 4, int const> mNetherMinSeparation;
29 // NOLINTEND
30
31public:
32 // virtual functions
33 // NOLINTBEGIN
34 // vIndex: 4
35 virtual bool getNearestGeneratedFeature(
36 ::Dimension& dimension,
37 ::BiomeSource const& biomeSource,
38 ::BlockPos const& origin,
39 ::BlockPos& pos,
40 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
41 bool mustBeInNewChunks,
42 ::std::optional<::HashedString> const& biomeTag
43 ) /*override*/;
44
45 // vIndex: 6
46 virtual ::std::unique_ptr<::StructureStart> createStructureStart(
47 ::Dimension& dimension,
48 ::BiomeSource const& biomeSource,
49 ::Random&,
50 ::ChunkPos const& cp,
51 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
52 ) /*override*/;
53
54 // vIndex: 5
55 virtual bool isFeatureChunk(
56 ::BiomeSource const&,
57 ::Random& random,
58 ::ChunkPos const& pos,
59 uint levelSeed,
61 ::Dimension const&
62 ) /*override*/;
63
64 // vIndex: 0
65 virtual ~RuinedPortalFeature() /*override*/ = default;
66 // NOLINTEND
67
68public:
69 // virtual function thunks
70 // NOLINTBEGIN
71 MCAPI bool $getNearestGeneratedFeature(
72 ::Dimension& dimension,
73 ::BiomeSource const& biomeSource,
74 ::BlockPos const& origin,
75 ::BlockPos& pos,
76 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel,
77 bool mustBeInNewChunks,
78 ::std::optional<::HashedString> const& biomeTag
79 );
80
81 MCAPI ::std::unique_ptr<::StructureStart> $createStructureStart(
82 ::Dimension& dimension,
83 ::BiomeSource const& biomeSource,
84 ::Random&,
85 ::ChunkPos const& cp,
86 ::IPreliminarySurfaceProvider const& preliminarySurfaceLevel
87 );
88
89 MCAPI bool $isFeatureChunk(
90 ::BiomeSource const&,
91 ::Random& random,
92 ::ChunkPos const& pos,
93 uint levelSeed,
95 ::Dimension const&
96 );
97 // NOLINTEND
98
99public:
100 // vftables
101 // NOLINTBEGIN
102 MCAPI static void** $vftable();
103 // NOLINTEND
104};
Definition BiomeSource.h:20
Definition BlockPos.h:17
Definition ChunkPos.h:11
Definition Dimension.h:83
Definition HashedString.h:5
Definition IPreliminarySurfaceProvider.h:8
Definition Random.h:10
Definition RuinedPortalFeature.h:20
Definition StructureFeature.h:24
Definition StructureStart.h:15