historical/toontown-classic.git/panda/include/nodePath_ext.I

149 lines
4.5 KiB
Text
Raw Normal View History

2024-01-16 11:20:27 -06:00
/**
* PANDA 3D SOFTWARE
* Copyright (c) Carnegie Mellon University. All rights reserved.
*
* All use of this software is subject to the terms of the revised BSD
* license. You should have received a copy of this license along
* with this source code in a file named "LICENSE."
*
* @file nodePath_ext.I
* @author rdb
* @date 2013-12-09
*/
#include "pandaNode_ext.h"
/**
* Returns a dictionary of Python tags that is associated with the current
* node. This is similar to the regular tags, except this can store any
* Python object instead of just a string. However, the Python object is not
* recorded to a bam file.
*/
INLINE PyObject *Extension<NodePath>::
get_python_tags() {
// An empty NodePath returns None
if (_this->is_empty()) {
Py_INCREF(Py_None);
return Py_None;
}
return invoke_extension(_this->node()).get_python_tags();
}
/**
* This variant on get_tag_keys returns a Python list of strings. Returns
* None if the NodePath is empty.
* @deprecated use `np.tags.keys()` instead.
*/
INLINE PyObject *Extension<NodePath>::
get_tag_keys() const {
// An empty NodePath returns None
if (_this->is_empty()) {
Py_INCREF(Py_None);
return Py_None;
}
return invoke_extension(_this->node()).get_tag_keys();
}
/**
* This variant on get_python_tag_keys returns a Python list of strings.
* Returns None if the NodePath is empty.
*/
INLINE PyObject *Extension<NodePath>::
get_python_tag_keys() const {
// An empty NodePath returns None
if (_this->is_empty()) {
Py_INCREF(Py_None);
return Py_None;
}
return invoke_extension(_this->node()).get_python_tag_keys();
}
/**
* Associates an arbitrary Python object with a user-defined key which is
* stored on the node. This object has no meaning to Panda; but it is stored
* indefinitely on the node until it is requested again.
*
* Each unique key stores a different Python object. There is no effective
* limit on the number of different keys that may be stored or on the nature
* of any one key's object.
*/
INLINE void Extension<NodePath>::
set_python_tag(PyObject *key, PyObject *value) {
nassertv_always(!_this->is_empty());
invoke_extension(_this->node()).set_python_tag(key, value);
}
/**
* Retrieves the Python object that was previously set on this node for the
* particular key, if any. If no object has been previously set, returns
* None. See also get_net_python_tag().
*/
INLINE PyObject *Extension<NodePath>::
get_python_tag(PyObject *key) const {
// An empty NodePath quietly returns no tags. This makes
// get_net_python_tag() easier to implement.
if (_this->is_empty()) {
Py_INCREF(Py_None);
return Py_None;
}
return invoke_extension(_this->node()).get_python_tag(key);
}
/**
* Returns true if a Python object has been defined on this node for the
* particular key (even if that value is the empty string), or false if no
* value has been set. See also has_net_python_tag().
*/
INLINE bool Extension<NodePath>::
has_python_tag(PyObject *key) const {
// An empty NodePath quietly has no tags. This makes has_net_python_tag()
// easier to implement.
if (_this->is_empty()) {
return false;
}
return invoke_extension(_this->node()).has_python_tag(key);
}
/**
* Removes the Python object defined for this key on this particular node.
* After a call to clear_python_tag(), has_python_tag() will return false for
* the indicated key.
*/
INLINE void Extension<NodePath>::
clear_python_tag(PyObject *key) {
nassertv_always(!_this->is_empty());
invoke_extension(_this->node()).clear_python_tag(key);
}
/**
* Returns the Python object that has been defined on this node, or the
* nearest ancestor node, for the indicated key. If no value has been defined
* for the indicated key on any ancestor node, returns None. See also
* get_python_tag().
*/
INLINE PyObject *Extension<NodePath>::
get_net_python_tag(PyObject *key) const {
NodePath tag_np = find_net_python_tag(key);
return invoke_extension(&tag_np).get_python_tag(key);
}
/**
* Returns true if the indicated Python object has been defined on this node
* or on any ancestor node, or false otherwise. See also has_python_tag().
*/
INLINE bool Extension<NodePath>::
has_net_python_tag(PyObject *key) const {
return !find_net_python_tag(key).is_empty();
}
/**
* Called by Python to implement cycle detection.
*/
INLINE int Extension<NodePath>::
__traverse__(visitproc visit, void *arg) {
if (_this->is_empty()) {
return 0;
}
return invoke_extension(_this->node()).__traverse__(visit, arg);
}