2011-10-20 17:43:36 -04:00
|
|
|
#!/usr/bin/python3
|
2011-09-08 16:10:22 -04:00
|
|
|
"""
|
|
|
|
chillmeter.py - .chill measures chill level of the channel
|
|
|
|
author: Casey Link <unnamedrambler@gmail.com>
|
2011-09-08 18:22:45 -04:00
|
|
|
author: mutantmonkey <mutantmonkey@mutantmonkey.in>
|
2011-09-08 16:10:22 -04:00
|
|
|
|
|
|
|
so chill bro.
|
|
|
|
"""
|
|
|
|
import random, time
|
|
|
|
|
|
|
|
|
|
|
|
# chill decay rate per minute
|
|
|
|
chill_decay_rate = 5
|
|
|
|
|
|
|
|
chill_words = [
|
2011-09-08 18:22:45 -04:00
|
|
|
# words that make the place chill
|
|
|
|
("chill", 1),
|
|
|
|
("bro", 1),
|
|
|
|
("fist bump", 2),
|
|
|
|
("fistbump", 2),
|
|
|
|
("natty", 1),
|
|
|
|
("natties", 2),
|
|
|
|
("head nod", 1),
|
|
|
|
("she said", 1),
|
|
|
|
("keystone", 1),
|
|
|
|
("sandwich", 1),
|
|
|
|
("lax", 2),
|
|
|
|
("lacrosse", 2),
|
|
|
|
("pinny", 2),
|
|
|
|
("bowl", 1),
|
|
|
|
("slampiece", 2),
|
|
|
|
("smirnoff", 1),
|
|
|
|
("ices", 1),
|
|
|
|
("iced", 1),
|
2011-10-20 17:43:36 -04:00
|
|
|
("longboard", 2),
|
|
|
|
("boning", 1),
|
|
|
|
("orange", 1),
|
|
|
|
("maroon", 1),
|
|
|
|
("kicks", 1),
|
|
|
|
("dome", 1),
|
|
|
|
("69", 1),
|
|
|
|
("bang", 1),
|
|
|
|
("COD", 2),
|
2011-10-20 17:45:57 -04:00
|
|
|
("blazed", 1),
|
2011-09-08 18:22:45 -04:00
|
|
|
|
|
|
|
# words that unchill the place
|
|
|
|
("dude", -1),
|
|
|
|
("suck", -2),
|
|
|
|
("desi", -1),
|
|
|
|
("lame", -2),
|
|
|
|
("imageshack", -1),
|
|
|
|
("microsoft", -1),
|
|
|
|
("btreecat", -1),
|
|
|
|
("homework", -1),
|
|
|
|
("project", -2),
|
|
|
|
("test", -2),
|
|
|
|
("exam", -2),
|
|
|
|
("4chan", -1),
|
|
|
|
("digg", -1),
|
2011-10-20 17:43:36 -04:00
|
|
|
("work", -1),
|
|
|
|
("unchill", -2),
|
2011-09-08 16:38:04 -04:00
|
|
|
]
|
|
|
|
|
2011-09-08 16:10:22 -04:00
|
|
|
# all things chill
|
|
|
|
chill_things = [
|
|
|
|
("natty", "natties"),
|
|
|
|
("smirnoff ice", "smirnoffs"),
|
|
|
|
("bong hit", "bong hits"),
|
|
|
|
("case of keystone", "cases of keystone"),
|
|
|
|
("fist bump", "fist bumps"),
|
|
|
|
("head nod", "head nods"),
|
2011-09-08 16:50:13 -04:00
|
|
|
("bro", "bros"),
|
|
|
|
("bowl", "bowls")
|
2011-09-08 16:10:22 -04:00
|
|
|
]
|
|
|
|
|
|
|
|
# keeps a finger on the pulse of the chillness
|
|
|
|
def measure(phenny, input):
|
2011-09-08 16:28:58 -04:00
|
|
|
chill = measure.channels.get(input.sender, 0)
|
2011-09-08 16:10:22 -04:00
|
|
|
now = time.time()
|
|
|
|
if now - measure.last_tick > 60:
|
|
|
|
measure.last_tick = now
|
2011-09-08 18:31:08 -04:00
|
|
|
if chill > 0:
|
|
|
|
chill -= chill_decay_rate
|
|
|
|
chill = max(0, chill)
|
|
|
|
elif chill < 0:
|
|
|
|
chill += chill_decay_rate
|
|
|
|
chill = min(0, chill)
|
2011-09-08 16:28:58 -04:00
|
|
|
measure.channels[input.sender] = chill
|
2011-09-08 16:10:22 -04:00
|
|
|
|
|
|
|
if ".chill" in input:
|
|
|
|
return # dont self count
|
|
|
|
|
|
|
|
for w in chill_words:
|
2011-09-08 18:22:45 -04:00
|
|
|
if w[0] in input.lower():
|
|
|
|
chill += w[1]
|
2011-09-08 16:38:04 -04:00
|
|
|
|
2011-09-08 16:28:58 -04:00
|
|
|
measure.channels[input.sender] = chill
|
|
|
|
|
2011-09-08 16:10:22 -04:00
|
|
|
|
|
|
|
measure.rule = r'.*'
|
|
|
|
measure.priority = 'low'
|
|
|
|
measure.last_tick = time.time()
|
2011-09-08 16:28:58 -04:00
|
|
|
measure.channels = {}
|
2011-09-08 16:10:22 -04:00
|
|
|
|
|
|
|
def chill(phenny, input):
|
2011-09-08 18:22:45 -04:00
|
|
|
""".chill - Measure the current channel chillness level."""
|
2011-09-08 16:28:58 -04:00
|
|
|
level = measure.channels.get(input.sender, 0)
|
2011-09-08 16:10:22 -04:00
|
|
|
|
|
|
|
n = random.randint(1,2)
|
|
|
|
items = []
|
2011-09-08 16:50:13 -04:00
|
|
|
used = set()
|
2011-09-08 16:10:22 -04:00
|
|
|
for i in range(n):
|
|
|
|
if level == 0:
|
|
|
|
amount = random.randint(5, 10)
|
2011-09-08 18:22:45 -04:00
|
|
|
elif level < 0:
|
|
|
|
amount = random.randint(10, -level * 2 + 10)
|
2011-09-08 16:10:22 -04:00
|
|
|
else:
|
|
|
|
amount = random.randint(1, level)
|
|
|
|
item = random.choice(chill_things)
|
2011-09-08 16:50:13 -04:00
|
|
|
|
|
|
|
while item in used:
|
|
|
|
item = random.choice(chill_things)
|
|
|
|
used.add(item)
|
|
|
|
|
2011-09-08 16:10:22 -04:00
|
|
|
if amount == 1:
|
|
|
|
item = item[0] # singular
|
|
|
|
else:
|
|
|
|
item = item[1] # plural
|
|
|
|
items.append("%s %s" % (amount, item))
|
|
|
|
|
|
|
|
item_str = ", ".join(items)
|
2011-09-08 18:22:45 -04:00
|
|
|
#print level, item_str
|
2011-09-08 16:10:22 -04:00
|
|
|
|
2011-09-08 18:22:45 -04:00
|
|
|
if level <= 0:
|
2011-09-08 16:10:22 -04:00
|
|
|
message = "WARNING: CHILL LEVEL IS DANGEROUSLY LOW. RECOMMEND %s" % (item_str.upper())
|
|
|
|
else:
|
|
|
|
message = "chill level is currently: %s" % (item_str)
|
|
|
|
|
|
|
|
phenny.say(message)
|
|
|
|
|
|
|
|
|
|
|
|
chill.commands = ['chill']
|
|
|
|
chill.priority = 'low'
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2012-01-03 14:09:34 -05:00
|
|
|
print(__doc__.strip())
|