From 2a03d0e065b499b562a6fefff27cf356a21561a2 Mon Sep 17 00:00:00 2001 From: Dafydd Crosby Date: Sat, 4 Jun 2011 09:36:47 -0600 Subject: [PATCH] Adding the halbot module --- modules/halbot.py | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100755 modules/halbot.py diff --git a/modules/halbot.py b/modules/halbot.py new file mode 100755 index 0000000..4605b5a --- /dev/null +++ b/modules/halbot.py @@ -0,0 +1,27 @@ +#!/usr/bin/env python +""" +halbot.py - A module to connect to Halpy AI module +Copyright (c) 2011 Dafydd Crosby - http://www.dafyddcrosby.com + +Licensed under the Eiffel Forum License 2. +""" +from megahal import * +megahal = MegaHAL() + +def learn(phenny,input): + """Listens in on the room, gradually learning new phrases""" + megahal.learn(input.group()) +learn.rule = r'(.*)' +learn.priority = 'low' + +def megahalbot(phenny, input): + """Responds when someone mentions the bot nickname""" + # Clean the input so Halpy does not get confused + inp = input.group().replace(phenny.nick,'') + inp = inp.replace("\'","") + inp = inp.replace("\"","") + + phenny.say(input.nick + ": " + megahal.get_reply(inp)) + megahal.sync() +megahalbot.rule = r'(.*)$nickname(.*)' +megahalbot.priority = 'low'