blob: da027f75c77de8281f19502cfe1d534e27578de9 (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# frozen_string_literal: true
require_relative '../instance'
require_relative '../../static/gem'
module NanoBot
module Controllers
module Interfaces
module CLI
def self.handle!
case ARGV[0]
when 'version'
puts NanoBot::GEM[:version]
exit
when 'help', '', nil
puts ''
puts "Nano Bots #{NanoBot::GEM[:version]}"
puts ''
puts ' nb - - eval "hello"'
puts ' nb - - repl'
puts ''
puts ' nb cartridge.yml - eval "hello"'
puts ' nb cartridge.yml - repl'
puts ''
puts ' nb - STATE-KEY eval "hello"'
puts ' nb - STATE-KEY repl'
puts ''
puts ' nb cartridge.yml STATE-KEY eval "hello"'
puts ' nb cartridge.yml STATE-KEY repl'
puts ''
puts ' nb - - cartridge'
puts ' nb cartridge.yml - cartridge'
puts ''
puts ' nb - STATE-KEY state'
puts ' nb cartridge.yml STATE-KEY state'
puts ''
puts ' nb version'
puts ' nb help'
puts ''
exit
end
params = { cartridge_path: ARGV[0], state: ARGV[1], command: ARGV[2] }
bot = Instance.new(
cartridge_path: params[:cartridge_path], state: params[:state], stream: $stdout
)
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 'state'
pp bot.state
when 'cartridge'
puts YAML.dump(bot.cartridge)
else
raise "TODO: [#{params[:command]}]"
end
end
end
end
end
end
|