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-07-30 05:15:31 +02:00
|
|
|
# This indicates whether we're running in tests mode. What it actually does
|
2016-06-24 07:51:40 +02:00
|
|
|
# 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 = {}
|
|
|
|
|
2016-07-07 09:25:50 +02:00
|
|
|
# Registered extarget handlers. This maps exttarget names (strings) to handling functions.
|
|
|
|
exttarget_handlers = {}
|
|
|
|
|
2016-07-30 05:15:31 +02:00
|
|
|
# Trigger to be set when all IRC objects are initially created.
|
2015-08-29 18:39:33 +02:00
|
|
|
started = threading.Event()
|
2015-09-19 20:51:56 +02:00
|
|
|
|
2016-07-30 05:15:31 +02:00
|
|
|
# Source address.
|
2015-09-19 20:51:56 +02:00
|
|
|
source = "https://github.com/GLolol/PyLink" # CHANGE THIS IF YOU'RE FORKING!!
|
2016-07-29 07:22:47 +02:00
|
|
|
|
|
|
|
# Fallback hostname used in various places internally when hostname isn't configured.
|
|
|
|
fallback_hostname = 'pylink.int'
|