2015-07-23 12:15:44 +02:00
|
|
|
|
2015-07-23 19:09:19 +02:00
|
|
|
require "eventable"
|
|
|
|
|
2015-07-23 12:15:44 +02:00
|
|
|
class Interpreter
|
2015-07-23 19:09:19 +02:00
|
|
|
include Eventable
|
2015-07-23 12:15:44 +02:00
|
|
|
|
|
|
|
attr_accessor :instruction
|
2015-07-23 19:09:19 +02:00
|
|
|
attr_accessor :block
|
2015-07-23 12:15:44 +02:00
|
|
|
attr_accessor :registers
|
|
|
|
|
|
|
|
def initialize
|
2015-07-23 12:20:53 +02:00
|
|
|
@registers = Hash[(0...12).collect{|i| ["r#{i}" , "undefined"]}]
|
2015-07-23 12:15:44 +02:00
|
|
|
end
|
2015-07-23 19:09:19 +02:00
|
|
|
|
|
|
|
def start block
|
|
|
|
set_block block
|
|
|
|
end
|
|
|
|
def set_block block
|
|
|
|
return if @block == block
|
2015-07-24 09:01:01 +02:00
|
|
|
old = @block
|
2015-07-23 19:09:19 +02:00
|
|
|
@block = block
|
2015-07-24 09:01:01 +02:00
|
|
|
trigger(:block_changed , old , block)
|
|
|
|
set_instruction block.codes.first
|
2015-07-23 19:09:19 +02:00
|
|
|
end
|
|
|
|
def set_instruction i
|
|
|
|
return if @instruction == i
|
2015-07-24 09:01:01 +02:00
|
|
|
old = @instruction
|
2015-07-23 19:09:19 +02:00
|
|
|
@instruction = i
|
2015-07-24 09:01:01 +02:00
|
|
|
trigger(:instruction_changed, old , i)
|
2015-07-23 19:09:19 +02:00
|
|
|
end
|
|
|
|
def tick
|
|
|
|
name = @instruction.class.name.split("::").last
|
2015-07-24 09:01:01 +02:00
|
|
|
fetch = send "execute_#{name}"
|
|
|
|
return unless fetch
|
|
|
|
get_next_intruction
|
2015-07-23 19:09:19 +02:00
|
|
|
end
|
|
|
|
|
2015-07-24 09:01:01 +02:00
|
|
|
def execute_Branch
|
2015-07-24 09:15:58 +02:00
|
|
|
target = @instruction.block
|
2015-07-24 09:01:01 +02:00
|
|
|
set_block target
|
2015-07-24 09:15:58 +02:00
|
|
|
false
|
2015-07-24 09:01:01 +02:00
|
|
|
end
|
2015-07-23 12:15:44 +02:00
|
|
|
end
|