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