|
@@ -39,6 +39,7 @@ where
|
|
|
def_if_else(),
|
|
|
def_noop(),
|
|
|
def_return(),
|
|
|
+ def_sleep(),
|
|
|
def_stall(),
|
|
|
def_while()
|
|
|
),
|
|
@@ -210,6 +211,27 @@ where
|
|
|
.discard_result()
|
|
|
}
|
|
|
|
|
|
+fn def_sleep<'a, 'c>() -> impl Parser<'a, 'c, ()>
|
|
|
+where
|
|
|
+ 'c: 'a,
|
|
|
+{
|
|
|
+ /*
|
|
|
+ * DefSleep := ExtOpPrefix 0x22 MSecTime
|
|
|
+ * MSecTime := TermArg => Integer
|
|
|
+ */
|
|
|
+ ext_opcode(opcode::EXT_DEF_SLEEP_OP)
|
|
|
+ .then(comment_scope(
|
|
|
+ DebugVerbosity::Scopes,
|
|
|
+ "DefSleep",
|
|
|
+ term_arg().map_with_context(|milliseconds, context| {
|
|
|
+ let milliseconds = try_with_context!(context, milliseconds.as_integer(&context));
|
|
|
+ context.handler.sleep(milliseconds);
|
|
|
+ (Ok(()), context)
|
|
|
+ }),
|
|
|
+ ))
|
|
|
+ .discard_result()
|
|
|
+}
|
|
|
+
|
|
|
fn def_stall<'a, 'c>() -> impl Parser<'a, 'c, ()>
|
|
|
where
|
|
|
'c: 'a,
|