Add Chromium-only Blender WebEngine parity work
This commit is contained in:
34
blender-5.2.0/source/blender/editors/undo/CMakeLists.txt
Normal file
34
blender-5.2.0/source/blender/editors/undo/CMakeLists.txt
Normal file
@@ -0,0 +1,34 @@
|
||||
# SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
#
|
||||
# SPDX-License-Identifier: GPL-2.0-or-later
|
||||
|
||||
set(INC
|
||||
../include
|
||||
../../makesrna
|
||||
)
|
||||
|
||||
set(INC_SYS
|
||||
)
|
||||
|
||||
set(SRC
|
||||
ed_undo.cc
|
||||
memfile_undo.cc
|
||||
undo_system_types.cc
|
||||
|
||||
undo_intern.hh
|
||||
)
|
||||
|
||||
set(LIB
|
||||
PRIVATE bf::asset_system
|
||||
PRIVATE bf::blenkernel
|
||||
PRIVATE bf::blenlib
|
||||
PRIVATE bf::blenloader
|
||||
PRIVATE bf::blentranslation
|
||||
PRIVATE bf::bmesh
|
||||
PRIVATE bf::dna
|
||||
PRIVATE bf::intern::clog
|
||||
PRIVATE bf::intern::guardedalloc
|
||||
PRIVATE bf::windowmanager
|
||||
)
|
||||
|
||||
blender_add_lib(bf_editor_undo "${SRC}" "${INC}" "${INC_SYS}" "${LIB}")
|
||||
961
blender-5.2.0/source/blender/editors/undo/ed_undo.cc
Normal file
961
blender-5.2.0/source/blender/editors/undo/ed_undo.cc
Normal file
@@ -0,0 +1,961 @@
|
||||
/* SPDX-FileCopyrightText: 2004 Blender Authors
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
/** \file
|
||||
* \ingroup edundo
|
||||
*/
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#include "CLG_log.h"
|
||||
|
||||
#include "DNA_object_types.h"
|
||||
#include "DNA_scene_types.h"
|
||||
|
||||
#include "BLI_listbase.h"
|
||||
#include "BLI_utildefines.h"
|
||||
|
||||
#include "BKE_blender_undo.hh"
|
||||
#include "BKE_callbacks.hh"
|
||||
#include "BKE_context.hh"
|
||||
#include "BKE_global.hh"
|
||||
#include "BKE_layer.hh"
|
||||
#include "BKE_main.hh"
|
||||
#include "BKE_paint.hh"
|
||||
#include "BKE_report.hh"
|
||||
#include "BKE_scene.hh"
|
||||
#include "BKE_screen.hh"
|
||||
#include "BKE_undo_system.hh"
|
||||
#include "BKE_workspace.hh"
|
||||
|
||||
#include "BLO_blend_validate.hh"
|
||||
|
||||
#include "ED_asset.hh"
|
||||
#include "ED_gpencil_legacy.hh"
|
||||
#include "ED_object.hh"
|
||||
#include "ED_outliner.hh"
|
||||
#include "ED_render.hh"
|
||||
#include "ED_screen.hh"
|
||||
#include "ED_sculpt.hh"
|
||||
#include "ED_undo.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_toolsystem.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
#include "RNA_access.hh"
|
||||
#include "RNA_define.hh"
|
||||
#include "RNA_enum_types.hh"
|
||||
|
||||
namespace blender {
|
||||
|
||||
/** We only need this locally. */
|
||||
static CLG_LogRef LOG = {"undo"};
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Generic Undo System Access
|
||||
*
|
||||
* Non-operator undo editor functions.
|
||||
* \{ */
|
||||
|
||||
bool ED_undo_is_state_valid(bContext *C)
|
||||
{
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
|
||||
/* Currently only checks matching begin/end calls. */
|
||||
if (wm->runtime->undo_stack == nullptr) {
|
||||
/* No undo stack is valid, nothing to do. */
|
||||
return true;
|
||||
}
|
||||
if (wm->runtime->undo_stack->group_level != 0) {
|
||||
/* If this fails #ED_undo_grouped_begin, #ED_undo_grouped_end calls don't match. */
|
||||
return false;
|
||||
}
|
||||
if (wm->runtime->undo_stack->step_active != nullptr) {
|
||||
if (wm->runtime->undo_stack->step_active->skip == true) {
|
||||
/* Skip is only allowed between begin/end calls,
|
||||
* a state that should never happen in main event loop. */
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
void ED_undo_group_begin(bContext *C)
|
||||
{
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
BKE_undosys_stack_group_begin(wm->runtime->undo_stack);
|
||||
}
|
||||
|
||||
void ED_undo_group_end(bContext *C)
|
||||
{
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
BKE_undosys_stack_group_end(wm->runtime->undo_stack);
|
||||
}
|
||||
|
||||
void ED_undo_push(bContext *C, const char *str)
|
||||
{
|
||||
CLOG_INFO(&LOG, "Push '%s'", str);
|
||||
WM_file_tag_modified();
|
||||
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
if (G.background) {
|
||||
/* Python developers may have explicitly created the undo stack in background mode,
|
||||
* otherwise allow it to be nullptr, see: #60934.
|
||||
* Otherwise it must never be nullptr, even when undo is disabled. */
|
||||
if (wm->runtime->undo_stack == nullptr) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
|
||||
int steps = U.undosteps;
|
||||
|
||||
/* Ensure steps that have been initialized are always pushed,
|
||||
* even when undo steps are zero.
|
||||
*
|
||||
* Note that some modes (paint, sculpt) initialize an undo step before an action runs,
|
||||
* then accumulate changes there, or restore data from it in the case of 2D painting.
|
||||
*
|
||||
* For this reason we need to handle the undo step even when undo steps is set to zero.
|
||||
*/
|
||||
if ((steps <= 0) && wm->runtime->undo_stack->step_init != nullptr) {
|
||||
steps = 1;
|
||||
}
|
||||
if (steps <= 0) {
|
||||
return;
|
||||
}
|
||||
|
||||
eUndoPushReturn push_retval;
|
||||
|
||||
/* Only apply limit if this is the last undo step. */
|
||||
if (wm->runtime->undo_stack->step_active &&
|
||||
(wm->runtime->undo_stack->step_active->next == nullptr))
|
||||
{
|
||||
BKE_undosys_stack_limit_steps_and_memory(wm->runtime->undo_stack, steps - 1, 0);
|
||||
}
|
||||
|
||||
push_retval = BKE_undosys_step_push(wm->runtime->undo_stack, C, str);
|
||||
|
||||
if (U.undomemory != 0) {
|
||||
const size_t memory_limit = size_t(U.undomemory) * 1024 * 1024;
|
||||
BKE_undosys_stack_limit_steps_and_memory(wm->runtime->undo_stack, -1, memory_limit);
|
||||
}
|
||||
|
||||
if (CLOG_CHECK(&LOG, CLG_LEVEL_DEBUG)) {
|
||||
BKE_undosys_print(wm->runtime->undo_stack);
|
||||
}
|
||||
|
||||
if (push_retval & UNDO_PUSH_RET_OVERRIDE_CHANGED) {
|
||||
WM_main_add_notifier(NC_WM | ND_LIB_OVERRIDE_CHANGED, nullptr);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Common pre management of undo/redo (killing all running jobs, calling pre handlers, etc.).
|
||||
*/
|
||||
static void ed_undo_step_pre(bContext *C,
|
||||
wmWindowManager *wm,
|
||||
const enum eUndoStepDir undo_dir,
|
||||
ReportList *reports)
|
||||
{
|
||||
BLI_assert(ELEM(undo_dir, STEP_UNDO, STEP_REDO));
|
||||
|
||||
Main *bmain = CTX_data_main(C);
|
||||
Scene *scene = CTX_data_scene(C);
|
||||
|
||||
/* undo during jobs are running can easily lead to freeing data using by jobs,
|
||||
* or they can just lead to freezing job in some other cases */
|
||||
WM_jobs_kill_all(wm);
|
||||
|
||||
if (G.debug & G_DEBUG_IO) {
|
||||
if (bmain->lock != nullptr) {
|
||||
BKE_report(
|
||||
reports, RPT_DEBUG, "Checking validity of current .blend file *BEFORE* undo step");
|
||||
BLO_main_validate_libraries(bmain, reports);
|
||||
}
|
||||
}
|
||||
|
||||
/* App-Handlers (pre). */
|
||||
{
|
||||
/* NOTE: ignore grease pencil for now. */
|
||||
wm->op_undo_depth++;
|
||||
BKE_callback_exec_id(
|
||||
bmain, &scene->id, (undo_dir == STEP_UNDO) ? BKE_CB_EVT_UNDO_PRE : BKE_CB_EVT_REDO_PRE);
|
||||
wm->op_undo_depth--;
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Common post management of undo/redo (calling post handlers, adding notifiers etc.).
|
||||
*
|
||||
* \note Also check #undo_history_exec in bottom if you change notifiers.
|
||||
*/
|
||||
static void ed_undo_step_post(bContext *C,
|
||||
wmWindowManager *wm,
|
||||
const enum eUndoStepDir undo_dir,
|
||||
ReportList *reports)
|
||||
{
|
||||
using namespace blender::ed;
|
||||
BLI_assert(ELEM(undo_dir, STEP_UNDO, STEP_REDO));
|
||||
|
||||
Main *bmain = CTX_data_main(C);
|
||||
Scene *scene = CTX_data_scene(C);
|
||||
|
||||
/* App-Handlers (post). */
|
||||
{
|
||||
wm->op_undo_depth++;
|
||||
BKE_callback_exec_id(
|
||||
bmain, &scene->id, (undo_dir == STEP_UNDO) ? BKE_CB_EVT_UNDO_POST : BKE_CB_EVT_REDO_POST);
|
||||
wm->op_undo_depth--;
|
||||
}
|
||||
|
||||
if (G.debug & G_DEBUG_IO) {
|
||||
if (bmain->lock != nullptr) {
|
||||
BKE_report(reports, RPT_INFO, "Checking validity of current .blend file *AFTER* undo step");
|
||||
BLO_main_validate_libraries(bmain, reports);
|
||||
}
|
||||
}
|
||||
|
||||
/* Undo/redo may have invalidated a lot of data, ensure UI has also been fully updated before
|
||||
* handling next events. */
|
||||
WM_event_handling_break(*C);
|
||||
|
||||
WM_event_add_notifier(C, NC_WINDOW, nullptr);
|
||||
WM_event_add_notifier(C, NC_WM | ND_UNDO, nullptr);
|
||||
|
||||
WM_toolsystem_refresh_active(C);
|
||||
WM_toolsystem_refresh_screen_all(bmain);
|
||||
|
||||
asset::list::storage_tag_main_data_dirty();
|
||||
|
||||
if (CLOG_CHECK(&LOG, CLG_LEVEL_DEBUG)) {
|
||||
BKE_undosys_print(wm->runtime->undo_stack);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Undo or redo one step from current active one.
|
||||
* May undo or redo several steps at once only if the target step is a 'skipped' one.
|
||||
* The target step will be the one immediately before or after the active one.
|
||||
*/
|
||||
static wmOperatorStatus ed_undo_step_direction(bContext *C,
|
||||
enum eUndoStepDir step,
|
||||
ReportList *reports)
|
||||
{
|
||||
BLI_assert(ELEM(step, STEP_UNDO, STEP_REDO));
|
||||
|
||||
CLOG_INFO(&LOG, "Step direction=%s", (step == STEP_UNDO) ? "STEP_UNDO" : "STEP_REDO");
|
||||
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
|
||||
ed_undo_step_pre(C, wm, step, reports);
|
||||
|
||||
if (step == STEP_UNDO) {
|
||||
BKE_undosys_step_undo(wm->runtime->undo_stack, C);
|
||||
}
|
||||
else {
|
||||
BKE_undosys_step_redo(wm->runtime->undo_stack, C);
|
||||
}
|
||||
|
||||
ed_undo_step_post(C, wm, step, reports);
|
||||
|
||||
return OPERATOR_FINISHED;
|
||||
}
|
||||
|
||||
/**
|
||||
* Undo the step matching given name.
|
||||
* May undo several steps at once.
|
||||
* The target step will be the one immediately before given named one.
|
||||
*/
|
||||
static int ed_undo_step_by_name(bContext *C, const char *undo_name, ReportList *reports)
|
||||
{
|
||||
BLI_assert(undo_name != nullptr);
|
||||
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
UndoStep *undo_step_from_name = BKE_undosys_step_find_by_name(wm->runtime->undo_stack,
|
||||
undo_name);
|
||||
if (undo_step_from_name == nullptr) {
|
||||
CLOG_ERROR(&LOG, "Step name='%s' not found in current undo stack", undo_name);
|
||||
|
||||
return OPERATOR_CANCELLED;
|
||||
}
|
||||
|
||||
UndoStep *undo_step_target = undo_step_from_name->prev;
|
||||
if (undo_step_target == nullptr) {
|
||||
CLOG_ERROR(&LOG, "Step name='%s' cannot be undone", undo_name);
|
||||
|
||||
return OPERATOR_CANCELLED;
|
||||
}
|
||||
|
||||
const int undo_dir_i = BKE_undosys_step_calc_direction(
|
||||
wm->runtime->undo_stack, undo_step_target, nullptr);
|
||||
BLI_assert(ELEM(undo_dir_i, -1, 1));
|
||||
const enum eUndoStepDir undo_dir = (undo_dir_i == -1) ? STEP_UNDO : STEP_REDO;
|
||||
|
||||
CLOG_INFO(&LOG,
|
||||
"Step name='%s', found direction=%s",
|
||||
undo_name,
|
||||
(undo_dir == STEP_UNDO) ? "STEP_UNDO" : "STEP_REDO");
|
||||
|
||||
ed_undo_step_pre(C, wm, undo_dir, reports);
|
||||
|
||||
BKE_undosys_step_load_data_ex(wm->runtime->undo_stack, C, undo_step_target, nullptr, true);
|
||||
|
||||
ed_undo_step_post(C, wm, undo_dir, reports);
|
||||
|
||||
return OPERATOR_FINISHED;
|
||||
}
|
||||
|
||||
/**
|
||||
* Load the step matching given index in the stack.
|
||||
* May undo or redo several steps at once.
|
||||
* The target step will be the one indicated by the given index.
|
||||
*/
|
||||
static int ed_undo_step_by_index(bContext *C, const int undo_index, ReportList *reports)
|
||||
{
|
||||
BLI_assert(undo_index >= 0);
|
||||
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
const int active_step_index = BLI_findindex(&wm->runtime->undo_stack->steps,
|
||||
wm->runtime->undo_stack->step_active);
|
||||
if (undo_index == active_step_index) {
|
||||
return OPERATOR_CANCELLED;
|
||||
}
|
||||
const enum eUndoStepDir undo_dir = (undo_index < active_step_index) ? STEP_UNDO : STEP_REDO;
|
||||
|
||||
CLOG_INFO(&LOG,
|
||||
"Step index='%d', found direction=%s",
|
||||
undo_index,
|
||||
(undo_dir == STEP_UNDO) ? "STEP_UNDO" : "STEP_REDO");
|
||||
|
||||
ed_undo_step_pre(C, wm, undo_dir, reports);
|
||||
|
||||
BKE_undosys_step_load_from_index(wm->runtime->undo_stack, C, undo_index);
|
||||
|
||||
ed_undo_step_post(C, wm, undo_dir, reports);
|
||||
|
||||
return OPERATOR_FINISHED;
|
||||
}
|
||||
|
||||
void ED_undo_grouped_push(bContext *C, const char *str)
|
||||
{
|
||||
/* do nothing if previous undo task is the same as this one (or from the same undo group) */
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
UndoStack *ustack = wm->runtime->undo_stack;
|
||||
/* See matching check in #ED_undo_push. */
|
||||
if (G.background) {
|
||||
if (ustack == nullptr) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
const UndoStep *us = ustack->step_active;
|
||||
if (us && STREQ(str, us->name)) {
|
||||
BKE_undosys_stack_clear_active(ustack);
|
||||
}
|
||||
|
||||
/* push as usual */
|
||||
ED_undo_push(C, str);
|
||||
}
|
||||
|
||||
void ED_undo_pop(bContext *C)
|
||||
{
|
||||
ed_undo_step_direction(C, STEP_UNDO, nullptr);
|
||||
}
|
||||
void ED_undo_redo(bContext *C)
|
||||
{
|
||||
ed_undo_step_direction(C, STEP_REDO, nullptr);
|
||||
}
|
||||
|
||||
void ED_undo_push_op(bContext *C, wmOperator *op)
|
||||
{
|
||||
/* in future, get undo string info? */
|
||||
ED_undo_push(C, op->type->name);
|
||||
}
|
||||
|
||||
void ED_undo_grouped_push_op(bContext *C, wmOperator *op)
|
||||
{
|
||||
if (op->type->undo_group[0] != '\0') {
|
||||
ED_undo_grouped_push(C, op->type->undo_group);
|
||||
}
|
||||
else {
|
||||
ED_undo_grouped_push(C, op->type->name);
|
||||
}
|
||||
}
|
||||
|
||||
void ED_undo_pop_op(bContext *C, wmOperator *op)
|
||||
{
|
||||
/* search back a couple of undo's, in case something else added pushes */
|
||||
ed_undo_step_by_name(C, op->type->name, op->reports);
|
||||
}
|
||||
|
||||
bool ED_undo_is_valid(const bContext *C, const char *undoname)
|
||||
{
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
UndoStack *ustack = wm->runtime->undo_stack;
|
||||
return ustack && BKE_undosys_stack_has_undo(ustack, undoname);
|
||||
}
|
||||
|
||||
bool ED_undo_has_redo_step(const bContext *C)
|
||||
{
|
||||
const wmWindowManager *wm = CTX_wm_manager(C);
|
||||
UndoStack *ustack = wm->runtime->undo_stack;
|
||||
return ustack && BKE_undosys_stack_has_redo(ustack);
|
||||
}
|
||||
|
||||
bool ED_undo_is_memfile_compatible(const bContext *C)
|
||||
{
|
||||
/* Some modes don't co-exist with memfile undo, disable their use: #60593
|
||||
* (this matches 2.7x behavior). */
|
||||
const Main *bmain = CTX_data_main(C);
|
||||
const Scene *scene = CTX_data_scene(C);
|
||||
ViewLayer *view_layer = CTX_data_view_layer(C);
|
||||
if (view_layer != nullptr) {
|
||||
BKE_view_layer_synced_ensure(*bmain, scene, view_layer);
|
||||
Object *obact = BKE_view_layer_active_object_get(view_layer);
|
||||
if (obact != nullptr) {
|
||||
if (obact->mode & OB_MODE_EDIT) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
bool ED_undo_is_legacy_compatible_for_property(bContext *C, ID *id, PointerRNA &ptr)
|
||||
{
|
||||
if (!RNA_struct_undo_check(ptr.type)) {
|
||||
return false;
|
||||
}
|
||||
/* If the whole ID type doesn't support undo there is no need to check the current context. */
|
||||
if (id && !ID_CHECK_UNDO(id)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
const Main *bmain = CTX_data_main(C);
|
||||
const Scene *scene = CTX_data_scene(C);
|
||||
ViewLayer *view_layer = CTX_data_view_layer(C);
|
||||
if (view_layer != nullptr) {
|
||||
BKE_view_layer_synced_ensure(*bmain, scene, view_layer);
|
||||
Object *obact = BKE_view_layer_active_object_get(view_layer);
|
||||
if (obact != nullptr) {
|
||||
if (obact->mode & OB_MODE_SCULPT) {
|
||||
/* Changing properties while in sculpt mode is expensive due to the paint BVH rebuild.
|
||||
* Avoid pushing such undo steps for now. */
|
||||
CLOG_DEBUG(&LOG, "skipping undo for sculpt-mode");
|
||||
return false;
|
||||
}
|
||||
if (obact->mode & OB_MODE_EDIT) {
|
||||
if ((id == nullptr) || (obact->data == nullptr) ||
|
||||
(GS(id->name) != GS(((ID *)obact->data)->name)))
|
||||
{
|
||||
/* No undo push on id type mismatch in edit-mode. */
|
||||
CLOG_DEBUG(&LOG, "skipping undo for edit-mode");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
UndoStack *ED_undo_stack_get()
|
||||
{
|
||||
wmWindowManager *wm = static_cast<wmWindowManager *>(G_MAIN->wm.first);
|
||||
return wm->runtime->undo_stack;
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Undo, Undo Push & Redo Operators
|
||||
* \{ */
|
||||
|
||||
/**
|
||||
* Refresh to run after user activated undo/redo actions.
|
||||
*/
|
||||
static void ed_undo_refresh_for_op(bContext *C)
|
||||
{
|
||||
/* The "last operator" should disappear, later we can tie this with undo stack nicer. */
|
||||
WM_operator_stack_clear(CTX_wm_manager(C));
|
||||
|
||||
/* Keep button under the cursor active. */
|
||||
WM_event_add_mousemove(CTX_wm_window(C));
|
||||
|
||||
ED_outliner_select_sync_from_all_tag(C);
|
||||
}
|
||||
|
||||
static wmOperatorStatus ed_undo_exec(bContext *C, wmOperator *op)
|
||||
{
|
||||
/* "last operator" should disappear, later we can tie this with undo stack nicer */
|
||||
WM_operator_stack_clear(CTX_wm_manager(C));
|
||||
wmOperatorStatus ret = ed_undo_step_direction(C, STEP_UNDO, op->reports);
|
||||
if (ret & OPERATOR_FINISHED) {
|
||||
ed_undo_refresh_for_op(C);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static wmOperatorStatus ed_undo_push_exec(bContext *C, wmOperator *op)
|
||||
{
|
||||
if (G.background) {
|
||||
/* Exception for background mode, see: #60934.
|
||||
* NOTE: since the undo stack isn't initialized on startup, background mode behavior
|
||||
* won't match regular usage, this is just for scripts to do explicit undo pushes. */
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
if (wm->runtime->undo_stack == nullptr) {
|
||||
wm->runtime->undo_stack = BKE_undosys_stack_create();
|
||||
}
|
||||
}
|
||||
char str[BKE_UNDO_STR_MAX];
|
||||
RNA_string_get(op->ptr, "message", str);
|
||||
ED_undo_push(C, str);
|
||||
return OPERATOR_FINISHED;
|
||||
}
|
||||
|
||||
static wmOperatorStatus ed_redo_exec(bContext *C, wmOperator *op)
|
||||
{
|
||||
wmOperatorStatus ret = ed_undo_step_direction(C, STEP_REDO, op->reports);
|
||||
if (ret & OPERATOR_FINISHED) {
|
||||
ed_undo_refresh_for_op(C);
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
static wmOperatorStatus ed_undo_redo_exec(bContext *C, wmOperator * /*op*/)
|
||||
{
|
||||
wmOperator *last_op = WM_operator_last_redo(C);
|
||||
wmOperatorStatus ret = ED_undo_operator_repeat(C, last_op) ? OPERATOR_FINISHED :
|
||||
OPERATOR_CANCELLED;
|
||||
if (ret & OPERATOR_FINISHED) {
|
||||
/* Keep button under the cursor active. */
|
||||
WM_event_add_mousemove(CTX_wm_window(C));
|
||||
}
|
||||
return ret;
|
||||
}
|
||||
|
||||
/* Disable in background mode, we could support if it's useful, #60934. */
|
||||
|
||||
static bool ed_undo_is_init_poll(bContext *C)
|
||||
{
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
if (wm->runtime->undo_stack == nullptr) {
|
||||
/* This message is intended for Python developers,
|
||||
* it will be part of the exception when attempting to call undo in background mode. */
|
||||
CTX_wm_operator_poll_msg_set(
|
||||
C,
|
||||
"Undo disabled at startup in background-mode "
|
||||
"(call `ed.undo_push()` to explicitly initialize the undo-system)");
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool ed_undo_is_init_and_screenactive_poll(bContext *C)
|
||||
{
|
||||
if (ed_undo_is_init_poll(C) == false) {
|
||||
return false;
|
||||
}
|
||||
return ED_operator_screenactive(C);
|
||||
}
|
||||
|
||||
static bool ed_undo_redo_poll(bContext *C)
|
||||
{
|
||||
wmOperator *last_op = WM_operator_last_redo(C);
|
||||
return (last_op && ed_undo_is_init_and_screenactive_poll(C) &&
|
||||
WM_operator_check_ui_enabled(C, last_op->type->name));
|
||||
}
|
||||
|
||||
static bool ed_undo_poll(bContext *C)
|
||||
{
|
||||
if (!ed_undo_is_init_and_screenactive_poll(C)) {
|
||||
return false;
|
||||
}
|
||||
UndoStack *undo_stack = CTX_wm_manager(C)->runtime->undo_stack;
|
||||
return (undo_stack->step_active != nullptr) && (undo_stack->step_active->prev != nullptr);
|
||||
}
|
||||
|
||||
void ED_OT_undo(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Undo";
|
||||
ot->description = "Undo previous action";
|
||||
ot->idname = "ED_OT_undo";
|
||||
|
||||
/* API callbacks. */
|
||||
ot->exec = ed_undo_exec;
|
||||
ot->poll = ed_undo_poll;
|
||||
}
|
||||
|
||||
void ED_OT_undo_push(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Undo Push";
|
||||
ot->description = "Add an undo state (internal use only)";
|
||||
ot->idname = "ED_OT_undo_push";
|
||||
|
||||
/* API callbacks. */
|
||||
ot->exec = ed_undo_push_exec;
|
||||
/* Unlike others undo operators this initializes undo stack. */
|
||||
ot->poll = ED_operator_screenactive;
|
||||
|
||||
ot->flag = OPTYPE_INTERNAL;
|
||||
|
||||
RNA_def_string(ot->srna,
|
||||
"message",
|
||||
"Add an undo step *function may be moved*",
|
||||
BKE_UNDO_STR_MAX,
|
||||
"Undo Message",
|
||||
"");
|
||||
}
|
||||
|
||||
static bool ed_redo_poll(bContext *C)
|
||||
{
|
||||
if (!ed_undo_is_init_and_screenactive_poll(C)) {
|
||||
return false;
|
||||
}
|
||||
UndoStack *undo_stack = CTX_wm_manager(C)->runtime->undo_stack;
|
||||
return (undo_stack->step_active != nullptr) && (undo_stack->step_active->next != nullptr);
|
||||
}
|
||||
|
||||
void ED_OT_redo(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Redo";
|
||||
ot->description = "Redo previous action";
|
||||
ot->idname = "ED_OT_redo";
|
||||
|
||||
/* API callbacks. */
|
||||
ot->exec = ed_redo_exec;
|
||||
ot->poll = ed_redo_poll;
|
||||
}
|
||||
|
||||
void ED_OT_undo_redo(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Undo and Redo";
|
||||
ot->description = "Undo and redo previous action";
|
||||
ot->idname = "ED_OT_undo_redo";
|
||||
|
||||
/* API callbacks. */
|
||||
ot->exec = ed_undo_redo_exec;
|
||||
ot->poll = ed_undo_redo_poll;
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Operator Repeat
|
||||
* \{ */
|
||||
|
||||
bool ED_undo_operator_repeat(bContext *C, wmOperator *op)
|
||||
{
|
||||
bool success = false;
|
||||
|
||||
if (op) {
|
||||
CLOG_INFO(&LOG, "Operator repeat idname='%s'", op->type->idname);
|
||||
wmWindowManager *wm = CTX_wm_manager(C);
|
||||
const ScrArea *area = CTX_wm_area(C);
|
||||
Scene *scene = CTX_data_scene(C);
|
||||
|
||||
/* keep in sync with logic in view3d_panel_operator_redo() */
|
||||
ARegion *region_orig = CTX_wm_region(C);
|
||||
/* If the redo is called from a HUD, this knows about the region type the operator was
|
||||
* initially called in, so attempt to restore that. */
|
||||
ARegion *redo_region_from_hud = (region_orig->regiontype == RGN_TYPE_HUD) ?
|
||||
ui::ED_area_type_hud_redo_region_find(area, region_orig) :
|
||||
nullptr;
|
||||
ARegion *region_repeat = redo_region_from_hud ? redo_region_from_hud :
|
||||
BKE_area_find_region_active_win(area);
|
||||
|
||||
if (region_repeat) {
|
||||
CTX_wm_region_set(C, region_repeat);
|
||||
}
|
||||
|
||||
if (WM_operator_repeat_check(C, op) && WM_operator_poll(C, op->type) &&
|
||||
/* NOTE: undo/redo can't run if there are jobs active,
|
||||
* check for screen jobs only so jobs like material/texture/world preview
|
||||
* (which copy their data), won't stop redo, see #29579.
|
||||
*
|
||||
* NOTE: WM_operator_check_ui_enabled() jobs test _must_ stay in sync with this. */
|
||||
(WM_jobs_test(wm, scene, WM_JOB_TYPE_ANY) == 0))
|
||||
{
|
||||
if (G.debug & G_DEBUG) {
|
||||
printf("redo_cb: operator redo %s\n", op->type->name);
|
||||
}
|
||||
|
||||
WM_operator_free_all_after(wm, op);
|
||||
|
||||
ED_undo_pop_op(C, op);
|
||||
|
||||
if (op->type->check) {
|
||||
if (op->type->check(C, op)) {
|
||||
/* check for popup and re-layout buttons */
|
||||
ARegion *region_popup = CTX_wm_region_popup(C);
|
||||
if (region_popup) {
|
||||
ED_region_tag_refresh_ui(region_popup);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
const wmOperatorStatus retval = WM_operator_repeat(C, op);
|
||||
if ((retval & OPERATOR_FINISHED) == 0) {
|
||||
if (G.debug & G_DEBUG) {
|
||||
printf("redo_cb: operator redo failed: %s, return %d\n", op->type->name, retval);
|
||||
}
|
||||
ED_undo_redo(C);
|
||||
}
|
||||
else {
|
||||
success = true;
|
||||
}
|
||||
}
|
||||
else {
|
||||
if (G.debug & G_DEBUG) {
|
||||
printf("redo_cb: WM_operator_repeat_check returned false %s\n", op->type->name);
|
||||
}
|
||||
}
|
||||
|
||||
/* set region back */
|
||||
CTX_wm_region_set(C, region_orig);
|
||||
}
|
||||
else {
|
||||
CLOG_WARN(&LOG, "called with nullptr 'op'");
|
||||
}
|
||||
|
||||
return success;
|
||||
}
|
||||
|
||||
void ED_undo_operator_repeat_cb(bContext *C, void *arg_op, void * /*arg_unused*/)
|
||||
{
|
||||
ED_undo_operator_repeat(C, static_cast<wmOperator *>(arg_op));
|
||||
}
|
||||
|
||||
void ED_undo_operator_repeat_cb_evt(bContext *C, void *arg_op, int /*arg_unused*/)
|
||||
{
|
||||
ED_undo_operator_repeat(C, static_cast<wmOperator *>(arg_op));
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Undo History Operator
|
||||
*
|
||||
* See `TOPBAR_MT_undo_history` which is used to access this operator.
|
||||
* \{ */
|
||||
|
||||
/* NOTE: also check #ed_undo_step() in top if you change notifiers. */
|
||||
static wmOperatorStatus undo_history_exec(bContext *C, wmOperator *op)
|
||||
{
|
||||
PropertyRNA *prop = RNA_struct_find_property(op->ptr, "item");
|
||||
if (RNA_property_is_set(op->ptr, prop)) {
|
||||
const int item = RNA_property_int_get(op->ptr, prop);
|
||||
const int ret = ed_undo_step_by_index(C, item, op->reports);
|
||||
if (ret & OPERATOR_FINISHED) {
|
||||
ed_undo_refresh_for_op(C);
|
||||
|
||||
WM_event_add_notifier(C, NC_WINDOW, nullptr);
|
||||
return OPERATOR_FINISHED;
|
||||
}
|
||||
}
|
||||
return OPERATOR_CANCELLED;
|
||||
}
|
||||
|
||||
static wmOperatorStatus undo_history_invoke(bContext *C, wmOperator *op, const wmEvent * /*event*/)
|
||||
{
|
||||
PropertyRNA *prop = RNA_struct_find_property(op->ptr, "item");
|
||||
if (RNA_property_is_set(op->ptr, prop)) {
|
||||
return undo_history_exec(C, op);
|
||||
}
|
||||
|
||||
WM_menu_name_call(C, "TOPBAR_MT_undo_history", wm::OpCallContext::InvokeDefault);
|
||||
return OPERATOR_FINISHED;
|
||||
}
|
||||
|
||||
void ED_OT_undo_history(wmOperatorType *ot)
|
||||
{
|
||||
/* identifiers */
|
||||
ot->name = "Undo History";
|
||||
ot->description = "Undo or redo specific action in history";
|
||||
ot->idname = "ED_OT_undo_history";
|
||||
|
||||
/* API callbacks. */
|
||||
ot->invoke = undo_history_invoke;
|
||||
ot->exec = undo_history_exec;
|
||||
ot->poll = ed_undo_is_init_and_screenactive_poll;
|
||||
|
||||
RNA_def_int(ot->srna, "item", 0, 0, INT_MAX, "Item", "", 0, INT_MAX);
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Undo Helper Functions
|
||||
* \{ */
|
||||
|
||||
void ED_undo_object_set_active_or_warn(const Main &bmain,
|
||||
Scene *scene,
|
||||
ViewLayer *view_layer,
|
||||
Object *ob,
|
||||
const char *info,
|
||||
CLG_LogRef *log)
|
||||
{
|
||||
using namespace blender::ed;
|
||||
BKE_view_layer_synced_ensure(bmain, scene, view_layer);
|
||||
Object *ob_prev = BKE_view_layer_active_object_get(view_layer);
|
||||
if (ob_prev != ob) {
|
||||
Base *base = BKE_view_layer_base_find(view_layer, ob);
|
||||
if (base != nullptr) {
|
||||
view_layer->basact = base;
|
||||
object::base_active_refresh(G_MAIN, scene, view_layer);
|
||||
}
|
||||
else {
|
||||
/* Should never fail, may not crash but can give odd behavior. */
|
||||
CLOG_WARN(log, "'%s' failed to restore active object: '%s'", info, ob->id.name + 2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ED_undo_object_editmode_validate_scene_from_windows(wmWindowManager *wm,
|
||||
const Scene *scene_ref,
|
||||
Scene **scene_p,
|
||||
ViewLayer **view_layer_p)
|
||||
{
|
||||
if (*scene_p == scene_ref) {
|
||||
return;
|
||||
}
|
||||
for (wmWindow &win : wm->windows) {
|
||||
if (win.scene == scene_ref) {
|
||||
*scene_p = win.scene;
|
||||
*view_layer_p = WM_window_get_active_view_layer(&win);
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
void ED_undo_object_editmode_restore_helper(Scene *scene,
|
||||
ViewLayer *view_layer,
|
||||
Object **object_array,
|
||||
uint object_array_len,
|
||||
uint object_array_stride)
|
||||
{
|
||||
using namespace blender::ed;
|
||||
Main *bmain = G_MAIN;
|
||||
/* Don't request unique data because we want to de-select objects when exiting edit-mode
|
||||
* for that to be done on all objects we can't skip ones that share data. */
|
||||
Vector<Base *> bases = ED_undo_editmode_bases_from_view_layer(*bmain, scene, view_layer);
|
||||
for (Base *base : bases) {
|
||||
(base->object->data)->tag |= ID_TAG_DOIT;
|
||||
}
|
||||
Object **ob_p = object_array;
|
||||
for (uint i = 0; i < object_array_len;
|
||||
i++, ob_p = static_cast<Object **>(POINTER_OFFSET(ob_p, object_array_stride)))
|
||||
{
|
||||
Object *obedit = *ob_p;
|
||||
object::editmode_enter_ex(bmain, scene, obedit, object::EM_NO_CONTEXT);
|
||||
(obedit->data)->tag &= ~ID_TAG_DOIT;
|
||||
}
|
||||
for (Base *base : bases) {
|
||||
const ID *id = base->object->data;
|
||||
if (id->tag & ID_TAG_DOIT) {
|
||||
object::editmode_exit_ex(bmain, scene, base->object, object::EM_FREEDATA);
|
||||
/* Ideally we would know the selection state it was before entering edit-mode,
|
||||
* for now follow the convention of having them unselected when exiting the mode. */
|
||||
object::base_select(base, object::BA_DESELECT);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Undo View Layer Helper Functions
|
||||
*
|
||||
* Needed because view layer functions such as
|
||||
* #BKE_view_layer_array_from_objects_in_edit_mode_unique_data also check visibility,
|
||||
* which is not reliable when it comes to object undo operations,
|
||||
* since hidden objects can be operated on in the properties editor,
|
||||
* and local collections may be used.
|
||||
* \{ */
|
||||
|
||||
Vector<Object *> ED_undo_editmode_objects_from_view_layer(const Main &bmain,
|
||||
const Scene *scene,
|
||||
ViewLayer *view_layer)
|
||||
{
|
||||
BKE_view_layer_synced_ensure(bmain, scene, view_layer);
|
||||
Base *baseact = BKE_view_layer_active_base_get(view_layer);
|
||||
if ((baseact == nullptr) || (baseact->object->mode & OB_MODE_EDIT) == 0) {
|
||||
return {};
|
||||
}
|
||||
Set<const ID *> object_data;
|
||||
const short object_type = baseact->object->type;
|
||||
Vector<Object *> objects(object_data.size());
|
||||
/* Base iteration, starting with the active-base to ensure it's the first item in the array.
|
||||
* Looping over the active-base twice is OK as the tag check prevents it being handled twice. */
|
||||
for (Base *base = baseact,
|
||||
*base_next = static_cast<Base *>(BKE_view_layer_object_bases_get(view_layer)->first);
|
||||
base;
|
||||
base = base_next, base_next = base_next ? base_next->next : nullptr)
|
||||
{
|
||||
Object *ob = base->object;
|
||||
if ((ob->type == object_type) && (ob->mode & OB_MODE_EDIT)) {
|
||||
if (object_data.add(static_cast<const ID *>(ob->data))) {
|
||||
objects.append(ob);
|
||||
}
|
||||
}
|
||||
}
|
||||
BLI_assert(!object_data.is_empty());
|
||||
BLI_assert(objects[0] == baseact->object);
|
||||
return objects;
|
||||
}
|
||||
|
||||
Vector<Base *> ED_undo_editmode_bases_from_view_layer(const Main &bmain,
|
||||
const Scene *scene,
|
||||
ViewLayer *view_layer)
|
||||
{
|
||||
BKE_view_layer_synced_ensure(bmain, scene, view_layer);
|
||||
Base *baseact = BKE_view_layer_active_base_get(view_layer);
|
||||
if ((baseact == nullptr) || (baseact->object->mode & OB_MODE_EDIT) == 0) {
|
||||
return {};
|
||||
}
|
||||
Set<const ID *> object_data;
|
||||
const short object_type = baseact->object->type;
|
||||
Vector<Base *> bases;
|
||||
/* Base iteration, starting with the active-base to ensure it's the first item in the array.
|
||||
* Looping over the active-base twice is OK as the tag check prevents it being handled twice. */
|
||||
for (Base *base = BKE_view_layer_active_base_get(view_layer),
|
||||
*base_next = static_cast<Base *>(BKE_view_layer_object_bases_get(view_layer)->first);
|
||||
base;
|
||||
base = base_next, base_next = base_next ? base_next->next : nullptr)
|
||||
{
|
||||
Object *ob = base->object;
|
||||
if ((ob->type == object_type) && (ob->mode & OB_MODE_EDIT)) {
|
||||
if (object_data.add(static_cast<const ID *>(ob->data))) {
|
||||
bases.append(base);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
BLI_assert(!object_data.is_empty());
|
||||
BLI_assert(bases[0] == baseact);
|
||||
return bases;
|
||||
}
|
||||
|
||||
size_t ED_undosys_total_memory_calc(UndoStack *ustack)
|
||||
{
|
||||
size_t total_memory = 0;
|
||||
|
||||
for (UndoStep *us = static_cast<UndoStep *>(ustack->steps.first); us != nullptr; us = us->next) {
|
||||
if (us->type == BKE_UNDOSYS_TYPE_SCULPT) {
|
||||
total_memory += ed::sculpt_paint::undo::step_memory_size_get(us);
|
||||
}
|
||||
else if (us->data_size > 0) {
|
||||
total_memory += us->data_size;
|
||||
}
|
||||
}
|
||||
|
||||
return total_memory;
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
} // namespace blender
|
||||
384
blender-5.2.0/source/blender/editors/undo/memfile_undo.cc
Normal file
384
blender-5.2.0/source/blender/editors/undo/memfile_undo.cc
Normal file
@@ -0,0 +1,384 @@
|
||||
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
/** \file
|
||||
* \ingroup edundo
|
||||
*
|
||||
* Wrapper between `ED_undo.hh` and `BKE_undo_system.hh` API's.
|
||||
*/
|
||||
|
||||
#include "BLI_sys_types.h"
|
||||
|
||||
#include "BLI_ghash.h"
|
||||
#include "BLI_listbase.h"
|
||||
|
||||
#include "DNA_ID.h"
|
||||
#include "DNA_collection_types.h"
|
||||
#include "DNA_mesh_types.h"
|
||||
#include "DNA_node_types.h"
|
||||
#include "DNA_object_types.h"
|
||||
#include "DNA_scene_types.h"
|
||||
|
||||
#include "BKE_blender_undo.hh"
|
||||
#include "BKE_context.hh"
|
||||
#include "BKE_lib_query.hh"
|
||||
#include "BKE_main.hh"
|
||||
#include "BKE_node.hh"
|
||||
#include "BKE_preview_image.hh"
|
||||
#include "BKE_scene.hh"
|
||||
#include "BKE_scene_runtime.hh"
|
||||
#include "BKE_undo_system.hh"
|
||||
|
||||
#include "../depsgraph/DEG_depsgraph.hh"
|
||||
|
||||
#include "WM_api.hh"
|
||||
#include "WM_types.hh"
|
||||
|
||||
#include "ED_render.hh"
|
||||
#include "ED_undo.hh"
|
||||
#include "ED_util.hh"
|
||||
|
||||
#include "../blenloader/BLO_undofile.hh"
|
||||
|
||||
#include "undo_intern.hh"
|
||||
|
||||
namespace blender {
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Implements ED Undo System
|
||||
* \{ */
|
||||
|
||||
struct MemFileUndoStep {
|
||||
UndoStep step;
|
||||
MemFileUndoData *data;
|
||||
};
|
||||
|
||||
static bool memfile_undosys_poll(bContext *C)
|
||||
{
|
||||
/* other poll functions must run first, this is a catch-all. */
|
||||
|
||||
if ((U.uiflag & USER_GLOBALUNDO) == 0) {
|
||||
return false;
|
||||
}
|
||||
|
||||
/* Allow a single memfile undo step (the first). */
|
||||
UndoStack *ustack = ED_undo_stack_get();
|
||||
if ((ustack->step_active != nullptr) && (ED_undo_is_memfile_compatible(C) == false)) {
|
||||
return false;
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
static bool memfile_undosys_step_encode(bContext * /*C*/, Main *bmain, UndoStep *us_p)
|
||||
{
|
||||
MemFileUndoStep *us = reinterpret_cast<MemFileUndoStep *>(us_p);
|
||||
|
||||
/* Important we only use 'main' from the context (see: BKE_undosys_stack_init_from_main). */
|
||||
UndoStack *ustack = ED_undo_stack_get();
|
||||
|
||||
if (bmain->is_memfile_undo_flush_needed) {
|
||||
ED_editors_flush_edits_ex(bmain, false, true);
|
||||
}
|
||||
|
||||
/* can be null, use when set. */
|
||||
MemFileUndoStep *us_prev = reinterpret_cast<MemFileUndoStep *>(
|
||||
BKE_undosys_step_find_by_type(ustack, BKE_UNDOSYS_TYPE_MEMFILE));
|
||||
us->data = BKE_memfile_undo_encode(bmain, us_prev ? us_prev->data : nullptr);
|
||||
us->step.data_size = us->data->undo_size;
|
||||
|
||||
/* Store the fact that we should not re-use old data with that undo step, and reset the Main
|
||||
* flag. */
|
||||
us->step.use_old_bmain_data = !bmain->use_memfile_full_barrier;
|
||||
bmain->use_memfile_full_barrier = false;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
static int memfile_undosys_step_id_reused_cb(LibraryIDLinkCallbackData *cb_data)
|
||||
{
|
||||
ID *self_id = cb_data->self_id;
|
||||
ID *owner_id = cb_data->owner_id;
|
||||
ID **id_pointer = cb_data->id_pointer;
|
||||
/* Embedded IDs do not get tagged with #ID_TAG_UNDO_OLD_ID_REUSED_UNCHANGED currently (could be,
|
||||
* but would add extra processing, and by definition they always share that state with their
|
||||
* owner, as they are stored as 'regular data' in blend-files, not as independent IDs).
|
||||
*
|
||||
* NOTE: It seems that local IDs using embedded ones are never 'reused unchanged', this was
|
||||
* never caught before. However, if using `self_id` here, this assert gets triggered with
|
||||
* upcoming packed data. Probably because while packed data remains unchanged, it is handled like
|
||||
* regular local data by undo code, and like regular linked data. */
|
||||
BLI_assert((owner_id->tag & ID_TAG_UNDO_OLD_ID_REUSED_UNCHANGED) != 0);
|
||||
UNUSED_VARS_NDEBUG(owner_id);
|
||||
|
||||
ID *id = *id_pointer;
|
||||
if (id != nullptr && !ID_IS_LINKED(id) && (id->tag & ID_TAG_UNDO_OLD_ID_REUSED_UNCHANGED) == 0) {
|
||||
bool do_stop_iter = true;
|
||||
if (GS(self_id->name) == ID_OB) {
|
||||
Object *ob_self = id_cast<Object *>(self_id);
|
||||
if (ob_self->type == OB_ARMATURE) {
|
||||
if (ob_self->data == id) {
|
||||
BLI_assert(GS(id->name) == ID_AR);
|
||||
if (ob_self->pose != nullptr) {
|
||||
/* We have a changed/re-read armature used by an unchanged armature object: our beloved
|
||||
* Bone pointers from the object's pose need their usual special treatment. */
|
||||
ob_self->pose->flag |= POSE_RECALC;
|
||||
}
|
||||
}
|
||||
else {
|
||||
/* Cannot stop iteration until we checked ob_self->data pointer... */
|
||||
do_stop_iter = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return do_stop_iter ? IDWALK_RET_STOP_ITER : IDWALK_RET_NOP;
|
||||
}
|
||||
|
||||
return IDWALK_RET_NOP;
|
||||
}
|
||||
|
||||
static void memfile_undosys_step_decode(
|
||||
bContext *C, Main *bmain, UndoStep *us_p, const eUndoStepDir undo_direction, bool /*is_final*/)
|
||||
{
|
||||
BLI_assert(undo_direction != STEP_INVALID);
|
||||
|
||||
bool use_old_bmain_data = true;
|
||||
|
||||
if (USER_DEVELOPER_TOOL_TEST(&U, use_undo_legacy) || !(U.uiflag & USER_GLOBALUNDO)) {
|
||||
use_old_bmain_data = false;
|
||||
}
|
||||
else if (undo_direction == STEP_REDO) {
|
||||
/* The only time we should have to force a complete redo is when current step is tagged as a
|
||||
* redo barrier.
|
||||
* If previous step was not a memfile one should not matter here, current data in old bmain
|
||||
* should still always be valid for unchanged data-blocks. */
|
||||
if (us_p->use_old_bmain_data == false) {
|
||||
use_old_bmain_data = false;
|
||||
}
|
||||
}
|
||||
else if (undo_direction == STEP_UNDO) {
|
||||
/* Here we do not care whether current step is an undo barrier, since we are coming from
|
||||
* 'the future' we can still re-use old data. However, if *next* undo step
|
||||
* (i.e. the one immediately in the future, the one we are coming from)
|
||||
* is a barrier, then we have to force a complete undo.
|
||||
* Note that non-memfile undo steps **should** not be an issue anymore, since we handle
|
||||
* fine-grained update flags now.
|
||||
*/
|
||||
UndoStep *us_next = us_p->next;
|
||||
if (us_next != nullptr) {
|
||||
if (us_next->use_old_bmain_data == false) {
|
||||
use_old_bmain_data = false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* Extract depsgraphs from current bmain (which may be freed during undo step reading),
|
||||
* and store them for re-use. */
|
||||
GHash *depsgraphs = nullptr;
|
||||
if (use_old_bmain_data) {
|
||||
depsgraphs = BKE_scene_undo_depsgraphs_extract(bmain);
|
||||
}
|
||||
|
||||
ED_editors_exit(bmain, false);
|
||||
/* Ensure there's no preview job running. Unfinished previews will be scheduled for regeneration
|
||||
* via #PRV_TAG_RESTART_RENDERING in BKE_previewimg_blend_read. */
|
||||
ED_preview_kill_jobs(CTX_wm_manager(C), bmain);
|
||||
|
||||
MemFileUndoStep *us = reinterpret_cast<MemFileUndoStep *>(us_p);
|
||||
BKE_memfile_undo_decode(us->data, undo_direction, use_old_bmain_data, C);
|
||||
|
||||
for (UndoStep *us_iter = us_p->next; us_iter; us_iter = us_iter->next) {
|
||||
if (BKE_UNDOSYS_TYPE_IS_MEMFILE_SKIP(us_iter->type)) {
|
||||
continue;
|
||||
}
|
||||
us_iter->is_applied = false;
|
||||
}
|
||||
for (UndoStep *us_iter = us_p; us_iter; us_iter = us_iter->prev) {
|
||||
if (BKE_UNDOSYS_TYPE_IS_MEMFILE_SKIP(us_iter->type)) {
|
||||
continue;
|
||||
}
|
||||
us_iter->is_applied = true;
|
||||
}
|
||||
|
||||
/* bmain has been freed. */
|
||||
bmain = CTX_data_main(C);
|
||||
ED_editors_init_for_undo(bmain);
|
||||
|
||||
if (use_old_bmain_data) {
|
||||
/* Restore previous depsgraphs into current bmain. */
|
||||
BKE_scene_undo_depsgraphs_restore(bmain, depsgraphs);
|
||||
|
||||
/* We need to inform depsgraph about re-used old IDs that would be using newly read
|
||||
* data-blocks, at least evaluated copies need to be updated... */
|
||||
ID *id = nullptr;
|
||||
FOREACH_MAIN_ID_BEGIN (bmain, id) {
|
||||
if (id->tag & ID_TAG_UNDO_OLD_ID_REUSED_UNCHANGED) {
|
||||
BKE_library_foreach_ID_link(
|
||||
bmain, id, memfile_undosys_step_id_reused_cb, nullptr, IDWALK_READONLY);
|
||||
}
|
||||
|
||||
if (GS(id->name) == ID_SCE) {
|
||||
Scene *scene = reinterpret_cast<Scene *>(id);
|
||||
/* TODO: We should be able to restore these depsgraphs properly as part of
|
||||
* #BKE_scene_undo_depsgraphs_restore but this is currently only done for depsgraphs in the
|
||||
* scene.depsgraph_hash map. So the safest option is to just delete the following
|
||||
* depsgraphs for now. */
|
||||
if (scene->compositing_node_group) {
|
||||
/* Ensure undo calls from the UI update the interactive compositor preview depsgraph, see
|
||||
* #compo_initjob. */
|
||||
bke::CompositorRuntime &compositor_runtime = scene->runtime->compositor;
|
||||
DEG_graph_free(compositor_runtime.preview_depsgraph);
|
||||
compositor_runtime.preview_depsgraph = nullptr;
|
||||
}
|
||||
|
||||
if (scene->runtime->sequencer.depsgraph) {
|
||||
/* Ensure that the depsgraph created in #get_depsgraph_for_scene_strip are updated. */
|
||||
bke::SequencerRuntime &seq_runtime = scene->runtime->sequencer;
|
||||
DEG_graph_free(seq_runtime.depsgraph);
|
||||
seq_runtime.depsgraph = nullptr;
|
||||
}
|
||||
}
|
||||
|
||||
/* NOTE: Tagging `ID_RECALC_SYNC_TO_EVAL` here should not be needed in practice, since
|
||||
* modified IDs should already have other depsgraph update tags anyway.
|
||||
* However, for the sake of consistency, it's better to effectively use it,
|
||||
* since content of that ID pointer does have been modified. */
|
||||
uint recalc_flags = id->recalc | ((id->tag & ID_TAG_UNDO_OLD_ID_REREAD_IN_PLACE) ?
|
||||
ID_RECALC_SYNC_TO_EVAL :
|
||||
IDRecalcFlag(0));
|
||||
/* Tag depsgraph to update data-block for changes that happened between the
|
||||
* current and the target state, see direct_link_id_restore_recalc(). */
|
||||
if (recalc_flags != 0) {
|
||||
DEG_id_tag_update_ex(bmain, id, recalc_flags);
|
||||
}
|
||||
|
||||
bNodeTree *nodetree = bke::node_tree_from_id(id);
|
||||
if (nodetree != nullptr) {
|
||||
recalc_flags = nodetree->id.recalc;
|
||||
if (id->tag & ID_TAG_UNDO_OLD_ID_REREAD_IN_PLACE) {
|
||||
recalc_flags |= ID_RECALC_SYNC_TO_EVAL;
|
||||
}
|
||||
if (recalc_flags != 0) {
|
||||
DEG_id_tag_update_ex(bmain, &nodetree->id, recalc_flags);
|
||||
}
|
||||
}
|
||||
if (GS(id->name) == ID_SCE) {
|
||||
Scene *scene = id_cast<Scene *>(id);
|
||||
if (scene->master_collection != nullptr) {
|
||||
recalc_flags = scene->master_collection->id.recalc;
|
||||
if (id->tag & ID_TAG_UNDO_OLD_ID_REREAD_IN_PLACE) {
|
||||
recalc_flags |= ID_RECALC_SYNC_TO_EVAL;
|
||||
}
|
||||
if (recalc_flags != 0) {
|
||||
DEG_id_tag_update_ex(bmain, &scene->master_collection->id, recalc_flags);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
FOREACH_MAIN_ID_END;
|
||||
|
||||
FOREACH_MAIN_ID_BEGIN (bmain, id) {
|
||||
/* Clear temporary tag. */
|
||||
id->tag &= ~(ID_TAG_UNDO_OLD_ID_REUSED_UNCHANGED | ID_TAG_UNDO_OLD_ID_REUSED_NOUNDO |
|
||||
ID_TAG_UNDO_OLD_ID_REREAD_IN_PLACE);
|
||||
|
||||
/* We only start accumulating from this point, any tags set up to here
|
||||
* are already part of the current undo state. This is done in a second
|
||||
* loop because DEG_id_tag_update may set tags on other datablocks. */
|
||||
id->recalc_after_undo_push = 0;
|
||||
bNodeTree *nodetree = bke::node_tree_from_id(id);
|
||||
if (nodetree != nullptr) {
|
||||
nodetree->id.recalc_after_undo_push = 0;
|
||||
}
|
||||
if (GS(id->name) == ID_SCE) {
|
||||
Scene *scene = id_cast<Scene *>(id);
|
||||
if (scene->master_collection != nullptr) {
|
||||
scene->master_collection->id.recalc_after_undo_push = 0;
|
||||
}
|
||||
}
|
||||
else if (GS(id->name) == ID_OB) {
|
||||
/* In some cases when using memfile undo in sculpt mode, the object but not the
|
||||
* corresponding mesh will be tagged for an update, leading to invalid data and crashes.
|
||||
*
|
||||
* This is a band-aid mitigation for the 5.1 release, not a proper fix of the underlying
|
||||
* problem.
|
||||
*
|
||||
* See #152087 for more details. */
|
||||
Object *object = reinterpret_cast<Object *>(id);
|
||||
if (object->type == OB_MESH) {
|
||||
Mesh *mesh = id_cast<Mesh *>(object->data);
|
||||
if (object->mode == OB_MODE_SCULPT && mesh) {
|
||||
DEG_id_tag_update_ex(bmain, &mesh->id, ID_RECALC_GEOMETRY);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
FOREACH_MAIN_ID_END;
|
||||
}
|
||||
|
||||
WM_event_add_notifier(C, NC_SCENE | ND_LAYER_CONTENT, CTX_data_scene(C));
|
||||
}
|
||||
|
||||
static void memfile_undosys_step_free(UndoStep *us_p)
|
||||
{
|
||||
/* To avoid unnecessary slow down, free backwards
|
||||
* (so we don't need to merge when clearing all). */
|
||||
MemFileUndoStep *us = reinterpret_cast<MemFileUndoStep *>(us_p);
|
||||
if (us_p->next != nullptr) {
|
||||
UndoStep *us_next_p = BKE_undosys_step_same_type_next(us_p);
|
||||
if (us_next_p != nullptr) {
|
||||
MemFileUndoStep *us_next = reinterpret_cast<MemFileUndoStep *>(us_next_p);
|
||||
BLO_memfile_merge(&us->data->memfile, &us_next->data->memfile);
|
||||
}
|
||||
}
|
||||
|
||||
BKE_memfile_undo_free(us->data);
|
||||
}
|
||||
|
||||
void ED_memfile_undosys_type(UndoType *ut)
|
||||
{
|
||||
ut->name = "Global Undo";
|
||||
ut->poll = memfile_undosys_poll;
|
||||
ut->step_encode = memfile_undosys_step_encode;
|
||||
ut->step_decode = memfile_undosys_step_decode;
|
||||
ut->step_free = memfile_undosys_step_free;
|
||||
|
||||
ut->flags = 0;
|
||||
|
||||
ut->step_size = sizeof(MemFileUndoStep);
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
/* -------------------------------------------------------------------- */
|
||||
/** \name Utilities
|
||||
* \{ */
|
||||
bool ED_undosys_autosave_compatible(UndoStack *ustack)
|
||||
{
|
||||
if (!ustack->step_active) {
|
||||
return false;
|
||||
}
|
||||
|
||||
return ELEM(ustack->step_active->type, BKE_UNDOSYS_TYPE_MEMFILE, BKE_UNDOSYS_TYPE_IMAGE);
|
||||
}
|
||||
|
||||
void ED_undosys_stack_memfile_id_changed_tag(UndoStack *ustack, ID *id)
|
||||
{
|
||||
UndoStep *us = ustack->step_active;
|
||||
if (id == nullptr || us == nullptr || us->type != BKE_UNDOSYS_TYPE_MEMFILE) {
|
||||
return;
|
||||
}
|
||||
|
||||
MemFile *memfile = &(reinterpret_cast<MemFileUndoStep *>(us))->data->memfile;
|
||||
for (MemFileChunk &mem_chunk : memfile->chunks) {
|
||||
if (mem_chunk.id_session_uid == id->session_uid) {
|
||||
mem_chunk.is_identical_future = false;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/** \} */
|
||||
|
||||
} // namespace blender
|
||||
22
blender-5.2.0/source/blender/editors/undo/undo_intern.hh
Normal file
22
blender-5.2.0/source/blender/editors/undo/undo_intern.hh
Normal file
@@ -0,0 +1,22 @@
|
||||
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
/** \file
|
||||
* \ingroup edundo
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
namespace blender {
|
||||
|
||||
/* internal exports only */
|
||||
|
||||
struct UndoType;
|
||||
|
||||
/* memfile_undo.cc */
|
||||
|
||||
/** Export for ED_undo_sys. */
|
||||
void ED_memfile_undosys_type(UndoType *ut);
|
||||
|
||||
} // namespace blender
|
||||
@@ -0,0 +1,67 @@
|
||||
/* SPDX-FileCopyrightText: 2023 Blender Authors
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0-or-later */
|
||||
|
||||
/** \file
|
||||
* \ingroup edundo
|
||||
*/
|
||||
|
||||
#include <cstring>
|
||||
|
||||
#include "ED_armature.hh"
|
||||
#include "ED_curve.hh"
|
||||
#include "ED_curves.hh"
|
||||
#include "ED_grease_pencil.hh"
|
||||
#include "ED_lattice.hh"
|
||||
#include "ED_mball.hh"
|
||||
#include "ED_mesh.hh"
|
||||
#include "ED_paint.hh"
|
||||
#include "ED_particle.hh"
|
||||
#include "ED_pointcloud.hh"
|
||||
#include "ED_sculpt.hh"
|
||||
#include "ED_text.hh"
|
||||
#include "ED_undo.hh"
|
||||
|
||||
#include "undo_intern.hh"
|
||||
|
||||
/* Keep last */
|
||||
#include "BKE_undo_system.hh"
|
||||
|
||||
namespace blender {
|
||||
|
||||
void ED_undosys_type_init()
|
||||
{
|
||||
/* Edit Modes */
|
||||
using namespace blender::ed;
|
||||
BKE_undosys_type_append(ED_armature_undosys_type);
|
||||
BKE_undosys_type_append(ED_curve_undosys_type);
|
||||
BKE_undosys_type_append(ED_font_undosys_type);
|
||||
BKE_undosys_type_append(ED_lattice_undosys_type);
|
||||
BKE_undosys_type_append(ED_mball_undosys_type);
|
||||
BKE_undosys_type_append(ED_mesh_undosys_type);
|
||||
BKE_undosys_type_append(curves::undosys_type_register);
|
||||
BKE_undosys_type_append(pointcloud::undosys_type_register);
|
||||
BKE_undosys_type_append(ED_undosys_type_grease_pencil);
|
||||
|
||||
/* Paint Modes */
|
||||
BKE_UNDOSYS_TYPE_IMAGE = BKE_undosys_type_append(ED_image_undosys_type);
|
||||
|
||||
BKE_UNDOSYS_TYPE_SCULPT = BKE_undosys_type_append(ed::sculpt_paint::undo::register_type);
|
||||
|
||||
BKE_UNDOSYS_TYPE_PARTICLE = BKE_undosys_type_append(ED_particle_undosys_type);
|
||||
|
||||
BKE_UNDOSYS_TYPE_PAINTCURVE = BKE_undosys_type_append(ED_paintcurve_undosys_type);
|
||||
|
||||
/* Text editor */
|
||||
BKE_UNDOSYS_TYPE_TEXT = BKE_undosys_type_append(ED_text_undosys_type);
|
||||
|
||||
/* Keep global undo last (as a fallback). */
|
||||
BKE_UNDOSYS_TYPE_MEMFILE = BKE_undosys_type_append(ED_memfile_undosys_type);
|
||||
}
|
||||
|
||||
void ED_undosys_type_free()
|
||||
{
|
||||
BKE_undosys_type_free_all();
|
||||
}
|
||||
|
||||
} // namespace blender
|
||||
Reference in New Issue
Block a user