commit a10c3ec428cf6affec1fdc6fff9c75331a6a7d9a
parent e4ef255d78f97316fc303b93978b5dbfdcf34a7f
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Tue, 23 Apr 2024 18:06:27 +0200
Merge pull request #402 from abique/undo-v2
Undo v2.0
Diffstat:
2 files changed, 162 insertions(+), 0 deletions(-)
diff --git a/include/clap/all.h b/include/clap/all.h
@@ -10,3 +10,4 @@
#include "ext/draft/transport-control.h"
#include "ext/draft/triggers.h"
#include "ext/draft/tuning.h"
+#include "ext/draft/undo.h"
+\ No newline at end of file
diff --git a/include/clap/ext/draft/undo.h b/include/clap/ext/draft/undo.h
@@ -0,0 +1,160 @@
+#pragma once
+
+#include "../../plugin.h"
+
+static CLAP_CONSTEXPR const char CLAP_EXT_UNDO[] = "clap.undo/2";
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+/// @page Undo
+///
+/// This extension enables the plugin to merge its undo history with the host.
+/// This leads to a single undo history shared by the host and many plugins.
+///
+/// Calling host->undo() or host->redo() is equivalent to clicking undo/redo within the host's GUI.
+///
+/// If the plugin implements this interface then its undo and redo should be entirely delegated to
+/// the host; clicking in the plugin's UI undo or redo is equivalent to clicking undo or redo in the
+/// host's UI.
+///
+/// Some changes are long running changes, for example a mouse interaction will begin editing some
+/// complex data and it may take multiple events and a long duration to complete the change.
+/// In such case the plugin will call host->begin_change() to indicate the begining of a long
+/// running change and complete the change by calling host->change_made().
+///
+/// The host may group changes together:
+/// [---------------------------------]
+/// ^-T0 ^-T1 ^-T2 ^-T3
+/// Here a long running change C0 begin at T0.
+/// A instantaneous change C1 at T1, and another one C2 at T2.
+/// Then at T3 the long running change is completed.
+/// The host will then create a single undo step that will merge all the changes into C0.
+///
+/// This leads to another important consideration: starting a long running change without
+/// terminating is **VERY BAD**, because while a change is running it is impossible to call undo or
+/// redo.
+///
+/// Rationale: multiple designs were considered and this one has the benefit of having a single undo
+/// history. This simplifies the host implementation, leading to less bugs, a more robust design
+/// and maybe an easier experience for the user because there's a single undo context versus one
+/// for the host and one for each plugin instance.
+
+enum clap_undo_context_flags {
+ // While the host is within a change, it is impossible to perform undo or redo.
+ CLAP_UNDO_IS_WITHIN_CHANGE = 1 << 0,
+};
+
+enum clap_undo_delta_properties_flags {
+ // If not set, then all clap_undo_delta_properties's attributes becomes irrelevant.
+ // If set, then the plugin will provide deltas in host->change_made().
+ CLAP_UNDO_DELTA_PROPERTIES_HAS_DELTA = 1 << 0,
+
+ // If set, then the delta will be re-usable in the future as long as the plugin is
+ // compatible with the given format_version.
+ CLAP_UNDO_DELTA_PROPERTIES_IS_PERSISTANT = 1 << 1,
+};
+
+typedef struct clap_undo_delta_properties {
+ // Bitmask of clap_undo_delta_properties_flags
+ uint64_t flags;
+
+ // This represent the delta format version that the plugin is using.
+ uint32_t format_version;
+} clap_undo_delta_properties_t;
+
+typedef struct clap_plugin_undo {
+ // Asks the plugin the delta properties.
+ // [main-thread]
+ void(CLAP_ABI *get_delta_properties)(const clap_plugin_t *plugin,
+ clap_undo_delta_properties_t *properties);
+
+ // Asks the plugin if it can apply a delta using the given format version.
+ // Returns true if it is possible.
+ // [main-thread]
+ bool(CLAP_ABI *can_use_delta_format_version)(const clap_plugin_t *plugin,
+ clap_id format_version);
+
+ // Applies synchronously a delta.
+ // Returns true on success.
+ //
+ // [main-thread]
+ bool(CLAP_ABI *apply_delta)(const clap_plugin_t *plugin,
+ clap_id format_version,
+ const void *delta,
+ size_t delta_size);
+
+ // Sets the undo context.
+ // flags: bitmask of clap_undo_context_flags values
+ // names: null terminated string if an redo/undo step exists, null otherwise.
+ // [main-thread]
+ void(CLAP_ABI *set_context_info)(const clap_plugin_t *plugin,
+ uint64_t flags,
+ const char *undo_name,
+ const char *redo_name);
+} clap_plugin_undo_t;
+
+typedef struct clap_host_undo {
+ // Begins a long running change.
+ // The plugin must not call this twice: there must be either a call to cancel_change() or
+ // change_made() before calling begin_change() again.
+ // [main-thread]
+ void(CLAP_ABI *begin_change)(const clap_host_t *host);
+
+ // Cancels a long running change.
+ // cancel_change() must not be called without a preceding begin_change().
+ // [main-thread]
+ void(CLAP_ABI *cancel_change)(const clap_host_t *host);
+
+ // Completes an undoable change.
+ // At the moment of this function call, plugin_state->save() would include the current change.
+ //
+ // name: mandatory null terminated string describing the change, this is displayed to the user
+ //
+ // detlas: optional, they are binary blobs used to perform the undo and redo. When not available
+ // the host will save the plugin state and use state->load() to perform undo and redo.
+ //
+ // Note: the provided delta may be used for incremental state saving and crash recovery. The
+ // plugin can indicate a format version id and the validity lifetime for the binary blobs.
+ // The host can use to verify the compatiblilty before applying the delta.
+ // If the plugin is not able to use a delta, a notification should be produced to the user and
+ // the crash recovery will do a best effort job, at least restore the latest saved state.
+ //
+ // Special case: for objects with shared and synchronized state, changes shouldn't be reported
+ // as the host already knows about it.
+ // For example, plugin parameters changes shouldn't produce a call to change_made().
+ //
+ // [main-thread]
+ void(CLAP_ABI *change_made)(const clap_host_t *host,
+ const char *name,
+ const void *redo_delta,
+ size_t redo_delta_size,
+ const void *undo_delta,
+ size_t undo_delta_size);
+
+ // Asks the host to perform the next undo step.
+ // This operation may be asynchronous.
+ // [main-thread]
+ void(CLAP_ABI *undo)(const clap_host_t *host);
+
+ // Asks the host to perform the next redo step.
+ // This operation may be asynchronous.
+ // [main-thread]
+ void(CLAP_ABI *redo)(const clap_host_t *host);
+
+ // Subscribes or unsubscribe to undo context info.
+ // The plugin may only need the context info if it's GUI is shown and it wants to display
+ // undo/redo info.
+ //
+ // Initial state is unsubscribed.
+ //
+ // wants_info: set to true to receive context info
+ //
+ // [main-thread]
+ void(CLAP_ABI *set_wants_context_info)(const clap_host_t *host, bool wants_info);
+} clap_host_undo_t;
+
+#ifdef __cplusplus
+}
+#endif