mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-15 08:16:11 -04:00
38 lines
1.0 KiB
Python
38 lines
1.0 KiB
Python
|
|
from MessengerGlobal import *
|
|
from direct.directnotify.DirectNotifyGlobal import *
|
|
from PythonUtil import *
|
|
|
|
class DirectObject:
|
|
"""
|
|
This is the class that all Direct/SAL classes should inherit from
|
|
"""
|
|
def __init__(self):
|
|
pass
|
|
|
|
# This destructor is useful for debugging leaks
|
|
#def __del__(self):
|
|
# print "Destructing: ", self.__class__.__name__
|
|
|
|
|
|
# Wrapper functions to have a cleaner, more object oriented approach to
|
|
# the messenger functionality.
|
|
|
|
def accept(self, event, method, extraArgs=[]):
|
|
return messenger.accept(event, self, method, extraArgs, 1)
|
|
|
|
def acceptOnce(self, event, method, extraArgs=[]):
|
|
return messenger.accept(event, self, method, extraArgs, 0)
|
|
|
|
def ignore(self, event):
|
|
return messenger.ignore(event, self)
|
|
|
|
def ignoreAll(self):
|
|
return messenger.ignoreAll(self)
|
|
|
|
def isAccepting(self, event):
|
|
return messenger.isAccepting(event, self)
|
|
|
|
def isIgnoring(self, event):
|
|
return messenger.isIgnoring(event, self)
|