]> git.netwichtig.de Git - user/henk/code/ruby/rbot.git/blob - bin/rbot
Set KCODE; UTF-8 is the future
[user/henk/code/ruby/rbot.git] / bin / rbot
1 #!/usr/bin/env ruby
2
3 # Copyright (C) 2002 Tom Gilbert.
4 #
5 # Permission is hereby granted, free of charge, to any person obtaining a copy
6 # of this software and associated documentation files (the "Software"), to
7 # deal in the Software without restriction, including without limitation the
8 # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
9 # sell copies of the Software, and to permit persons to whom the Software is
10 # furnished to do so, subject to the following conditions:
11 #
12 # The above copyright notice and this permission notice shall be included in
13 # all copies of the Software and its documentation and acknowledgment shall be
14 # given in the documentation and software packages that this Software was
15 # used.
16 #
17 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18 # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19 # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
20 # THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
21 # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
22 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
24 $KCODE = 'u'
25
26 $VERBOSE=true
27
28 require 'etc'
29 require 'getoptlong'
30 require 'fileutils'
31
32 $version="0.9.10-svn"
33 $opts = Hash.new
34
35 orig_opts = ARGV.dup
36
37 opts = GetoptLong.new(
38   ["--debug", "-d", GetoptLong::NO_ARGUMENT],
39   ["--help",  "-h", GetoptLong::NO_ARGUMENT],
40   ["--trace",  "-t", GetoptLong::REQUIRED_ARGUMENT],
41   ["--version", "-v", GetoptLong::NO_ARGUMENT],
42   ["--background", "-b", GetoptLong::NO_ARGUMENT]
43 )
44
45 $debug = false
46 $daemonize = false
47
48 opts.each {|opt, arg|
49   $debug = true if(opt == "--debug")
50   $daemonize = true if(opt == "--background")
51   $opts[opt.sub(/^-+/, "")] = arg
52 }
53
54 if ($opts["trace"])
55   set_trace_func proc { |event, file, line, id, binding, classname|
56     if classname.to_s == $opts["trace"]
57       printf "TRACE: %8s %s:%-2d %10s %8s\n", event, File.basename(file), line, id, classname
58     end
59   }
60 end
61
62 defaultlib = File.expand_path(File.dirname($0) + '/../lib')
63
64 if File.directory? "#{defaultlib}/rbot"
65   unless $:.include? defaultlib
66     $:.push defaultlib
67   end
68 end
69   
70 begin
71   require 'rbot/ircbot'
72 rescue LoadError => e
73   puts "Error: couldn't find the rbot/ircbot module (or one of its dependencies)\n"
74   puts e
75   exit 2
76 end
77
78 if ($opts["version"])
79   puts "rbot #{$version}"
80   exit 0
81 end
82
83 if ($opts["help"])
84   puts "usage: rbot [options] [config directory]"
85   puts "  -h, --help         this message"
86   puts "  -v, --version      version information"
87   puts "  -d, --debug        enable debug messages"
88   puts "  -b, --background   background (daemonize) the bot"
89   puts "config directory defaults to ~/.rbot"
90   exit 0
91 end
92
93 if(bot = Irc::IrcBot.new(ARGV.shift, :argv => orig_opts))
94   # just run the bot
95   bot.mainloop
96 end
97