From dcd2b883eb1af68c4fdb5993a19126e1d6d4ba82 Mon Sep 17 00:00:00 2001 From: Ninni Pipping Date: Tue, 6 Jun 2023 14:59:54 +0200 Subject: Use NULL instead of COND checks when appropriate Restricted to scene --- scene/animation/animation_tree.cpp | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) (limited to 'scene/animation/animation_tree.cpp') diff --git a/scene/animation/animation_tree.cpp b/scene/animation/animation_tree.cpp index abd66905d1..2364032863 100644 --- a/scene/animation/animation_tree.cpp +++ b/scene/animation/animation_tree.cpp @@ -64,7 +64,7 @@ void AnimationNode::set_parameter(const StringName &p_name, const Variant &p_val if (is_testing) { return; } - ERR_FAIL_COND(!state); + ERR_FAIL_NULL(state); ERR_FAIL_COND(!state->tree->property_parent_map.has(base_path)); ERR_FAIL_COND(!state->tree->property_parent_map[base_path].has(p_name)); StringName path = state->tree->property_parent_map[base_path][p_name]; @@ -73,7 +73,7 @@ void AnimationNode::set_parameter(const StringName &p_name, const Variant &p_val } Variant AnimationNode::get_parameter(const StringName &p_name) const { - ERR_FAIL_COND_V(!state, Variant()); + ERR_FAIL_NULL_V(state, Variant()); ERR_FAIL_COND_V(!state->tree->property_parent_map.has(base_path), Variant()); ERR_FAIL_COND_V(!state->tree->property_parent_map[base_path].has(p_name), Variant()); @@ -96,7 +96,7 @@ void AnimationNode::get_child_nodes(List *r_child_nodes) { } void AnimationNode::blend_animation(const StringName &p_animation, double p_time, double p_delta, bool p_seeked, bool p_is_external_seeking, real_t p_blend, Animation::LoopedFlag p_looped_flag) { - ERR_FAIL_COND(!state); + ERR_FAIL_NULL(state); ERR_FAIL_COND(!state->player->has_animation(p_animation)); Ref animation = state->player->get_animation(p_animation); @@ -144,12 +144,12 @@ double AnimationNode::_pre_process(const StringName &p_base_path, AnimationNode } AnimationTree *AnimationNode::get_animation_tree() const { - ERR_FAIL_COND_V(!state, nullptr); + ERR_FAIL_NULL_V(state, nullptr); return state->tree; } void AnimationNode::make_invalid(const String &p_reason) { - ERR_FAIL_COND(!state); + ERR_FAIL_NULL(state); state->valid = false; if (!state->invalid_reasons.is_empty()) { state->invalid_reasons += "\n"; @@ -159,10 +159,10 @@ void AnimationNode::make_invalid(const String &p_reason) { double AnimationNode::blend_input(int p_input, double p_time, bool p_seek, bool p_is_external_seeking, real_t p_blend, FilterAction p_filter, bool p_sync, bool p_test_only) { ERR_FAIL_INDEX_V(p_input, inputs.size(), 0); - ERR_FAIL_COND_V(!state, 0); + ERR_FAIL_NULL_V(state, 0); AnimationNodeBlendTree *blend_tree = Object::cast_to(parent); - ERR_FAIL_COND_V(!blend_tree, 0); + ERR_FAIL_NULL_V(blend_tree, 0); StringName node_name = connections[p_input]; @@ -193,7 +193,7 @@ double AnimationNode::blend_node(const StringName &p_sub_path, Ref &p_connections, AnimationNode *p_new_parent, Ref p_node, double p_time, bool p_seek, bool p_is_external_seeking, real_t p_blend, FilterAction p_filter, bool p_sync, real_t *r_max, bool p_test_only) { ERR_FAIL_COND_V(!p_node.is_valid(), 0); - ERR_FAIL_COND_V(!state, 0); + ERR_FAIL_NULL_V(state, 0); int blend_count = blends.size(); @@ -293,7 +293,7 @@ double AnimationNode::_blend_node(const StringName &p_subpath, const Vectorbase_path) + String(p_subpath) + "/"; } -- cgit v1.2.3