62ecb44035
Fixes the following GCC 5 warnings: ``` core/io/zip_io.h:128:26: warning: 'zlib_filefunc_def zipio_create_io_from_file(FileAccess**)' defined but not used [-Wunused-function] core/script_debugger_remote.cpp:110:17: warning: 'ObjectID safe_get_instance_id(const Variant&)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:103:12: warning: 'int _socket_create(IP::Type&, int, int)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:45:15: warning: 'size_t _set_sockaddr(sockaddr_storage*, const IP_Address&, int, IP::Type)' defined but not used [-Wunused-function] drivers/unix/socket_helpers.h:76:15: warning: 'size_t _set_listen_sockaddr(sockaddr_storage*, int, IP::Type, IP_Address)' defined but not used [-Wunused-function] editor/editor_fonts.cpp:40:24: warning: 'Ref<BitmapFont> make_font(int, int, int, int, const int*, const Ref<Texture>&)' defined but not used [-Wunused-function] editor/editor_themes.cpp:85:26: warning: 'Ref<StyleBoxFlat> change_border_color(Ref<StyleBoxFlat>, Color)' defined but not used [-Wunused-function] editor/import/editor_import_collada.cpp:493:13: warning: 'void _generate_normals(const PoolVector<int>&, const PoolVector<Vector3>&, PoolVector<Vector3>&)' defined but not used [-Wunused-function] editor/import/editor_import_collada.cpp:524:13: warning: 'void _generate_tangents_and_binormals(const PoolVector<int>&, const PoolVector<Vector3>&, const PoolVector<Vector3>&, const PoolVector<Vector3>&, PoolVector<float>&)' defined but not used [-Wunused-function] editor/pvrtc_compress.cpp:118:13: warning: 'void _compress_etc(Image*)' defined but not used [-Wunused-function] modules/etc/image_etc.cpp:89:13: warning: 'void _decompress_etc1(Image*)' defined but not used [-Wunused-function] modules/etc/image_etc.cpp:93:13: warning: 'void _decompress_etc2(Image*)' defined but not used [-Wunused-function] modules/gdscript/editor/gdscript_highlighter.cpp:46:13: warning: 'bool _is_whitespace(CharType)' defined but not used [-Wunused-function] scene/2d/cpu_particles_2d.cpp:510:14: warning: 'float rand_from_seed_m1_p1(uint32_t&)' defined but not used [-Wunused-function] scene/3d/cpu_particles.cpp:474:14: warning: 'float rand_from_seed_m1_p1(uint32_t&)' defined but not used [-Wunused-function] scene/resources/default_theme/default_theme.cpp:123:20: warning: 'Ref<Shader> make_shader(const char*, const char*, const char*)' defined but not used [-Wunused-function] scene/resources/default_theme/default_theme.cpp:130:24: warning: 'Ref<BitmapFont> make_font(int, int, int, int, const int*, const Ref<Texture>&)' defined but not used [-Wunused-function] ``` Had to split `core/io/zip_io.h` into header and .cpp file without 'static' keyword. Not fixed yet (static definition in header used in some files but not all): ``` modules/websocket/lws_helper.h:111:13: warning: 'void _lws_make_protocols(void*, int (*)(lws*, lws_callback_reasons, void*, void*, size_t), PoolVector<String>, _LWSRef**)' defined but not used [-Wunused-function] ``` Also fixed a couple other warnings missed in previous commits.
353 lines
12 KiB
C++
353 lines
12 KiB
C++
/*************************************************************************/
|
|
/* texture_button.cpp */
|
|
/*************************************************************************/
|
|
/* This file is part of: */
|
|
/* GODOT ENGINE */
|
|
/* https://godotengine.org */
|
|
/*************************************************************************/
|
|
/* Copyright (c) 2007-2018 Juan Linietsky, Ariel Manzur. */
|
|
/* Copyright (c) 2014-2018 Godot Engine contributors (cf. AUTHORS.md) */
|
|
/* */
|
|
/* 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. */
|
|
/*************************************************************************/
|
|
|
|
#include "texture_button.h"
|
|
#include "core/typedefs.h"
|
|
#include <stdlib.h>
|
|
|
|
Size2 TextureButton::get_minimum_size() const {
|
|
|
|
Size2 rscale = Control::get_minimum_size();
|
|
|
|
if (!expand) {
|
|
if (normal.is_null()) {
|
|
if (pressed.is_null()) {
|
|
if (hover.is_null())
|
|
if (click_mask.is_null())
|
|
rscale = Size2();
|
|
else
|
|
rscale = click_mask->get_size();
|
|
else
|
|
rscale = hover->get_size();
|
|
} else
|
|
rscale = pressed->get_size();
|
|
|
|
} else
|
|
rscale = normal->get_size();
|
|
}
|
|
|
|
return rscale.abs();
|
|
}
|
|
|
|
bool TextureButton::has_point(const Point2 &p_point) const {
|
|
|
|
if (click_mask.is_valid()) {
|
|
|
|
Point2 point = p_point;
|
|
Rect2 rect = Rect2();
|
|
Size2 mask_size = click_mask->get_size();
|
|
|
|
if (_tile) {
|
|
// if the stretch mode is tile we offset the point to keep it inside the mask size
|
|
rect.size = mask_size;
|
|
if (_position_rect.has_point(point)) {
|
|
int cols = (int)Math::ceil(_position_rect.size.x / mask_size.x);
|
|
int rows = (int)Math::ceil(_position_rect.size.y / mask_size.y);
|
|
int col = (int)(point.x / mask_size.x) % cols;
|
|
int row = (int)(point.y / mask_size.y) % rows;
|
|
point.x -= mask_size.x * col;
|
|
point.y -= mask_size.y * row;
|
|
}
|
|
} else {
|
|
// we need to transform the point from our scaled / translated image back to our mask image
|
|
Point2 ofs = _position_rect.position;
|
|
Size2 scale = mask_size / _position_rect.size;
|
|
|
|
switch (stretch_mode) {
|
|
case STRETCH_KEEP_ASPECT_COVERED: {
|
|
// if the stretch mode is aspect covered the image uses a texture region so we need to take that into account
|
|
float min = MIN(scale.x, scale.y);
|
|
scale.x = min;
|
|
scale.y = min;
|
|
ofs -= _texture_region.position / min;
|
|
} break;
|
|
default: {
|
|
// FIXME: Why a switch if we only handle one enum value?
|
|
}
|
|
}
|
|
|
|
// offset and scale the new point position to adjust it to the bitmask size
|
|
point -= ofs;
|
|
point *= scale;
|
|
|
|
// finally, we need to check if the point is inside a rectangle with a position >= 0,0 and a size <= mask_size
|
|
rect.position = Point2(MAX(0, _texture_region.position.x), MAX(0, _texture_region.position.y));
|
|
rect.size = Size2(MIN(mask_size.x, _texture_region.size.x), MIN(mask_size.y, _texture_region.size.y));
|
|
}
|
|
|
|
if (!rect.has_point(point)) {
|
|
return false;
|
|
}
|
|
|
|
Point2i p = point;
|
|
return click_mask->get_bit(p);
|
|
}
|
|
|
|
return Control::has_point(p_point);
|
|
}
|
|
|
|
void TextureButton::_notification(int p_what) {
|
|
|
|
switch (p_what) {
|
|
|
|
case NOTIFICATION_DRAW: {
|
|
DrawMode draw_mode = get_draw_mode();
|
|
|
|
Ref<Texture> texdraw;
|
|
|
|
switch (draw_mode) {
|
|
case DRAW_NORMAL: {
|
|
|
|
if (normal.is_valid())
|
|
texdraw = normal;
|
|
} break;
|
|
case DRAW_PRESSED: {
|
|
|
|
if (pressed.is_null()) {
|
|
if (hover.is_null()) {
|
|
if (normal.is_valid())
|
|
texdraw = normal;
|
|
} else
|
|
texdraw = hover;
|
|
|
|
} else
|
|
texdraw = pressed;
|
|
} break;
|
|
case DRAW_HOVER: {
|
|
|
|
if (hover.is_null()) {
|
|
if (pressed.is_valid() && is_pressed())
|
|
texdraw = pressed;
|
|
else if (normal.is_valid())
|
|
texdraw = normal;
|
|
} else
|
|
texdraw = hover;
|
|
} break;
|
|
case DRAW_HOVER_PRESSED: break; // Not used in this class
|
|
case DRAW_DISABLED: {
|
|
|
|
if (disabled.is_null()) {
|
|
if (normal.is_valid())
|
|
texdraw = normal;
|
|
} else
|
|
texdraw = disabled;
|
|
} break;
|
|
}
|
|
|
|
if (texdraw.is_valid()) {
|
|
Point2 ofs;
|
|
Size2 size = texdraw->get_size();
|
|
_texture_region = Rect2(Point2(), texdraw->get_size());
|
|
_tile = false;
|
|
if (expand) {
|
|
switch (stretch_mode) {
|
|
case STRETCH_KEEP:
|
|
size = texdraw->get_size();
|
|
break;
|
|
case STRETCH_SCALE:
|
|
size = get_size();
|
|
break;
|
|
case STRETCH_TILE:
|
|
size = get_size();
|
|
_tile = true;
|
|
break;
|
|
case STRETCH_KEEP_CENTERED:
|
|
ofs = (get_size() - texdraw->get_size()) / 2;
|
|
size = texdraw->get_size();
|
|
break;
|
|
case STRETCH_KEEP_ASPECT_CENTERED:
|
|
case STRETCH_KEEP_ASPECT: {
|
|
Size2 _size = get_size();
|
|
float tex_width = texdraw->get_width() * _size.height / texdraw->get_height();
|
|
float tex_height = _size.height;
|
|
|
|
if (tex_width > _size.width) {
|
|
tex_width = _size.width;
|
|
tex_height = texdraw->get_height() * tex_width / texdraw->get_width();
|
|
}
|
|
|
|
if (stretch_mode == STRETCH_KEEP_ASPECT_CENTERED) {
|
|
ofs.x = (_size.width - tex_width) / 2;
|
|
ofs.y = (_size.height - tex_height) / 2;
|
|
}
|
|
size.width = tex_width;
|
|
size.height = tex_height;
|
|
} break;
|
|
case STRETCH_KEEP_ASPECT_COVERED: {
|
|
size = get_size();
|
|
Size2 tex_size = texdraw->get_size();
|
|
Size2 scaleSize(size.width / tex_size.width, size.height / tex_size.height);
|
|
float scale = scaleSize.width > scaleSize.height ? scaleSize.width : scaleSize.height;
|
|
Size2 scaledTexSize = tex_size * scale;
|
|
Point2 ofs = ((scaledTexSize - size) / scale).abs() / 2.0f;
|
|
_texture_region = Rect2(ofs, size / scale);
|
|
} break;
|
|
}
|
|
}
|
|
_position_rect = Rect2(ofs, size);
|
|
if (_tile)
|
|
draw_texture_rect(texdraw, _position_rect, _tile);
|
|
else
|
|
draw_texture_rect_region(texdraw, _position_rect, _texture_region);
|
|
}
|
|
if (has_focus() && focused.is_valid()) {
|
|
|
|
Rect2 drect(Point2(), get_size());
|
|
draw_texture_rect(focused, drect, false);
|
|
};
|
|
} break;
|
|
}
|
|
}
|
|
|
|
void TextureButton::_bind_methods() {
|
|
|
|
ClassDB::bind_method(D_METHOD("set_normal_texture", "texture"), &TextureButton::set_normal_texture);
|
|
ClassDB::bind_method(D_METHOD("set_pressed_texture", "texture"), &TextureButton::set_pressed_texture);
|
|
ClassDB::bind_method(D_METHOD("set_hover_texture", "texture"), &TextureButton::set_hover_texture);
|
|
ClassDB::bind_method(D_METHOD("set_disabled_texture", "texture"), &TextureButton::set_disabled_texture);
|
|
ClassDB::bind_method(D_METHOD("set_focused_texture", "texture"), &TextureButton::set_focused_texture);
|
|
ClassDB::bind_method(D_METHOD("set_click_mask", "mask"), &TextureButton::set_click_mask);
|
|
ClassDB::bind_method(D_METHOD("set_expand", "p_expand"), &TextureButton::set_expand);
|
|
ClassDB::bind_method(D_METHOD("set_stretch_mode", "p_mode"), &TextureButton::set_stretch_mode);
|
|
|
|
ClassDB::bind_method(D_METHOD("get_normal_texture"), &TextureButton::get_normal_texture);
|
|
ClassDB::bind_method(D_METHOD("get_pressed_texture"), &TextureButton::get_pressed_texture);
|
|
ClassDB::bind_method(D_METHOD("get_hover_texture"), &TextureButton::get_hover_texture);
|
|
ClassDB::bind_method(D_METHOD("get_disabled_texture"), &TextureButton::get_disabled_texture);
|
|
ClassDB::bind_method(D_METHOD("get_focused_texture"), &TextureButton::get_focused_texture);
|
|
ClassDB::bind_method(D_METHOD("get_click_mask"), &TextureButton::get_click_mask);
|
|
ClassDB::bind_method(D_METHOD("get_expand"), &TextureButton::get_expand);
|
|
ClassDB::bind_method(D_METHOD("get_stretch_mode"), &TextureButton::get_stretch_mode);
|
|
|
|
ADD_GROUP("Textures", "texture_");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "texture_normal", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_normal_texture", "get_normal_texture");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "texture_pressed", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_pressed_texture", "get_pressed_texture");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "texture_hover", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_hover_texture", "get_hover_texture");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "texture_disabled", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_disabled_texture", "get_disabled_texture");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "texture_focused", PROPERTY_HINT_RESOURCE_TYPE, "Texture"), "set_focused_texture", "get_focused_texture");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::OBJECT, "texture_click_mask", PROPERTY_HINT_RESOURCE_TYPE, "BitMap"), "set_click_mask", "get_click_mask");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::BOOL, "expand", PROPERTY_HINT_RESOURCE_TYPE, "bool"), "set_expand", "get_expand");
|
|
ADD_PROPERTYNZ(PropertyInfo(Variant::INT, "stretch_mode", PROPERTY_HINT_ENUM, "Scale,Tile,Keep,Keep Centered,Keep Aspect,Keep Aspect Centered,Keep Aspect Covered"), "set_stretch_mode", "get_stretch_mode");
|
|
|
|
BIND_ENUM_CONSTANT(STRETCH_SCALE);
|
|
BIND_ENUM_CONSTANT(STRETCH_TILE);
|
|
BIND_ENUM_CONSTANT(STRETCH_KEEP);
|
|
BIND_ENUM_CONSTANT(STRETCH_KEEP_CENTERED);
|
|
BIND_ENUM_CONSTANT(STRETCH_KEEP_ASPECT);
|
|
BIND_ENUM_CONSTANT(STRETCH_KEEP_ASPECT_CENTERED);
|
|
BIND_ENUM_CONSTANT(STRETCH_KEEP_ASPECT_COVERED);
|
|
}
|
|
|
|
void TextureButton::set_normal_texture(const Ref<Texture> &p_normal) {
|
|
|
|
normal = p_normal;
|
|
update();
|
|
minimum_size_changed();
|
|
}
|
|
|
|
void TextureButton::set_pressed_texture(const Ref<Texture> &p_pressed) {
|
|
|
|
pressed = p_pressed;
|
|
update();
|
|
}
|
|
void TextureButton::set_hover_texture(const Ref<Texture> &p_hover) {
|
|
|
|
hover = p_hover;
|
|
update();
|
|
}
|
|
void TextureButton::set_disabled_texture(const Ref<Texture> &p_disabled) {
|
|
|
|
disabled = p_disabled;
|
|
update();
|
|
}
|
|
void TextureButton::set_click_mask(const Ref<BitMap> &p_click_mask) {
|
|
|
|
click_mask = p_click_mask;
|
|
update();
|
|
}
|
|
|
|
Ref<Texture> TextureButton::get_normal_texture() const {
|
|
|
|
return normal;
|
|
}
|
|
Ref<Texture> TextureButton::get_pressed_texture() const {
|
|
|
|
return pressed;
|
|
}
|
|
Ref<Texture> TextureButton::get_hover_texture() const {
|
|
|
|
return hover;
|
|
}
|
|
Ref<Texture> TextureButton::get_disabled_texture() const {
|
|
|
|
return disabled;
|
|
}
|
|
Ref<BitMap> TextureButton::get_click_mask() const {
|
|
|
|
return click_mask;
|
|
}
|
|
|
|
Ref<Texture> TextureButton::get_focused_texture() const {
|
|
|
|
return focused;
|
|
};
|
|
|
|
void TextureButton::set_focused_texture(const Ref<Texture> &p_focused) {
|
|
|
|
focused = p_focused;
|
|
};
|
|
|
|
bool TextureButton::get_expand() const {
|
|
return expand;
|
|
}
|
|
|
|
void TextureButton::set_expand(bool p_expand) {
|
|
expand = p_expand;
|
|
minimum_size_changed();
|
|
update();
|
|
}
|
|
|
|
void TextureButton::set_stretch_mode(StretchMode p_stretch_mode) {
|
|
stretch_mode = p_stretch_mode;
|
|
update();
|
|
}
|
|
|
|
TextureButton::StretchMode TextureButton::get_stretch_mode() const {
|
|
return stretch_mode;
|
|
}
|
|
|
|
TextureButton::TextureButton() {
|
|
expand = false;
|
|
stretch_mode = STRETCH_SCALE;
|
|
|
|
_texture_region = Rect2();
|
|
_position_rect = Rect2();
|
|
_tile = false;
|
|
}
|