Fix #116262: Modal knife tool can crash if used on hidden object #119383

Merged
Philipp Oeser merged 1 commits from lichtwerk/blender:116262_b into blender-v4.1-release 2024-03-12 17:02:46 +01:00
Member

This could happen if objects were hidden after going to editmode and
knife was used on them.

In that case, raycasting would (rightfully) fail, but there is a
fallback in place using the back-buffer selection method (in which the
hidden object is still present). So a face would be found, but this
makes all following code confusing/wrong since we are working with
coordinates / faces under the assumption there would be a valid/
corresponding object to it in KnifeTool_OpData > objects -- which is
not the case...

So to resolve, just check if the object is visible before calling
EDBM_face_find_nearest in knife code.

Alternativeliy, we could also add a check for Base viewport visibility
to all the bmesh find_nearest functions (a bit hesitant though since i
am not sure this would be desired in all cases)

This could happen if objects were hidden after going to editmode and knife was used on them. In that case, raycasting would (rightfully) fail, but there is a fallback in place using the back-buffer selection method (in which the hidden object is still present). So a face would be found, but this makes all following code confusing/wrong since we are working with coordinates / faces under the assumption there would be a valid/ corresponding object to it in `KnifeTool_OpData` > `objects` -- which is not the case... So to resolve, just check if the object is visible before calling `EDBM_face_find_nearest` in knife code. Alternativeliy, we could also add a check for Base viewport visibility to all the bmesh `find_nearest` functions (a bit hesitant though since i am not sure this would be desired in all cases)
Philipp Oeser added 1 commit 2024-03-12 15:28:11 +01:00
e0e36ed5a7 Fix #116262: Modal knife tool can crash if used on hidden object
This could happen if objects were hidden after going to editmode and
knife was used on them.

In that case, raycasting would (rightfully) fail, but there is a
fallback in place using the back-buffer selection method (in which the
hidden object is still present). So a face would be found, but this
makes all following code confusing/wrong since we are working with
coordinates / faces under the assumption there would be a valid/
corresponding object to it in `KnifeTool_OpData` > `objects` -- which is
not the case...

So to resolve, just check if the object is visible before calling
`EDBM_face_find_nearest` in knife code.

Alternativeliy, we could also add a check for Base viewport visibility
to all the bmesh `find_nearest` functions (a bit hesitant though since i
am not sure this would be desired in all cases)
Philipp Oeser added this to the Modeling project 2024-03-12 15:30:47 +01:00
Philipp Oeser requested review from Germano Cavalcante 2024-03-12 15:30:54 +01:00
Philipp Oeser requested review from Campbell Barton 2024-03-12 15:31:00 +01:00
Germano Cavalcante approved these changes 2024-03-12 16:05:47 +01:00
@ -3214,3 +3214,3 @@
vc.mval[1] = int(kcd->curr.mval[1]);
f = EDBM_face_find_nearest(&vc, &dist);
if (BKE_object_is_visible_in_viewport(vc.v3d, vc.obact)) {

It looks like the ViewContext and comment can be moved inside this block.

Ideally all objects in kcd->objects should be tested for "nearest".

And for further improvements, the back-buffer could not even be used if we used the BVH nearest function instead.

But these changes are more involved. For bug fixing, it looks fine.

It looks like the `ViewContext` and comment can be moved inside this block. Ideally all objects in `kcd->objects` should be tested for "nearest". And for further improvements, the back-buffer could not even be used if we used the BVH nearest function instead. But these changes are more involved. For bug fixing, it looks fine.
Author
Member

Yep, yep and yep.

Will do separately.

Yep, yep and yep. Will do separately.
Philipp Oeser merged commit 2886859347 into blender-v4.1-release 2024-03-12 17:02:46 +01:00
Philipp Oeser deleted branch 116262_b 2024-03-12 17:02:52 +01:00
Sign in to join this conversation.
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 project
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#119383
No description provided.