2023-01-10 15:26:54 +01:00
|
|
|
/**************************************************************************/
|
|
|
|
/* node.h */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* This file is part of: */
|
|
|
|
/* GODOT ENGINE */
|
|
|
|
/* https://godotengine.org */
|
|
|
|
/**************************************************************************/
|
|
|
|
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
|
|
|
|
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
|
|
|
|
/* */
|
|
|
|
/* Permission is hereby granted, free of charge, to any person obtaining */
|
|
|
|
/* a copy of this software and associated documentation files (the */
|
|
|
|
/* "Software"), to deal in the Software without restriction, including */
|
|
|
|
/* without limitation the rights to use, copy, modify, merge, publish, */
|
|
|
|
/* distribute, sublicense, and/or sell copies of the Software, and to */
|
|
|
|
/* permit persons to whom the Software is furnished to do so, subject to */
|
|
|
|
/* the following conditions: */
|
|
|
|
/* */
|
|
|
|
/* The above copyright notice and this permission notice shall be */
|
|
|
|
/* included in all copies or substantial portions of the Software. */
|
|
|
|
/* */
|
|
|
|
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
|
|
|
|
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
|
|
|
|
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
|
|
|
|
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
|
|
|
|
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
|
|
|
|
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
|
|
|
|
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
|
|
|
|
/**************************************************************************/
|
2018-01-05 00:50:27 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
#ifndef NODE_H
|
|
|
|
#define NODE_H
|
|
|
|
|
2018-09-11 18:13:45 +02:00
|
|
|
#include "core/class_db.h"
|
|
|
|
#include "core/map.h"
|
|
|
|
#include "core/node_path.h"
|
|
|
|
#include "core/object.h"
|
|
|
|
#include "core/project_settings.h"
|
|
|
|
#include "core/script_language.h"
|
2017-06-27 03:58:03 +02:00
|
|
|
#include "scene/main/scene_tree.h"
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-04-10 05:18:27 +02:00
|
|
|
class Viewport;
|
2015-10-10 14:09:09 +02:00
|
|
|
class SceneState;
|
2022-04-28 11:00:23 +02:00
|
|
|
class SceneTreeTween;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
class Node : public Object {
|
2017-03-05 16:44:50 +01:00
|
|
|
GDCLASS(Node, Object);
|
2014-02-10 02:10:30 +01:00
|
|
|
OBJ_CATEGORY("Nodes");
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
public:
|
2022-06-06 17:58:21 +02:00
|
|
|
// N.B. Any enum stored as a bitfield should
|
|
|
|
// be specified as UNSIGNED to work around
|
|
|
|
// some compilers trying to store it as signed,
|
|
|
|
// and requiring 1 more bit than necessary.
|
|
|
|
enum PauseMode : unsigned int {
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
PAUSE_MODE_INHERIT,
|
|
|
|
PAUSE_MODE_STOP,
|
|
|
|
PAUSE_MODE_PROCESS
|
|
|
|
};
|
|
|
|
|
2022-06-06 17:58:21 +02:00
|
|
|
enum PhysicsInterpolationMode : unsigned int {
|
2022-05-07 14:16:38 +02:00
|
|
|
|
|
|
|
PHYSICS_INTERPOLATION_MODE_INHERIT,
|
|
|
|
PHYSICS_INTERPOLATION_MODE_OFF,
|
|
|
|
PHYSICS_INTERPOLATION_MODE_ON
|
|
|
|
};
|
|
|
|
|
2017-02-20 20:05:01 +01:00
|
|
|
enum DuplicateFlags {
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
DUPLICATE_SIGNALS = 1,
|
|
|
|
DUPLICATE_GROUPS = 2,
|
|
|
|
DUPLICATE_SCRIPTS = 4,
|
2017-11-19 14:32:10 +01:00
|
|
|
DUPLICATE_USE_INSTANCING = 8,
|
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
DUPLICATE_FROM_EDITOR = 16,
|
|
|
|
#endif
|
2017-02-20 20:05:01 +01:00
|
|
|
};
|
|
|
|
|
2021-07-29 06:26:34 +02:00
|
|
|
enum NameCasing {
|
|
|
|
NAME_CASING_PASCAL_CASE,
|
|
|
|
NAME_CASING_CAMEL_CASE,
|
|
|
|
NAME_CASING_SNAKE_CASE
|
|
|
|
};
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct Comparator {
|
2017-03-05 16:44:50 +01:00
|
|
|
bool operator()(const Node *p_a, const Node *p_b) const { return p_b->is_greater_than(p_a); }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
|
|
|
|
2018-07-02 07:30:40 +02:00
|
|
|
struct ComparatorWithPriority {
|
2018-07-25 16:48:18 +02:00
|
|
|
bool operator()(const Node *p_a, const Node *p_b) const { return p_b->data.process_priority == p_a->data.process_priority ? p_b->is_greater_than(p_a) : p_b->data.process_priority > p_a->data.process_priority; }
|
2018-07-02 07:30:40 +02:00
|
|
|
};
|
|
|
|
|
2019-04-17 22:46:21 +02:00
|
|
|
static int orphan_node_count;
|
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
private:
|
2014-02-10 02:10:30 +01:00
|
|
|
struct GroupData {
|
2016-03-09 00:00:52 +01:00
|
|
|
bool persistent;
|
2016-06-08 03:08:12 +02:00
|
|
|
SceneTree::Group *group;
|
2017-03-05 16:44:50 +01:00
|
|
|
GroupData() { persistent = false; }
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct Data {
|
|
|
|
String filename;
|
2015-10-10 14:09:09 +02:00
|
|
|
Ref<SceneState> instance_state;
|
|
|
|
Ref<SceneState> inherited_state;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Node *parent;
|
|
|
|
Node *owner;
|
2017-03-05 16:44:50 +01:00
|
|
|
Vector<Node *> children; // list of children
|
2022-04-26 13:37:20 +02:00
|
|
|
HashMap<StringName, Node *> owned_unique_nodes;
|
|
|
|
bool unique_name_in_owner = false;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int pos;
|
|
|
|
int depth;
|
|
|
|
int blocked; // safeguard that throws an error when attempting to modify the tree in a harmful way while being traversed.
|
|
|
|
StringName name;
|
2014-11-06 01:20:42 +01:00
|
|
|
SceneTree *tree;
|
2014-06-19 07:23:03 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
NodePath import_path; //path used when imported, used by scene editors to keep tracking
|
|
|
|
#endif
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-04-10 05:18:27 +02:00
|
|
|
Viewport *viewport;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Map<StringName, GroupData> grouped;
|
|
|
|
List<Node *>::Element *OW; // owned element
|
|
|
|
List<Node *> owned;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Node *pause_owner;
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2017-07-03 15:44:45 +02:00
|
|
|
int network_master;
|
2018-05-13 07:07:56 +02:00
|
|
|
Map<StringName, MultiplayerAPI::RPCMode> rpc_methods;
|
|
|
|
Map<StringName, MultiplayerAPI::RPCMode> rpc_properties;
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2021-09-15 13:30:45 +02:00
|
|
|
int process_priority;
|
|
|
|
|
2022-05-07 14:16:38 +02:00
|
|
|
// Keep bitpacked values together to get better packing
|
|
|
|
PauseMode pause_mode : 2;
|
|
|
|
PhysicsInterpolationMode physics_interpolation_mode : 2;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// variables used to properly sort the node when processing, ignored otherwise
|
2015-10-10 14:09:09 +02:00
|
|
|
//should move all the stuff below to bits
|
2021-09-15 13:30:45 +02:00
|
|
|
bool physics_process : 1;
|
|
|
|
bool idle_process : 1;
|
|
|
|
|
|
|
|
bool physics_process_internal : 1;
|
|
|
|
bool idle_process_internal : 1;
|
|
|
|
|
|
|
|
bool input : 1;
|
|
|
|
bool unhandled_input : 1;
|
|
|
|
bool unhandled_key_input : 1;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-09-15 13:30:45 +02:00
|
|
|
// Physics interpolation can be turned on and off on a per node basis.
|
|
|
|
// This only takes effect when the SceneTree (or project setting) physics interpolation
|
|
|
|
// is switched on.
|
|
|
|
bool physics_interpolated : 1;
|
2017-01-10 22:02:19 +01:00
|
|
|
|
2022-05-06 13:09:06 +02:00
|
|
|
// We can auto-reset physics interpolation when e.g. adding a node for the first time
|
|
|
|
bool physics_interpolation_reset_requested : 1;
|
|
|
|
|
2021-09-15 13:30:45 +02:00
|
|
|
// Most nodes need not be interpolated in the scene tree, physics interpolation
|
|
|
|
// is normally only needed in the VisualServer. However if we need to read the
|
|
|
|
// interpolated transform of a node in the SceneTree, it is necessary to duplicate
|
|
|
|
// the interpolation logic client side, in order to prevent stalling the VisualServer
|
|
|
|
// by reading back.
|
|
|
|
bool physics_interpolated_client_side : 1;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2021-09-15 13:30:45 +02:00
|
|
|
// For certain nodes (e.g. CPU Particles in global mode)
|
|
|
|
// It can be useful to not send the instance transform to the
|
|
|
|
// VisualServer, and specify the mesh in world space.
|
|
|
|
bool use_identity_transform : 1;
|
2015-10-17 00:11:23 +02:00
|
|
|
|
2021-09-15 13:30:45 +02:00
|
|
|
bool parent_owned : 1;
|
|
|
|
bool in_constructor : 1;
|
|
|
|
bool use_placeholder : 1;
|
|
|
|
|
|
|
|
bool display_folded : 1;
|
|
|
|
bool editable_instance : 1;
|
|
|
|
|
|
|
|
bool inside_tree : 1;
|
|
|
|
bool ready_notified : 1; //this is a small hack, so if a node is added during _ready() to the tree, it correctly gets the _ready() notification
|
|
|
|
bool ready_first : 1;
|
2015-10-10 14:09:09 +02:00
|
|
|
|
2016-08-14 23:49:50 +02:00
|
|
|
mutable NodePath *path_cache;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
} data;
|
|
|
|
|
2018-05-08 10:51:04 +02:00
|
|
|
Ref<MultiplayerAPI> multiplayer;
|
2018-03-03 18:30:11 +01:00
|
|
|
|
2019-07-10 11:54:12 +02:00
|
|
|
void _print_tree_pretty(const String &prefix, const bool last);
|
2016-03-09 00:00:52 +01:00
|
|
|
void _print_tree(const Node *p_node);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *_get_child_by_name(const StringName &p_name) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _replace_connections_target(Node *p_new_target);
|
2015-06-08 05:33:10 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _validate_child_name(Node *p_child, bool p_force_human_readable = false);
|
2019-01-10 22:52:47 +01:00
|
|
|
void _generate_serial_child_name(const Node *p_child, StringName &name) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
void _propagate_reverse_notification(int p_notification);
|
2014-02-10 02:10:30 +01:00
|
|
|
void _propagate_deferred_notification(int p_notification, bool p_reverse);
|
2014-11-06 01:20:42 +01:00
|
|
|
void _propagate_enter_tree();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _propagate_ready();
|
2014-11-06 01:20:42 +01:00
|
|
|
void _propagate_exit_tree();
|
2022-03-12 12:48:15 +01:00
|
|
|
void _propagate_after_exit_branch(bool p_exiting_tree);
|
2021-09-15 13:30:45 +02:00
|
|
|
void _propagate_physics_interpolated(bool p_interpolated);
|
2022-05-06 13:09:06 +02:00
|
|
|
void _propagate_physics_interpolation_reset_requested();
|
2014-02-10 02:10:30 +01:00
|
|
|
void _print_stray_nodes();
|
2017-03-05 16:44:50 +01:00
|
|
|
void _propagate_pause_owner(Node *p_owner);
|
2022-05-31 20:23:16 +02:00
|
|
|
void _propagate_groups_dirty();
|
2017-03-05 16:44:50 +01:00
|
|
|
Array _get_node_and_resource(const NodePath &p_path);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _duplicate_signals(const Node *p_original, Node *p_copy) const;
|
|
|
|
void _duplicate_and_reown(Node *p_new_parent, const Map<Node *, Node *> &p_reown_map) const;
|
2021-05-04 16:00:45 +02:00
|
|
|
Node *_duplicate(int p_flags, Map<const Node *, Node *> *r_duplimap = nullptr) const;
|
2016-07-07 02:43:31 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Array _get_children() const;
|
2014-06-16 15:22:26 +02:00
|
|
|
Array _get_groups() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Variant _rpc_bind(const Variant **p_args, int p_argcount, Variant::CallError &r_error);
|
|
|
|
Variant _rpc_unreliable_bind(const Variant **p_args, int p_argcount, Variant::CallError &r_error);
|
|
|
|
Variant _rpc_id_bind(const Variant **p_args, int p_argcount, Variant::CallError &r_error);
|
|
|
|
Variant _rpc_unreliable_id_bind(const Variant **p_args, int p_argcount, Variant::CallError &r_error);
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
friend class SceneTree;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
void _set_tree(SceneTree *p_tree);
|
2022-04-26 13:37:20 +02:00
|
|
|
void _release_unique_name_in_owner();
|
|
|
|
void _acquire_unique_name_in_owner();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
protected:
|
2014-02-10 02:10:30 +01:00
|
|
|
void _block() { data.blocked++; }
|
2017-03-05 16:44:50 +01:00
|
|
|
void _unblock() { data.blocked--; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2016-03-09 00:00:52 +01:00
|
|
|
void _notification(int p_notification);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
virtual void add_child_notify(Node *p_child);
|
|
|
|
virtual void remove_child_notify(Node *p_child);
|
2014-12-03 05:17:23 +01:00
|
|
|
virtual void move_child_notify(Node *p_child);
|
2022-06-23 08:19:18 +02:00
|
|
|
virtual void owner_changed_notify();
|
2022-11-09 16:53:23 +01:00
|
|
|
#ifdef DEV_ENABLED
|
|
|
|
virtual void _name_changed_notify();
|
|
|
|
#endif
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2021-09-15 13:30:45 +02:00
|
|
|
virtual void _physics_interpolated_changed();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _propagate_replace_owner(Node *p_owner, Node *p_by_owner);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
static void _bind_methods();
|
2016-10-07 20:25:29 +02:00
|
|
|
static String _get_name_num_separator();
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
friend class SceneState;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void _add_child_nocheck(Node *p_child, const StringName &p_name);
|
|
|
|
void _set_owner_nocheck(Node *p_owner);
|
|
|
|
void _set_name_nocheck(const StringName &p_name);
|
2021-09-15 13:30:45 +02:00
|
|
|
void _set_physics_interpolated_client_side(bool p_enable);
|
|
|
|
bool _is_physics_interpolated_client_side() const { return data.physics_interpolated_client_side; }
|
2022-05-06 13:09:06 +02:00
|
|
|
void _set_physics_interpolation_reset_requested(bool p_enable);
|
|
|
|
bool _is_physics_interpolation_reset_requested() const { return data.physics_interpolation_reset_requested; }
|
2021-09-15 13:30:45 +02:00
|
|
|
void _set_use_identity_transform(bool p_enable);
|
|
|
|
bool _is_using_identity_transform() const { return data.use_identity_transform; }
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
enum {
|
2019-04-04 15:34:03 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// you can make your own, but don't use the same numbers as other notifications in other nodes
|
2017-03-05 16:44:50 +01:00
|
|
|
NOTIFICATION_ENTER_TREE = 10,
|
|
|
|
NOTIFICATION_EXIT_TREE = 11,
|
|
|
|
NOTIFICATION_MOVED_IN_PARENT = 12,
|
|
|
|
NOTIFICATION_READY = 13,
|
|
|
|
NOTIFICATION_PAUSED = 14,
|
|
|
|
NOTIFICATION_UNPAUSED = 15,
|
2017-09-30 16:19:07 +02:00
|
|
|
NOTIFICATION_PHYSICS_PROCESS = 16,
|
2014-02-10 02:10:30 +01:00
|
|
|
NOTIFICATION_PROCESS = 17,
|
2017-03-05 16:44:50 +01:00
|
|
|
NOTIFICATION_PARENTED = 18,
|
|
|
|
NOTIFICATION_UNPARENTED = 19,
|
|
|
|
NOTIFICATION_INSTANCED = 20,
|
|
|
|
NOTIFICATION_DRAG_BEGIN = 21,
|
|
|
|
NOTIFICATION_DRAG_END = 22,
|
|
|
|
NOTIFICATION_PATH_CHANGED = 23,
|
2019-04-04 15:34:03 +02:00
|
|
|
//NOTIFICATION_TRANSLATION_CHANGED = 24, moved below
|
2017-01-10 22:02:19 +01:00
|
|
|
NOTIFICATION_INTERNAL_PROCESS = 25,
|
2017-09-30 16:19:07 +02:00
|
|
|
NOTIFICATION_INTERNAL_PHYSICS_PROCESS = 26,
|
2018-05-15 22:12:35 +02:00
|
|
|
NOTIFICATION_POST_ENTER_TREE = 27,
|
2021-09-15 13:30:45 +02:00
|
|
|
NOTIFICATION_RESET_PHYSICS_INTERPOLATION = 28,
|
2019-04-04 15:34:03 +02:00
|
|
|
//keep these linked to node
|
|
|
|
NOTIFICATION_WM_MOUSE_ENTER = MainLoop::NOTIFICATION_WM_MOUSE_ENTER,
|
|
|
|
NOTIFICATION_WM_MOUSE_EXIT = MainLoop::NOTIFICATION_WM_MOUSE_EXIT,
|
|
|
|
NOTIFICATION_WM_FOCUS_IN = MainLoop::NOTIFICATION_WM_FOCUS_IN,
|
|
|
|
NOTIFICATION_WM_FOCUS_OUT = MainLoop::NOTIFICATION_WM_FOCUS_OUT,
|
|
|
|
NOTIFICATION_WM_QUIT_REQUEST = MainLoop::NOTIFICATION_WM_QUIT_REQUEST,
|
|
|
|
NOTIFICATION_WM_GO_BACK_REQUEST = MainLoop::NOTIFICATION_WM_GO_BACK_REQUEST,
|
|
|
|
NOTIFICATION_WM_UNFOCUS_REQUEST = MainLoop::NOTIFICATION_WM_UNFOCUS_REQUEST,
|
|
|
|
NOTIFICATION_OS_MEMORY_WARNING = MainLoop::NOTIFICATION_OS_MEMORY_WARNING,
|
|
|
|
NOTIFICATION_TRANSLATION_CHANGED = MainLoop::NOTIFICATION_TRANSLATION_CHANGED,
|
|
|
|
NOTIFICATION_WM_ABOUT = MainLoop::NOTIFICATION_WM_ABOUT,
|
|
|
|
NOTIFICATION_CRASH = MainLoop::NOTIFICATION_CRASH,
|
2019-09-09 23:42:17 +02:00
|
|
|
NOTIFICATION_OS_IME_UPDATE = MainLoop::NOTIFICATION_OS_IME_UPDATE,
|
|
|
|
NOTIFICATION_APP_RESUMED = MainLoop::NOTIFICATION_APP_RESUMED,
|
|
|
|
NOTIFICATION_APP_PAUSED = MainLoop::NOTIFICATION_APP_PAUSED
|
2017-01-10 22:02:19 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
|
|
|
/* NODE/TREE */
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
StringName get_name() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_name(const String &p_name);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-10-12 18:02:26 +02:00
|
|
|
void add_child(Node *p_child, bool p_force_readable_name = false);
|
|
|
|
void add_child_below_node(Node *p_node, Node *p_child, bool p_force_readable_name = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
void remove_child(Node *p_child);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int get_child_count() const;
|
|
|
|
Node *get_child(int p_index) const;
|
2017-03-05 16:44:50 +01:00
|
|
|
bool has_node(const NodePath &p_path) const;
|
|
|
|
Node *get_node(const NodePath &p_path) const;
|
2019-01-29 17:15:34 +01:00
|
|
|
Node *get_node_or_null(const NodePath &p_path) const;
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *find_node(const String &p_mask, bool p_recursive = true, bool p_owned = true) const;
|
|
|
|
bool has_node_and_resource(const NodePath &p_path) const;
|
2017-05-30 22:20:15 +02:00
|
|
|
Node *get_node_and_resource(const NodePath &p_path, RES &r_res, Vector<StringName> &r_leftover_subpath, bool p_last_is_property = true) const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
Node *get_parent() const;
|
2018-09-15 18:22:06 +02:00
|
|
|
Node *find_parent(const String &p_mask) const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
_FORCE_INLINE_ SceneTree *get_tree() const {
|
2021-05-04 16:00:45 +02:00
|
|
|
ERR_FAIL_COND_V(!data.tree, nullptr);
|
2017-03-05 16:44:50 +01:00
|
|
|
return data.tree;
|
|
|
|
}
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2014-11-06 01:20:42 +01:00
|
|
|
_FORCE_INLINE_ bool is_inside_tree() const { return data.inside_tree; }
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
bool is_a_parent_of(const Node *p_node) const;
|
|
|
|
bool is_greater_than(const Node *p_node) const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
NodePath get_path() const;
|
|
|
|
NodePath get_path_to(const Node *p_node) const;
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *find_common_parent_with(const Node *p_node) const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void add_to_group(const StringName &p_identifier, bool p_persistent = false);
|
|
|
|
void remove_from_group(const StringName &p_identifier);
|
|
|
|
bool is_in_group(const StringName &p_identifier) const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
struct GroupInfo {
|
2015-10-10 14:09:09 +02:00
|
|
|
StringName name;
|
2014-02-10 02:10:30 +01:00
|
|
|
bool persistent;
|
|
|
|
};
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void get_groups(List<GroupInfo> *p_groups) const;
|
2019-08-16 22:30:31 +02:00
|
|
|
int get_persistent_group_count() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void move_child(Node *p_child, int p_pos);
|
2014-02-10 02:10:30 +01:00
|
|
|
void raise();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_owner(Node *p_owner);
|
|
|
|
Node *get_owner() const;
|
2017-03-05 16:44:50 +01:00
|
|
|
void get_owned_by(Node *p_by, List<Node *> *p_owned);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-04-26 13:37:20 +02:00
|
|
|
void set_unique_name_in_owner(bool p_enabled);
|
|
|
|
bool is_unique_name_in_owner() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void remove_and_skip();
|
|
|
|
int get_index() const;
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2022-04-28 11:00:23 +02:00
|
|
|
Ref<SceneTreeTween> create_tween();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void print_tree();
|
2018-02-28 10:12:06 +01:00
|
|
|
void print_tree_pretty();
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_filename(const String &p_filename);
|
2014-02-10 02:10:30 +01:00
|
|
|
String get_filename() const;
|
2015-10-10 14:09:09 +02:00
|
|
|
|
2019-08-15 14:50:26 +02:00
|
|
|
void set_editor_description(const String &p_editor_description);
|
|
|
|
String get_editor_description() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_editable_instance(Node *p_node, bool p_editable);
|
2018-10-29 20:36:31 +01:00
|
|
|
bool is_editable_instance(const Node *p_node) const;
|
2021-02-20 10:27:03 +01:00
|
|
|
Node *get_deepest_editable_node(Node *start_node) const;
|
2015-10-17 00:11:23 +02:00
|
|
|
|
2021-10-26 21:12:35 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
void set_property_pinned(const StringName &p_property, bool p_pinned);
|
|
|
|
bool is_property_pinned(const StringName &p_property) const;
|
|
|
|
virtual StringName get_property_store_alias(const StringName &p_property) const;
|
|
|
|
#endif
|
|
|
|
void get_storable_properties(Set<StringName> &r_storable_properties) const;
|
|
|
|
|
2021-07-11 16:40:18 +02:00
|
|
|
virtual String to_string();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
/* NOTIFICATIONS */
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void propagate_notification(int p_notification);
|
2016-03-09 00:00:52 +01:00
|
|
|
|
2017-08-19 15:17:06 +02:00
|
|
|
void propagate_call(const StringName &p_method, const Array &p_args = Array(), const bool p_parent_first = false);
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
/* PROCESSING */
|
2017-09-30 16:19:07 +02:00
|
|
|
void set_physics_process(bool p_process);
|
|
|
|
float get_physics_process_delta_time() const;
|
|
|
|
bool is_physics_processing() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2017-08-11 21:10:05 +02:00
|
|
|
void set_process(bool p_idle_process);
|
2014-02-10 02:10:30 +01:00
|
|
|
float get_process_delta_time() const;
|
|
|
|
bool is_processing() const;
|
|
|
|
|
2017-09-30 16:19:07 +02:00
|
|
|
void set_physics_process_internal(bool p_process_internal);
|
|
|
|
bool is_physics_processing_internal() const;
|
2017-01-10 22:02:19 +01:00
|
|
|
|
2017-08-11 21:10:05 +02:00
|
|
|
void set_process_internal(bool p_idle_process_internal);
|
2017-01-10 22:02:19 +01:00
|
|
|
bool is_processing_internal() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2018-07-02 07:30:40 +02:00
|
|
|
void set_process_priority(int p_priority);
|
2019-11-16 22:07:02 +01:00
|
|
|
int get_process_priority() const;
|
2018-07-02 07:30:40 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void set_process_input(bool p_enable);
|
|
|
|
bool is_processing_input() const;
|
|
|
|
|
|
|
|
void set_process_unhandled_input(bool p_enable);
|
|
|
|
bool is_processing_unhandled_input() const;
|
|
|
|
|
2014-04-10 05:18:27 +02:00
|
|
|
void set_process_unhandled_key_input(bool p_enable);
|
|
|
|
bool is_processing_unhandled_key_input() const;
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
int get_position_in_parent() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
Node *duplicate(int p_flags = DUPLICATE_GROUPS | DUPLICATE_SIGNALS | DUPLICATE_SCRIPTS) const;
|
|
|
|
Node *duplicate_and_reown(const Map<Node *, Node *> &p_reown_map) const;
|
2017-11-19 14:32:10 +01:00
|
|
|
#ifdef TOOLS_ENABLED
|
|
|
|
Node *duplicate_from_editor(Map<const Node *, Node *> &r_duplimap) const;
|
2021-02-13 02:23:43 +01:00
|
|
|
Node *duplicate_from_editor(Map<const Node *, Node *> &r_duplimap, const Map<RES, RES> &p_resource_remap) const;
|
|
|
|
void remap_node_resources(Node *p_node, const Map<RES, RES> &p_resource_remap) const;
|
|
|
|
void remap_nested_resources(RES p_resource, const Map<RES, RES> &p_resource_remap) const;
|
2017-11-19 14:32:10 +01:00
|
|
|
#endif
|
2015-08-02 17:29:37 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
// used by editors, to save what has changed only
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_scene_instance_state(const Ref<SceneState> &p_state);
|
2015-10-10 14:09:09 +02:00
|
|
|
Ref<SceneState> get_scene_instance_state() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_scene_inherited_state(const Ref<SceneState> &p_state);
|
2015-10-10 14:09:09 +02:00
|
|
|
Ref<SceneState> get_scene_inherited_state() const;
|
|
|
|
|
2015-10-17 00:11:23 +02:00
|
|
|
void set_scene_instance_load_placeholder(bool p_enable);
|
|
|
|
bool get_scene_instance_load_placeholder() const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
static Vector<Variant> make_binds(VARIANT_ARG_LIST);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void replace_by(Node *p_node, bool p_keep_data = false);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
void set_pause_mode(PauseMode p_mode);
|
|
|
|
PauseMode get_pause_mode() const;
|
|
|
|
bool can_process() const;
|
2018-07-30 02:20:41 +02:00
|
|
|
bool can_process_notification(int p_what) const;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-05-07 14:16:38 +02:00
|
|
|
void set_physics_interpolation_mode(PhysicsInterpolationMode p_mode);
|
|
|
|
PhysicsInterpolationMode get_physics_interpolation_mode() const { return data.physics_interpolation_mode; }
|
2021-09-15 13:30:45 +02:00
|
|
|
_FORCE_INLINE_ bool is_physics_interpolated() const { return data.physics_interpolated; }
|
|
|
|
_FORCE_INLINE_ bool is_physics_interpolated_and_enabled() const { return is_inside_tree() && get_tree()->is_physics_interpolation_enabled() && is_physics_interpolated(); }
|
|
|
|
void reset_physics_interpolation();
|
|
|
|
|
2017-01-10 22:02:19 +01:00
|
|
|
void request_ready();
|
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
static void print_stray_nodes();
|
|
|
|
|
2016-10-07 20:25:29 +02:00
|
|
|
#ifdef TOOLS_ENABLED
|
2017-03-05 16:44:50 +01:00
|
|
|
String validate_child_name(Node *p_child);
|
2016-10-07 20:25:29 +02:00
|
|
|
#endif
|
2015-08-02 17:29:37 +02:00
|
|
|
|
2014-02-10 02:10:30 +01:00
|
|
|
void queue_delete();
|
|
|
|
|
2018-02-17 14:00:39 +01:00
|
|
|
//hacks for speed
|
2014-02-23 00:28:19 +01:00
|
|
|
static void set_human_readable_collision_renaming(bool p_enabled);
|
|
|
|
static void init_node_hrcr();
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void force_parent_owned() { data.parent_owned = true; } //hack to avoid duplicate nodes
|
2014-04-05 17:39:30 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void set_import_path(const NodePath &p_import_path); //path used when imported, used by scene editors to keep tracking
|
2014-06-19 07:23:03 +02:00
|
|
|
NodePath get_import_path() const;
|
|
|
|
|
2016-06-21 03:57:07 +02:00
|
|
|
bool is_owned_by_parent() const;
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void get_argument_options(const StringName &p_function, int p_idx, List<String> *r_options) const;
|
2014-06-19 07:23:03 +02:00
|
|
|
|
2015-06-22 05:03:19 +02:00
|
|
|
void clear_internal_tree_resource_paths();
|
|
|
|
|
2014-04-10 05:18:27 +02:00
|
|
|
_FORCE_INLINE_ Viewport *get_viewport() const { return data.viewport; }
|
|
|
|
|
2016-05-17 23:27:15 +02:00
|
|
|
virtual String get_configuration_warning() const;
|
|
|
|
|
|
|
|
void update_configuration_warning();
|
|
|
|
|
2016-06-28 18:10:15 +02:00
|
|
|
void set_display_folded(bool p_folded);
|
|
|
|
bool is_displayed_folded() const;
|
2016-08-14 23:49:50 +02:00
|
|
|
/* NETWORK */
|
|
|
|
|
2017-07-03 15:44:45 +02:00
|
|
|
void set_network_master(int p_peer_id, bool p_recursive = true);
|
|
|
|
int get_network_master() const;
|
2016-08-14 23:49:50 +02:00
|
|
|
bool is_network_master() const;
|
|
|
|
|
2018-05-13 07:07:56 +02:00
|
|
|
void rpc_config(const StringName &p_method, MultiplayerAPI::RPCMode p_mode); // config a local method for RPC
|
|
|
|
void rset_config(const StringName &p_property, MultiplayerAPI::RPCMode p_mode); // config a local property for RPC
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void rpc(const StringName &p_method, VARIANT_ARG_LIST); //rpc call, honors RPCMode
|
|
|
|
void rpc_unreliable(const StringName &p_method, VARIANT_ARG_LIST); //rpc call, honors RPCMode
|
|
|
|
void rpc_id(int p_peer_id, const StringName &p_method, VARIANT_ARG_LIST); //rpc call, honors RPCMode
|
|
|
|
void rpc_unreliable_id(int p_peer_id, const StringName &p_method, VARIANT_ARG_LIST); //rpc call, honors RPCMode
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
void rset(const StringName &p_property, const Variant &p_value); //remote set call, honors RPCMode
|
|
|
|
void rset_unreliable(const StringName &p_property, const Variant &p_value); //remote set call, honors RPCMode
|
|
|
|
void rset_id(int p_peer_id, const StringName &p_property, const Variant &p_value); //remote set call, honors RPCMode
|
|
|
|
void rset_unreliable_id(int p_peer_id, const StringName &p_property, const Variant &p_value); //remote set call, honors RPCMode
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2018-03-03 18:30:11 +01:00
|
|
|
void rpcp(int p_peer_id, bool p_unreliable, const StringName &p_method, const Variant **p_arg, int p_argcount);
|
2017-03-05 16:44:50 +01:00
|
|
|
void rsetp(int p_peer_id, bool p_unreliable, const StringName &p_property, const Variant &p_value);
|
2016-08-14 23:49:50 +02:00
|
|
|
|
2018-05-08 10:51:04 +02:00
|
|
|
Ref<MultiplayerAPI> get_multiplayer() const;
|
|
|
|
Ref<MultiplayerAPI> get_custom_multiplayer() const;
|
|
|
|
void set_custom_multiplayer(Ref<MultiplayerAPI> p_multiplayer);
|
2018-05-13 07:07:56 +02:00
|
|
|
const Map<StringName, MultiplayerAPI::RPCMode>::Element *get_node_rpc_mode(const StringName &p_method);
|
|
|
|
const Map<StringName, MultiplayerAPI::RPCMode>::Element *get_node_rset_mode(const StringName &p_property);
|
2014-02-10 02:10:30 +01:00
|
|
|
|
|
|
|
Node();
|
|
|
|
~Node();
|
|
|
|
};
|
|
|
|
|
2017-08-20 17:45:01 +02:00
|
|
|
VARIANT_ENUM_CAST(Node::DuplicateFlags);
|
|
|
|
|
2017-03-05 16:44:50 +01:00
|
|
|
typedef Set<Node *, Node::Comparator> NodeSet;
|
2014-02-10 02:10:30 +01:00
|
|
|
|
2022-07-25 12:33:41 +02:00
|
|
|
#endif // NODE_H
|