Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
godotengine
GitHub Repository: godotengine/godot
Path: blob/master/scene/2d/canvas_group.cpp
9898 views
1
/**************************************************************************/
2
/* canvas_group.cpp */
3
/**************************************************************************/
4
/* This file is part of: */
5
/* GODOT ENGINE */
6
/* https://godotengine.org */
7
/**************************************************************************/
8
/* Copyright (c) 2014-present Godot Engine contributors (see AUTHORS.md). */
9
/* Copyright (c) 2007-2014 Juan Linietsky, Ariel Manzur. */
10
/* */
11
/* Permission is hereby granted, free of charge, to any person obtaining */
12
/* a copy of this software and associated documentation files (the */
13
/* "Software"), to deal in the Software without restriction, including */
14
/* without limitation the rights to use, copy, modify, merge, publish, */
15
/* distribute, sublicense, and/or sell copies of the Software, and to */
16
/* permit persons to whom the Software is furnished to do so, subject to */
17
/* the following conditions: */
18
/* */
19
/* The above copyright notice and this permission notice shall be */
20
/* included in all copies or substantial portions of the Software. */
21
/* */
22
/* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, */
23
/* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF */
24
/* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. */
25
/* IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY */
26
/* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, */
27
/* TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE */
28
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
29
/**************************************************************************/
30
31
#include "canvas_group.h"
32
33
void CanvasGroup::set_fit_margin(real_t p_fit_margin) {
34
ERR_FAIL_COND(p_fit_margin < 0.0);
35
36
fit_margin = p_fit_margin;
37
RS::get_singleton()->canvas_item_set_canvas_group_mode(get_canvas_item(), RS::CANVAS_GROUP_MODE_TRANSPARENT, clear_margin, true, fit_margin, use_mipmaps);
38
39
queue_redraw();
40
}
41
42
real_t CanvasGroup::get_fit_margin() const {
43
return fit_margin;
44
}
45
46
void CanvasGroup::set_clear_margin(real_t p_clear_margin) {
47
ERR_FAIL_COND(p_clear_margin < 0.0);
48
49
clear_margin = p_clear_margin;
50
RS::get_singleton()->canvas_item_set_canvas_group_mode(get_canvas_item(), RS::CANVAS_GROUP_MODE_TRANSPARENT, clear_margin, true, fit_margin, use_mipmaps);
51
52
queue_redraw();
53
}
54
55
real_t CanvasGroup::get_clear_margin() const {
56
return clear_margin;
57
}
58
59
void CanvasGroup::set_use_mipmaps(bool p_use_mipmaps) {
60
use_mipmaps = p_use_mipmaps;
61
RS::get_singleton()->canvas_item_set_canvas_group_mode(get_canvas_item(), RS::CANVAS_GROUP_MODE_TRANSPARENT, clear_margin, true, fit_margin, use_mipmaps);
62
}
63
bool CanvasGroup::is_using_mipmaps() const {
64
return use_mipmaps;
65
}
66
67
PackedStringArray CanvasGroup::get_configuration_warnings() const {
68
PackedStringArray warnings = Node2D::get_configuration_warnings();
69
70
if (is_inside_tree()) {
71
bool warned_about_ancestor_clipping = false;
72
bool warned_about_canvasgroup_ancestor = false;
73
Node *n = get_parent();
74
while (n) {
75
CanvasItem *as_canvas_item = Object::cast_to<CanvasItem>(n);
76
if (!warned_about_ancestor_clipping && as_canvas_item && as_canvas_item->get_clip_children_mode() != CLIP_CHILDREN_DISABLED) {
77
warnings.push_back(vformat(RTR("Ancestor \"%s\" clips its children, so this CanvasGroup will not function properly."), as_canvas_item->get_name()));
78
warned_about_ancestor_clipping = true;
79
}
80
81
CanvasGroup *as_canvas_group = Object::cast_to<CanvasGroup>(n);
82
if (!warned_about_canvasgroup_ancestor && as_canvas_group) {
83
warnings.push_back(vformat(RTR("Ancestor \"%s\" is a CanvasGroup, so this CanvasGroup will not function properly."), as_canvas_group->get_name()));
84
warned_about_canvasgroup_ancestor = true;
85
}
86
87
// Only break out early once both warnings have been triggered, so
88
// that the user is aware of both possible reasons for clipping not working.
89
if (warned_about_ancestor_clipping && warned_about_canvasgroup_ancestor) {
90
break;
91
}
92
n = n->get_parent();
93
}
94
}
95
96
return warnings;
97
}
98
99
void CanvasGroup::_bind_methods() {
100
ClassDB::bind_method(D_METHOD("set_fit_margin", "fit_margin"), &CanvasGroup::set_fit_margin);
101
ClassDB::bind_method(D_METHOD("get_fit_margin"), &CanvasGroup::get_fit_margin);
102
103
ClassDB::bind_method(D_METHOD("set_clear_margin", "clear_margin"), &CanvasGroup::set_clear_margin);
104
ClassDB::bind_method(D_METHOD("get_clear_margin"), &CanvasGroup::get_clear_margin);
105
106
ClassDB::bind_method(D_METHOD("set_use_mipmaps", "use_mipmaps"), &CanvasGroup::set_use_mipmaps);
107
ClassDB::bind_method(D_METHOD("is_using_mipmaps"), &CanvasGroup::is_using_mipmaps);
108
109
ADD_GROUP("Tweaks", "");
110
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "fit_margin", PROPERTY_HINT_RANGE, "0,1024,1.0,or_greater,suffix:px"), "set_fit_margin", "get_fit_margin");
111
ADD_PROPERTY(PropertyInfo(Variant::FLOAT, "clear_margin", PROPERTY_HINT_RANGE, "0,1024,1.0,or_greater,suffix:px"), "set_clear_margin", "get_clear_margin");
112
ADD_PROPERTY(PropertyInfo(Variant::BOOL, "use_mipmaps"), "set_use_mipmaps", "is_using_mipmaps");
113
}
114
115
CanvasGroup::CanvasGroup() {
116
set_fit_margin(10.0); //sets things
117
}
118
CanvasGroup::~CanvasGroup() {
119
RS::get_singleton()->canvas_item_set_canvas_group_mode(get_canvas_item(), RS::CANVAS_GROUP_MODE_DISABLED);
120
}
121
122