LeviLamina
Loading...
Searching...
No Matches
XoroshiroPositionalRandomFactory.h
1#pragma once
2
3#include "mc/_HeaderOutputPredefine.h"
4
5// auto generated inclusion list
6#include "mc/deps/core/math/IPositionalRandomFactory.h"
7
8// auto generated forward declare list
9// clang-format off
10class BlockPos;
11class IRandom;
12class XoroshiroRandom;
13namespace Crypto::Hash { class md5; }
14// clang-format on
15
17public:
18 // member variables
19 // NOLINTBEGIN
20 ::ll::TypedStorage<8, 8, uint64> mSeedLo;
21 ::ll::TypedStorage<8, 8, uint64> mSeedHi;
22 // NOLINTEND
23
24public:
25 // virtual functions
26 // NOLINTBEGIN
27 // vIndex: 1
28 virtual ::std::unique_ptr<::IRandom> forBlockPos(::BlockPos const& blockPos) const /*override*/;
29
30 // vIndex: 2
31 virtual ::std::unique_ptr<::IRandom> forString(::std::string const& s) const /*override*/;
32
33 // vIndex: 0
34 virtual ~XoroshiroPositionalRandomFactory() /*override*/;
35 // NOLINTEND
36
37public:
38 // member functions
39 // NOLINTBEGIN
40 MCNAPI ::XoroshiroRandom forBlockPosImpl(::BlockPos const& blockPos) const;
41
42 MCNAPI ::XoroshiroRandom forStringImpl(::std::string const& s) const;
43 // NOLINTEND
44
45public:
46 // static functions
47 // NOLINTBEGIN
48 MCNAPI static ::XoroshiroRandom forBlockPosImplNoSeed(::BlockPos const& blockPos);
49 // NOLINTEND
50
51public:
52 // static variables
53 // NOLINTBEGIN
54 MCNAPI static ::Crypto::Hash::md5& mThreadLocalDigest();
55 // NOLINTEND
56
57public:
58 // destructor thunk
59 // NOLINTBEGIN
60 MCNAPI void $dtor();
61 // NOLINTEND
62
63public:
64 // virtual function thunks
65 // NOLINTBEGIN
66 MCNAPI ::std::unique_ptr<::IRandom> $forBlockPos(::BlockPos const& blockPos) const;
67
68 MCNAPI ::std::unique_ptr<::IRandom> $forString(::std::string const& s) const;
69 // NOLINTEND
70
71public:
72 // vftables
73 // NOLINTBEGIN
74 MCNAPI static void** $vftable();
75 // NOLINTEND
76};
Definition BlockPos.h:18
Definition IPositionalRandomFactory.h:11
Definition IRandom.h:10
Definition XoroshiroPositionalRandomFactory.h:16
static MCAPI ::Crypto::Hash::md5 & mThreadLocalDigest()
static MCAPI void ** $vftable()
MCAPI::XoroshiroRandom forBlockPosImpl(::BlockPos const &blockPos) const
static MCAPI ::XoroshiroRandom forBlockPosImplNoSeed(::BlockPos const &blockPos)
MCAPI ::std::unique_ptr<::IRandom > $forBlockPos(::BlockPos const &blockPos) const
MCAPI ::std::unique_ptr<::IRandom > $forString(::std::string const &s) const
MCAPI::XoroshiroRandom forStringImpl(::std::string const &s) const
Definition XoroshiroRandom.h:15