/usr/share/denemo/actions/denemo.scm is in denemo-data 1.1.0-1ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | (use-modules (srfi srfi-1)) ; List library
(use-modules (srfi srfi-8)) ; Returning and Accepting Multiple Values
(use-modules (srfi srfi-13)) ; String library
(use-modules (ice-9 regex)) ; regular expressions
(use-modules (ice-9 optargs)) ; optional (define* ) arguments
(use-modules (ice-9 q)) ; queue module
;;; for guile 2.0 compatibility define the define-once procedure to work in guile 1.8
(cond-expand
(guile-2) ; nothing
(else ; guile < 2.0
(define-macro (define-once sym exp)
`(define ,sym
(if (module-locally-bound? (current-module) ',sym)
,sym
,exp)))))
(define (use-denemo string)
(load-from-path (string-append string ".scm")))
;(bindtextdomain "denemo" "/usr/local/share/locale") find prefix!!!
(define (_ msg) (gettext msg "denemo"))
;Load additional Denemo functions. These are technically in the same global namespace as functions defined directly in denemo.scm.
(use-denemo "scheme") ; Standalone functions and general Scheme helpers, not tied to any Denemo C-functions or Scheme functions which are not in the file itself.
(use-denemo "ans") ; Abstract Note System for pitch calculations
(use-denemo "notationmagick") ; Insert and modify, mostly randomized, music. Depends on ans.scm
(use-denemo "abstractionmovement") ; Create an abstract form of the music in Scheme for further analysing. Depends on ans.scm
(use-denemo "commandlist") ; Provide scrolling up and down through a list of commands. An extended toggle through multiple states.
(use-denemo "helpsystem") ; An online help system to display text in the second status bar
(use-denemo "selection") ; Selections, Copy and Paste
(use-denemo "rhythmandmeter") ; Rhythm, Durations, Ticks, Meter, Conversion between Lilypond, Tick and Denemo duration.
(use-denemo "directives") ; Functions to handle the built-in Denemo directives.
(use-denemo "types") ; Denemo type related functions and tests. ("CHORD", "DIRECTIVE" etc.)
(use-denemo "moveandsearch") ; Move the cursor to all kinds of positions, loop through the score to find things.
;(use-denemo "deprecated") ; Old and outdated scripts
(use-denemo "fonts") ; define font utf-8 value
(use-denemo "wysiwyg") ; procedures for performing wysiwyg operations on the print view window
;Denenmo.scm is for functions that
;; directly influence the Denemo GUI
;; or the keybindings
;; work with Denemo controls
;; are not part of a set currently (Creating a whole new file for just one function will not improve anything)
;; leftovers from the "one big denemo.scm file" time :)
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;Needed to see if lyimport / mxml import is called from inside or outside Denemo
(define Denemo #t)
(define DenemoKeypressActivatedCommand #f) ;;;is true while a keyboard shortcut is invoking a script, unless the script has set it to #f
(define (lyimport::load-file pathname filename)
(load (string-append DENEMO_ACTIONS_DIR "lyimport.scm"))
(set! lyimport::pathname pathname)
(set! lyimport::filename filename)
(eval-string (lyimport::import))
(d-MoveToMovementBeginning))
; GetUniquePairs is a function that takes a list and combines each value with any other, but without duplicates and in order.
;;; (a b c d) -> ab ac ad, bc bd, cd
(define (GetUniquePairs listy)
(define returnList (list #f)) ; we need a non-empty list to append! to
(define maxsteps (- (length listy) 1))
(define (subMap memberA counter)
(define subList '())
(define (appendPair memberB)
(append subList (cons memberA memberB)))
(map appendPair (list-tail listy (+ 1 counter))));subMap
(let loop ((counter 0))
(if (= counter maxsteps)
(list-tail returnList 1) ; get rid of the initial #f for the final return value
(begin (append! returnList (subMap (list-ref listy counter) counter)) (loop (+ counter 1)))))); GetUniquePairs
; GetUniquePairsFilterLowest is a GetUniquePairs variant that sorts the list ascending and returns only those items which begin with the lowest value. In musical terms only pitches with the bass-note.
;;; (a b c d) -> ab ac ad
(define* (GetUniquePairsFilterLowest listy #:optional (minimum min))
(define lowest (apply minimum listy))
(define returnList (GetUniquePairs listy)) ; sort the list ascending, so the lowest note/bass-note is the first.
;(filter (lambda (x) (if (equal? (car x) lowest) #t #f)) returnList) ; return only those pairs which has lowest value as car
(filter (lambda (x) (if (or (equal? (car x) lowest) (equal? (cdr x) lowest)) #t #f)) returnList)) ; return only those pairs which has the lowest value as car or cdr.
;Get Lilypond Objects as strings. Currently just manual converting for single cases.
(define (GetContextAsLilypond) ; You will likely need (GetTypeAsLilypond) also. TODO: Create a real function!
"Staff")
(define (GetTypeAsLilypond) ; You will likely need (GetContextAsLilypond) also. TODO: Replace with real information, derived from Lilypond
(define type (string->symbol (d-GetType)))
(case type ; Convert Denemo type to lilypond type
((TIMESIG) "TimeSignature")
((CHORD) "NoteHead") ; Rests will be detected as CHORD but it will not work
((KEYSIG) "KeySignature")
((CLEF) "Clef")
(else #f)))
; create documentation for a command - this version just prints out basic info
;;DocumentCommand
(define (DocumentCommand name)
(let ((help (d-GetHelp name)))
(if (boolean? help)
(begin
(set! help (string-append "Help-d-" name))
(let ((sym (with-input-from-string help read)))
(if (defined? sym)
(set! help (eval sym (current-module)))
(set! help "No help")
))))
(format #t "~%~%Command ~A~%Tooltip ~A~%Label ~A~%Menu Path ~A~%" name help (d-GetLabel name) (d-GetMenuPath name))))
; Get highest and lowest note as lilypond syntax. Works on Chords and Single Notes.
;; GetNotes returns a string of lily-notes from low to high. Make a list out of them and refer to the first (0) element or last (length -1) one.
;; Returns #f if not a chord or appending
(define (GetLowestNote)
(if (Note?)
(list-ref (string-tokenize(d-GetNotes)) 0 )
#f))
(define (GetHighestNote)
(if (Note?)
(list-ref (reverse (string-tokenize(d-GetNotes))) 0)
#f))
; Get highest and lowest note at or before cursor as lilypond syntax. Works on Chords and Single Notes and in appending position.
;; Returns #f if not a chord, when appending reports chord before cursor
(define (GetLowestAvailableNote)
(define notes (d-GetNotes))
(if notes
(list-ref (string-tokenize notes) 0 )
#f))
(define (GetHighestAvailableNote)
(define notes (d-GetNotes))
(if notes
(list-ref ((reverse string-tokenize notes)) 0 )
#f))
(define MusicalSymbols-notes (vector Denemo-Note0 Denemo-Note1 Denemo-Note2 Denemo-Note3 Denemo-Note4 Denemo-Note5 Denemo-Note6 Denemo-Note7 Denemo-Note8))
(define MusicalSymbols-sharp "\xe2\x99\xaf") ;;;may need to specify Denemo font for windows
(define MusicalSymbols-flat "\xe2\x99\xad")
(define cue-Advanced (_ "Advanced"))
(define cue-PlaceAbove (_ "Place above staff"))
(define cue-PlaceBelow (_ "Place below staff"))
(define cue-SetRelativeFontSize (_ "Set Relative Font Size"))
(define cue-OffsetPositionAll (_ "Offset Position (All)"))
(define cue-OffsetPositionOne (_ "Offset Position (One)"))
(define cue-EditText (_ "Edit Text"))
(define cue-SetPadding (_ "Set Padding"))
(define cue-Delete (_ "Delete"))
(define cue-Edit (_ "Edit"))
(define cue-RestorePosition (_ "Restore Position"))
;(define cue- "")
;;;;;;;;;;;;;;;; Double-Stroke for sequencing keypresses. By Nils Gey June 2010
;One parameter for the GUI-version or help window. This is the version that appears if someone clicks on the menu version.
;Ten optional parameters, each a pair with car = Pretty String for fallback-gui, cdr = scheme-command. Give (cons "" False) to skip over one slot.
;gui-version can be #f to generate a gui, or any command to be executed from the menu or if the gui/help is invoked.
(define* (Doublestroke gui-version #:optional (first (cons "" False)) (second (cons "" False)) (third (cons "" False)) (fourth (cons "" False)) (fifth (cons "" False)) (sixth (cons "" False)) (seventh (cons "" False)) (eighth (cons "" False)) (ninth (cons "" False)) (tenth (cons "" False)))
;Rebind a wrapper key, check if pair or string
(define (Bind command parameter)
(set-cdr! command (cdr parameter)))
; Short command to invoke the gui which tests if the author specified his own first.
(define (doublestroke::invokegui)
(if gui-version
(gui-version)
(begin FallBack ; create a gui from the given parameters, test for cancel-button #f
(set! gui-version (apply RadioBoxMenu (delete (cons "" False)
(list first second third fourth fifth sixth seventh eighth ninth tenth
))))
(if gui-version
(gui-version) ; execute the returned command
#f)))) ; cancel-button, abort the process
(define (doublestroke::showhelp lockin?)
(define helpstring "")
(define (build parameter numberstring)
(if (equal? (car parameter) "")
""
(string-append "[" numberstring "]" (car parameter) " ")))
(set! helpstring (string-append
(if lockin?
"[Esc]Reset keys "
"[Space]Show GUI [Enter]Lock keys in ")
(build first "1")
(build second "2")
(build third "3")
(build fourth "4")
(build fifth "5")
(build sixth "6")
(build seventh "7")
(build eighth "8")
(build ninth "9")
(build tenth "0")
(if lockin? "" "[Other]Abort")))
(if lockin?
(Help::Push (cons 'doublestroke helpstring))
(Help::Push (cons 'doublestroketemp helpstring))))
; The real action. Wait for a keypress and decide what do with it afterwards, UnsetMark triggers the GUI, AddNoteToChord locks-in the commands and makes them permanent keybindings.
(doublestroke::invokegui)) ; DenemoKeypressActivated has been dropped as it is not working
;;;;;;;;;; SetHeaderField sets a field in the movement header
;;;;;;;;;; the directive created is tagged Score or Movement depending on the field
(define* (SetHeaderField field #:optional (title #f) (escape #t))
(let ((current "") (thematch #f) (tag "") (type "") (fieldname ""))
(if (or (equal? field "subtitle") (equal? field "subsubtitle") (equal? field "piece"))
(begin
(set! type "Movement")
(if (equal? field "subtitle")
(set! fieldname "Title"))
(if (equal? field "subsubtitle")
(set! fieldname "Subtitle"))
(if (equal? field "piece")
(set! fieldname "Piece")))
(begin
(set! type "Score")
(set! fieldname (string-capitalize field))))
(set! tag (string-append type fieldname))
(set! current (d-DirectiveGet-header-display tag))
(if (not current)
(set! current ""))
(if (not title)
(set! title (d-GetUserInput (string-append type " " fieldname)
(string-append "Give a name for the " fieldname " of the " type) current #f)))
(if title
(begin
(d-SetSaved #f)
(if (string-null? title)
(d-DirectiveDelete-header tag)
(let ((movement (number->string (d-GetMovement))))
(if escape (set! title (scheme-escape title )))
(d-DirectivePut-header-override tag (logior DENEMO_OVERRIDE_TAGEDIT DENEMO_OVERRIDE_GRAPHIC))
(d-DirectivePut-header-display tag (html-escape title))
(d-DirectivePut-header-postfix tag (string-append field " = \\markup { \\with-url #'\"scheme:(d-GoToPosition " movement " 1 1 1)(d-" type fieldname ")\" " "\"" title "\"}\n")))))
(disp "Cancelled\n"))))
; SetScoreHeaderField sets a field in the score header
(define* (SetScoreHeaderField field #:optional (title #f) (escape #t) (full-title #f))
(let ((current "") (tag ""))
(set! tag (string-append "Score" (string-capitalize field)))
(set! current (d-DirectiveGet-scoreheader-display tag))
(if (not current)
(set! current ""))
(if (not title)
(set! title (d-GetUserInput (string-append "Score " field)
(_ "Give a name applying to the whole score") current #f)))
(if title
(begin
(d-SetSaved #f)
(if escape (set! title (scheme-escape title )))
(if (string-null? title)
(d-DirectivePut-scoreheader-override tag 0)
(begin
(d-DirectivePut-scoreheader-override tag (logior DENEMO_OVERRIDE_TAGEDIT DENEMO_OVERRIDE_GRAPHIC))
(d-DirectivePut-scoreheader-display tag (html-escape title))))
(if (not full-title)
(set! full-title (string-append " \\markup { \\with-url #'\"scheme:(d-" tag ")\" " "\"" title "\"}\n")))
(d-DirectivePut-scoreheader-postfix tag (string-append field " = " full-title "\n"))))))
(define (CreateButton tag label)
(d-DirectivePut-score-override tag (logior DENEMO_OVERRIDE_MARKUP DENEMO_OVERRIDE_GRAPHIC))
(d-DirectivePut-score-display tag label))
;;; play a note a mid-volume 80
(define* (PlayNote pitch duration #:optional (volume " 80"))
(d-OutputMidiBytes (string-append "0x9$ " pitch " " volume))
(d-OneShotTimer duration (string-append "(d-OutputMidiBytes " "\"" "0x8$ " pitch " 0" "\"" ")" )))
(define (DenemoFirst)
(begin
(display "DenemoFirst")))
(define (DenemoGoBack)
(begin
(d-AdjustPlaybackStart -1.0)
(d-RefreshDisplay)))
(define (DenemoPrevious)
(begin
(d-AdjustPlaybackEnd -1.0)
(d-RefreshDisplay)))
(define (DenemoRewind)
(begin
(display "DenemoRewind")))
(define (DenemoStop)
(begin
(set! Playback::Loop #f)
(d-Stop)))
(define (DefaultDenemoPlay)
(d-Play "(display \"Here endeth a scripted playback\")"))
(define (DenemoPlay)
(DefaultDenemoPlay))
(define (DenemoPause)
(begin
(display "DenemoPause")))
(define (DenemoGoForward)
(begin
(d-AdjustPlaybackEnd 1.0)
(d-RefreshDisplay)))
(define (DenemoNext)
(begin
(d-AdjustPlaybackStart 1.0)
(d-RefreshDisplay)))
(define (DenemoForward)
(begin
(display "DenemoForward")))
(define (DenemoLast)
(begin
(display "DenemoLast")))
(define Playback::Loop #f)
(define (DenemoLoop)
(begin
(display "DenemoLoop")
(set! Playback::Loop #t)
(d-Play "(if Playback::Loop (DenemoLoop))")))
(define DenemoTempo::Value 1.0)
(define (DenemoTempo)
(begin
(d-MasterTempo DenemoTempo::Value)))
(define DenemoVolume::Value 1.0)
(define (DenemoVolume)
(begin
(d-MasterVolume DenemoVolume::Value)))
(define (DenemoSetPlaybackStart)
(begin
(if (boolean? (d-GetMidiOnTime))
(d-RecreateTimebase))
(if (number? (d-GetMidiOnTime))
(begin (d-SetPlaybackInterval (d-GetMidiOnTime) #t)
(d-RefreshDisplay)))))
(define (DenemoSetPlaybackEnd)
(begin
(if (boolean? (d-GetMidiOffTime))
(d-RecreateTimebase))
(d-PrevObject)
(if (number? (d-GetMidiOffTime))
(begin (d-SetPlaybackInterval #t (d-GetMidiOffTime))
(d-RefreshDisplay)))))
(define (DenemoSetPlaybackIntervalToSelection)
(begin
(let ((start #f)(end #f))
(set! end (d-GetMidiOffTime))
(if (boolean? end)
(d-RecreateTimebase))
(set! end (d-GetMidiOffTime))
(if (boolean? end)
(d-WarningDialog (_ "End the selection at a note"))
(begin
(d-GoToMark)
(set! start (d-GetMidiOnTime))
(if (boolean? start)
(d-WarningDialog (_ "Start the selection at a note"))
(begin
(if (< end start)
(d-SetPlaybackInterval end start)
(d-SetPlaybackInterval start end))
(d-RefreshDisplay))))))))
;;;
(define (CurrentMeasureOnTime)
(define ontime #f)
(d-PushPosition)
(while (d-MoveToStaffUp))
(let staffloop ()
(while (d-PrevObjectInMeasure))
(let loop ((this (d-GetMidiOnTime)))
(if this
(if ontime
(if (< this ontime)
(set! ontime this))
(set! ontime this))
(if (d-NextObjectInMeasure)
(loop (d-GetMidiOnTime)))))
(if (d-MoveToStaffDown)
(staffloop)))
(d-PopPosition)
ontime)
(define (CurrentMeasureOffTime)
(define offtime #f)
(d-PushPosition)
(while (d-MoveToStaffUp))
(let staffloop ()
(while (d-NextObjectInMeasure))
(let loop ((this (d-GetMidiOffTime)))
(if this
(if offtime
(if (> this offtime)
(set! offtime this))
(set! offtime this))
(if (d-PrevObjectInMeasure)
(loop (d-GetMidiOffTime)))))
(if (d-MoveToStaffDown)
(staffloop)))
(d-PopPosition)
offtime)
; DenemoConvert
(define (DenemoConvert)
(define MidiNoteStarts (make-vector 256 #f))
(defstruct Note name start duration)
(define Notes '())
(if (d-RewindRecordedMidi)
(let loop ((note #f)(tick 0))
(set! note (d-GetRecordedMidiNote))
(if note
(begin
(set! tick (d-GetRecordedMidiOnTick))
(if (< tick 0)
(let ((on (vector-ref MidiNoteStarts note)))
(if on
(begin
(set! Notes (cons (list (make-Note 'name note 'start on 'duration (- (- tick) on))) Notes))
(vector-set! MidiNoteStarts note #f)
(loop note tick))
(format #t "An off with no On\n")))
(let ((on (vector-ref MidiNoteStarts note)))
(if on
(format #t "An on when already on\n")
(begin
(vector-set! MidiNoteStarts note tick)
(loop note tick)
)))))
(begin ;;;;;; finished processing the notes
(if (> (length Notes) 0)
(let ()
(define (add-note note)
(if (Note? note)
(begin
(eval-string (string-append "(d-InsertNoteInChord \"" (d-GetNoteForMidiKey (Note.name note)) "\")")))
(format #t "\tNo note to add note ~a ~a to\n" (Note.name note) (Note.duration note))))
(define (insert-note name dur)
(let ((base (duration::GuessBaseNoteInTicks dur)))
(format #t "have ~a ~a \n" base dur)
(if base
(begin
(if (> (- dur base) (- (* 2 base) dur))
(set! base (* base 2)))
(begin
;(format #t "Create note ~a ~a\n" (d-GetNoteForMidiKey name) (duration::ticks->denemo base))
(eval-string (string-append "(d-Insert" (duration::ticks->denemo base)")"))
(d-PutNoteName (d-GetNoteForMidiKey name)))))))
(set! Notes (reverse Notes))
;;;;;; change the list of Notes into a list of chords
(let loop ((index 0))
;;;;;;;;;;; overlap decides if two notes should be a chord
(define (overlap n1 n2)
(if (list? n1)
(set! n1 (car n1)))
(< (abs (- (Note.start n1) (Note.start n2))) 50))
;;;;;;;;;;;;;;;;;; end of overlap
;(format #t "Number of notes ~a\n" index)
(let ((note1 (list-ref Notes index))
(note2 #f))
(if (> (length Notes) (+ 1 index))
(begin
(set! note2 (list-ref Notes (+ 1 index)))
(if (overlap note1 (car note2))
(begin
(list-set! Notes index (cons (car note2) note1))
(set! Notes (delq note2 Notes)))
(begin
;(list-set! Notes index (list note1))
(set! index (+ index 1))))
(loop index))))) ;;;;;;; end of changing Notes to list of chords
;;;loop through the chords, getting a good duration value, the duration from one to the next and inserting
(let loop ((index 0))
(if (> (length Notes) (+ 1 index))
(let ((chord1 (list-ref Notes index))
(chord2 #f)
(duration #f))
(if (> (length Notes) (+ 1 index))
(begin
(set! chord2 (list-ref Notes (+ 1 index)))
(set! duration (- (Note.start (car chord2)) (Note.start (car chord1))))
(format #t "With duration ~a\n" duration)
(insert-note (Note.name (car chord1)) duration)
(for-each add-note (cdr chord1))
(set! index (+ index 1))
(loop index))
(insert-note (Note.name (car chord1)) (Note.duration (car chord1)))))))
(format #t "End of processing\n"))))));;;;;if rewind succeeded
(format #t "No notes found in recording\n")))
;;;;;;;;;;;;;;;;;;;;;;;;
(define (DenemoPrintAllHeaders)
(if (or (d-Directive-score? "LilyPondInclude:book-titling.ily") (d-Directive-score? "LilyPondInclude:simplified-book-titling.ily"))
(begin
(d-WarningDialog "You had book titles for this score. These are being dropped. To re-instate them, re-set the title as a book title.")
(d-DirectiveDelete-score "LilyPondInclude:book-titling.ily")
(d-DirectiveDelete-score "LilyPondInclude:simplified-book-titling.ily")))
(d-DirectivePut-paper-postfix "PrintAllHeaders" "\nprint-all-headers = ##t\n"))
(define* (SetQuarterCommaMeanTone #:optional (thestep 0))
(let ((C "67 ")
(C# "43 ")
(Db "84 ")
(D "60 ")
(D# "36 ")
(Eb "78 ")
(E "53 ")
(E# "29 ")
(F "71 ")
(F# "46 ")
(Gb "88 ")
(G "64 ")
(G# "40 ")
(Ab "81 ")
(A "57 ")
(A# "32 ")
(Bb "74 ")
(B "50 ")
(Cb "91 ")
(B# "26 "))
(cond ((= thestep 0)
;Eb-G#
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C C# D Eb E F F# G G# A Bb B " 0xf7")))
((= thestep 1)
;D#-Bb
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C C# D D# E F F# G G# A Bb B " 0xf7")))
((= thestep 2)
;A#-F
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C C# D D# E F F# G G# A A# B " 0xf7")))
((= thestep 3)
;E#-C
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C C# D D# E E# F# G G# A A# B " 0xf7")))
((= thestep 4)
;B#-G
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " B# C# D D# E E# F# G G# A A# B " 0xf7")))
((= thestep -1)
;Ab-C#
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C C# D Eb E F F# G Ab A Bb B " 0xf7")))
((= thestep -2)
;Db-F#
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C Db D Eb E F F# G Ab A Bb B " 0xf7")))
((= thestep -3)
;Gb-B
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C Db D Eb E F Gb G Ab A Bb B " 0xf7")))
((= thestep -4)
;Cb-E
(d-OutputMidiBytes (string-append "0xf0 0x7f 0x7f 0x08 0x08 0x03 0x7f 0x7f " C Db D Eb E F Gb G Ab A Bb Cb " 0xf7"))))))
(define MIDI-shortcuts::alist '(("" . "")))
(define (SetMidiShortcut shortcut command)
(set! MIDI-shortcuts::alist (assoc-set! MIDI-shortcuts::alist shortcut command)))
(SetMidiShortcut "FootpedalUp" #f);;;set these to a command name, e.g. InsertA for the action (d-InsertA)
(SetMidiShortcut "FootpedalDown" #f)
(define (MIDI-shortcut::controller type value)
;;(format #t "controller type ~a value ~a\n" type value)
(cond ((and (equal? type 64) (equal? value 127))
(assoc-ref MIDI-shortcuts::alist "FootpedalDown"))
((and (equal? type 64) (equal? value 0))
(assoc-ref MIDI-shortcuts::alist "FootpedalUp"))
((equal? type 1)
(let ((thestep (round(/ (- value 64) 16))))
(PlayNote
(number->string (+ 60 (* 4 thestep) ))
100)
(SetQuarterCommaMeanTone thestep)
(d-SetEnharmonicPosition thestep)
(d-RefreshDisplay)
#f)
)
(else #f)))
(define Pitchbend::commandUp "(d-CursorRight)")
(define Pitchbend::commandDown "(d-CursorLeft)")
(define Pitchbend::timer 0)
(define (MIDI-shortcut::pitchbend value)
;(format #t "pitch bend value ~a\n" value)
(cond ((> value 64)
(if Pitchbend::commandUp
(eval-string Pitchbend::commandUp)))
((< value 64)
(if Pitchbend::commandDown
(eval-string Pitchbend::commandDown)))))
; Create a music-object that holds various information. This is the smallest, single object
(defstruct musobj pitch movement staff measure horizontal metricalp start duration baseduration dots)
; Actually create the music-object. In this process various information are collected.
;;(define testob (CreateMusObj)) (set!musobj.duration testob 256) (display (musobj.start testob))
(define (CreateMusObj)
(if (MeasureEmpty?)
; Measure emtpy, create whole measure rest musobj
(make-musobj 'pitch (list +inf.0)
'movement (d-GetMovement)
'staff (d-GetStaff)
'measure (d-GetMeasure)
'horizontal (d-GetHorizontalPosition)
'metricalp 1
'start 0
'duration (duration::GetWholeMeasureInTicks)
'baseduration (duration::GetWholeMeasureInTicks)
'dots 0
)
; Measure not emtpy
(make-musobj 'pitch (ANS::GetChordNotes)
'movement (d-GetMovement)
'staff (d-GetStaff)
'measure (d-GetMeasure)
'horizontal (d-GetHorizontalPosition)
'metricalp (duration::GetMetricalPosition)
'start (d-GetStartTick)
'duration (d-GetDurationInTicks)
'baseduration (d-GetBaseDurationInTicks)
'dots (d-GetDots)
)))
(define (CreateMusObjCursorNote)
(define note(GetNoteUnderCursorAsLilypond))
(define return (CreateMusObj))
(if note
(begin (set!musobj.pitch return (list (ANS::Ly2Ans (string->symbol note))))
return)
#f))
;Find the lowest pitch from the parameters, which are musobj.
(define (MusObj::minPitch . objects)
(reduce
(lambda (x y)
(if (< (car (musobj.pitch x)) (car (musobj.pitch y)))
x
y))
#f
objects))
;Find the highest pitch from the parameters, which are musobj.
(define (MusObj::maxPitch . objects)
(reduce
(lambda (x y)
(if (> (car (musobj.pitch x)) (car (musobj.pitch y)))
x
y))
#f
objects))
;Converts two MusObjs to an interval numbe (ans syntax. steps in the pillar of 5th)
(define (MusObj::GetInterval one two)
(ANS::GetInterval (car (musobj.pitch one)) (car (musobj.pitch two))))
(define (MusbObj::MoveTo musobj)
(d-GoToPosition (musobj.movement musobj) (musobj.staff musobj) (musobj.measure musobj) (musobj.horizontal musobj)))
(define (DefaultInitializePrint) (display "\nstarting to print\n"))
(define (DefaultFinalizePrint) (display "\nfinished print\n"))
(define (DefaultInitializePlayback) (display "\nstarting to playback\n"))
(define (DefaultFinalizePlayback) (display "\nfinished playback\n"))
(define (DefaultInitializeMidiGeneration) (display "\nstarting to generate MIDI\n"))
(define (DefaultFinalizeMidiGeneration) (display "\nfinished MIDI generation\n"))
(define (DefaultInitializeTypesetting) (display "\nstarting to generate LilyPond\n"))
(define (DefaultFinalizeTypesetting) (display "\nfinished generating LilyPond\n"))
(define (InitializePrint) (DefaultInitializePrint))
(define (FinalizePrint) (DefaultFinalizePrint))
(define (InitializePlayback) (DefaultInitializePlayback))
(define (FinalizePlayback) (DefaultFinalizePlayback))
(define (InitializeMidiGeneration) (DefaultInitializeMidiGeneration))
(define (FinalizeMidiGeneration) (DefaultFinalizeMidiGeneration))
(define (InitializeTypesetting) (DefaultInitializeTypesetting))
(define (FinalizeTypesetting) (DefaultFinalizeTypesetting))
;Aliases for Breve and Longa to use with Denemo numbers for durations.
(define (d-3072) (d-Breve))
(define (d-6411) (d-Longa))
(define (d--3072) (d-Breve))
(define (d--6411) (d-Longa))
(define (d-Insert3072) (d-InsertBreve))
(define (d-Insert6411) (d-InsertLonga))
(define (d-Insert-3072) (d-InsertBreve))
(define (d-Insert-6411) (d-InsertLonga))
(define (d-Set3072) (d-SetBreve))
(define (d-Set6411) (d-SetLonga))
(define (d-Set-3072) (d-SetBreve))
(define (d-Set-6411) (d-SetLonga))
(define (d-Change3072) (d-ChangeBreve))
(define (d-Change6411) (d-ChangeLonga))
(define (d-Change-3072) (d-ChangeBreve))
(define (d-Change-6411) (d-ChangeLonga))
;Insert a no-pitch note of the prevailing duration.
(define (d-Enter) (eval-string (string-append "(d-" (number->string (abs (d-GetPrevailingDuration))) ")" )))
;Radiobox is a Radio-Box list where you have a pretty name and a data type.
;;Wants pairs, car is a string to show as radio-option, cdr is a return value and can be any data type, for example a function.
(define (RadioBoxMenu . parameters)
(define answer #f)
(define radiostring (string-append (string-join (map (lambda (x) (car x)) parameters) stop) stop))
(set! answer (d-GetOption radiostring))
(if answer
(cdr (list-ref parameters (list-index (lambda (x) (equal? answer (car x))) parameters)))
#f))
;Protofunction for all transpose and shift related commands
;; Get all notes on cursor position and create a list with new values which then exchanges the current notes on cursor position
(define (ShiftProto method)
(if (Note?)
(ANS::ChangeChordNotes (map method (ANS::GetChordNotes)))
#f)) ; not a note/chord
;Give the name of the Lilypond note on the current vertical cursor position.
;;It doesn't matter if an object is present or not.
(define (GetCursorNoteAsLilypond)
(define midioctave (+ -4 (quotient (d-GetCursorNoteAsMidi) 12)))
(define basenote (d-GetCursorNote))
(define octavemod "")
(set! octavemod
(if (negative? midioctave)
(make-string (abs midioctave) #\,)
(make-string midioctave #\')))
(string-append basenote octavemod))
(define (GetNoteUnderCursorAsLilypond)
(if (Note?)
(let ()
(define current (GetCursorNoteAsLilypond))
(if (any (lambda (x) (equal? x current)) (string-tokenize (d-GetNotes)))
current
#f))
#f))
;Remember the users choice of an interval in this global var
(define GlobalRememberInterval "p5")
;A user dialog to ask for an interval.
;;User has two different options: insert an interval like m2 or p5 directly or give two notes.
;;Return value is a number for the ANS pillar of 5th.
(define (AskForInterval)
(define interval (d-GetUserInput (_"Please enter a transpose interval") (_ "Please enter a transpose interval or two notes in Lilypond syntax.\n\nExample: m2 minor second, M2 major second, p5 fifth, T tritone.\nOr: c' e' for a major third.") GlobalRememberInterval))
(set! GlobalRememberInterval interval)
(if (ANS::IntervalGetSteps (string->symbol interval))
(ANS::IntervalGetSteps (string->symbol interval))
(let ()
(define listy (map (lambda (x) (ANS::Ly2Ans (string->symbol x))) (string-tokenize interval)))
(apply ANS::GetInterval listy))))
(define (ChangeToRest)
;TODO: (d-RemoveNoteFromChord) always returns #f so we have to use (d-GetNotes) as test until this gets fixed
(if (Music?)
(RepeatProcWhileTest d-RemoveNoteFromChord d-GetNotes)
#f))
;Insert an object that just takes space and ticks in the denemo display and playback. No lilypond meaning.
;;It emulates the note-entry behaviour: A step right afterwards and creates new measures if necessary or continues in empty measures.
;;This is the basis for things like multi measure rests, longa, breve and other "Scheme Music Objects".
(define* (InsertNullObject ticks #:optional (tag (number->string (random 1000))))
(if (and (Appending?) (MeasureFillStatus)) ; is the current measure already full and are we in the appending position? if not just insert the object.
(let ()
(define next (ProbeNextMeasure d-GetType))
(cond
((equal? #f next) (d-SplitMeasure))
((string=? next "None") (d-MoveToMeasureRight))))) ; next measure is empty
(d-DirectivePut-standalone tag)
(d-DirectivePut-standalone-minpixels tag (/ ticks 12))
(d-SetDurationInTicks ticks)
(d-MoveCursorRight))
;;; Insert a directive that puts a comment in the LilyPond text showing where the source material for this part of the music is
;;; The tag name is a command to open the file containing that source
(define (InsertLink filepos)
(d-Directive-standalone "DenemoLink")
(d-DirectivePut-standalone-postfix "DenemoLink" (string-append "%{" (scheme-escape filepos) "%}"))
(d-DirectivePut-standalone-minpixels "DenemoLink" 30)
(d-DirectivePut-standalone-graphic "DenemoLink" "\n⬏\n\n36")
(d-MoveCursorRight)
(d-RefreshDisplay))
;;; The routine called by the DenemoLink command to follow the link
(define (FollowLink)
(let ((link (d-DirectiveGet-standalone-postfix "DenemoLink")))
(if link
(begin
;(disp "link is " link "ok\n")
(set! link (string-trim-both link (lambda (c)(or (eqv? c #\{) (eqv? c #\%)))))
(d-OpenSource link)))))
;;;; Routines for audio annotation
(define (DenemoAudioAnnotation timing)
(define (set-tempo)
(if (d-MeasureLeft)
(let ((last-timing (string->number (d-DirectiveGet-standalone-display "Timing"))))
(if last-timing
(let ((diff (- timing last-timing)))
(set! diff (floor (* (/ (/ (duration::GetWholeMeasureInTicks) 384) diff) 60)))
(d-DirectivePut-standalone-override "Timing" (logior DENEMO_OVERRIDE_TEMPO DENEMO_OVERRIDE_STEP))
(d-DirectivePut-standalone-graphic "Timing" (string-append "\n𝅘𝅥 = " (number->string diff) " \ndenemo\n24"))
(d-DirectivePut-standalone-gy "Timing" -40)
(d-DirectivePut-standalone-display "Timing" "")
(d-DirectivePut-standalone-midibytes "Timing" (number->string diff))))
(d-MeasureRight))))
(disp "timing " timing "\n")
(if timing
(begin
(set-tempo)
(d-DirectivePut-standalone-display "Timing" (number->string timing))
(if (zero? (GetMeasureTicks))
(d-WholeMeasureRest))
(if (not (d-MeasureRight))
(begin
(d-AppendMeasureAllStaffs)
(d-MeasureRight))))))
(define (DenemoAudioAnnotate)
(DenemoAudioAnnotation (d-NextAudioTiming)))
;;;; Updates a standalone directive at the cursor if it is marked as DYNAMIC. Updating is by running the tag with parameter 'recalculate
(define (UpdateStandaloneDirective)
(define tag (d-DirectiveGetTag-standalone))
(if tag
(let ((override
(d-DirectiveGet-standalone-override tag)))
(if (not (zero? (logand override DENEMO_OVERRIDE_DYNAMIC)))
(eval-string (string-append "(d-" tag " 'recalculate)"))))))
;;;;;;
(define (GetEditOption)
(define choice (d-GetOption (string-append cue-Edit stop cue-Delete stop cue-Advanced stop)))
(cond
((boolean? choice)
'cancel)
((equal? choice cue-Advanced)
'advanced)
((equal? choice cue-Delete)
'delete)
((equal? choice cue-Edit)
'edit)))
;;;;
(define (MidiInput?) (= (d-GetInputSource) DENEMO_INPUTMIDI))
(define (AudioInput?) (= (d-GetInputSource) DENEMO_INPUTAUDIO))
(define (KeyboardInput?) (= (d-GetInputSource) DENEMO_INPUTKEYBOARD))
;;;;;
(define* (StandaloneText tag text #:optional (direction "-") (italic "\\italic ") (bold "\\bold "))
(set! tag (string-append tag "\n" text))
(d-Directive-standalone tag)
(d-DirectivePut-standalone-prefix tag "<>")
(d-DirectivePut-standalone-postfix tag (string-append direction "\\markup " italic bold "{" (scheme-escape text) " }"))
(d-DirectivePut-standalone-grob tag "Text")
(d-DirectivePut-standalone-display tag text)
(d-DirectivePut-standalone-minpixels tag 30))
|