ruffle/core/src/avm1/globals.rs

55 lines
1.7 KiB
Rust
Raw Normal View History

2019-09-17 03:37:11 +00:00
use crate::avm1::{ActionContext, Avm1, Object, Value};
use crate::backend::navigator::NavigationMethod;
2019-09-17 03:37:11 +00:00
use gc_arena::{GcCell, MutationContext};
use rand::Rng;
mod math;
2019-09-01 22:40:32 +00:00
#[allow(non_snake_case)]
pub fn getURL<'a, 'gc>(
avm: &mut Avm1<'gc>,
2019-09-01 22:40:32 +00:00
context: &mut ActionContext<'a, 'gc, '_>,
_this: GcCell<'gc, Object<'gc>>,
args: &[Value<'gc>],
) -> Value<'gc> {
//TODO: Error behavior if no arguments are present
if let Some(url_val) = args.get(0) {
let url = url_val.clone().into_string();
let window = args.get(1).map(|v| v.clone().into_string());
let method = match args.get(2) {
Some(Value::String(s)) if s == "GET" => Some(NavigationMethod::GET),
Some(Value::String(s)) if s == "POST" => Some(NavigationMethod::POST),
2019-09-17 03:37:11 +00:00
_ => None,
};
let vars_method = method.map(|m| (m, avm.locals_into_form_values()));
2019-09-17 03:37:11 +00:00
context.navigator.navigate_to_url(url, window, vars_method);
2019-09-01 22:40:32 +00:00
}
Value::Undefined
}
pub fn random<'gc>(
_avm: &mut Avm1<'gc>,
action_context: &mut ActionContext<'_, 'gc, '_>,
_this: GcCell<'gc, Object<'gc>>,
args: &[Value<'gc>],
) -> Value<'gc> {
match args.get(0) {
2019-09-17 03:37:11 +00:00
Some(Value::Number(max)) => {
Value::Number(action_context.rng.gen_range(0.0f64, max).floor())
}
_ => Value::Undefined, //TODO: Shouldn't this be an error condition?
}
}
pub fn create_globals<'gc>(gc_context: MutationContext<'gc, '_>) -> Object<'gc> {
let mut globals = Object::object(gc_context);
globals.set_object("Math", math::create(gc_context));
2019-09-01 22:40:32 +00:00
globals.set_function("getURL", getURL, gc_context);
globals.set_function("random", random, gc_context);
globals
2019-09-17 03:37:11 +00:00
}