49 lines
1.3 KiB
C++
49 lines
1.3 KiB
C++
// Filename: randomizer.h
|
|
// Created by: drose (18Jan07)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef RANDOMIZER_H
|
|
#define RANDOMIZER_H
|
|
|
|
#include "pandabase.h"
|
|
#include "mersenne.h"
|
|
|
|
#include <time.h>
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Class : Randomizer
|
|
// Description : A handy class to return random numbers.
|
|
////////////////////////////////////////////////////////////////////
|
|
class EXPCL_PANDA_MATHUTIL Randomizer {
|
|
public:
|
|
INLINE Randomizer(unsigned long seed = 0);
|
|
INLINE Randomizer(const Randomizer ©);
|
|
INLINE void operator = (const Randomizer ©);
|
|
|
|
INLINE int random_int(int range);
|
|
INLINE double random_real(double range);
|
|
INLINE double random_real_unit();
|
|
|
|
INLINE static unsigned long get_next_seed();
|
|
INLINE unsigned long get_seed();
|
|
|
|
private:
|
|
Mersenne _mersenne;
|
|
static Mersenne _next_seed;
|
|
static bool _got_first_seed;
|
|
};
|
|
|
|
#include "randomizer.I"
|
|
|
|
#endif
|