You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
693 B
22 lines
693 B
// SPDX-FileCopyrightText: Copyright 2026 Eden Emulator Project
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
#include <optional>
|
|
#include <random>
|
|
#include "common/random.h"
|
|
|
|
namespace Common::Random {
|
|
[[nodiscard]] static std::random_device& GetGlobalRandomDevice() noexcept {
|
|
static std::random_device g_random_device{};
|
|
return g_random_device;
|
|
}
|
|
[[nodiscard]] u32 Random32(u32 seed) noexcept {
|
|
return GetGlobalRandomDevice()();
|
|
}
|
|
[[nodiscard]] u64 Random64(u64 seed) noexcept {
|
|
return GetGlobalRandomDevice()();
|
|
}
|
|
[[nodiscard]] std::mt19937 GetMT19937() noexcept {
|
|
return std::mt19937(GetGlobalRandomDevice()());
|
|
}
|
|
}
|