Fix #108336: Treat node sockets with muted links as linked #108375

Merged
Member

Prevent make links operator from creating links to sockets that are
already linked to a muted link.

The SOCK_IS_LINKED flag is used to check if there already is a link
connecting to the socket but when the link is muted, the flag wasn't set
leading to issues in parts of the code that used the flag to check
for any type of connected link.
This commit now also sets SOCK_IS_LINKED when links are muted and
adds an additional check in places where different behavior is expected
for muted links.


Issue
When links are muted, the SOCK_IS_LINKED flag hasn't been set to allow
treating the socket as unconnected (e.g. to expose the value buttons).
Some problems came up, because most parts of the code use the
SOCK_IS_LINKED flag as a check if there is already a link connecting
to the socket - even if that link is muted:

  1. The "Make Links" operator links to sockets even though they are
    already connected with a muted link, creating duplicate links.
  2. Setting the hide property of a socket through the Python API will
    hide a socket, when the connecting link is muted. (Using the
    hide_socket_toggle operator doesn't do this since it uses a
    different check, that also checks for muted links)
  3. There seems to be some cycles versioning code that only runs if the
    socket is not linked (checked via the SOCK_IS_LINKED flag) which
    could potentially run for linked sockets, if their links are muted.

You can test (1.) and (2.) with the attached .blend file. Just opening and
press F to test (1.) or run the script in the text editor for (2.)

Prevent make links operator from creating links to sockets that are already linked to a muted link. The `SOCK_IS_LINKED` flag is used to check if there already is a link connecting to the socket but when the link is muted, the flag wasn't set leading to issues in parts of the code that used the flag to check for any type of connected link. This commit now also sets `SOCK_IS_LINKED` when links are muted and adds an additional check in places where different behavior is expected for muted links. --- **Issue** When links are muted, the `SOCK_IS_LINKED` flag hasn't been set to allow treating the socket as unconnected (e.g. to expose the value buttons). Some problems came up, because most parts of the code use the `SOCK_IS_LINKED` flag as a check if there is already a link connecting to the socket - even if that link is muted: 1. The "Make Links" operator links to sockets even though they are already connected with a muted link, creating duplicate links. 2. Setting the `hide` property of a socket through the Python API will hide a socket, when the connecting link is muted. (Using the `hide_socket_toggle` operator doesn't do this since it uses a different check, that also checks for muted links) 3. There seems to be some cycles versioning code that only runs if the socket is not linked (checked via the `SOCK_IS_LINKED` flag) which could potentially run for linked sockets, if their links are muted. You can test (1.) and (2.) with the attached .blend file. Just opening and press `F` to test (1.) or run the script in the text editor for (2.)
Leon Schittek added the
Module
Nodes & Physics
label 2023-05-28 16:04:03 +02:00
Leon Schittek added 1 commit 2023-05-28 16:04:10 +02:00
7faf56a98a Fix #108336: Treat node sockets with muted links as connected
Prevent make links operator from connecting to sockets that are already
linked to a muted link.

The `SOCK_IS_LINKED` flag is used to check if there already is a link
connecting to the socket but when the link is muted, the flag wasn't set
leading to issues in parts of the code that used the flag to check
for any type of connected link.
This commit now also sets `SOCK_IS_LINKED` when links are muted and
adds an additional check in places where different behavior is expected
for muted links.
Leon Schittek added this to the Nodes & Physics project 2023-05-28 16:08:28 +02:00
Hans Goudey approved these changes 2023-05-31 22:33:50 +02:00
Hans Goudey left a comment
Member

Definitely makes sense! Though long term the SOCK_IS_LINKED flag itself is redundant-- as we progress with the topology cache it could hopefully be removed.

Definitely makes sense! Though long term the `SOCK_IS_LINKED` flag itself is redundant-- as we progress with the topology cache it could hopefully be removed.
Leon Schittek merged commit 2ce5fc4a3e into blender-v3.6-release 2023-06-03 12:35:04 +02:00
Leon Schittek deleted branch fix-108336-make-links-duplicates-muted-links 2023-06-03 12:35:07 +02:00
Sign in to join this conversation.
No reviewers
No Label
Interest
Alembic
Interest
Animation & Rigging
Interest
Asset Browser
Interest
Asset Browser Project Overview
Interest
Audio
Interest
Automated Testing
Interest
Blender Asset Bundle
Interest
BlendFile
Interest
Collada
Interest
Compatibility
Interest
Compositing
Interest
Core
Interest
Cycles
Interest
Dependency Graph
Interest
Development Management
Interest
EEVEE
Interest
EEVEE & Viewport
Interest
Freestyle
Interest
Geometry Nodes
Interest
Grease Pencil
Interest
ID Management
Interest
Images & Movies
Interest
Import Export
Interest
Line Art
Interest
Masking
Interest
Metal
Interest
Modeling
Interest
Modifiers
Interest
Motion Tracking
Interest
Nodes & Physics
Interest
OpenGL
Interest
Overlay
Interest
Overrides
Interest
Performance
Interest
Physics
Interest
Pipeline, Assets & IO
Interest
Platforms, Builds & Tests
Interest
Python API
Interest
Render & Cycles
Interest
Render Pipeline
Interest
Sculpt, Paint & Texture
Interest
Text Editor
Interest
Translations
Interest
Triaging
Interest
Undo
Interest
USD
Interest
User Interface
Interest
UV Editing
Interest
VFX & Video
Interest
Video Sequencer
Interest
Virtual Reality
Interest
Vulkan
Interest
Wayland
Interest
Workbench
Interest: X11
Legacy
Blender 2.8 Project
Legacy
Milestone 1: Basic, Local Asset Browser
Legacy
OpenGL Error
Meta
Good First Issue
Meta
Papercut
Meta
Retrospective
Meta
Security
Module
Animation & Rigging
Module
Core
Module
Development Management
Module
EEVEE & Viewport
Module
Grease Pencil
Module
Modeling
Module
Nodes & Physics
Module
Pipeline, Assets & IO
Module
Platforms, Builds & Tests
Module
Python API
Module
Render & Cycles
Module
Sculpt, Paint & Texture
Module
Triaging
Module
User Interface
Module
VFX & Video
Platform
FreeBSD
Platform
Linux
Platform
macOS
Platform
Windows
Priority
High
Priority
Low
Priority
Normal
Priority
Unbreak Now!
Status
Archived
Status
Confirmed
Status
Duplicate
Status
Needs Info from Developers
Status
Needs Information from User
Status
Needs Triage
Status
Resolved
Type
Bug
Type
Design
Type
Known Issue
Type
Patch
Type
Report
Type
To Do
No Milestone
No Assignees
2 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: blender/blender#108375
No description provided.