2015-12-07 02:40:13 +01:00
|
|
|
"""
|
2016-03-12 08:09:07 +01:00
|
|
|
world.py: Stores global variables for PyLink, including lists of active IRC objects and plugins.
|
2015-12-07 02:40:13 +01:00
|
|
|
"""
|
2015-08-29 04:27:38 +02:00
|
|
|
|
2015-08-29 18:39:33 +02:00
|
|
|
from collections import defaultdict
|
|
|
|
import threading
|
|
|
|
|
2016-06-24 07:51:40 +02:00
|
|
|
# This indicates whether we're running in tests modes. What it actually does
|
|
|
|
# though is control whether IRC connections should be threaded or not.
|
|
|
|
testing = False
|
2015-12-25 03:24:42 +01:00
|
|
|
|
2016-05-22 08:01:09 +02:00
|
|
|
# Statekeeping for our hooks list, IRC objects, loaded plugins, and initialized
|
|
|
|
# service bots.
|
2015-09-27 19:53:25 +02:00
|
|
|
hooks = defaultdict(list)
|
2015-08-29 18:39:33 +02:00
|
|
|
networkobjects = {}
|
2015-09-27 19:27:32 +02:00
|
|
|
plugins = {}
|
2016-05-14 18:55:46 +02:00
|
|
|
services = {}
|
|
|
|
|
2015-08-29 18:39:33 +02:00
|
|
|
started = threading.Event()
|
2015-09-19 20:51:56 +02:00
|
|
|
|
|
|
|
source = "https://github.com/GLolol/PyLink" # CHANGE THIS IF YOU'RE FORKING!!
|