mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-02-20 15:40:32 +00:00
script Random() command now returns correct range.
This commit is contained in:
parent
3f28634d1f
commit
2cfc4c0286
@ -12,6 +12,8 @@
|
||||
#include "runtime.hpp"
|
||||
#include "defines.hpp"
|
||||
|
||||
#include <openengine/misc/rng.hpp>
|
||||
|
||||
namespace Interpreter
|
||||
{
|
||||
inline std::string formatMessage (const std::string& message, Runtime& runtime)
|
||||
@ -140,15 +142,13 @@ namespace Interpreter
|
||||
|
||||
virtual void execute (Runtime& runtime)
|
||||
{
|
||||
double r = static_cast<double> (std::rand()) / RAND_MAX; // [0, 1)
|
||||
|
||||
Type_Integer limit = runtime[0].mInteger;
|
||||
|
||||
if (limit<0)
|
||||
throw std::runtime_error (
|
||||
"random: argument out of range (Don't be so negative!)");
|
||||
|
||||
Type_Integer value = static_cast<Type_Integer> (r*limit); // [o, limit)
|
||||
Type_Integer value = OEngine::Misc::Rng::rollDice(limit); // [o, limit)
|
||||
|
||||
runtime[0].mInteger = value;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user