2011-10-26 18:24:31 -05:00
|
|
|
/*
|
|
|
|
Module: rand
|
2011-06-15 13:19:50 -05:00
|
|
|
|
2011-10-26 18:24:31 -05:00
|
|
|
Random number generation
|
|
|
|
*/
|
2011-11-09 20:44:12 -06:00
|
|
|
native "cdecl" mod rustrt {
|
2010-09-22 17:44:13 -05:00
|
|
|
type rctx;
|
|
|
|
fn rand_new() -> rctx;
|
2011-07-27 07:19:39 -05:00
|
|
|
fn rand_next(c: rctx) -> u32;
|
|
|
|
fn rand_free(c: rctx);
|
2010-07-25 23:45:09 -05:00
|
|
|
}
|
|
|
|
|
2011-10-26 18:24:31 -05:00
|
|
|
/* Section: Types */
|
|
|
|
|
|
|
|
/*
|
|
|
|
Obj: rng
|
|
|
|
|
|
|
|
A random number generator
|
|
|
|
*/
|
|
|
|
type rng = obj {
|
|
|
|
/*
|
|
|
|
Method: next
|
|
|
|
|
|
|
|
Return the next random integer
|
|
|
|
*/
|
|
|
|
fn next() -> u32;
|
|
|
|
|
|
|
|
/*
|
|
|
|
Method: next_float
|
|
|
|
|
|
|
|
Return the next random float
|
|
|
|
*/
|
|
|
|
fn next_float() -> float;
|
|
|
|
};
|
2011-07-29 06:31:44 -05:00
|
|
|
|
2011-08-19 17:16:48 -05:00
|
|
|
resource rand_res(c: rustrt::rctx) { rustrt::rand_free(c); }
|
2010-07-25 23:45:09 -05:00
|
|
|
|
2011-10-26 18:24:31 -05:00
|
|
|
/* Section: Operations */
|
|
|
|
|
|
|
|
/*
|
|
|
|
Function: mk_rng
|
|
|
|
|
|
|
|
Create a random number generator
|
|
|
|
*/
|
2010-07-25 23:45:09 -05:00
|
|
|
fn mk_rng() -> rng {
|
2011-07-29 06:31:44 -05:00
|
|
|
obj rt_rng(c: @rand_res) {
|
2011-08-19 17:16:48 -05:00
|
|
|
fn next() -> u32 { ret rustrt::rand_next(**c); }
|
2011-10-17 07:44:29 -05:00
|
|
|
fn next_float() -> float {
|
|
|
|
let u1 = rustrt::rand_next(**c) as float;
|
|
|
|
let u2 = rustrt::rand_next(**c) as float;
|
|
|
|
let u3 = rustrt::rand_next(**c) as float;
|
2011-11-15 19:10:43 -06:00
|
|
|
let scale = u32::max_value as float;
|
2011-10-17 07:44:29 -05:00
|
|
|
ret ((u1 / scale + u2) / scale + u3) / scale;
|
|
|
|
}
|
2010-07-25 23:45:09 -05:00
|
|
|
}
|
2011-07-29 06:31:44 -05:00
|
|
|
ret rt_rng(@rand_res(rustrt::rand_new()));
|
2010-07-25 23:45:09 -05:00
|
|
|
}
|
2010-09-22 17:44:13 -05:00
|
|
|
// Local Variables:
|
|
|
|
// mode: rust;
|
|
|
|
// fill-column: 78;
|
|
|
|
// indent-tabs-mode: nil
|
|
|
|
// c-basic-offset: 4
|
|
|
|
// buffer-file-coding-system: utf-8-unix
|
2011-06-15 14:01:19 -05:00
|
|
|
// compile-command: "make -k -C $RBUILD 2>&1 | sed -e 's/\\/x\\//x:\\//g'";
|
2010-09-22 17:44:13 -05:00
|
|
|
// End:
|