mirror of
https://github.com/zeldaret/st
synced 2026-05-23 15:01:41 -04:00
645ed65b76
* playrget progress and match treasuremanager remaining functions * some docs * fix build issues * random docs * match func_ov094_02172290 * random docs * actor cleanup * match freestanding item funcs * mType -> mpProfile * decompile random functions * docs and start of wip chest stuff * random docs * more random docs * match func_ov036_0211d0a8 * match func_ov036_0211d2dc & func_ov036_0211d570 * match func_ov110_02184a40 * random doc * document letter/stamps system * match func_ov001_020bb9f8 * fix build issues * decompile tres * start decomp chest base * fix regressions * name TRES * name UnkStruct_ov024_020d86b0 * name stamp types and update save struct stuff * name things and document BMG IDs
71 lines
1.4 KiB
C++
71 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include "global.h"
|
|
#include "types.h"
|
|
#include <nitro/math.h>
|
|
|
|
struct Random {
|
|
/* 00 */ u16 mRandomValue[4];
|
|
/* 08 */ u64 mFactor;
|
|
/* 10 */ u64 mAddend;
|
|
/* 18 */
|
|
|
|
/**
|
|
* @brief Gets the seed's value
|
|
*/
|
|
u64 GetRandomValue() {
|
|
return *(u64 *) this->mRandomValue;
|
|
}
|
|
|
|
/**
|
|
* @brief Updates the seed's value
|
|
*/
|
|
void UpdateRandomValue() {
|
|
*(u64 *) this->mRandomValue = this->mAddend + (this->mFactor * this->GetRandomValue());
|
|
}
|
|
|
|
/**
|
|
* @brief Generates a random number as a u16
|
|
*/
|
|
u16 Next16() {
|
|
this->UpdateRandomValue();
|
|
return this->GetRandomValue() >> 48;
|
|
}
|
|
|
|
/**
|
|
* @brief Generates a random number from 0 (inclusive) to `max` (exclusive) as a u32
|
|
*/
|
|
u32 Next32(u64 min, u64 max) {
|
|
this->UpdateRandomValue();
|
|
return (((this->GetRandomValue() >> 32) * (max - min)) >> 32) + min;
|
|
}
|
|
|
|
u16 ConditionalNext16(u32 value) {
|
|
this->UpdateRandomValue();
|
|
|
|
u64 result = this->GetRandomValue() >> 32;
|
|
|
|
if (value != 0) {
|
|
result = (result * value) >> 32;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
u32 ConditionalNext32(u32 value) {
|
|
this->UpdateRandomValue();
|
|
|
|
u32 result = this->GetRandomValue() >> 32;
|
|
|
|
if (value != 0) {
|
|
return ((u64) result * value) >> 32;
|
|
}
|
|
|
|
return result;
|
|
}
|
|
|
|
void Init();
|
|
};
|
|
|
|
extern Random gRandom;
|