pokeemerald/include/random.h

24 lines
623 B
C
Raw Normal View History

#ifndef GUARD_RANDOM_H
#define GUARD_RANDOM_H
2017-02-03 00:30:08 +00:00
extern u32 gRngValue;
extern u32 gRng2Value;
//Returns a 16-bit pseudorandom number
u16 Random(void);
u16 Random2(void);
//Returns a 32-bit pseudorandom number
#define Random32() (Random() | (Random() << 16))
// The number 1103515245 comes from the example implementation of rand and srand
// in the ISO C standard.
2024-08-15 17:34:56 +00:00
#define ISO_RANDOMIZE1(val) (1103515245 * (val) + 24691)
#define ISO_RANDOMIZE2(val) (1103515245 * (val) + 12345)
2017-02-03 00:30:08 +00:00
//Sets the initial seed value of the pseudorandom number generator
void SeedRng(u16 seed);
void SeedRng2(u16 seed);
#endif // GUARD_RANDOM_H