| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091 |
- /**************************************************************************/
- /* color_picker_shape.cpp */
- /**************************************************************************/
- /* 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. */
- /**************************************************************************/
- #include "color_picker_shape.h"
- #include "scene/gui/margin_container.h"
- #include "scene/resources/material.h"
- #include "thirdparty/misc/ok_color_shader.h"
- void ColorPickerShape::init_shaders() {
- wheel_shader.instantiate();
- wheel_shader->set_code(R"(
- // ColorPicker wheel shader.
- shader_type canvas_item;
- uniform float wheel_radius = 0.42;
- void fragment() {
- float x = UV.x - 0.5;
- float y = UV.y - 0.5;
- float a = atan(y, x);
- x += 0.001;
- y += 0.001;
- float b = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > wheel_radius);
- x -= 0.002;
- float b2 = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > wheel_radius);
- y -= 0.002;
- float b3 = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > wheel_radius);
- x += 0.002;
- float b4 = float(sqrt(x * x + y * y) < 0.5) * float(sqrt(x * x + y * y) > wheel_radius);
- COLOR = vec4(clamp((abs(fract(((a - TAU) / TAU) + vec3(3.0, 2.0, 1.0) / 3.0) * 6.0 - 3.0) - 1.0), 0.0, 1.0), (b + b2 + b3 + b4) / 4.00);
- }
- )");
- circle_shader.instantiate();
- circle_shader->set_code(R"(
- // ColorPicker circle shader.
- shader_type canvas_item;
- uniform float v = 1.0;
- void fragment() {
- float x = UV.x - 0.5;
- float y = UV.y - 0.5;
- float a = atan(y, x);
- x += 0.001;
- y += 0.001;
- float b = float(sqrt(x * x + y * y) < 0.5);
- x -= 0.002;
- float b2 = float(sqrt(x * x + y * y) < 0.5);
- y -= 0.002;
- float b3 = float(sqrt(x * x + y * y) < 0.5);
- x += 0.002;
- float b4 = float(sqrt(x * x + y * y) < 0.5);
- COLOR = vec4(mix(vec3(1.0), clamp(abs(fract(vec3((a - TAU) / TAU) + vec3(1.0, 2.0 / 3.0, 1.0 / 3.0)) * 6.0 - vec3(3.0)) - vec3(1.0), 0.0, 1.0), ((float(sqrt(x * x + y * y)) * 2.0)) / 1.0) * vec3(v), (b + b2 + b3 + b4) / 4.00);
- })");
- circle_ok_color_shader.instantiate();
- circle_ok_color_shader->set_code(OK_COLOR_SHADER + R"(
- // ColorPicker ok color hsl circle shader.
- uniform float ok_hsl_l = 1.0;
- void fragment() {
- float x = UV.x - 0.5;
- float y = UV.y - 0.5;
- float h = atan(y, x) / (2.0 * M_PI);
- float s = sqrt(x * x + y * y) * 2.0;
- vec3 col = okhsl_to_srgb(vec3(h, s, ok_hsl_l));
- x += 0.001;
- y += 0.001;
- float b = float(sqrt(x * x + y * y) < 0.5);
- x -= 0.002;
- float b2 = float(sqrt(x * x + y * y) < 0.5);
- y -= 0.002;
- float b3 = float(sqrt(x * x + y * y) < 0.5);
- x += 0.002;
- float b4 = float(sqrt(x * x + y * y) < 0.5);
- COLOR = vec4(col, (b + b2 + b3 + b4) / 4.00);
- })");
- rectangle_ok_color_hs_shader.instantiate();
- rectangle_ok_color_hs_shader->set_code(OK_COLOR_SHADER + R"(
- // ColorPicker ok color hs rectangle shader.
- uniform float ok_hsl_l = 0.0;
- void fragment() {
- float h = UV.x;
- float s = 1.0 - UV.y;
- vec3 col = okhsl_to_srgb(vec3(h, s, ok_hsl_l));
- COLOR = vec4(col, 1.0);
- })");
- rectangle_ok_color_hl_shader.instantiate();
- rectangle_ok_color_hl_shader->set_code(OK_COLOR_SHADER + R"(
- // ColorPicker ok color hl rectangle shader.
- uniform float ok_hsl_s = 0.0;
- void fragment() {
- float h = UV.x;
- float l = 1.0 - UV.y;
- vec3 col = okhsl_to_srgb(vec3(h, ok_hsl_s, l));
- COLOR = vec4(col, 1.0);
- })");
- }
- void ColorPickerShape::finish_shaders() {
- wheel_shader.unref();
- circle_shader.unref();
- circle_ok_color_shader.unref();
- rectangle_ok_color_hs_shader.unref();
- rectangle_ok_color_hl_shader.unref();
- }
- void ColorPickerShape::_emit_color_changed() {
- color_picker->emit_signal(SNAME("color_changed"), color_picker->color);
- }
- bool ColorPickerShape::can_handle(const Ref<InputEvent> &p_event, Vector2 &r_position, bool *r_is_click) {
- Ref<InputEventMouseButton> mb = p_event;
- if (mb.is_valid()) {
- if (mb->get_button_index() != MouseButton::LEFT) {
- return false;
- }
- if (r_is_click) {
- *r_is_click = true;
- }
- if (mb->is_pressed()) {
- is_dragging = true;
- r_position = mb->get_position();
- return true;
- } else {
- _emit_color_changed();
- color_picker->add_recent_preset(color_picker->color);
- is_dragging = false;
- return false;
- }
- }
- Ref<InputEventMouseMotion> mm = p_event;
- if (is_dragging && mm.is_valid()) {
- r_position = mm->get_position();
- return true;
- }
- return false;
- }
- void ColorPickerShape::apply_color() {
- color_picker->_copy_hsv_okhsl_to_normalized();
- color_picker->_normalized_apply_intensity_to_color();
- color_picker->hsv_cached = true;
- color_picker->okhsl_cached = true;
- color_picker->_set_pick_color(color_picker->color, true, false);
- if (!color_picker->deferred_mode_enabled) {
- _emit_color_changed();
- }
- }
- void ColorPickerShape::cancel_event() {
- is_dragging = false;
- }
- void ColorPickerShape::draw_focus_rect(Control *p_control, const Rect2 &p_rect) {
- if (!p_control->has_focus(true)) {
- return;
- }
- Rect2 focus_rect;
- if (p_rect.has_area()) {
- focus_rect = p_rect;
- } else {
- focus_rect = Rect2(Vector2(), p_control->get_size());
- }
- const RID ci = p_control->get_canvas_item();
- if (!cursor_editing) {
- RenderingServer::get_singleton()->canvas_item_add_rect(ci, focus_rect, color_picker->theme_cache.focused_not_editing_cursor_color);
- }
- color_picker->theme_cache.picker_focus_rectangle->draw(ci, focus_rect);
- }
- void ColorPickerShape::draw_focus_circle(Control *p_control) {
- if (!p_control->has_focus(true)) {
- return;
- }
- const Rect2 focus_rect(Vector2(), p_control->get_size());
- const RID ci = p_control->get_canvas_item();
- if (!cursor_editing) {
- RenderingServer::get_singleton()->canvas_item_add_circle(ci, focus_rect.get_center(), focus_rect.get_size().y * 0.5, color_picker->theme_cache.focused_not_editing_cursor_color);
- }
- color_picker->theme_cache.picker_focus_circle->draw(ci, focus_rect);
- }
- void ColorPickerShape::draw_sv_square(Control *p_control, const Rect2 &p_square, bool p_draw_focus) {
- const Vector2 end = p_square.get_end();
- PackedVector2Array points = {
- p_square.position,
- Vector2(end.x, p_square.position.y),
- end,
- Vector2(p_square.position.x, end.y),
- };
- Color color1 = Color::from_hsv(color_picker->h, 1, 1);
- Color color2 = Color::from_hsv(color_picker->h, 1, 0);
- PackedColorArray colors = {
- Color(1, 1, 1, 1),
- Color(1, 1, 1, 1),
- Color(0, 0, 0, 1),
- Color(0, 0, 0, 1),
- };
- p_control->draw_polygon(points, colors);
- colors = {
- Color(color1, 0),
- Color(color1, 1),
- Color(color2, 1),
- Color(color2, 0),
- };
- p_control->draw_polygon(points, colors);
- Vector2 cursor_pos;
- cursor_pos.x = CLAMP(p_square.position.x + p_square.size.x * color_picker->s, p_square.position.x, end.x);
- cursor_pos.y = CLAMP(p_square.position.y + p_square.size.y * (1.0 - color_picker->v), p_square.position.y, end.y);
- if (p_draw_focus) {
- draw_focus_rect(p_control, p_square);
- }
- draw_cursor(p_control, cursor_pos);
- }
- void ColorPickerShape::draw_cursor(Control *p_control, const Vector2 &p_center, bool p_draw_bg) {
- const Vector2 position = p_center - color_picker->theme_cache.picker_cursor->get_size() * 0.5;
- if (p_draw_bg) {
- p_control->draw_texture(color_picker->theme_cache.picker_cursor_bg, position, Color(color_picker->color, 1.0));
- }
- p_control->draw_texture(color_picker->theme_cache.picker_cursor, position);
- }
- void ColorPickerShape::draw_circle_cursor(Control *p_control, float p_hue, float p_saturation) {
- const Vector2 center = p_control->get_size() * 0.5;
- const Vector2 cursor_pos(
- center.x + (center.x * Math::cos(p_hue * Math::TAU) * p_saturation),
- center.y + (center.y * Math::sin(p_hue * Math::TAU) * p_saturation));
- draw_cursor(p_control, cursor_pos);
- }
- void ColorPickerShape::connect_shape_focus(Control *p_shape) {
- p_shape->set_focus_mode(Control::FOCUS_ALL);
- p_shape->connect(SceneStringName(focus_entered), callable_mp(this, &ColorPickerShape::shape_focus_entered));
- p_shape->connect(SceneStringName(focus_exited), callable_mp(this, &ColorPickerShape::shape_focus_exited));
- }
- void ColorPickerShape::shape_focus_entered() {
- Input *input = Input::get_singleton();
- if (!(input->is_action_pressed("ui_up") || input->is_action_pressed("ui_down") || input->is_action_pressed("ui_left") || input->is_action_pressed("ui_right"))) {
- cursor_editing = true;
- }
- }
- void ColorPickerShape::shape_focus_exited() {
- cursor_editing = false;
- }
- void ColorPickerShape::handle_cursor_editing(const Ref<InputEvent> &p_event, Control *p_control) {
- if (p_event->is_action_pressed("ui_accept", false, true)) {
- cursor_editing = !cursor_editing;
- p_control->queue_redraw();
- color_picker->accept_event();
- }
- if (cursor_editing && p_event->is_action_pressed("ui_cancel", false, true)) {
- cursor_editing = false;
- p_control->queue_redraw();
- color_picker->accept_event();
- }
- if (!cursor_editing) {
- return;
- }
- Input *input = Input::get_singleton();
- bool is_joypad_event = Object::cast_to<InputEventJoypadMotion>(p_event.ptr()) || Object::cast_to<InputEventJoypadButton>(p_event.ptr());
- if (p_event->is_action_pressed("ui_left", true) || p_event->is_action_pressed("ui_right", true) || p_event->is_action_pressed("ui_up", true) || p_event->is_action_pressed("ui_down", true)) {
- if (is_joypad_event) {
- if (color_picker->is_processing_internal()) {
- color_picker->accept_event();
- return;
- }
- color_picker->set_process_internal(true);
- }
- Vector2 color_change_vector = Vector2(
- input->is_action_pressed("ui_right") - input->is_action_pressed("ui_left"),
- input->is_action_pressed("ui_down") - input->is_action_pressed("ui_up"));
- update_cursor(color_change_vector, p_event->is_echo());
- color_picker->accept_event();
- }
- }
- int ColorPickerShape::get_edge_h_change(const Vector2 &p_color_change_vector) {
- int h_change = 0;
- if (color_picker->h > 0 && color_picker->h < 0.5) {
- h_change -= p_color_change_vector.x;
- } else if (color_picker->h > 0.5 && color_picker->h < 1) {
- h_change += p_color_change_vector.x;
- }
- if (color_picker->h > 0.25 && color_picker->h < 0.75) {
- h_change -= p_color_change_vector.y;
- } else if (color_picker->h < 0.25 || color_picker->h > 0.75) {
- h_change += p_color_change_vector.y;
- }
- return h_change;
- }
- float ColorPickerShape::get_h_on_circle_edge(const Vector2 &p_color_change_vector) {
- int h_change = get_edge_h_change(p_color_change_vector);
- float target_h = Math::wrapf(color_picker->h + h_change / 360.0, 0, 1);
- int current_quarter = color_picker->h * 4;
- int future_quarter = target_h * 4;
- if (p_color_change_vector.y > 0 && ((future_quarter == 0 && current_quarter == 1) || (future_quarter == 1 && current_quarter == 0))) {
- target_h = 0.25f;
- } else if (p_color_change_vector.y < 0 && ((future_quarter == 2 && current_quarter == 3) || (future_quarter == 3 && current_quarter == 2))) {
- target_h = 0.75f;
- } else if (p_color_change_vector.x < 0 && ((future_quarter == 1 && current_quarter == 2) || (future_quarter == 2 && current_quarter == 1))) {
- target_h = 0.5f;
- } else if (p_color_change_vector.x > 0 && ((future_quarter == 3 && current_quarter == 0) || (future_quarter == 0 && current_quarter == 3))) {
- target_h = 0;
- }
- return target_h;
- }
- void ColorPickerShape::initialize_controls() {
- _initialize_controls();
- update_theme();
- is_initialized = true;
- }
- void ColorPickerShape::update_cursor(const Vector2 &p_color_change_vector, bool p_is_echo) {
- if (p_color_change_vector.is_zero_approx()) {
- echo_multiplier = 1.0;
- } else {
- echo_multiplier = p_is_echo ? CLAMP(echo_multiplier * 1.1, 1, 25) : 1;
- _update_cursor(p_color_change_vector * echo_multiplier, p_is_echo);
- apply_color();
- }
- }
- ColorPickerShape::ColorPickerShape(ColorPicker *p_color_picker) {
- color_picker = p_color_picker;
- }
- void ColorPickerShapeRectangle::_sv_square_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, sv_square);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- event_position = (event_position / sv_square->get_size()).clampf(0.0, 1.0);
- color_picker->s = event_position.x;
- color_picker->v = 1.0 - event_position.y;
- apply_color();
- }
- void ColorPickerShapeRectangle::_hue_slider_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, hue_slider);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- color_picker->h = CLAMP(event_position.y / hue_slider->get_size().y, 0.0, 1.0);
- apply_color();
- }
- void ColorPickerShapeRectangle::_sv_square_draw() {
- draw_sv_square(sv_square, Rect2(Vector2(), sv_square->get_size()));
- }
- void ColorPickerShapeRectangle::_hue_slider_draw() {
- const Vector2 size = hue_slider->get_size();
- hue_slider->draw_texture_rect(color_picker->theme_cache.color_hue, Rect2(0, 0, -size.y, size.x), false, Color(1, 1, 1), true);
- draw_focus_rect(hue_slider);
- int y = size.y * color_picker->h;
- const Color color = Color::from_hsv(color_picker->h, 1, 1);
- hue_slider->draw_line(Vector2(0, y), Vector2(size.x, y), color.inverted());
- }
- void ColorPickerShapeRectangle::_initialize_controls() {
- sv_square = memnew(Control);
- sv_square->set_h_size_flags(Control::SIZE_EXPAND_FILL);
- color_picker->shape_container->add_child(sv_square);
- sv_square->connect(SceneStringName(gui_input), callable_mp(this, &ColorPickerShapeRectangle::_sv_square_input));
- sv_square->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeRectangle::_sv_square_draw));
- connect_shape_focus(sv_square);
- hue_slider = memnew(Control);
- color_picker->shape_container->add_child(hue_slider);
- hue_slider->connect(SceneStringName(gui_input), callable_mp(this, &ColorPickerShapeRectangle::_hue_slider_input));
- hue_slider->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeRectangle::_hue_slider_draw));
- connect_shape_focus(hue_slider);
- controls.append(sv_square);
- controls.append(hue_slider);
- }
- void ColorPickerShapeRectangle::_update_cursor(const Vector2 &p_color_change_vector, bool p_is_echo) {
- if (sv_square->has_focus()) {
- color_picker->s = CLAMP(color_picker->s + p_color_change_vector.x / 100.0, 0, 1);
- color_picker->v = CLAMP(color_picker->v - p_color_change_vector.y / 100.0, 0, 1);
- } else if (hue_slider->has_focus()) {
- color_picker->h = CLAMP(color_picker->h + p_color_change_vector.y * echo_multiplier / 360.0, 0, 1);
- }
- }
- void ColorPickerShapeRectangle::update_theme() {
- const ColorPicker::ThemeCache &theme_cache = color_picker->theme_cache;
- sv_square->set_custom_minimum_size(Size2(theme_cache.sv_width, theme_cache.sv_height));
- hue_slider->set_custom_minimum_size(Size2(theme_cache.h_width, 0));
- }
- void ColorPickerShapeRectangle::grab_focus() {
- hue_slider->grab_focus();
- }
- void ColorPickerShapeOKHSRectangle::_initialize_controls() {
- rectangle_margin = memnew(MarginContainer);
- rectangle_margin->set_h_size_flags(Control::SIZE_EXPAND_FILL);
- color_picker->shape_container->add_child(rectangle_margin);
- Ref<ShaderMaterial> material;
- material.instantiate();
- material->set_shader(_get_shader());
- square = memnew(Control);
- rectangle_margin->add_child(square);
- square->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeOKHSRectangle::_square_draw));
- square->set_material(material);
- square_overlay = memnew(Control);
- rectangle_margin->add_child(square_overlay);
- square_overlay->set_anchors_and_offsets_preset(Control::PRESET_FULL_RECT);
- square_overlay->connect(SceneStringName(gui_input), callable_mp(this, &ColorPickerShapeOKHSRectangle::_square_overlay_input));
- square_overlay->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeOKHSRectangle::_square_overlay_draw));
- connect_shape_focus(square_overlay);
- value_slider = memnew(Control);
- color_picker->shape_container->add_child(value_slider);
- value_slider->connect(SceneStringName(gui_input), callable_mp(this, &ColorPickerShapeOKHSRectangle::_value_slider_input));
- value_slider->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeOKHSRectangle::_value_slider_draw));
- connect_shape_focus(value_slider);
- controls.append(rectangle_margin);
- controls.append(square);
- controls.append(square_overlay);
- controls.append(value_slider);
- }
- void ColorPickerShapeOKHSRectangle::update_theme() {
- const ColorPicker::ThemeCache &theme_cache = color_picker->theme_cache;
- rectangle_margin->set_custom_minimum_size(Size2(theme_cache.sv_width, theme_cache.sv_height));
- value_slider->set_custom_minimum_size(Size2(theme_cache.h_width, 0));
- }
- void ColorPickerShapeOKHSRectangle::grab_focus() {
- square_overlay->grab_focus();
- }
- void ColorPickerShapeOKHSRectangle::_update_cursor(const Vector2 &p_color_change_vector, bool p_is_echo) {
- if (square_overlay->has_focus()) {
- color_picker->ok_hsl_h = CLAMP(color_picker->ok_hsl_h + p_color_change_vector.x / 100.0, 0, 1);
- color_picker->ok_hsl_s = CLAMP(color_picker->ok_hsl_s - p_color_change_vector.y / 100.0, 0, 1);
- } else if (value_slider->has_focus()) {
- color_picker->ok_hsl_l = CLAMP(color_picker->ok_hsl_l + p_color_change_vector.y * echo_multiplier / 360.0, 0, 1);
- }
- }
- void ColorPickerShapeOKHSRectangle::_square_draw() {
- Ref<ShaderMaterial> material = square->get_material();
- material->set_shader_parameter(SNAME("ok_hsl_l"), color_picker->ok_hsl_l);
- square->draw_rect(Rect2(Point2(), square->get_size()), Color(1, 1, 1));
- }
- void ColorPickerShapeOKHSRectangle::_square_overlay_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, square_overlay);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- event_position = (event_position / square_overlay->get_size()).clampf(0.0, 1.0);
- color_picker->ok_hsl_h = event_position.x;
- color_picker->ok_hsl_s = 1.0 - event_position.y;
- apply_color();
- }
- void ColorPickerShapeOKHSRectangle::_square_overlay_draw() {
- const Rect2 rect = Rect2(Vector2(), square_overlay->get_size());
- const Vector2 end = rect.get_end();
- Vector2 cursor_pos;
- cursor_pos.x = CLAMP(rect.position.x + rect.size.x * color_picker->ok_hsl_h, rect.position.x, end.x);
- cursor_pos.y = CLAMP(rect.position.y + rect.size.y * (1.0 - color_picker->ok_hsl_s), rect.position.y, end.y);
- draw_focus_rect(square_overlay);
- draw_cursor(square_overlay, cursor_pos);
- }
- void ColorPickerShapeOKHSRectangle::_value_slider_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, value_slider);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- color_picker->ok_hsl_l = 1 - CLAMP(event_position.y / value_slider->get_size().y, 0.0, 1.0);
- apply_color();
- }
- void ColorPickerShapeOKHSRectangle::_value_slider_draw() {
- const float ok_hsl_h = color_picker->ok_hsl_h;
- const float ok_hsl_s = color_picker->ok_hsl_s;
- const Vector2 size = value_slider->get_size();
- PackedVector2Array points{
- Vector2(size.x, 0),
- Vector2(size.x, size.y * 0.5),
- size,
- Vector2(0, size.y),
- Vector2(0, size.y * 0.5),
- Vector2(),
- };
- Color color1 = Color::from_ok_hsl(ok_hsl_h, ok_hsl_s, 1);
- Color color2 = Color::from_ok_hsl(ok_hsl_h, ok_hsl_s, 0.5);
- Color color3 = Color::from_ok_hsl(ok_hsl_h, ok_hsl_s, 0);
- PackedColorArray colors = {
- color1,
- color2,
- color3,
- color3,
- color2,
- color1,
- };
- value_slider->draw_polygon(points, colors);
- draw_focus_rect(value_slider);
- int y = size.y * (1 - CLAMP(color_picker->ok_hsl_l, 0, 1));
- const Color color = Color::from_ok_hsl(ok_hsl_h, 1, color_picker->ok_hsl_l);
- value_slider->draw_line(Vector2(0, y), Vector2(size.x, y), color.inverted());
- }
- void ColorPickerShapeOKHLRectangle::_update_cursor(const Vector2 &p_color_change_vector, bool p_is_echo) {
- if (square_overlay->has_focus()) {
- color_picker->ok_hsl_h = CLAMP(color_picker->ok_hsl_h + p_color_change_vector.x / 100.0, 0, 1);
- color_picker->ok_hsl_l = CLAMP(color_picker->ok_hsl_l - p_color_change_vector.y / 100.0, 0, 1);
- } else if (value_slider->has_focus()) {
- color_picker->ok_hsl_s = CLAMP(color_picker->ok_hsl_s + p_color_change_vector.y * echo_multiplier / 360.0, 0, 1);
- }
- }
- void ColorPickerShapeOKHLRectangle::_square_overlay_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, square_overlay);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- event_position = (event_position / square_overlay->get_size()).clampf(0.0, 1.0);
- color_picker->ok_hsl_h = event_position.x;
- color_picker->ok_hsl_l = 1.0 - event_position.y;
- apply_color();
- }
- void ColorPickerShapeOKHLRectangle::_square_overlay_draw() {
- const Rect2 rect = Rect2(Vector2(), square_overlay->get_size());
- const Vector2 end = rect.get_end();
- Vector2 cursor_pos;
- cursor_pos.x = CLAMP(rect.position.x + rect.size.x * color_picker->ok_hsl_h, rect.position.x, end.x);
- cursor_pos.y = CLAMP(rect.position.y + rect.size.y * (1.0 - color_picker->ok_hsl_l), rect.position.y, end.y);
- draw_focus_rect(square_overlay);
- draw_cursor(square_overlay, cursor_pos);
- }
- void ColorPickerShapeOKHLRectangle::_square_draw() {
- Ref<ShaderMaterial> material = square->get_material();
- material->set_shader_parameter(SNAME("ok_hsl_s"), color_picker->ok_hsl_s);
- square->draw_rect(Rect2(Point2(), square->get_size()), Color(1, 1, 1));
- }
- void ColorPickerShapeOKHLRectangle::_value_slider_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, value_slider);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- color_picker->ok_hsl_s = 1 - CLAMP(event_position.y / value_slider->get_size().y, 0.0, 1.0);
- apply_color();
- }
- void ColorPickerShapeOKHLRectangle::_value_slider_draw() {
- const float ok_hsl_h = color_picker->ok_hsl_h;
- const float ok_hsl_l = color_picker->ok_hsl_l;
- const Vector2 size = value_slider->get_size();
- PackedVector2Array points{
- Vector2(size.x, 0),
- Vector2(size.x, size.y * 0.5),
- size,
- Vector2(0, size.y),
- Vector2(0, size.y * 0.5),
- Vector2(),
- };
- Color color1 = Color::from_ok_hsl(ok_hsl_h, 1, ok_hsl_l);
- Color color2 = Color::from_ok_hsl(ok_hsl_h, 0.5, ok_hsl_l);
- Color color3 = Color::from_ok_hsl(ok_hsl_h, 0, ok_hsl_l);
- PackedColorArray colors = {
- color1,
- color2,
- color3,
- color3,
- color2,
- color1,
- };
- value_slider->draw_polygon(points, colors);
- draw_focus_rect(value_slider);
- int y = size.y * (1 - CLAMP(color_picker->ok_hsl_s, 0, 1));
- const Color color = Color::from_ok_hsl(ok_hsl_h, 1, ok_hsl_l);
- value_slider->draw_line(Vector2(0, y), Vector2(size.x, y), color.inverted());
- }
- float ColorPickerShapeWheel::_get_h_on_wheel(const Vector2 &p_color_change_vector) {
- int h_change = get_edge_h_change(p_color_change_vector);
- float target_h = Math::wrapf(color_picker->h + h_change / 360.0, 0, 1);
- int current_quarter = color_picker->h * 4;
- int future_quarter = target_h * 4;
- if (p_color_change_vector.y > 0 && ((future_quarter == 0 && current_quarter == 1) || (future_quarter == 1 && current_quarter == 0))) {
- rotate_next_echo_event = !rotate_next_echo_event;
- } else if (p_color_change_vector.y < 0 && ((future_quarter == 2 && current_quarter == 3) || (future_quarter == 3 && current_quarter == 2))) {
- rotate_next_echo_event = !rotate_next_echo_event;
- } else if (p_color_change_vector.x < 0 && ((future_quarter == 1 && current_quarter == 2) || (future_quarter == 2 && current_quarter == 1))) {
- rotate_next_echo_event = !rotate_next_echo_event;
- } else if (p_color_change_vector.x > 0 && ((future_quarter == 3 && current_quarter == 0) || (future_quarter == 0 && current_quarter == 3))) {
- rotate_next_echo_event = !rotate_next_echo_event;
- }
- return target_h;
- }
- void ColorPickerShapeWheel::_reset_wheel_focus() {
- wheel_focused = true;
- }
- void ColorPickerShapeWheel::_wheel_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, wheel_uv);
- if (!cursor_editing) {
- // Wheel and inner square are the same control, so focus has to be moved manually.
- if (!wheel_focused && p_event->is_action_pressed("ui_down", true)) {
- wheel_focused = true;
- wheel_uv->queue_redraw();
- color_picker->accept_event();
- return;
- } else if (wheel_focused && p_event->is_action_pressed("ui_up", true)) {
- wheel_focused = false;
- wheel_uv->queue_redraw();
- color_picker->accept_event();
- return;
- }
- }
- Vector2 event_position;
- bool is_click = false;
- if (!can_handle(p_event, event_position, &is_click)) {
- if (is_click) {
- // Released mouse button while dragging wheel.
- spinning = false;
- }
- return;
- }
- const Vector2 uv_size = wheel_uv->get_size();
- const Vector2 ring_radius = uv_size * Math::SQRT12 * WHEEL_RADIUS;
- const Vector2 center = uv_size * 0.5;
- if (is_click && !spinning) {
- real_t dist = center.distance_to(event_position);
- if (dist >= center.x * WHEEL_RADIUS * 2.0 && dist <= center.x) {
- spinning = true;
- if (!wheel_focused) {
- cursor_editing = true;
- wheel_focused = true;
- }
- } else if (dist > center.x) {
- // Clicked outside the wheel.
- cancel_event();
- return;
- }
- };
- if (spinning) {
- real_t rad = center.angle_to_point(event_position);
- color_picker->h = ((rad >= 0) ? rad : (Math::TAU + rad)) / Math::TAU;
- apply_color();
- return;
- }
- const Rect2 uv_rect(center - ring_radius, ring_radius * 2.0);
- event_position -= uv_rect.position;
- event_position /= uv_rect.size;
- if (is_click && (event_position.x < 0 || event_position.x > 1 || event_position.y < 0 || event_position.y > 1)) {
- // Clicked inside the wheel, but outside the square.
- cancel_event();
- return;
- }
- event_position = event_position.clampf(0.0, 1.0);
- color_picker->s = event_position.x;
- color_picker->v = 1.0 - event_position.y;
- if (wheel_focused) {
- cursor_editing = true;
- wheel_focused = false;
- }
- apply_color();
- }
- void ColorPickerShapeWheel::_wheel_draw() {
- wheel->draw_rect(Rect2(Point2(), wheel->get_size()), Color(1, 1, 1));
- }
- void ColorPickerShapeWheel::_wheel_uv_draw() {
- const Vector2 uv_size = wheel_uv->get_size();
- const Vector2 ring_radius = uv_size * Math::SQRT12 * WHEEL_RADIUS;
- const Vector2 center = uv_size * 0.5;
- const Rect2 uv_rect(center - ring_radius, ring_radius * 2.0);
- draw_sv_square(wheel_uv, uv_rect, !wheel_focused);
- if (wheel_focused) {
- draw_focus_circle(wheel_uv);
- }
- float radius = WHEEL_RADIUS * 2.0;
- radius += (1.0 - radius) * 0.5;
- const Vector2 cursor_pos = center +
- Vector2(center.x * Math::cos(color_picker->h * Math::TAU) * radius,
- center.y * Math::sin(color_picker->h * Math::TAU) * radius);
- draw_cursor(wheel_uv, cursor_pos, false);
- }
- void ColorPickerShapeWheel::_initialize_controls() {
- Ref<ShaderMaterial> material;
- material.instantiate();
- material->set_shader(ColorPickerShape::wheel_shader);
- material->set_shader_parameter("wheel_radius", WHEEL_RADIUS);
- wheel = memnew(Control);
- wheel->set_material(material);
- color_picker->shape_container->add_child(wheel);
- wheel->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeWheel::_wheel_draw));
- wheel_uv = memnew(Control);
- wheel_uv->set_anchors_and_offsets_preset(Control::PRESET_FULL_RECT);
- wheel->add_child(wheel_uv);
- wheel_uv->connect(SceneStringName(focus_entered), callable_mp(this, &ColorPickerShapeWheel::_reset_wheel_focus));
- wheel_uv->connect(SceneStringName(gui_input), callable_mp(this, &ColorPickerShapeWheel::_wheel_input));
- wheel_uv->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeWheel::_wheel_uv_draw));
- connect_shape_focus(wheel_uv);
- controls.append(wheel);
- controls.append(wheel_uv);
- }
- void ColorPickerShapeWheel::_update_cursor(const Vector2 &p_color_change_vector, bool p_is_echo) {
- if (wheel_focused) {
- if (p_is_echo && rotate_next_echo_event) {
- color_picker->h = _get_h_on_wheel(-p_color_change_vector);
- } else {
- rotate_next_echo_event = false;
- color_picker->h = _get_h_on_wheel(p_color_change_vector);
- }
- } else {
- color_picker->s = CLAMP(color_picker->s + p_color_change_vector.x / 100.0, 0, 1);
- color_picker->v = CLAMP(color_picker->v - p_color_change_vector.y / 100.0, 0, 1);
- }
- }
- void ColorPickerShapeWheel::update_theme() {
- const ColorPicker::ThemeCache &theme_cache = color_picker->theme_cache;
- wheel->set_custom_minimum_size(Size2(theme_cache.sv_width, theme_cache.sv_height));
- }
- void ColorPickerShapeWheel::grab_focus() {
- wheel_uv->grab_focus();
- }
- void ColorPickerShapeCircle::update_circle_cursor(const Vector2 &p_color_change_vector, const Vector2 &p_center, const Vector2 &p_hue_offset) {
- if (circle_keyboard_joypad_picker_cursor_position == Vector2i()) {
- circle_keyboard_joypad_picker_cursor_position = p_center + p_hue_offset;
- }
- Vector2i potential_cursor_position = circle_keyboard_joypad_picker_cursor_position + p_color_change_vector;
- real_t potential_new_cursor_distance = p_center.distance_to(potential_cursor_position);
- real_t dist_pre = p_center.distance_to(circle_keyboard_joypad_picker_cursor_position);
- if (color_picker->s < 1 || potential_new_cursor_distance < dist_pre) {
- circle_keyboard_joypad_picker_cursor_position += p_color_change_vector;
- real_t dist = p_center.distance_to(circle_keyboard_joypad_picker_cursor_position);
- real_t rad = p_center.angle_to_point(circle_keyboard_joypad_picker_cursor_position);
- color_picker->h = ((rad >= 0) ? rad : (Math::TAU + rad)) / Math::TAU;
- color_picker->s = CLAMP(dist / p_center.x, 0, 1);
- } else {
- color_picker->h = get_h_on_circle_edge(p_color_change_vector);
- circle_keyboard_joypad_picker_cursor_position = Vector2i();
- }
- }
- void ColorPickerShapeCircle::_initialize_controls() {
- Ref<ShaderMaterial> material;
- material.instantiate();
- material->set_shader(_get_shader());
- circle = memnew(Control);
- circle->set_material(material);
- color_picker->shape_container->add_child(circle);
- circle->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeCircle::_circle_draw));
- circle_overlay = memnew(Control);
- circle_overlay->set_anchors_and_offsets_preset(Control::PRESET_FULL_RECT);
- circle->add_child(circle_overlay);
- circle_overlay->connect(SceneStringName(gui_input), callable_mp(this, &ColorPickerShapeCircle::_circle_input));
- circle_overlay->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeCircle::_circle_overlay_draw));
- connect_shape_focus(circle_overlay);
- value_slider = memnew(Control);
- color_picker->shape_container->add_child(value_slider);
- value_slider->connect(SceneStringName(gui_input), callable_mp(this, &ColorPickerShapeCircle::_value_slider_input));
- value_slider->connect(SceneStringName(draw), callable_mp(this, &ColorPickerShapeCircle::_value_slider_draw));
- connect_shape_focus(value_slider);
- controls.append(circle);
- controls.append(circle_overlay);
- controls.append(value_slider);
- }
- void ColorPickerShapeCircle::update_theme() {
- const ColorPicker::ThemeCache &theme_cache = color_picker->theme_cache;
- circle->set_custom_minimum_size(Size2(theme_cache.sv_width, theme_cache.sv_height));
- value_slider->set_custom_minimum_size(Size2(theme_cache.h_width, 0));
- }
- void ColorPickerShapeCircle::grab_focus() {
- circle_overlay->grab_focus();
- }
- void ColorPickerShapeVHSCircle::_circle_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, circle_overlay);
- Vector2 event_position;
- bool is_click = false;
- if (!can_handle(p_event, event_position, &is_click)) {
- return;
- }
- Vector2 center = circle->get_size() * 0.5;
- real_t dist = center.distance_to(event_position);
- if (is_click && dist > center.x) {
- // Clicked outside the circle.
- cancel_event();
- return;
- }
- real_t rad = center.angle_to_point(event_position);
- color_picker->h = ((rad >= 0) ? rad : (Math::TAU + rad)) / Math::TAU;
- color_picker->s = CLAMP(dist / center.x, 0, 1);
- color_picker->ok_hsl_h = color_picker->h;
- color_picker->ok_hsl_s = color_picker->s;
- circle_keyboard_joypad_picker_cursor_position = Vector2i();
- apply_color();
- }
- void ColorPickerShapeVHSCircle::_value_slider_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, value_slider);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- color_picker->v = 1.0 - CLAMP(event_position.y / value_slider->get_size().y, 0.0, 1.0);
- apply_color();
- }
- void ColorPickerShapeVHSCircle::_circle_draw() {
- Ref<ShaderMaterial> material = circle->get_material();
- material->set_shader_parameter(SNAME("v"), color_picker->v);
- circle->draw_rect(Rect2(Point2(), circle->get_size()), Color(1, 1, 1));
- }
- void ColorPickerShapeVHSCircle::_circle_overlay_draw() {
- draw_focus_circle(circle_overlay);
- draw_circle_cursor(circle_overlay, color_picker->h, color_picker->s);
- }
- void ColorPickerShapeVHSCircle::_value_slider_draw() {
- const Vector2 size = value_slider->get_size();
- PackedVector2Array points{
- Vector2(),
- Vector2(size.x, 0),
- size,
- Vector2(0, size.y),
- };
- Color color = Color::from_hsv(color_picker->h, color_picker->s, 1);
- PackedColorArray colors = {
- color,
- color,
- Color(),
- Color(),
- };
- value_slider->draw_polygon(points, colors);
- draw_focus_rect(value_slider);
- int y = size.y * (1 - CLAMP(color_picker->v, 0, 1));
- color.set_hsv(color_picker->h, 1, color_picker->v);
- value_slider->draw_line(Vector2(0, y), Vector2(size.x, y), color.inverted());
- }
- void ColorPickerShapeVHSCircle::_update_cursor(const Vector2 &p_color_change_vector, bool p_is_echo) {
- if (circle_overlay->has_focus()) {
- const Vector2 center = circle_overlay->get_size() / 2.0;
- const Vector2 hue_offset = center * Vector2(Math::cos(color_picker->h * Math::TAU), Math::sin(color_picker->h * Math::TAU)) * color_picker->s;
- update_circle_cursor(p_color_change_vector, center, hue_offset);
- } else if (value_slider->has_focus()) {
- color_picker->v = CLAMP(color_picker->v - p_color_change_vector.y * echo_multiplier / 100.0, 0, 1);
- }
- }
- void ColorPickerShapeOKHSLCircle::_circle_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, circle_overlay);
- Vector2 event_position;
- bool is_click = false;
- if (!can_handle(p_event, event_position, &is_click)) {
- return;
- }
- const Vector2 center = circle->get_size() * 0.5;
- real_t dist = center.distance_to(event_position);
- if (is_click && dist > center.x) {
- // Clicked outside the circle.
- cancel_event();
- return;
- }
- real_t rad = center.angle_to_point(event_position);
- color_picker->h = ((rad >= 0) ? rad : (Math::TAU + rad)) / Math::TAU;
- color_picker->s = CLAMP(dist / center.x, 0, 1);
- color_picker->ok_hsl_h = color_picker->h;
- color_picker->ok_hsl_s = color_picker->s;
- circle_keyboard_joypad_picker_cursor_position = Vector2i();
- apply_color();
- }
- void ColorPickerShapeOKHSLCircle::_value_slider_input(const Ref<InputEvent> &p_event) {
- handle_cursor_editing(p_event, value_slider);
- Vector2 event_position;
- if (!can_handle(p_event, event_position)) {
- return;
- }
- color_picker->ok_hsl_l = 1.0 - CLAMP(event_position.y / value_slider->get_size().y, 0.0, 1.0);
- apply_color();
- }
- void ColorPickerShapeOKHSLCircle::_circle_draw() {
- Ref<ShaderMaterial> material = circle->get_material();
- material->set_shader_parameter(SNAME("ok_hsl_l"), color_picker->ok_hsl_l);
- circle->draw_rect(Rect2(Point2(), circle->get_size()), Color(1, 1, 1));
- }
- void ColorPickerShapeOKHSLCircle::_circle_overlay_draw() {
- draw_focus_circle(circle_overlay);
- draw_circle_cursor(circle_overlay, color_picker->ok_hsl_h, color_picker->ok_hsl_s);
- }
- void ColorPickerShapeOKHSLCircle::_value_slider_draw() {
- const float ok_hsl_h = color_picker->ok_hsl_h;
- const float ok_hsl_s = color_picker->ok_hsl_s;
- const float ok_hsl_l = color_picker->ok_hsl_l;
- const Vector2 size = value_slider->get_size();
- PackedVector2Array points{
- Vector2(size.x, 0),
- Vector2(size.x, size.y * 0.5),
- size,
- Vector2(0, size.y),
- Vector2(0, size.y * 0.5),
- Vector2(),
- };
- Color color1 = Color::from_ok_hsl(ok_hsl_h, ok_hsl_s, 1);
- Color color2 = Color::from_ok_hsl(ok_hsl_h, ok_hsl_s, 0.5);
- Color color3 = Color::from_ok_hsl(ok_hsl_h, ok_hsl_s, 0);
- PackedColorArray colors = {
- color1,
- color2,
- color3,
- color3,
- color2,
- color1,
- };
- value_slider->draw_polygon(points, colors);
- draw_focus_rect(value_slider);
- int y = size.y * (1 - CLAMP(ok_hsl_l, 0, 1));
- value_slider->draw_line(Vector2(0, y), Vector2(size.x, y), Color::from_ok_hsl(ok_hsl_h, 1, ok_hsl_l).inverted());
- }
- void ColorPickerShapeOKHSLCircle::_update_cursor(const Vector2 &p_color_change_vector, bool p_is_echo) {
- if (circle_overlay->has_focus()) {
- const Vector2 center = circle_overlay->get_size() / 2.0;
- const Vector2 hue_offset = center * Vector2(Math::cos(color_picker->ok_hsl_h * Math::TAU), Math::sin(color_picker->ok_hsl_h * Math::TAU)) * color_picker->ok_hsl_s;
- update_circle_cursor(p_color_change_vector, center, hue_offset);
- color_picker->ok_hsl_h = color_picker->h;
- color_picker->ok_hsl_s = color_picker->s;
- } else if (value_slider->has_focus()) {
- color_picker->ok_hsl_l = CLAMP(color_picker->ok_hsl_l - p_color_change_vector.y * echo_multiplier / 100.0, 0, 1);
- }
- }
|