Skip to content

Commit 3391d92

Browse files
committed
Added enhancement suggested in issue #218
1 parent 84a5ea5 commit 3391d92

File tree

1 file changed

+21
-23
lines changed
  • addons/source-python/packages/source-python/listeners

1 file changed

+21
-23
lines changed

addons/source-python/packages/source-python/listeners/tick.py

+21-23
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,17 @@
77
# =============================================================================
88
# Python
99
import bisect
10+
import math
11+
import time
12+
1013
from contextlib import suppress
1114
from enum import IntEnum
12-
import math
1315
from threading import Thread
14-
import time
16+
from warnings import warn
1517

1618
# Source.Python
17-
from core import AutoUnload, WeakAutoUnload
19+
from core import AutoUnload
20+
from core import WeakAutoUnload
1821
from hooks.exceptions import except_hooks
1922
from listeners import (
2023
listeners_logger, on_tick_listener_manager, OnLevelEnd,
@@ -42,26 +45,21 @@
4245
# =============================================================================
4346
# >> THREAD WORKAROUND
4447
# =============================================================================
45-
class GameThread(Thread):
46-
"""Workaround for :class:`threading.Thread`."""
47-
48-
# Since _delay_manager now always registers a tick listener, we probably
49-
# don't need this anymore.
50-
#def __init__(self, *args, **kwargs):
51-
# super().__init__(*args, **kwargs)
52-
# on_tick_listener_manager.register_listener(self._tick)
53-
#
54-
#def __del__(self):
55-
# on_tick_listener_manager.unregister_listener(self._tick)
56-
#
57-
#def _bootstrap_inner(self):
58-
# try:
59-
# super()._bootstrap_inner()
60-
# finally:
61-
# on_tick_listener_manager.unregister_listener(self._tick)
62-
#
63-
#def _tick(self):
64-
# pass
48+
class GameThread(WeakAutoUnload, Thread):
49+
"""A subclass of :class:`threading.Thread` that throws a warning if the
50+
plugin that created the thread has been unloaded while the thread is still
51+
running.
52+
"""
53+
54+
def _add_instance(self, caller):
55+
super()._add_instance(caller)
56+
self._caller = caller
57+
58+
def _unload_instance(self):
59+
if self.is_alive():
60+
warn(
61+
f'Thread "{self.name}" ({self.ident}) from "{self._caller}" '
62+
f'is running even though its plugin has been unloaded!')
6563

6664

6765
# =============================================================================

0 commit comments

Comments
 (0)