-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPakettiSamples.lua
5211 lines (4329 loc) · 214 KB
/
PakettiSamples.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
local separator = package.config:sub(1,1) -- Gets \ for Windows, / for Unix
function setSampleZoom(zoom_level)
-- Ensure we have a valid sample selected
local sample = renoise.song().selected_sample
if not sample or not sample.sample_buffer.has_sample_data then
renoise.app():show_status("No sample selected or no sample data")
return
end
-- Switch to sample editor view
renoise.app().window.active_middle_frame = renoise.ApplicationWindow.MIDDLE_FRAME_INSTRUMENT_SAMPLE_EDITOR
local total_length = sample.sample_buffer.number_of_frames
-- For zoom level 1, show the entire sample
if zoom_level == 1 then
sample.sample_buffer.display_start = 1 -- Start at 1, not 0!
sample.sample_buffer.display_length = total_length
renoise.app():show_status("Sample zoom set to 1x")
return
end
local current_start = sample.sample_buffer.display_start
local max_possible_length = total_length - current_start
local display_length = math.min(max_possible_length, math.floor(total_length / zoom_level))
print("Total length:", total_length)
print("Current start:", current_start)
print("Max possible length:", max_possible_length)
print("Display length:", display_length)
sample.sample_buffer.display_length = display_length
renoise.app():show_status(string.format("Sample zoom set to %dx", zoom_level))
end
-- Add keybindings for each zoom level (1x to 11x)
for i = 1, 11 do
renoise.tool():add_keybinding{
name = string.format("Sample Editor:Paketti:Set Sample Zoom " .. formatDigits(2,i) .. "x"),
invoke = function() setSampleZoom(i) end
}
end
-- Add menu entries for each zoom level
for i = 1, 11 do
renoise.tool():add_menu_entry{
name = string.format("Sample Editor:Paketti..:Set Sample Zoom..:Zoom " .. formatDigits(2,i) .. "x"),
invoke = function() setSampleZoom(i) end
}
end
function setSampleZoomFromMidi(midi_value)
local sample = renoise.song().selected_sample
if not sample or not sample.sample_buffer.has_sample_data then
renoise.app():show_status("No sample selected")
return
end
print("MIDI value:", midi_value)
-- Switch to sample editor view
renoise.app().window.active_middle_frame = renoise.ApplicationWindow.MIDDLE_FRAME_INSTRUMENT_SAMPLE_EDITOR
local total_length = sample.sample_buffer.number_of_frames
-- If MIDI value is 0, show the entire sample
if midi_value == 0 then
sample.sample_buffer.display_start = 1
sample.sample_buffer.display_length = total_length
renoise.app():show_status("Sample zoom: Full view")
return
end
-- Quantize MIDI value (1-127) to 11 steps (1x to 11x)
local zoom_level = math.floor((midi_value / 127) * 10) + 1
print("Zoom level:", zoom_level)
local current_start = sample.sample_buffer.display_start
local max_possible_length = total_length - current_start
local display_length = math.min(max_possible_length, math.floor(total_length / zoom_level))
print("Total length:", total_length)
print("Current start:", current_start)
print("Max possible length:", max_possible_length)
print("Display length:", display_length)
sample.sample_buffer.display_length = display_length
renoise.app():show_status(string.format("Sample zoom: %dx", zoom_level))
end
-- Add MIDI mapping for continuous zoom control
renoise.tool():add_midi_mapping{
name = "Paketti:Midi Sample Zoom (1x-11x) [Knob]",
invoke = function(message)
if message:is_abs_value() then
setSampleZoomFromMidi(message.int_value)
end
end
}
function pakettiPreferencesDefaultInstrumentLoader()
local defaultInstrument = preferences.pakettiDefaultXRNI.value
local fallbackInstrument = "Presets" .. separator .. "12st_Pitchbend.xrni"
-- Function to check if a file exists
local function file_exists(file)
local f = io.open(file, "r")
if f then f:close() end
return f ~= nil
end
-- Check if the defaultInstrument is nil or the file doesn't exist
if not defaultInstrument or not file_exists(defaultInstrument) then
defaultInstrument = fallbackInstrument
renoise.app():show_status("The Default XRNI has not been set, using Paketti/Presets/12st_Pitchbend.xrni")
end
print("Loading instrument from path: " .. defaultInstrument)
renoise.app():load_instrument(defaultInstrument)
if preferences.pakettiPitchbendLoaderEnvelope.value then
renoise.song().selected_instrument.sample_modulation_sets[1].devices[2].is_active = true end
if preferences.pakettiLoaderFilterType.value then
renoise.song().selected_instrument.sample_modulation_sets[1].filter_type=preferences.pakettiLoaderFilterType.value end
end
---------------
function pitchBendDrumkitLoader()
-- Prompt the user to select multiple sample files to load
local selected_sample_filenames = renoise.app():prompt_for_multiple_filenames_to_read({"*.wav", "*.aif", "*.flac", "*.mp3", "*.aiff"}, "Paketti PitchBend Drumkit Sample Loader")
-- Check if files are selected, if not, return
if #selected_sample_filenames == 0 then
renoise.app():show_status("No files selected.")
return
end
-- Check for any existing instrument with samples or plugins and select a new instrument slot if necessary
local song = renoise.song()
local current_instrument_index = song.selected_instrument_index
local current_instrument = song:instrument(current_instrument_index)
if #current_instrument.samples > 0 or current_instrument.plugin_properties.plugin_loaded then
song:insert_instrument_at(current_instrument_index + 1)
song.selected_instrument_index = current_instrument_index + 1
end
-- Ensure the new instrument is selected
current_instrument_index = song.selected_instrument_index
current_instrument = song:instrument(current_instrument_index)
-- Load the preset instrument
local defaultInstrument = preferences.pakettiDefaultDrumkitXRNI.value
local fallbackInstrument = "Presets" .. separator .. "12st_Pitchbend_Drumkit_C0.xrni"
-- renoise.app():load_instrument(renoise.tool().bundle_path .. "Presets/12st_Pitchbend_Drumkit_C0.xrni")
renoise.app():load_instrument(defaultInstrument)
-- Ensure the new instrument is selected
current_instrument_index = song.selected_instrument_index
current_instrument = song:instrument(current_instrument_index)
-- Generate the instrument name based on the instrument slot using hexadecimal format, adjusting by -1
local instrument_slot_hex = string.format("%02X", current_instrument_index - 1)
local instrument_name_prefix = instrument_slot_hex .. "_Drumkit"
-- Limit the number of samples to 120
local max_samples = 120
local num_samples_to_load = math.min(#selected_sample_filenames, max_samples)
-- Overwrite the "Placeholder" with the first sample
local selected_sample_filename = selected_sample_filenames[1]
local sample = renoise.song().selected_instrument.samples[1]
local sample_buffer = sample.sample_buffer
local samplefilename = selected_sample_filename:match("^.+[/\\](.+)$")
-- Set names for the instrument and sample
current_instrument.name = instrument_name_prefix
sample.name = samplefilename
-- Load the first sample file into the sample buffer
if sample_buffer:load_from(selected_sample_filename) then
renoise.app():show_status("Sample " .. selected_sample_filename .. " loaded successfully.")
else
renoise.app():show_status("Failed to load the sample.")
end
-- Set additional sample properties
sample.interpolation_mode=preferences.pakettiLoaderInterpolation.value
sample.oversample_enabled = preferences.pakettiLoaderOverSampling.value
sample.autofade = preferences.pakettiLoaderAutofade.value
sample.autoseek = preferences.pakettiLoaderAutoseek.value
sample.oneshot = preferences.pakettiLoaderOneshot.value
sample.loop_mode = preferences.pakettiLoaderLoopMode.value
sample.new_note_action = preferences.pakettiLoaderNNA.value
sample.loop_release = preferences.pakettiLoaderLoopExit.value
-- Iterate over the rest of the selected files and insert them sequentially
for i = 2, num_samples_to_load do
selected_sample_filename = selected_sample_filenames[i]
sample.interpolation_mode=preferences.pakettiLoaderInterpolation.value
sample.oversample_enabled = preferences.pakettiLoaderOverSampling.value
sample.oneshot = preferences.pakettiLoaderOneshot.value
sample.autofade = preferences.pakettiLoaderAutofade.value
sample.autoseek = preferences.pakettiLoaderAutoseek.value
sample.loop_mode = preferences.pakettiLoaderLoopMode.value
sample.oneshot = preferences.pakettiLoaderOneshot.value
sample.new_note_action = preferences.pakettiLoaderNNA.value
sample.loop_release = preferences.pakettiLoaderLoopExit.value
-- Insert a new sample slot if necessary
if #current_instrument.samples < i then
current_instrument:insert_sample_at(i)
end
sample = current_instrument.samples[i]
sample_buffer = sample.sample_buffer
samplefilename = selected_sample_filename:match("^.+[/\\](.+)$")
-- Set names for the sample
sample.name = (samplefilename)
-- Load the sample file into the sample buffer
if sample_buffer:load_from(selected_sample_filename) then
renoise.app():show_status("Sample " .. selected_sample_filename .. " loaded successfully.")
else
renoise.app():show_status("Failed to load the sample.")
end
if preferences.pakettiLoaderMoveSilenceToEnd.value ~= false then PakettiMoveSilence() end
if preferences.pakettiLoaderNormalizeSamples.value ~= false then normalize_selected_sample() end
-- Set additional sample properties
--sample.oversample_enabled = true
--sample.autofade = true
--sample.interpolation_mode = renoise.Sample.INTERPOLATE_CUBIC
end
-- Check if there are more samples than the limit
if #selected_sample_filenames > max_samples then
local not_loaded_count = #selected_sample_filenames - max_samples
renoise.app():show_status("Maximum Drumkit Zones is 120 - was not able to load " .. not_loaded_count .. " samples.")
end
if preferences.pakettiLoaderNormalizeSamples.value ~= false then normalize_all_samples_in_instrument() end
if preferences.pakettiLoaderMoveSilenceToEnd.value ~= false then PakettiMoveSilenceAllSamples() end
-- Load the *Instr. Macros device and rename it
if renoise.song().selected_track.type == 2 then renoise.app():show_status("*Instr. Macro Device will not be added to the Master track.") return else
loadnative("Audio/Effects/Native/*Instr. Macros")
local macro_device = song.selected_track:device(2)
macro_device.display_name = instrument_name_prefix
song.selected_track.devices[2].is_maximized = false
end
-- Additional actions after loading samples
on_sample_count_change()
-- showAutomation()
end
renoise.tool():add_menu_entry{name="--Main Menu:Tools:Paketti..:Instruments..:Paketti PitchBend Drumkit Sample Loader",invoke=function() pitchBendDrumkitLoader() end}
renoise.tool():add_menu_entry{name="--Instrument Box:Paketti..:Paketti PitchBend Drumkit Sample Loader",invoke=function() pitchBendDrumkitLoader() end}
renoise.tool():add_menu_entry{name="--Disk Browser Files:Paketti..:Paketti PitchBend Drumkit Sample Loader",invoke=function() pitchBendDrumkitLoader() end}
renoise.tool():add_keybinding{name="Global:Paketti:Paketti PitchBend Drumkit Sample Loader",invoke=function() pitchBendDrumkitLoader() end}
renoise.tool():add_midi_mapping{name="Paketti:Midi Paketti PitchBend Drumkit Sample Loader",invoke=function(message) if message:is_trigger() then pitchBendDrumkitLoader() end end}
function loadRandomDrumkitSamples(num_samples)
-- Create a more unique seed using both time and microseconds if available
local seed = os.time() * 1000
if os.clock then
-- os.clock() returns CPU time in seconds with microsecond precision
-- Multiply by 10000 and take modulo to get a number between 0-999
seed = seed + math.floor((os.clock() * 10000) % 1000)
end
math.randomseed(seed)
-- Discard first few values as they can be less random
math.random(); math.random(); math.random()
-- Define valid audio file extensions
local valid_extensions = { ".wav", ".flac", ".mp3", ".aif", ".aiff"}
-- Function to check if a file has a valid extension
local function is_valid_audio_file(filename)
for _, ext in ipairs(valid_extensions) do
if filename:lower():match(ext .. "$") then
return true
end
end
return false
end
local function get_files_in_directory(dir)
local files = {}
-- Define valid audio file extensions (can be modified as needed)
local valid_extensions = { ".wav", ".mp3", ".flac", ".aif", ".aiff"}
-- Build the command string based on valid extensions
local command
if package.config:sub(1,1) == "\\" then -- Windows
-- Build Windows command
local patterns = {}
for _, ext in ipairs(valid_extensions) do
table.insert(patterns, string.format('"%s\\*%s"', dir, ext))
end
command = 'dir /b /s ' .. table.concat(patterns, ' ') .. ' 2>nul'
else -- macOS and Linux
-- Build Unix command
local patterns = {}
for _, ext in ipairs(valid_extensions) do
table.insert(patterns, string.format('-iname "*%s"', ext))
end
command = string.format('find "%s" -type f \\( %s \\)',
dir, table.concat(patterns, ' -o '))
end
-- Execute the command and collect the files
local handle = io.popen(command)
for line in handle:lines() do
table.insert(files, line)
end
handle:close()
return files
end
-- Prompt the user to select a folder
local folder_path = renoise.app():prompt_for_path("Select Folder to Randomize DrumKit Loading From")
if not folder_path then
renoise.app():show_status("No folder selected.")
return nil
end
-- Get all valid audio files in the selected directory and subdirectories
local sample_files = get_files_in_directory(folder_path)
-- Check if there are enough files to choose from
if #sample_files == 0 then
renoise.app():show_status("No audio files found in the selected folder.")
return nil
end
-- Check if the selected instrument slot is empty or contains a plugin
local song = renoise.song()
local instrument = song.selected_instrument
if #instrument.samples > 0 or instrument.plugin_properties.plugin_loaded then
song:insert_instrument_at(song.selected_instrument_index + 1)
song.selected_instrument_index = song.selected_instrument_index + 1
instrument = song.selected_instrument
end
local defaultInstrument = preferences.pakettiDefaultDrumkitXRNI.value
local fallbackInstrument = "Presets" .. separator .. "12st_Pitchbend_Drumkit_C0.xrni"
-- renoise.app():load_instrument(renoise.tool().bundle_path .. "Presets/12st_Pitchbend_Drumkit_C0.xrni")
renoise.app():load_instrument(defaultInstrument)
-- Update the instrument reference after loading the instrument
instrument = song.selected_instrument
-- Set the instrument name based on slot
local instrument_slot_hex = string.format("%02X", song.selected_instrument_index - 1)
instrument.name = instrument_slot_hex .. "_Drumkit"
-- Limit the number of samples to load to 120
local max_samples = 120
local num_samples_to_load = math.min(#sample_files, max_samples)
-- Inside the loadRandomDrumkitSamples function:
-- Create a table to store failed loads
local failed_loads = {}
-- Load each sample as a new drum zone with specified properties
for i = 1, num_samples_to_load do
local random_index = math.random(1, #sample_files)
local selected_file = sample_files[random_index]
table.remove(sample_files, random_index)
local file_name = selected_file:match("([^/\\]+)%.%w+$")
if #instrument.samples < i then
instrument:insert_sample_at(i)
end
local sample = instrument.samples[i]
local sample_buffer = sample.sample_buffer
-- Load the sample file into the sample buffer
local success, error_message = pcall(function()
return sample_buffer:load_from(selected_file)
end)
if success and error_message then
sample.name = file_name
sample.interpolation_mode = preferences.pakettiLoaderInterpolation.value
sample.oversample_enabled = preferences.pakettiLoaderOverSampling.value
sample.oneshot = preferences.pakettiLoaderOneshot.value
sample.autofade = preferences.pakettiLoaderAutofade.value
sample.autoseek = preferences.pakettiLoaderAutoseek.value
sample.loop_mode = preferences.pakettiLoaderLoopMode.value
sample.new_note_action = preferences.pakettiLoaderNNA.value
sample.loop_release = preferences.pakettiLoaderLoopExit.value
renoise.app():show_status(formatDigits(3,i) .. ": Loaded sample: " .. file_name)
else
-- Store failed loads with their index and error message
table.insert(failed_loads, {
index = i,
file = selected_file,
error = tostring(error_message)
})
end
end
-- After the loading loop, show summary of failures if any
if #failed_loads > 0 then
print("\n=== FAILED LOADS SUMMARY ===")
print(string.format("Total failures: %d", #failed_loads))
for _, fail in ipairs(failed_loads) do
print(string.format("Sample %03d: %s\nError: %s\n",
fail.index, fail.file, fail.error))
end
print("=========================")
-- Also show in status bar how many failed
renoise.app():show_status(string.format("%d samples failed to load. Check Terminal for details.", #failed_loads))
end
-- Inform the user if any files were left unprocessed
if #sample_files > max_samples then
renoise.app():show_status("Maximum Drumkit Zones is 120 - Additional files were not loaded.")
end
-- Load the Instr. Macros device and rename it based on the drumkit slot name
if song.selected_track.type ~= renoise.Track.TRACK_TYPE_MASTER then
loadnative("Audio/Effects/Native/*Instr. Macros")
-- Get the number of devices after loading
local num_devices = #song.selected_track.devices
-- Access the last device (the one we just added)
local macro_device = song.selected_track:device(num_devices)
macro_device.display_name = instrument.name
macro_device.is_maximized = false
end
-- Call additional actions to update sample count or display automation, if needed
on_sample_count_change()
end
-- Shortcut usage example
renoise.tool():add_menu_entry{name="Main Menu:Tools:Paketti..:Instruments..:Paketti PitchBend Drumkit Sample Loader (Random)",invoke=function() loadRandomDrumkitSamples(120) end}
renoise.tool():add_menu_entry{name="Instrument Box:Paketti..:Paketti PitchBend Drumkit Sample Loader (Random)",invoke=function() loadRandomDrumkitSamples(120) end}
renoise.tool():add_menu_entry{name="Instrument Box:Paketti..:Load DrumKit with Overlap Random",invoke=function() pitchBendDrumkitLoader() DrumKitToOverlay(2) end}
renoise.tool():add_menu_entry{name="Instrument Box:Paketti..:Load DrumKit with Overlap Cycle",invoke=function() pitchBendDrumkitLoader() DrumKitToOverlay(1) end}
renoise.tool():add_menu_entry{name="--Disk Browser Files:Paketti..:Paketti PitchBend Drumkit Sample Loader (Random)",invoke=function() loadRandomDrumkitSamples(120) end}
renoise.tool():add_keybinding{name="Global:Paketti:Paketti PitchBend Drumkit Sample Loader (Random)",invoke=function() loadRandomDrumkitSamples(120) end}
renoise.tool():add_midi_mapping{name="Paketti:Midi Paketti PitchBend Drumkit Sample Loader (Random)",invoke=function(message) if message:is_trigger() then loadRandomDrumkitSamples(120) end end}
-- Function to create a new instrument from the selected sample buffer range
function create_new_instrument_from_selection()
local song = renoise.song()
local selected_sample = song.selected_sample
local selected_instrument_index = song.selected_instrument_index
local selected_instrument = song.selected_instrument
if renoise.song().selected_sample ~= nil then
if not selected_sample.sample_buffer.has_sample_data then
renoise.app():show_error("No sample buffer data found in the selected sample.")
print("Error: No sample buffer data found in the selected sample.")
return
end
print("Sample buffer data is valid.")
local sample_buffer = selected_sample.sample_buffer
if sample_buffer.selection_range == nil or #sample_buffer.selection_range < 2 then
renoise.app():show_error("No valid selection range found.")
print("Error: No valid selection range found.")
return
end
print("Selection range is valid.")
local selection_start = sample_buffer.selection_range[1]
local selection_end = sample_buffer.selection_range[2]
local selection_length = selection_end - selection_start
local bit_depth = sample_buffer.bit_depth
local sample_rate = sample_buffer.sample_rate
local num_channels = sample_buffer.number_of_channels
print(string.format("Sample properties - Bit depth: %d, Sample rate: %d, Number of channels: %d", bit_depth, sample_rate, num_channels))
-- Insert a new instrument right below the current instrument
local new_instrument_index = selected_instrument_index + 1
song:insert_instrument_at(new_instrument_index)
song.selected_instrument_index = new_instrument_index
print("Inserted new instrument at index " .. new_instrument_index)
-- Load the 12st_Pitchbend instrument into the new instrument slot
pakettiPreferencesDefaultInstrumentLoader()
print("Loaded Default XRNI instrument into the new instrument slot.")
local new_instrument = song:instrument(new_instrument_index)
new_instrument.name="Pitchbend Instrument"
new_instrument.macros_visible = true
new_instrument.sample_modulation_sets[1].name="Pitchbend"
print("Configured new instrument properties.")
-- Overwrite the "Placeholder sample" with the selected sample
local placeholder_sample = new_instrument.samples[1]
-- Create sample data and prepare to make changes
placeholder_sample.sample_buffer:create_sample_data(sample_rate, bit_depth, num_channels, selection_length)
local new_sample_buffer = placeholder_sample.sample_buffer
new_sample_buffer:prepare_sample_data_changes()
print("Created and prepared new sample data.")
-- Copy the selection range to the new sample buffer
for channel = 1, num_channels do
for i = 1, selection_length do
new_sample_buffer:set_sample_data(channel, i, sample_buffer:sample_data(channel, selection_start + i - 1))
end
end
print("Copied selection range to the new sample buffer.")
-- Finalize sample data changes
new_sample_buffer:finalize_sample_data_changes()
print("Finalized sample data changes.")
-- Set the loop mode based on preferences.selectionNewInstrumentLoop
local loop_mode_message = ""
if preferences.selectionNewInstrumentLoop.value == 1 then
placeholder_sample.loop_mode = renoise.Sample.LOOP_MODE_OFF
loop_mode_message = "No Loop"
print("Set loop mode to 'Off'.")
elseif preferences.selectionNewInstrumentLoop.value == 2 then
placeholder_sample.loop_mode = renoise.Sample.LOOP_MODE_FORWARD
loop_mode_message = "Forward Loop"
print("Set loop mode to 'Forward'.")
elseif preferences.selectionNewInstrumentLoop.value == 3 then
placeholder_sample.loop_mode = renoise.Sample.LOOP_MODE_REVERSE
loop_mode_message = "Backward Loop"
print("Set loop mode to 'Reverse'.")
elseif preferences.selectionNewInstrumentLoop.value == 4 then
placeholder_sample.loop_mode = renoise.Sample.LOOP_MODE_PING_PONG
loop_mode_message = "PingPong Loop"
print("Set loop mode to 'Ping-Pong'.")
end
-- Set the names for the new instrument and sample
local instrument_slot_hex = string.format("%02X", new_instrument_index - 1)
local original_sample_name = selected_sample.name
new_instrument.name = string.format("%s_%s", instrument_slot_hex, original_sample_name)
placeholder_sample.name = string.format("%s_%s", instrument_slot_hex, original_sample_name)
print(string.format("Set names for the new instrument and sample: %s_%s", instrument_slot_hex, original_sample_name))
-- Load the *Instr. Macros device and rename it
if renoise.song().selected_track.type == 2 then renoise.app():show_status("*Instr. Macro Device will not be added to the Master track.") return else
loadnative("Audio/Effects/Native/*Instr. Macros")
end
local macro_device = song.selected_track:device(2)
macro_device.display_name = string.format("%s_%s", instrument_slot_hex, original_sample_name)
song.selected_track.devices[2].is_maximized = false
print("Loaded and configured *Instr. Macros device.")
placeholder_sample.new_note_action = 1
-- Select the new instrument and sample if preferences.selectionNewInstrumentSelect is true
if preferences.selectionNewInstrumentSelect.value == true then
song.selected_instrument_index = new_instrument_index
song.selected_sample_index = 1
renoise.song().instruments[renoise.song().selected_instrument_index].samples[1].interpolation_mode = preferences.selectionNewInstrumentInterpolation.value
renoise.song().instruments[renoise.song().selected_instrument_index].samples[1].oversample_enabled = preferences.pakettiLoaderOverSampling.value
renoise.song().instruments[renoise.song().selected_instrument_index].samples[1].autofade = preferences.selectionNewInstrumentAutofade.value
renoise.song().instruments[renoise.song().selected_instrument_index].samples[1].autoseek = preferences.selectionNewInstrumentAutoseek.value
renoise.song().instruments[renoise.song().selected_instrument_index].samples[1].oneshot = preferences.pakettiLoaderOneshot.value
print("Selected the new instrument and sample.")
else
local plusOne=renoise.song().selected_instrument_index+1
song.selected_instrument_index = selected_instrument_index
renoise.song().instruments[new_instrument_index].samples[1].interpolation_mode=preferences.selectionNewInstrumentInterpolation.value
renoise.song().instruments[new_instrument_index].samples[1].oversample_enabled=preferences.pakettiLoaderOverSampling.value
renoise.song().instruments[new_instrument_index].samples[1].autofade=preferences.selectionNewInstrumentAutofade.value
renoise.song().instruments[new_instrument_index].samples[1].autoseek=preferences.selectionNewInstrumentAutoseek.value
renoise.song().instruments[new_instrument_index].samples[1].oneshot=preferences.pakettiLoaderOneshot.value
print("Stayed in the current sample editor view of the instrument you chopped out of.")
end
renoise.app():show_status("New instrument created from selection with " .. loop_mode_message .. ".")
else
renoise.app():show_status("There is no sample in the sample slot, doing nothing.")
end
end
renoise.tool():add_keybinding{name="Global:Paketti:Create New Instrument & Loop from Selection",invoke=create_new_instrument_from_selection}
renoise.tool():add_keybinding{name="Sample Editor:Paketti:Create New Instrument & Loop from Selection",invoke=create_new_instrument_from_selection}
renoise.tool():add_menu_entry{name="Sample Editor:Paketti..:Create New Instrument & Loop from Selection",invoke=create_new_instrument_from_selection}
function G01()
local s=renoise.song()
local currTrak=s.selected_track_index
local currPatt=s.selected_pattern_index
local rightinstrument=nil
local rightinstrument=renoise.song().selected_instrument_index-1
if preferences._0G01_Loader.value then
local new_track_index = currTrak + 1
s:insert_track_at(new_track_index)
s.selected_track_index = new_track_index
currTrak = new_track_index
local line=s.patterns[currPatt].tracks[currTrak].lines[1]
line.note_columns[1].note_string="C-4"
line.note_columns[1].instrument_value=rightinstrument
line.effect_columns[1].number_string="0G"
line.effect_columns[1].amount_string="01"
end
end
-------------
function pitchBendMultipleSampleLoader(normalize)
local selected_sample_filenames = renoise.app():prompt_for_multiple_filenames_to_read({"*.wav", "*.aif", "*.flac", "*.mp3", "*.aiff"}, "Paketti PitchBend Multiple Sample Loader")
if #selected_sample_filenames > 0 then
rprint(selected_sample_filenames)
for index, filename in ipairs(selected_sample_filenames) do
local next_instrument = renoise.song().selected_instrument_index + 1
renoise.song():insert_instrument_at(next_instrument)
renoise.song().selected_instrument_index = next_instrument
pakettiPreferencesDefaultInstrumentLoader()
local selected_instrument = renoise.song().selected_instrument
selected_instrument.name = "Pitchbend Instrument"
selected_instrument.macros_visible = true
selected_instrument.sample_modulation_sets[1].name = "Pitchbend"
if #selected_instrument.samples == 0 then
selected_instrument:insert_sample_at(1)
end
renoise.song().selected_sample_index = 1
local filename_only = filename:match("^.+[/\\](.+)$")
local instrument_slot_hex = string.format("%02X", next_instrument - 1)
if selected_instrument.samples[1].sample_buffer:load_from(filename) then
renoise.app():show_status("Sample " .. filename_only .. " loaded successfully.")
local current_sample = selected_instrument.samples[1]
current_sample.name = string.format("%s_%s", instrument_slot_hex, filename_only)
selected_instrument.name = string.format("%s_%s", instrument_slot_hex, filename_only)
current_sample.interpolation_mode = preferences.pakettiLoaderInterpolation.value
current_sample.oversample_enabled = preferences.pakettiLoaderOverSampling.value
current_sample.autofade = preferences.pakettiLoaderAutofade.value
current_sample.autoseek = preferences.pakettiLoaderAutoseek.value
current_sample.loop_mode = preferences.pakettiLoaderLoopMode.value
current_sample.oneshot = preferences.pakettiLoaderOneshot.value
current_sample.new_note_action = preferences.pakettiLoaderNNA.value
current_sample.loop_release = preferences.pakettiLoaderLoopExit.value
renoise.app().window.active_middle_frame = renoise.ApplicationWindow.MIDDLE_FRAME_INSTRUMENT_SAMPLE_EDITOR
G01()
if normalize then normalize_selected_sample() end
--if preferences.pakettiLoaderMoveSilenceToEnd.value ~= false then PakettiMoveSilence() end
--if preferences.pakettiLoaderNormalizeSamples.value ~= false then normalize_selected_sample() end
if renoise.song().selected_track.type == 2 then renoise.app():show_status("*Instr. Macro Device will not be added to the Master track.") return else
loadnative("Audio/Effects/Native/*Instr. Macros")
local macro_device = renoise.song().selected_track:device(2)
macro_device.display_name = string.format("%s_%s", instrument_slot_hex, filename_only)
renoise.song().selected_track.devices[2].is_maximized = false
end
else
renoise.app():show_status("Failed to load the sample " .. filename_only)
end
end
else
renoise.app():show_status("No file selected.")
end
end
renoise.tool():add_menu_entry{name="Main Menu:Tools:Paketti..:Instruments..:Paketti PitchBend Multiple Sample Loader",invoke=function() pitchBendMultipleSampleLoader() end}
renoise.tool():add_menu_entry{name="Instrument Box:Paketti..:Paketti PitchBend Multiple Sample Loader",invoke=function() pitchBendMultipleSampleLoader() end}
renoise.tool():add_menu_entry{name="Disk Browser Files:Paketti..:Paketti PitchBend Multiple Sample Loader",invoke=function() pitchBendMultipleSampleLoader() end}
renoise.tool():add_keybinding{name="Global:Paketti:Paketti PitchBend Multiple Sample Loader",invoke=function() pitchBendMultipleSampleLoader() end}
renoise.tool():add_keybinding{name="Global:Paketti:Paketti PitchBend Multiple Sample Loader (Normalize)",invoke=function() pitchBendMultipleSampleLoader(true) end}
renoise.tool():add_midi_mapping{name="Paketti:Midi Paketti PitchBend Multiple Sample Loader",invoke=function(message) if message:is_trigger() then pitchBendMultipleSampleLoader() end end}
-----------
function noteOnToNoteOff(noteoffPitch)
-- Ensure there are samples in the selected instrument
if #renoise.song().instruments[renoise.song().selected_instrument_index].samples == 0 then
return
end
local instrument = renoise.song().instruments[renoise.song().selected_instrument_index]
-- Check if there are slice markers in any sample
for _, sample in ipairs(instrument.samples) do
if #sample.slice_markers > 0 then
renoise.app():show_status("Operation not performed: Instrument contains sliced samples.")
return
end
end
-- Clear the note-off layer
for i = #instrument.samples, 1, -1 do
if instrument.samples[i].sample_mapping.layer == 2 then
instrument:delete_sample_at(i)
end
end
-- Iterate over each sample in the note-on layer
for i = 1, #instrument.samples do
local note_on_sample = instrument.samples[i]
-- Determine the mute group for the note-on sample
local mute_group = note_on_sample.mute_group
if mute_group == 0 then -- No mute group set
mute_group = 15 -- Set to Group F (group index is 15)
note_on_sample.mute_group = mute_group
end
-- Insert new sample at the end for the note-off layer
local new_sample_index = #instrument.samples + 1
instrument:insert_sample_at(new_sample_index)
renoise.song().selected_sample_index = new_sample_index
local note_off_sample = instrument.samples[new_sample_index]
-- Copy properties from note-on sample to note-off sample
note_off_sample:copy_from(note_on_sample)
note_off_sample.sample_mapping.layer = 2 -- Set layer to note-off
note_off_sample.mute_group = mute_group -- Ensure same mute group
-- Transpose the note-off sample
note_off_sample.transpose = noteoffPitch
note_off_sample.name = note_on_sample.name
end
-- Reset selection to the first note-on sample
renoise.song().selected_sample_index = 1
end
-- Add menu entries for various transpositions
renoise.tool():add_menu_entry{name="Sample Mappings:Paketti..:Copy Sample in Note-On to Note-Off Layer +24",invoke=function() noteOnToNoteOff(24) end}
renoise.tool():add_menu_entry{name="Sample Mappings:Paketti..:Copy Sample in Note-On to Note-Off Layer +12",invoke=function() noteOnToNoteOff(12) end}
renoise.tool():add_menu_entry{name="Sample Mappings:Paketti..:Copy Sample in Note-On to Note-Off Layer",invoke=function() noteOnToNoteOff(0) end}
renoise.tool():add_menu_entry{name="Sample Mappings:Paketti..:Copy Sample in Note-On to Note-Off Layer -12",invoke=function() noteOnToNoteOff(-12) end}
renoise.tool():add_menu_entry{name="Sample Mappings:Paketti..:Copy Sample in Note-On to Note-Off Layer -24",invoke=function() noteOnToNoteOff(-24) end}
renoise.tool():add_menu_entry{name="--Sample Editor:Paketti..:Copy Sample in Note-On to Note-Off Layer +24",invoke=function() noteOnToNoteOff(24) end}
renoise.tool():add_menu_entry{name="Sample Editor:Paketti..:Copy Sample in Note-On to Note-Off Layer +12",invoke=function() noteOnToNoteOff(12) end}
renoise.tool():add_menu_entry{name="Sample Editor:Paketti..:Copy Sample in Note-On to Note-Off Layer",invoke=function() noteOnToNoteOff(0) end}
renoise.tool():add_menu_entry{name="Sample Editor:Paketti..:Copy Sample in Note-On to Note-Off Layer -12",invoke=function() noteOnToNoteOff(-12) end}
renoise.tool():add_menu_entry{name="Sample Editor:Paketti..:Copy Sample in Note-On to Note-Off Layer -24",invoke=function() noteOnToNoteOff(-24) end}
renoise.tool():add_menu_entry{name="--Sample Navigator:Paketti..:Copy Sample in Note-On to Note-Off Layer +24",invoke=function() noteOnToNoteOff(24) end}
renoise.tool():add_menu_entry{name="Sample Navigator:Paketti..:Copy Sample in Note-On to Note-Off Layer +12",invoke=function() noteOnToNoteOff(12) end}
renoise.tool():add_menu_entry{name="Sample Navigator:Paketti..:Copy Sample in Note-On to Note-Off Layer",invoke=function() noteOnToNoteOff(0) end}
renoise.tool():add_menu_entry{name="Sample Navigator:Paketti..:Copy Sample in Note-On to Note-Off Layer -12",invoke=function() noteOnToNoteOff(-12) end}
renoise.tool():add_menu_entry{name="Sample Navigator:Paketti..:Copy Sample in Note-On to Note-Off Layer -24",invoke=function() noteOnToNoteOff(-24) end}
-----------
function addSampleSlot(amount)
for i=1,amount do
renoise.song().instruments[renoise.song().selected_instrument_index]:insert_sample_at(i)
end
end
renoise.tool():add_keybinding{name="Global:Paketti:Add Sample Slot to Instrument",invoke=function() addSampleSlot(1) end}
renoise.tool():add_keybinding{name="Global:Paketti:Add 84 Sample Slots to Instrument",invoke=function() addSampleSlot(84) end}
renoise.tool():add_menu_entry{name="--Sample Navigator:Paketti..:Add 84 Sample Slots to Instrument",invoke=function() addSampleSlot(84) end}
renoise.tool():add_menu_entry{name="Instrument Box:Paketti..:Initialize..:Add 84 Sample Slots to Instrument",invoke=function() addSampleSlot(84) end}
renoise.tool():add_menu_entry{name="Sample Editor:Paketti..:Instruments..:Add 84 Sample Slots to Instrument",invoke=function() addSampleSlot(84) end}
-------------------------------------------------------------------------------------------------------------------------------
function oneshotcontinue()
local s=renoise.song()
local sli=s.selected_instrument_index
local ssi=s.selected_sample_index
if s.instruments[sli].samples[ssi].oneshot
then s.instruments[sli].samples[ssi].oneshot=false
s.instruments[sli].samples[ssi].new_note_action=1
else s.instruments[sli].samples[ssi].oneshot=true
s.instruments[sli].samples[ssi].new_note_action=3 end end
renoise.tool():add_keybinding{name="Global:Paketti:Set Sample to One-Shot + NNA Continue",invoke=function() oneshotcontinue() end}
----------------
function LoopState(number)
renoise.song().selected_sample.loop_mode=number
end
renoise.tool():add_keybinding{name="Sample Editor:Paketti:Set Loop Mode to 1 Off",invoke=function() LoopState(1) end}
renoise.tool():add_keybinding{name="Sample Editor:Paketti:Set Loop Mode to 2 Forward",invoke=function() LoopState(2) end}
renoise.tool():add_keybinding{name="Sample Editor:Paketti:Set Loop Mode to 3 Reverse",invoke=function() LoopState(3) end}
renoise.tool():add_keybinding{name="Sample Editor:Paketti:Set Loop Mode to 4 PingPong",invoke=function() LoopState(4) end}
------------------
function slicerough(changer)
local loopstyle = preferences.WipeSlices.SliceLoopMode.value
local G01CurrentState = preferences._0G01_Loader.value
if preferences._0G01_Loader.value == true or preferences._0G01_Loader.value == false
then preferences._0G01_Loader.value = false
end
manage_sample_count_observer(preferences._0G01_Loader.value)
local s = renoise.song()
local currInst = s.selected_instrument_index
-- Check if the instrument has samples
if #s.instruments[currInst].samples == 0 then
renoise.app():show_status("No samples available in the selected instrument.")
return
end
s.selected_sample_index = 1
local currSamp = s.selected_sample_index
local beatsync_lines={
[2]=64,
[4]=32,
[8]=16,
[16]=8,
[32]=4,
[64]=2,
[128]=1}
local beatsynclines = nil
local dontsync = nil
if s.instruments[currInst].samples[1].beat_sync_enabled then
beatsynclines = s.instruments[currInst].samples[1].beat_sync_lines
else
dontsync=true
beatsynclines = 0
-- Determine the appropriate beatsync lines from the table or use a default value
-- renoise.app():show_status("Please set BeatSync Lines Value before Wipe&Slice, for accurate slicing.")
-- beatsynclines = beatsync_lines[changer] or 64
--return
end
local currentTranspose = s.selected_sample.transpose
-- Clear existing slice markers from the first sample
for i = #s.instruments[currInst].samples[1].slice_markers, 1, -1 do
s.instruments[currInst].samples[1]:delete_slice_marker(s.instruments[currInst].samples[1].slice_markers[i])
end
-- Insert new slice markers
local tw = s.selected_sample.sample_buffer.number_of_frames / changer
s.instruments[currInst].samples[currSamp]:insert_slice_marker(1)
for i = 1, changer - 1 do
s.instruments[currInst].samples[currSamp]:insert_slice_marker(tw * i)
end
-- Apply settings to all samples created by the slicing
for i, sample in ipairs(s.instruments[currInst].samples) do
sample.new_note_action = preferences.WipeSlices.WipeSlicesNNA.value
sample.oneshot = preferences.WipeSlices.WipeSlicesOneShot.value
sample.autoseek = preferences.WipeSlices.WipeSlicesAutoseek.value
sample.mute_group = preferences.WipeSlices.WipeSlicesMuteGroup.value
if dontsync then
sample.beat_sync_enabled = false
else
local beat_sync_mode = preferences.WipeSlices.WipeSlicesBeatSyncMode.value
-- Validate the beat_sync_mode value
if beat_sync_mode < 1 or beat_sync_mode > 3 then
sample.beat_sync_enabled = false -- Disable beat sync for invalid mode
else
sample.beat_sync_mode = beat_sync_mode
-- Only set beat_sync_lines if beatsynclines is valid
if beatsynclines / changer < 1 then
sample.beat_sync_lines = beatsynclines
else
sample.beat_sync_lines = beatsynclines / changer
end
-- Enable beat sync for this sample since dontsync is false and mode is valid
sample.beat_sync_enabled = true
end
end
sample.loop_mode = preferences.WipeSlices.WipeSlicesLoopMode.value
local instrument=renoise.song().selected_instrument
if loopstyle == true then
if i > 1 then -- Skip original sample
-- Get THIS sample's length
local max_loop_start = sample.sample_buffer.number_of_frames
-- Set loop point to middle of THIS sample
local slice_middle = math.floor(max_loop_start / 2)
sample.loop_start = slice_middle
end
end
sample.loop_release = preferences.WipeSlices.WipeSlicesLoopRelease.value
sample.transpose = currentTranspose
sample.autofade = preferences.WipeSlices.WipeSlicesAutofade.value
sample.interpolation_mode = 4
sample.oversample_enabled = true
end
-- Ensure beat sync is enabled for the original sample
-- s.instruments[currInst].samples[1].beat_sync_lines = 128
if dontsync ~= true then
s.instruments[currInst].samples[1].beat_sync_lines = beatsynclines
s.instruments[currInst].samples[1].beat_sync_enabled = true
else end
-- Show status with sample name and number of slices
local sample_name = renoise.song().selected_instrument.samples[1].name
local num_slices = #s.instruments[currInst].samples[currSamp].slice_markers
renoise.app():show_status(sample_name .. " now has " .. num_slices .. " slices.")
preferences._0G01_Loader.value=G01CurrentState
manage_sample_count_observer(preferences._0G01_Loader.value)
end
function wipeslices()
-- Retrieve the currently selected instrument index
local s = renoise.song()
local currInst = s.selected_instrument_index
-- Check if there is a valid instrument selected
if currInst == nil or currInst == 0 then
renoise.app():show_status("No instrument selected.")
return
end
-- Check if there are any samples in the selected instrument
if #s.instruments[currInst].samples == 0 then
renoise.app():show_status("No samples available in the selected instrument.")
return
end
-- Ensure we iterate over all samples in the selected instrument
local instrument = s.instruments[currInst]
for i = 1, #instrument.samples do
local sample = instrument.samples[i]
-- Check if the sample is valid
if sample then
local slice_markers = sample.slice_markers
local number = #slice_markers
-- Delete each slice marker if there are any
if number > 0 then
for j = number, 1, -1 do
sample:delete_slice_marker(slice_markers[j])
end
end
-- Set loop mode to Off and disable beat sync for the sample
sample.loop_mode = renoise.Sample.LOOP_MODE_OFF
sample.beat_sync_enabled = false
end
end
-- Confirm slices have been wiped
renoise.app():show_status(instrument.name .. " now has 0 slices.")
end