2011-08-22 20:43:16 +02:00
|
|
|
require('./snippets');
|
2011-08-16 18:41:29 +02:00
|
|
|
var fs = require('fs');
|
2011-08-18 19:03:00 +02:00
|
|
|
var jsbot = require('./jsbot');
|
2011-08-23 01:04:40 +02:00
|
|
|
|
|
|
|
var modules = ['user', 'admin', 'puns', 'kick', 'reality', 'karma'];
|
2011-08-16 18:41:29 +02:00
|
|
|
|
2011-08-24 02:57:52 +02:00
|
|
|
var DBot = function(dModules, quotes) {
|
|
|
|
this.admin = 'reality';
|
|
|
|
this.waitingForKarma = false;
|
|
|
|
this.name = 'depressionbot';
|
|
|
|
this.db = JSON.parse(fs.readFileSync('db.json', 'utf-8'));
|
|
|
|
this.quotes = require(quotes).fetch(this);
|
|
|
|
|
|
|
|
this.instance = jsbot.createJSBot(this.name, 'elara.ivixor.net', 6667, this, function() {
|
|
|
|
this.instance.join('#realitest');
|
2011-08-24 19:23:00 +02:00
|
|
|
this.instance.join('#42');
|
2011-08-25 14:32:54 +02:00
|
|
|
this.instance.join('#fail');
|
2011-08-24 19:23:00 +02:00
|
|
|
this.instance.join('#itonlygetsworse');
|
2011-08-24 02:57:52 +02:00
|
|
|
}.bind(this));
|
|
|
|
|
|
|
|
this.moduleNames = dModules;
|
|
|
|
this.reloadModules();
|
|
|
|
this.instance.connect();
|
|
|
|
};
|
|
|
|
|
|
|
|
DBot.prototype.say = function(channel, data) {
|
|
|
|
this.instance.say(channel, data);
|
|
|
|
};
|
|
|
|
|
|
|
|
DBot.prototype.save = function() {
|
|
|
|
fs.writeFile('db.json', JSON.stringify(this.db, null, ' '));
|
|
|
|
};
|
|
|
|
|
|
|
|
DBot.prototype.reloadModules = function() {
|
|
|
|
this.rawModules = [];
|
|
|
|
this.modules = [];
|
|
|
|
|
|
|
|
this.moduleNames.each(function(name) {
|
2011-08-24 17:15:42 +02:00
|
|
|
var cacheKey = require.resolve('./modules/' + name);
|
|
|
|
require.cache[cacheKey] = undefined; // TODO: snippet to remove element properly
|
2011-08-24 19:23:00 +02:00
|
|
|
try {
|
|
|
|
this.rawModules.push(require('./modules/' + name));
|
|
|
|
} catch(err) {
|
|
|
|
console.log('Failed to load module: ' + name);
|
|
|
|
}
|
2011-08-24 02:57:52 +02:00
|
|
|
}.bind(this));
|
|
|
|
|
|
|
|
this.instance.removeListeners();
|
|
|
|
|
|
|
|
this.modules = this.rawModules.collect(function(rawModule) {
|
|
|
|
var module = rawModule.fetch(this);
|
|
|
|
this.instance.addListener(module.on, module.listener);
|
|
|
|
return module;
|
|
|
|
}.bind(this));
|
|
|
|
};
|
|
|
|
|
|
|
|
new DBot(modules, './modules/quotes');
|