summaryrefslogtreecommitdiff
path: root/controllers/interfaces/cli.rb
blob: 473ab7b0251b2f16b11a6fbe39d9e1e17edb2fb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
# frozen_string_literal: true

require_relative '../instance'

module NanoBot
  module Controllers
    module Interfaces
      module CLI
        def self.handle!
          params = { cartridge_path: ARGV[0], state: ARGV[1], command: ARGV[2] }

          bot = Instance.new(cartridge_path: params[:cartridge_path], state: params[:state])

          case params[:command]
          when 'eval'
            params[:input] = ARGV[3..]&.join(' ')
            params[:input] = $stdin.read.chomp if params[:input].nil? || params[:input].empty?
            bot.eval(params[:input])
          when 'repl'
            bot.repl
          when 'debug'
            bot.debug
          else
            raise "TODO: [#{params[:command]}]"
          end
        end
      end
    end
  end
end