/* ************************************************************************
#
# DivConq
#
# http://divconq.com/
#
# Copyright:
# Copyright 2014 eTimeline, LLC. All rights reserved.
#
# License:
# See the license.txt file in the project's top-level directory for details.
#
# Authors:
# * Andy White
#
************************************************************************ */
package divconq.script.inst;
import divconq.script.ExecuteState;
import divconq.script.Instruction;
import divconq.script.LogicBlockInstruction;
import divconq.script.StackEntry;
import divconq.struct.ScalarStruct;
import divconq.struct.Struct;
public class ContinueIf extends Instruction {
@Override
public void run(final StackEntry stack) {
Struct target = this.source.hasAttribute("Target")
? stack.refFromElement(this.source, "Target")
: stack.queryVariable("_LastResult");
if (LogicBlockInstruction.checkLogic(stack, (ScalarStruct)target, this.source))
stack.setState(ExecuteState.Continue);
else
stack.setState(ExecuteState.Done);
stack.resume();
}
@Override
public void cancel(StackEntry stack) {
// do nothing, this isn't cancellable
}
}