blob: 3d3967cc775e8e9df9eedd0b87bafb5a8c419714 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# vim: expandtab ft=python ts=4 sw=4 sts=4:
import random
from . import alarm
from . import prints
class MoD:
"Message of the day handler"
def __init__(self, mcwrapper, file, period=900):
self.mcwrapper = mcwrapper
self.file = file
self.load_mods()
alarm.set("mod-time", period, self.__handler__, repeat=True)
def load_mods(self):
"Loads messages from self.file"
try:
with open(self.file, "r") as f:
self.lines = f.readlines()
except OSError as e:
prints.warning("Loading of MoD file failed: " + str(e))
self.lines = []
def __handler__(self):
if len(self.lines) > 0:
i = random.randint(0, len(self.lines) - 1)
self.mcwrapper.write_to_terminal("/say " + self.lines[i].rstrip()
+ "\n")
|