From 155a2f2f84865149701cd1fa9db201614282cbc5 Mon Sep 17 00:00:00 2001 From: Psychedelic Squid Date: Wed, 14 Mar 2012 14:35:37 +0000 Subject: [PATCH] interpolatedQuote fully transplanted into quotes.js, should reduce pesky run.js reloading to near-zero --- modules/quotes.js | 24 +++++++++++++++++++++--- run.js | 18 ------------------ 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/modules/quotes.js b/modules/quotes.js index f08b3e1..d001260 100644 --- a/modules/quotes.js +++ b/modules/quotes.js @@ -2,6 +2,24 @@ var quotes = function(dbot) { var quotes = dbot.db.quoteArrs; var addStack = []; var rmAllowed = true; + + // Retrieve a random quote from a given category, interpolating any quote references (~~QUOTE CATEGORY~~) within it + var interpolatedQuote = function(key, quoteTree) { + if( quoteTree !== undefined && quoteTree.indexOf( key ) != -1 ) { console.log('nrll'); return ''; } + else if( quoteTree === undefined ) quoteTree = []; + var quoteString = quotes[key].random(); + var quoteRefs = quoteString.match(/~~([\d\w\s-]*)~~/g); + var thisRef; + while( quoteRefs && (thisRef = quoteRefs.shift()) !== undefined ) { + var cleanRef = dbot.cleanNick(thisRef.replace(/^~~/,'').replace(/~~$/,'').trim()); + if (quotes.hasOwnProperty(cleanRef)) { + quoteTree.push( key ); + quoteString = quoteString.replace("~~"+cleanRef+"~~", interpolatedQuote(cleanRef, quoteTree.slice())); + quoteTree.pop(); + } + } + return quoteString; + }; var commands = { '~q': function(data, params) { @@ -10,7 +28,7 @@ var quotes = function(dbot) { q[1] = q[1].trim(); key = q[1].toLowerCase(); if(quotes.hasOwnProperty(key)) { - dbot.say(data.channel, q[1] + ': ' + dbot.interpolatedQuote(key)); + dbot.say(data.channel, q[1] + ': ' + interpolatedQuote(key)); } else { dbot.say(data.channel, 'Nobody loves ' + q[1]); } @@ -192,11 +210,11 @@ var quotes = function(dbot) { '~rq': function(data, params) { var rQuote = Object.keys(quotes).random(); - dbot.say(data.channel, rQuote + ': ' + dbot.interpolatedQuote(rQuote)); + dbot.say(data.channel, rQuote + ': ' + interpolatedQuote(rQuote)); }, '~d': function(data, params) { - dbot.say(data.channel, data.user + ': ' + dbot.interpolatedQuote(dbot.name)); + dbot.say(data.channel, data.user + ': ' + interpolatedQuote(dbot.name)); }, '~link': function(data, params) { diff --git a/run.js b/run.js index be13c93..bdb5e1b 100644 --- a/run.js +++ b/run.js @@ -66,24 +66,6 @@ var DBot = function(timers) { this.instance.connect(); }; -// Retrieve a random quote from a given category, interpolating any quote references (~~QUOTE CATEGORY~~) within it -DBot.prototype.interpolatedQuote = function(key, quoteTree) { - if( quoteTree !== undefined && quoteTree.indexOf( key ) != -1 ) { console.log('nrll'); return ''; } - else if( quoteTree === undefined ) quoteTree = []; - var quoteString = this.db.quoteArrs[key].random(); - var quoteRefs = quoteString.match(/~~([\d\w\s-]*)~~/g); - var thisRef; - while( quoteRefs && (thisRef = quoteRefs.shift()) !== undefined ) { - var cleanRef = this.cleanNick(thisRef.replace(/^~~/,'').replace(/~~$/,'').trim()); - if (this.db.quoteArrs.hasOwnProperty(cleanRef)) { - quoteTree.push( key ); - quoteString = quoteString.replace("~~"+cleanRef+"~~", this.interpolatedQuote(cleanRef, quoteTree.slice())); - quoteTree.pop(); - } - } - return quoteString; -}; - // Say something in a channel DBot.prototype.say = function(channel, data) { this.instance.say(channel, data);