-
-
Notifications
You must be signed in to change notification settings - Fork 52
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve note selections and macro operations #448
Conversation
- Reimplement `array_to_selection()`, `selection_code_update()`, `selection_load()`, `selection_load_ext()` and `selection_to_array()` to utilize buffers; - The program will now try to compress selection code strings and encode to base64 before saving to the history; - A selection code will not be compressed if the compressed string is longer than the original string; - Selection code (de)compression is implemented in `try_compress_selection()` and `try_decompress_selection()`; - Replace if else statements in `action_redo()` and `action_redo()` with switch case statements.
This will effectively allow users to undo and redo macro operations.
"Set panning", "Set pitch", "Set velocity", "Replace key" and "Reset" macros are now much faster.
Thank you for the pull request! These are some great improvements. |
- This should reduce memory usage when there is a selection and reduce the amount of `try_compress_selection()` calls; - Add a new function `macro_column_count()` to replace `string_count("-1", ...)` in some macros; - The selection code will be decompressed when exporting to a pattern file or displaying in the "Secret clipboard editor" dialog.
- Add a new function `selection_to_array_ext()` which generate a selection code array based from the current selections; - Utilize `selection_to_array_ext()` in macros instead of `selection_to_array()` for selection code; - This method works well for selection of less than 20k notes.
…tion - The text "(CANNOT BE UNDONE)" is changed to "(CAN BE UNDONE)"
…nd disable surface depth
…ng area - This also improve the speed when pasting large selection to a existing area; - This doesn't happen when the copy-on-write option is turned off, but it will affect all arrays so I keep it on; - Move the code to check and extend the `selection_exists` array to separate functions.
- Initialize cells in the `add_block()` function in the reverse order; - When opening a song, the song's notes will be put into a custom-growth array before being added to the program in the reverse order/
- Move `array_grow_then_set()` to a separate file; - Utilize `array_grow_then_set()` in `selection_to_array_ext()` function; - Introduce a new function `selection_load_from_array()` to load the selection directly from a selection code array, which is the opposite of `selection_to_array_ext()`; - Use `selection_to_array_ext()` in nonsimple macros.
Ready to merge if no problems are found. I updated the first comment, so please re-read it. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks great!! Thanks a lot for working on these changes. 😄
I think we can draft a pre-release soon so folks can test these changes more thorougly before we roll them out to everyone. :)
This pull request aims to improve the performance of selection-related actions, macro operations and song loading. It also allows users to undo and redo macro changes.
Changes
array_to_selection()
,selection_code_update()
,selection_load()
,selection_load_ext()
,selection_to_array()
,region_code_get()
andregion_code_load()
to utilize buffers because buffer functions are much faster than string functions.TheTheselection_code
string is kept uncompressed.selection_code
variable is also compressed as well. Selection code (de)compression is implemented intry_compress_selection()
andtry_decompress_selection()
. (De)compression overhead is insignificant. A selection code will not be compressed if the compressed string is longer than the original string or if the original string is short (less than 16 characters).if else
statements inaction_undo()
andaction_redo()
withswitch case
statements.array_length(arr_data)
instead ofstring_count("|", str)
to calculatetotal_vals
; usemacro_column_count()
to replacestring_count("-1", ...)
in some macros;Alt
is pressed.script_execute()
, and disable surface depth.@
accessor or turning off copy-on-write. Because copy-on-write is a project-wide option that will affect all arrays in the program, I decided to keep it on;selection_exists
array to separate functions.array_grow_then_set()
to set a value at an index to an array and grow the array by the factor of 1.5 when necessary, which should give a better time complexity thanarray_push()
.Bugfixes