public override void Assemble(Assembler assembler) { if (Duration is ValReg) { assembler.Add(AsmStoreOp.Create((Duration as ValReg).Index)); assembler.Add(AsmWait.Create(0)); } else if (Duration is ValInstant) { assembler.Add(AsmWait.Create((Duration as ValInstant).Val)); } else { throw new AssembleException(ErrorMessage.NotSupported); } }
public override void Assemble(Assembler assembler) { int keycode = Key.KeyCode; int dindex = Assembler.GetDirectionIndex(Key); if (Duration is ValRegEx) { if (Duration is ValReg32) { throw new AssembleException(ErrorMessage.NotSupported); } var reg = Duration as ValRegEx; assembler.Add(AsmStoreOp.Create(reg.Index)); assembler.Add(AsmStick_Standard.Create(keycode, dindex, 0)); ReleasePrevious(assembler); } else if (Duration is ValInstant) { int duration = (Duration as ValInstant).Val; var ins = AsmStick_Standard.Create(keycode, dindex, duration); if (ins.Success) { assembler.Add(ins); ReleasePrevious(assembler); } else if (ins == Instruction.Failed.OutOfRange) { assembler.Add(AsmStick_Hold.Create(keycode, dindex)); ReleasePrevious(assembler); assembler.StickMapping[keycode] = assembler.Last() as AsmStick_Hold; assembler.Add(AsmWait.Create(duration)); assembler.Add(AsmEmpty.Create()); ReleasePrevious(assembler); } } else { throw new AssembleException(ErrorMessage.NotImplemented); } }