EventParameter
from panda3d.core import EventParameter
- class EventParameter
Bases:
An optional parameter associated with an event. Each event may have zero or more of these. Each parameter stores a pointer to a
TypedWritableReferenceCountobject, which of course could be pretty much anything. To store a simple value like a double or a string, the EventParameter constructors transparently use the ParamValue template class from paramValue.h.Inheritance diagram
- __init__()
- __init__(copy: EventParameter)
- __init__(ptr: TypedReferenceCount)
Defines an
EventParameterthat stores a pointer to aTypedReferenceCountobject. Note that aTypedReferenceCountis not the same kind of pointer as aTypedWritableReferenceCount, hence we require both constructors.This accepts a const pointer, even though it stores (and eventually returns) a non-const pointer. This is just the simplest way to allow both const and non-const pointers to be stored, but it does lose the constness. Be careful.
- __init__(ptr: TypedWritableReferenceCount)
Defines an
EventParameterthat stores a pointer to any kind ofTypedWritableReferenceCountobject. This is the most general constructor.This accepts a const pointer, even though it stores (and eventually returns) a non-const pointer. This is just the simplest way to allow both const and non-const pointers to be stored, but it does lose the constness. Be careful.
- __init__(value: float)
Defines an
EventParameterthat stores a floating-point value.
- __init__(value: int)
Defines an
EventParameterthat stores an integer value.
- __init__(param0: nullptr_t)
- __init__(value: str)
Defines an
EventParameterthat stores a string value.
- __init__(value: str)
Defines an
EventParameterthat stores a wstring value.
- assign(copy: EventParameter) EventParameter
- getDoubleValue() float
Retrieves the value stored in the
EventParameter. It is only valid to call this ifisDouble()has already returned true.
- getIntValue() int
Retrieves the value stored in the
EventParameter. It is only valid to call this ifisInt()has already returned true.
- getPtr() TypedWritableReferenceCount
Retrieves a pointer to the actual value stored in the parameter. The
TypeHandleof this pointer may be examined to determine the actual type of parameter it contains. This is the only way to retrieve the value when it is not one of the above predefined types.
- getStringValue() str
Retrieves the value stored in the
EventParameter. It is only valid to call this ifisString()has already returned true.
- getTypedRefCountValue() TypedReferenceCount
Retrieves the value stored in the
EventParameter. It is only valid to call this ifisTypedRefCount()has already returned true.
- getWstringValue() str
Retrieves the value stored in the
EventParameter. It is only valid to call this ifisWstring()has already returned true.
- isDouble() bool
Returns true if the
EventParameterstores a double floating-point value, false otherwise.
- isEmpty() bool
These functions are conveniences to easily determine if the
EventParameteris one of the predefined parameter types, and retrieve the corresponding value. Of course, it is possible that theEventParameteris some user-defined type, and is none of these.
- isInt() bool
Returns true if the
EventParameterstores an integer value, false otherwise.
- isString() bool
Returns true if the
EventParameterstores a string value, false otherwise.
- isTypedRefCount() bool
Returns true if the
EventParameterstores aTypedReferenceCountpointer, false otherwise. Note that aTypedReferenceCountis not exactly the same kind of pointer as aTypedWritableReferenceCount, hence the need for this separate call.
- isWstring() bool
Returns true if the
EventParameterstores a wstring value, false otherwise.
