# Copyright (c) 2009 the authors listed at the following URL, and/or
# the authors of referenced articles or incorporated external code:
# http://en.literateprograms.org/Quadruple_Turing_Machine_(Ruby)?action=history&offset=20081007052617
# 
# Permission is hereby granted, free of charge, to any person obtaining
# a copy of this software and associated documentation files (the
# "Software"), to deal in the Software without restriction, including
# without limitation the rights to use, copy, modify, merge, publish,
# distribute, sublicense, and/or sell copies of the Software, and to
# permit persons to whom the Software is furnished to do so, subject to
# the following conditions:
# 
# The above copyright notice and this permission notice shall be
# included in all copies or substantial portions of the Software.
# 
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
# IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
# CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
# TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
# SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
# 
# Retrieved from: http://en.literateprograms.org/Quadruple_Turing_Machine_(Ruby)?oldid=14850

require_relative 'state'
class TuringMachine
  attr_accessor :start_state
  attr_reader :accepting_states
  attr_reader :transitions

  def initialize
    @accepting_states = []
    @transitions = Hash.new{ [ :invalid, :L ] }
  end

  def simulate(input_string, map)
    state = State.new(@start_state, input_string)
    state.trace(map)
    until @accepting_states.include?(state.control_state)
      action, next_state =
        @transitions[[state.control_state, state.current_symbol]]
      begin
        state.update(action, next_state, map)
      rescue Exception => e
        puts e
        return
      end
      state.trace(map)
    end
  end

end


