h/bot.py

55 lines
1.3 KiB
Python
Raw Normal View History

2008-06-09 11:59:56 +00:00
#!/usr/bin/python
2009-03-15 03:06:36 +00:00
import sys
import os
import Queue
2008-06-09 11:59:56 +00:00
sys.path += ['plugins'] # so 'import hook' works without duplication
sys.path += ['lib']
2009-04-19 11:42:48 +00:00
os.chdir(sys.path[0]) # do stuff relative to the installation directory
2008-06-09 11:59:56 +00:00
class Bot(object):
pass
bot = Bot()
2008-06-09 11:59:56 +00:00
print 'Loading plugins'
2009-03-15 04:14:07 +00:00
# bootstrap the reloader
eval(compile(open('core/reload.py', 'U').read(), 'core/reload.py', 'exec'))
reload(init=True)
2008-06-09 11:59:56 +00:00
print 'Connecting to IRC'
bot.conns = {}
2009-11-18 00:27:55 +00:00
try:
for connection in bot.config['connections']:
for name, conf in connection.iteritems():
if name in bot.conns:
print 'ERROR: more than one connection named "%s"' % name
raise ValueError
bot.conns[name] = irc(conf['server'], conf['nick'], channels=conf['channels'])
for channel in conf['channels']:
bot.conns[name].join(channel)
except Exception, e:
print 'ERROR: malformed config file', Exception, e
sys.exit()
2009-04-03 03:50:38 +00:00
bot.persist_dir = os.path.abspath('persist')
2008-06-09 11:59:56 +00:00
print 'Running main loop'
while True:
try:
reload() # these functions only do things
config() # if changes have occured
for conn in bot.conns.itervalues():
out = conn.out.get(timeout=1)
main(conn, out)
2008-06-09 11:59:56 +00:00
except Queue.Empty:
pass