chiark / gitweb /
new slash from anon
[irc.git] / Servus-chiark.py
1 # This file is part of Acrobat.
2 #
3 # Acrobat is free software; you can redistribute it and/or modify
4 # it under the terms of the GNU General Public License as published
5 # by the Free Software Foundation; either version 2 of the License,
6 # or (at your option) any later version.
7 #
8 # Acrobat is distributed in the hope that it will be useful,
9 # but WITHOUT ANY WARRANTY; without even the implied warranty of
10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11 # GNU General Public License for more details.
12 #
13 # You should have received a copy of the GNU General Public License
14 # along with Acrobat; if not, write to the Free Software
15 # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307
16 # USA.
17
18 # Andrew Walkingshaw <andrew@lexical.org.uk>
19 # Peter Corbett <ptc24@cam.ac.uk>
20 # Matthew Vernon <matthew@debian.org>
21 # Stephen Early <steve@greenend.org.uk>
22 # Richard Kettlewell <rjk@greenend.org.uk
23
24 # Acrobat configuration file
25
26 # The following definitions are required to be present in this module:
27 server = "rapun"
28 port = 6667
29 nickname = "Servus"
30 channel = "#chiark"
31 owner = "Emperor"
32 # Also a function called "command"; see later.
33
34 # Everything else in this file is configuration-specific.
35
36 import os, time
37
38 # Most command implementations are stored in a separate module.
39 import commands as c
40
41 # This fishpond is shared between trouts and flirts.  It doesn't have to be;
42 # you can define as many ponds as you like.
43 class fish:
44         cur_fish=5
45         max_fish=5
46         nofish_time=60
47         fish_time_inc=60
48         fish_inc=2
49         DoS=0
50         Boring_Git='Nobody'
51         quotatime=0
52
53 # load a file full of flirts or trouts
54 def __load(filename):
55     try:
56         f = open(filename, "r")
57         r = [l.strip() for l in f.readlines() if l.find("%s") != -1]
58         f.close()
59     except IOError:
60         r = [ "doesn't know what to do about %s." ]
61     return r
62
63 # (troutlist,selftroutmsg,DoSmsg,notargetmsg,nofishmsg,fishpond,selftroutprob)
64 troutcfg = (
65         __load("trouts"),
66         ' (at the instigation of %s)',
67         "Sorry, but %s is being a spoilsport.",
68         "Who do you wish me to trout?",
69         "Fish stocks exhausted.",
70         fish,
71         0.1)
72
73 flirtcfg = (
74         __load("flirts"),
75         ' (but %s is their secret admirer)',
76         "Sorry, but %s made me take Holy Orders.",
77         "Who do you wish me to flirt with?",
78         "My libido is over-used!",
79         fish,
80         0.1)
81
82 slashcfg= ( 
83         __load("slashes"),
84         ' (while %s watches)',
85         "Sorry, but %s stole my pen.",
86         "Who do you want to slash?",
87         "I have writer's block!",
88         fish,
89         0.1)
90
91 # Hacky command to output the current fishpond state
92 def fishq(bot, cmd, nick, conn, public,f):
93         from irclib import irc_lower
94         if not public and irc_lower(nick) == irc_lower(bot.owner):
95                 state=("Fishpond state: cur_fish=%d, max_fish=%d, nofish_time=%d, "
96                        +"fish_time_inc=%d, fish_inc=%d, DoS=%d, Boring_Git=%s, "
97                        +"quotatime=%d")%(f.cur_fish,f.max_fish,f.nofish_time,
98                                          f.fish_time_inc,f.fish_inc,f.DoS,f.Boring_Git,
99                                          f.quotatime)
100                 bot.automsg(public,nick,state)
101                     
102 # Karma implementation
103 import cPickle
104 karmafilename = "chiark-karma"
105 # load the karma db
106 try:
107     f = open(karmafilename, "r")
108     karmadb = cPickle.load(f)
109     f.close()
110 except IOError:
111     karmadb = {}
112 # Modify karma
113 def karma(cmd, amount):
114     thing=cmd.split()[0][:-2].lower()
115     if karmadb.has_key(thing):
116         karmadb[thing] += amount
117     else:
118         karmadb[thing] = amount
119     savekarma()
120 def savekarma():
121     tmp = "%s.tmp" % karmafilename
122     try:
123         f = open(tmp, "w")
124         cPickle.dump(karmadb, f)
125         f.close()
126         os.rename(tmp, karmafilename)
127     except IOError, e:
128         sys.stderr.write("error writing karma: %s" % e)
129
130 def quit(bot,cmd,nick,conn,public):
131     c.quitq(bot,cmd,nick,conn,public)
132 def reload(bot,cmd,nick,conn,public):
133     c.reloadq(bot,cmd,nick,conn,public)
134
135 #The game...
136 class game:
137         trigger="Servus"
138         grace=time.time()
139         minlose=24*60*60 #1 day
140         maxlose=14*minlose #2 weeks
141         losetime=time.time()+300000
142
143 # Command processing: whenever something is said that the bot can hear,
144 # "command" is invoked and must decide what to do.  This configuration
145 # defines a couple of special cases (for karma) but is otherwise driven
146 # by a dictionary of commands.
147
148 commands = {"karma": (c.karmaq,karmadb),
149             "karmalist": (c.listkeysq,karmadb),
150             "karmadel": (c.karmadelq,karmadb),
151             "info": (c.infoq,karmadb),
152             "trout": (c.troutq,troutcfg),
153             "slash": (c.slashq, slashcfg),
154             "rot13": c.rot13q,
155             "fish": (fishq,fish),
156             "flirt": (c.troutq,flirtcfg),
157             "quiet": (c.nofishq,fish),
158             "reload": reload,
159             "quit": quit,
160             "die": quit,
161             "google": c.googleq,
162             "units": c.unitq,
163             "help": c.helpq,
164             "define": c.defineq,
165 #           "game": (c.gameq,game),
166             "say": c.sayq,
167             "do": c.doq }
168 # disconnect and hop annoy people
169 #            "disconnect": c.disconnq,
170 #            "hop": c.disconnq }
171 commands["list"]=(c.listkeysq,commands,True)
172
173 triggers = ("!", "~") # what character should the bot be invoked by:
174                       # eg !trout, ~trout etc.
175
176 def command(bot, cmd, nick, conn, public):
177     ours=0
178     try:
179             if public and cmd[0] in triggers:
180                     ours=1
181                     cmd=cmd[1:]
182             if not public:
183                     ours=1
184             command = cmd.split()[0]
185     except IndexError:
186             command=""
187     # karma: up
188     if command.endswith("++"):
189         karma(cmd,1)
190     # karma: down
191     if command.endswith("--"):
192         karma(cmd,-1)
193
194     if ours and command.lower() in commands.keys():
195         e=commands[command.lower()]
196         if callable(e):
197             e(bot,cmd,nick,conn,public)
198         else:
199             e[0](bot,cmd,nick,conn,public,*e[1:])
200 #    elif public:
201 #        if cmd.find("GAME")!=-1: #someone else lost
202 #           grace.grace=time.time()+60*20
203 #       elif cmd.find(game.trigger)!=-1 and len(game.trigger)>2: #we lost!
204 #           c.gameq(bot,"pad "+game.trigger,bot.owner,conn,False,game)
205 #       elif time.time()>game.losetime: #we randomly lost, take new trigger
206 #           c.gameq(bot,cmd,bot.owner,conn,False,game)
207 #