2015-08-24 01:45:33 +02:00
|
|
|
require "base/constant_view"
|
|
|
|
require "base/list_view"
|
2015-08-21 00:37:41 +02:00
|
|
|
|
2015-08-24 01:45:33 +02:00
|
|
|
class InstructionView < ListView
|
2015-08-21 00:37:41 +02:00
|
|
|
|
2015-08-24 01:45:33 +02:00
|
|
|
def initialize interpreter
|
|
|
|
@interpreter = interpreter
|
2015-10-21 13:05:18 +02:00
|
|
|
super([start_view])
|
2015-08-24 01:45:33 +02:00
|
|
|
@interpreter.register_event(:instruction_changed, self)
|
2015-10-21 13:05:18 +02:00
|
|
|
@interpreter.register_event(:state_changed, self)
|
|
|
|
end
|
|
|
|
|
|
|
|
def start_view
|
|
|
|
ConstantView.new( "span.bright" , "starting" )
|
2015-08-21 00:37:41 +02:00
|
|
|
end
|
|
|
|
|
2015-08-24 01:45:33 +02:00
|
|
|
def instruction_changed
|
|
|
|
@element.at_css(".bright").remove_class("bright")
|
2015-08-24 02:04:07 +02:00
|
|
|
instruction = append_view( ConstantView.new( "span.bright" , instruction_text ) )
|
2015-08-24 01:45:33 +02:00
|
|
|
wrap_node_with instruction , div
|
2015-08-24 02:04:07 +02:00
|
|
|
remove_first if( @elements.length > 6)
|
2015-08-21 00:37:41 +02:00
|
|
|
end
|
2015-08-24 01:45:33 +02:00
|
|
|
|
|
|
|
def draw
|
|
|
|
super()
|
|
|
|
wrap_node_with @elements.first , div
|
2015-10-27 11:44:02 +01:00
|
|
|
wrap_element div(".source_view") << div("h4" ,"Register Machine Instruction")
|
2015-08-24 01:45:33 +02:00
|
|
|
@element
|
2015-08-21 00:37:41 +02:00
|
|
|
end
|
|
|
|
|
2015-10-21 13:05:18 +02:00
|
|
|
def state_changed old , new_s
|
|
|
|
return unless new_s == :running
|
|
|
|
clear_view
|
|
|
|
append_view start_view
|
|
|
|
end
|
|
|
|
|
2015-08-24 01:45:33 +02:00
|
|
|
def instruction_text
|
|
|
|
return "" unless @interpreter.instruction
|
|
|
|
@interpreter.instruction.to_s
|
2015-08-21 00:37:41 +02:00
|
|
|
end
|
|
|
|
end
|