LeviLamina
Loading...
Searching...
No Matches
SpawnClimateFinder.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/world/level/BlockPos.h"
7
8// auto generated forward declare list
9// clang-format off
13// clang-format on
14
16public:
17 // SpawnClimateFinder inner types declare
18 // clang-format off
19 struct ResultDetails;
20 // clang-format on
21
22 // SpawnClimateFinder inner types define
24 public:
25 // member variables
26 // NOLINTBEGIN
27 ::ll::TypedStorage<4, 12, ::BlockPos> position;
28 ::ll::TypedStorage<4, 4, int> iterations;
29 ::ll::TypedStorage<8, 8, int64> fitness;
30 // NOLINTEND
31 };
32
33public:
34 // member variables
35 // NOLINTBEGIN
36 ::ll::TypedStorage<8, 8, ::OverworldNoises3d const&> mNoiseSampler;
37 ::ll::TypedStorage<8, 8, ::DimensionHeightRange const&> mDimensionHeightRange;
38 ::ll::TypedStorage<8, 24, ::std::vector<::ClimateParameters> const> mTargetClimates;
39 // NOLINTEND
40
41public:
42 // prevent constructor by default
43 SpawnClimateFinder& operator=(SpawnClimateFinder const&);
46
47public:
48 // member functions
49 // NOLINTBEGIN
51 ::std::vector<::ClimateParameters> targetClimates,
52 ::OverworldNoises3d const& noiseSampler,
53 ::DimensionHeightRange const& dimensionHeightRange
54 );
55
56 MCAPI int64 _calculateClimateMinFitness(::BlockPos pos) const;
57
58 MCAPI ::SpawnClimateFinder::ResultDetails _findSpawnPositionDetailedResult() const;
59
60 MCAPI ~SpawnClimateFinder();
61 // NOLINTEND
62
63public:
64 // constructor thunks
65 // NOLINTBEGIN
66 MCAPI void* $ctor(
67 ::std::vector<::ClimateParameters> targetClimates,
68 ::OverworldNoises3d const& noiseSampler,
69 ::DimensionHeightRange const& dimensionHeightRange
70 );
71 // NOLINTEND
72
73public:
74 // destructor thunk
75 // NOLINTBEGIN
76 MCAPI void $dtor();
77 // NOLINTEND
78};
Definition BlockPos.h:17
Definition DimensionHeightRange.h:5
Definition SpawnClimateFinder.h:15
Definition ClimateParameters.h:8
Definition OverworldNoises3d.h:19
Definition SpawnClimateFinder.h:23