]> git.donarmstrong.com Git - lilypond.git/blobdiff - lilypond-mode.el
tets
[lilypond.git] / lilypond-mode.el
index 76eb43e1d56c0307ec93d32324ec05da894f443a..fdcc28df9f162670465e9132de24b1311e66190d 100644 (file)
@@ -2,7 +2,7 @@
 ;;; lilypond-mode.el --- Major mode for editing GNU LilyPond music scores
 ;;;
 ;;; source file of the GNU LilyPond music typesetter
-;;; 
+;;;  
 ;;; (c) 1999--2001 Jan Nieuwenhuizen <janneke@gnu.org>
 ;;; 
 ;;; Changed 2001 Heikki Junes <heikki.junes@hut.fi>
@@ -16,7 +16,7 @@
 ;;; Add this to your ~/.emacs or ~/.emacs.el
 ;;;     (load-library "lilypond-mode.el")
 ;;;     (setq auto-mode-alist
-;;;      (append '(("\\.ly$" . LilyPond-mode) auto-mode-alist)))
+;;;      (cons '("\\.ly$" . LilyPond-mode) auto-mode-alist))
 ;;; 
 
 (load-library "lilypond-font-lock")
@@ -25,7 +25,7 @@
 (require 'easymenu)
 (require 'compile)
 
-(defconst LilyPond-version "1.5.28"
+(defconst LilyPond-version "1.5.58"
   "`LilyPond-mode' version number.")
 
 (defconst LilyPond-help-address "bug-lilypond@gnu.org"
@@ -137,7 +137,7 @@ in LilyPond-include-path."
 ;; variable instead of quering the user. 
 (defvar LilyPond-command-force nil)
 
-(defcustom LilyPond-xdvi-command "xdvik"
+(defcustom LilyPond-xdvi-command "xdvi"
   "Command used to display DVI files."
 
   :group 'LilyPond
@@ -149,13 +149,13 @@ in LilyPond-include-path."
   :group 'LilyPond
   :type 'string)
 
-(defcustom LilyPond-gv-command "gv -watch"
-  "Command used to display PS files."
+(defcustom LilyPond-midi-command "timidity"
+  "Command used to play MIDI files."
 
   :group 'LilyPond
   :type 'string)
 
-(defcustom LilyPond-midi-command "timidity"
+(defcustom LilyPond-midi-all-command "timidity -ig"
   "Command used to play MIDI files."
 
   :group 'LilyPond
@@ -169,6 +169,7 @@ in LilyPond-include-path."
 
     ("2Dvi" . ("ly2dvi %s" . "View"))
     ("2PS" . ("ly2dvi -P %s" . "View"))
+    ("2Midi" . ("lilypond -m %s" . "View"))
 
     ("Book" . ("lilypond-book %x" . "LaTeX"))
     ("LaTeX" . ("latex '\\nonstopmode\\input %l'" . "View"))
@@ -257,8 +258,10 @@ Must be the car of an entry in `LilyPond-command-alist'."
                             (LilyPond-check-files (concat name ".tex")
                                                   (list name)
                                                   LilyPond-file-extensions)
-                          ;; FIXME
-                          (LilyPond-save-buffer)
+                          (if (buffer-modified-p) 
+                              (if (y-or-n-p "Save buffer before next command? ")
+                                  (progn (LilyPond-save-buffer)
+                                         (setq LilyPond-command-default "LilyPond"))))
                           ;;"LilyPond"
                           LilyPond-command-default))
                        (t LilyPond-command-default)))
@@ -368,6 +371,30 @@ Must be the car of an entry in `LilyPond-command-alist'."
                ".midi"))
      "Midi")))
 
+(defun LilyPond-command-all-midi ()
+  "Play next midi score of the current document."
+  (interactive)
+  (if (Midi-running)
+      (quit-process (get-process "midi") t)
+    (LilyPond-compile-file 
+     (let ((fname (LilyPond-master-file))
+          (allcount (string-to-number (substring (count-midi-words) 0 -12))))
+       (concat  LilyPond-midi-all-command " "
+               (if (> allcount 0) ; at least one midi-score
+                   (concat (substring fname 0 -3) ".midi "))
+               (if (> allcount 1) ; more than one midi-score
+                   (concat (substring fname 0 -3) "-?.midi "))
+               (if (> allcount 9) ; etc.
+                   (concat (substring fname 0 -3) "-??.midi"))
+               (if (> allcount 99) ; not first score
+                   (concat (substring fname 0 -3) "-???.midi"))))
+     "Midi")))
+
+(defun LilyPond-un-comment-region (start end level)
+  "Remove up to LEVEL comment characters from each line in the region."
+  (interactive "*r\np") 
+  (comment-region start end (- level)))
+
 ;; FIXME, this is broken
 (defun LilyPond-region-file (begin end)
   (let (
@@ -484,13 +511,104 @@ command."
   (define-key LilyPond-mode-map "\C-c\C-v" 'LilyPond-command-view)
   (define-key LilyPond-mode-map "\C-c\C-p" 'LilyPond-command-viewps)
   (define-key LilyPond-mode-map "\C-c\C-m" 'LilyPond-command-next-midi)
+  (define-key LilyPond-mode-map "\C-cf" 'font-lock-fontify-buffer)
+  (define-key LilyPond-mode-map "\C-ci" 'LilyPond-quick-note-insert)
   (define-key LilyPond-mode-map "\C-cn" 'LilyPond-insert-tag-notes)
   (define-key LilyPond-mode-map "\C-cs" 'LilyPond-insert-tag-score)
+  (define-key LilyPond-mode-map "\C-c:" 'LilyPond-un-comment-region)
   (define-key LilyPond-mode-map "\C-c;" 'comment-region)
+  (define-key LilyPond-mode-map ")" 'LilyPond-electric-close-paren)
+  (define-key LilyPond-mode-map ">" 'LilyPond-electric-close-paren)
+  (define-key LilyPond-mode-map "}" 'LilyPond-electric-close-paren)
   )
 
 ;;; Menu Support
 
+(defun LilyPond-quick-note-insert()
+  "Insert notes with fewer key strokes by using a simple keyboard piano."
+  (interactive)
+  (setq dutch-notes
+       '(("k" "a") ("l" "b") ("a" "c") ("s" "d") 
+         ("d" "e") ("f" "f") ("j" "g") ("r" "r")))
+  (setq dutch-note-ends '("eses" "es" "" "is" "isis"))
+  (setq dutch-note-replacements '("" ""))
+  (setq finnish-note-replacements
+       '(("eeses" "eses") ("ees" "es") ("aeses" "asas") ("aes" "as") ("b" "h")
+         ("beses" "heses") ("bes" "b") ("bis" "his") ("bisis" "hisis")))
+                             ; add more translations of the note names
+  (setq other-keys "()<>~}")
+  (setq accid 0) (setq octav 0) (setq durat "") (setq dots 0)
+
+  (message "Press h for help.") (sit-for 0 750 1)
+
+  (setq note-replacements dutch-note-replacements)
+  (while (not (= 27 ; esc to quit
+    (setq x (read-char-exclusive 
+            (format " | a[_]s[_]d | f[_]j[_]k[_]l | r with ie ,' 12345678 . 0 (<~>)/}\\b\\n Esc \n | c | d | e | f | g | a | %s | r with %s%s%s%s"
+                    (if (string= (car(cdr(assoc "b" note-replacements))) "h")
+                        "h" "b")
+                    (nth (+ accid 2) dutch-note-ends)
+                    (make-string (abs octav) (if (> octav 0) ?' ?,)) 
+                    durat 
+                    (if (string= durat "") "" (make-string dots ?.)))))))
+;    (insert (number-to-string x)) ; test numbers for characters
+    (setq note (cdr (assoc (char-to-string x) dutch-notes)))
+    (cond
+     ((= x 127) (backward-kill-word 1)) ; backspace
+     ((= x 13) (progn (insert "\n") (LilyPond-indent-line)))) ; return
+    (setq x (char-to-string x))
+    (cond
+     ((and (string< x "9") (string< "0" x))
+      (progn (setq durat (int-to-string (expt 2 (- (string-to-int x) 1))))
+            (setq dots 0)))
+     ((string= x " ") (insert " "))
+     ((string= x "/") (progn (insert "\\times ")
+                            (while (not (and (string< x "9") (string< "0" x)))
+                              (setq x (char-to-string (read-char-exclusive "Insert a number for the denominator (\"x/\")"))))
+                            (insert (format "%s/" x)) (setq x "/")
+                            (while (not (and (string< x "9") (string< "0" x)))
+                              (setq x (char-to-string (read-char-exclusive "Insert a number for the numerator (\"/y\")"))))
+                            (insert (format "%s { " x))))
+     ((string= x "0") (progn (setq accid 0) (setq octav 0) 
+                            (setq durat "") (setq dots 0)))
+     ((string= x "i") (setq accid (if (= accid 2) 0 (max (+ accid 1) 1))))
+     ((string= x "e") (setq accid (if (= accid -2) 0 (min (+ accid -1) -1))))
+     ((string= x "'") (setq octav (if (= octav 4) 0 (max (+ octav 1) 1))))
+     ((string= x ",") (setq octav (if (= octav -4) 0 (min (+ octav -1) -1))))
+     ((string= x ".") (setq dots (if (= dots 4) 0 (+ dots 1))))
+     ((not (null (member x (split-string other-keys ""))))
+      (insert (format "%s " x)))
+     ((not (null note))
+      (progn
+       (setq note 
+             (format "%s%s" (car note) (if (string= "r" (car note)) "" 
+                                         (nth (+ accid 2) dutch-note-ends))))
+       (setq notetwo (car (cdr (assoc note note-replacements))))
+       (if (not (null notetwo)) (setq note notetwo))
+       (insert
+        (format "%s%s%s%s " 
+                note
+                (if (string= "r" note) ""
+                    (make-string (abs octav) (if (> octav 0) ?' ?,)))
+                durat
+                (if (string= durat "") "" (make-string dots ?.))))
+       (setq accid 0) (setq octav 0) (setq durat "") (setq dots 0)))
+     ((string= x "t") (progn (setq note-replacements dutch-note-replacements)
+                            (message "Selected Dutch notes") 
+                            (sit-for 0 750 1))) ; t
+     ((string= x "n") (progn (setq note-replacements finnish-note-replacements)
+                            (message "Selected Finnish/Deutsch notes") 
+                            (sit-for 0 750 1))) ; n
+                             ; add more translations of the note names
+     ((string= x "h") 
+      (progn (message "Insert notes with fewer key strokes. For example \"i,5.f\" produces \"fis,32. \".") (sit-for 5 0 1) 
+            (message "Add also \"a ~ a\"-ties, \"a ( ) b\"-slurs and \"< a b >\"-chords.") (sit-for 5 0 1) 
+            (message "Note names are in Du(t)ch by default. Hit 'n' for Fin(n)ish/Deutsch note names.") (sit-for 5 0 1) 
+            (message "Backspace deletes last note, return starts a new indented line and Esc quits.") (sit-for 5 0 1) 
+            (message "Insert note triplets \"\\times 2/3 { a b } \" by typing \"/23ab}\".") (sit-for 5 0 1) 
+            (message "Remember to add all other details as well.") (sit-for 5 0 1)))
+    )))
+
 (define-skeleton LilyPond-insert-tag-notes
   "LilyPond notes tag."
   nil
@@ -533,7 +651,7 @@ command."
           (vector name (list 'LilyPond-command-menu name) t)))))
 
 
-(easy-menu-define LilyPond-mode-menu
+(easy-menu-define LilyPond-command-menu
     LilyPond-mode-map
     "Menu used in LilyPond mode."
   (append '("Command")
@@ -547,12 +665,6 @@ command."
             [ "Region" LilyPond-command-select-region
               :keys "C-c C-r" :style radio
               :selected (eq LilyPond-command-current 'LilyPond-command-region) ]))
-         '(("Insert"
-            [ "\\notes..."  LilyPond-insert-tag-notes
-              :keys "C-c n" ]
-            [ "\\score..."  LilyPond-insert-tag-score
-              :keys "C-c s" ]
-            ))
 ;        (let ((file 'LilyPond-command-on-current))
 ;          (mapcar 'LilyPond-command-menu-entry LilyPond-command-alist))
 ;;; Some kind of mapping which includes :keys might be more elegant
@@ -560,12 +672,30 @@ command."
          '([ "TeX" (LilyPond-command (LilyPond-command-menu "TeX") 'LilyPond-master-file) ])
          '([ "2Dvi" (LilyPond-command (LilyPond-command-menu "2Dvi") 'LilyPond-master-file) :keys "C-c C-d"])
          '([ "2PS" (LilyPond-command (LilyPond-command-menu "2PS") 'LilyPond-master-file) :keys "C-c C-f"])
+         '([ "2Midi" (LilyPond-command (LilyPond-command-menu "2Midi") 'LilyPond-master-file)])
          '([ "Book" (LilyPond-command (LilyPond-command-menu "Book") 'LilyPond-master-file) ])
          '([ "LaTeX" (LilyPond-command (LilyPond-command-menu "LaTeX") 'LilyPond-master-file) ])
          '([ "SmartView" (LilyPond-command (LilyPond-command-menu "SmartView") 'LilyPond-master-file) :keys "C-c C-s"])
          '([ "View" (LilyPond-command (LilyPond-command-menu "View") 'LilyPond-master-file) :keys "C-c C-v"])
          '([ "ViewPS" (LilyPond-command (LilyPond-command-menu "ViewPS") 'LilyPond-master-file) :keys "C-c C-p"])
          '([ "Midi (off)" (LilyPond-command-next-midi) :keys "C-c C-m"])
+         '([ "Midi all" (LilyPond-command-all-midi)])
+         ))
+
+(easy-menu-define LilyPond-mode-menu
+  LilyPond-mode-map
+  "Menu used in LilyPond mode."
+  (append '("LilyPond")
+         '(("Insert"
+            [ "\\notes..."  LilyPond-insert-tag-notes t]
+            [ "\\score..."  LilyPond-insert-tag-score t]
+            ["Quick Notes"  LilyPond-quick-note-insert t]
+            ))
+         '(("Miscellaneous"
+            ["Uncomment Region" LilyPond-un-comment-region t]
+            ["Comment Region" comment-region t]
+            ["Refontify buffer" font-lock-fontify-buffer t]
+            ))
          ))
 
 (defconst LilyPond-imenu-generic-re "^\\([a-zA-Z_][a-zA-Z0-9_]*\\) *="
@@ -615,6 +745,15 @@ LilyPond-xdvi-command\t\tcommand to display dvi files -- bit superfluous"
   (make-local-variable 'font-lock-defaults)
   (setq font-lock-defaults '(LilyPond-font-lock-keywords))
 
+  ;; string and comments are fontified explicitly
+  (make-local-variable 'font-lock-keywords-only)
+  (setq font-lock-keywords-only t)
+
+  ;; Multi-line font-locking needs Emacs 21.1 or newer.
+  ;; For older versions there is hotkey "C-c f".
+  (make-local-variable 'font-lock-multiline) 
+  (setq font-lock-multiline t) 
+
   (make-local-variable 'paragraph-separate)
   (setq paragraph-separate "^[ \t]*$")