Sha256: 2e7be120387caeb93fbec1a1409c265454ccee8fdef78a5dc61ac4a6b31b6961

Contents?: true

Size: 1.6 KB

Versions: 1

Compression:

Stored size: 1.6 KB

Contents

require 'optparse'

module Modown
  # This class handles command line options
  class Options

    def initialize
      @options = { input: nil, count: 1, format: '*' }

      # Dont know how to do case-insensitive glob matching
      @formats_glob = {}
      @formats_glob['3ds'] = '*.3[Dd][Ss]'
      @formats_glob['max'] = '*.[Mm][Aa][Xx]'
      @formats_glob['gsm'] = '*.[Gg][Ss][Mm]'
      @formats_glob['mtl'] = '*.[Mm][Tt][Ll]'
      @formats_glob['*'] = '*'
    end

    # Parse the command line arguments
    # @param args [command_line_arguments]
    # @return [Hash]
    def parse(args)
      parser = OptionParser.new do |opts|
        opts.banner = 'Usage: modown [options] Object'

        opts.on('-c', '--count COUNT', Integer, 'Number of different models you want') do |count|
          @options[:count] = count
        end

        opts.on('-f', '--format FORMAT',
                'The file format you want.',
                "Supported formats are [#{@formats_glob.keys.join(',')}].",
        'All files are stored if no FORMAT is provided') do |format|
          @options[:format] = @formats_glob[format]
        end

        opts.on('-h', '--help', 'Displays Help') do
          puts opts
          exit
        end
      end

      parser.parse!(args)

      raise '[ERROR] Please provide the object to search' if args.length == 0
      raise "[ERROR] Please provide a valid format for the -f flag.
      Supported formats are [#{@formats_glob.keys.join(',')}]" if @options[:format].nil?

      @options[:search_term] = args[0]

      @options
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
modown-0.1.0 lib/modown/options.rb