;;; nyan-mode.el --- Nyan Cat shows position in current buffer in mode-line. ;;; ;;; Nyanyanyanyanyanyanya! ;;; ;;; Author: Jacek "TeMPOraL" Zlydach ;;; URL: http://nyan-mode.buildsomethingamazing.com ;;; Version: 0.2 ;;; Keywords: nyan, cat, lulz, pop tart cat, build something amazing ;;; ;;; Inspired by (and in few places copied from) sml-modeline.el, ;;; written by Lennart Borgman ;;; See: http://bazaar.launchpad.net/~nxhtml/nxhtml/main/annotate/head%3A/util/sml-modeline.el ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; LICENSE ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;; ;; This program is free software; you can redistribute it and/or ;; modify it under the terms of the GNU General Public License as ;; published by the Free Software Foundation; either version 3, or ;; (at your option) any later version. ;; ;; This program is distributed in the hope that it will be useful, ;; but WITHOUT ANY WARRANTY; without even the implied warranty of ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU ;; General Public License for more details. ;; ;; You should have received a copy of the GNU General Public License ;; along with this program; see the file COPYING. If not, write to ;; the Free Software Foundation, Inc., 51 Franklin Street, Fifth ;; Floor, Boston, MA 02110-1301, USA. ;; ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ;;; Some TODOs ;;; * Investigate why wavy rainbow didn't work on Antoszka's computer. ;;; * Refactor-out :set lambdas in customs if possible. ;;; * MAYBE add something to protect users from going to 0 with nyanbar width? ;;; * Add credits for used images. (defgroup nyan nil "Customization group for `nyan-mode'." :group 'frames) (defun nyan-refresh () "Refresh after option changes if loaded." (when (featurep 'nyan-mode) (when (and (boundp 'nyan-mode) nyan-mode) (nyan-mode -1) (nyan-mode 1)))) (defcustom nyan-animation-frame-interval 0.2 "Number of seconds between animation frames." :set (lambda (sym val) (set-default sym val) (nyan-refresh)) :group 'nyan) (defvar nyan-animation-timer nil) (defvar nyan-animation-loop-count 0) (defvar nyan-animation-loop-max 1) (defun nyan-start-animation () (interactive) (when (not nyan-animation-timer) (setq nyan-animation-timer (run-at-time "0 sec" nyan-animation-frame-interval 'nyan-swich-anim-frame) nyan-animation-loop-count 0))) (defun nyan-stop-animation () (interactive) (when nyan-animation-timer (cancel-timer nyan-animation-timer) (setq nyan-animation-timer nil))) ;; mplayer needs to be installed for that (defun nyan-start-music () (interactive) (start-process-shell-command "nyan-music" "nyan-music" (concat "mplayer " +nyan-music+ " -loop 0"))) (defun nyan-stop-music () (interactive) (kill-process "nyan-music")) ;;; FIXME bug, doesn't work for antoszka. (defcustom nyan-wavy-trail nil "If enabled, Nyan Cat's rainbow trail will be wavy." :type '(choice (const :tag "Enabled" t) (const :tag "Disabled" nil)) :set (lambda (sym val) (set-default sym val) (nyan-refresh)) :group 'nyan) (defcustom nyan-bar-length 32 "Length of Nyan Cat bar in units; each unit is equal to an 8px image. Minimum of 3 units are required for Nyan Cat." :set (lambda (sym val) (set-default sym val) (nyan-refresh)) :group 'nyan) (defcustom nyan-animate-nyancat nil "Enable animation for Nyan Cat. This can be t or nil." :type '(choice (const :tag "Enabled" t) (const :tag "Disabled" nil)) :set (lambda (sym val) (set-default sym val) (if val (nyan-start-animation) (nyan-stop-animation)) (nyan-refresh)) :group 'nyan) (defcustom nyan-cat-face-number 1 "Select cat face number for console." ) (defconst +nyan-directory+ (file-name-directory (or load-file-name buffer-file-name))) (defconst +nyan-cat-size+ 3) (defconst +nyan-cat-image+ (concat +nyan-directory+ "img/nyan.xpm")) (defconst +nyan-cat-start-image+ (concat +nyan-directory+ "img/nyan-start.xpm")) (defconst +nyan-rainbow-image+ (concat +nyan-directory+ "img/rainbow.xpm")) (defconst +nyan-rainbow-start-image+ (concat +nyan-directory+ "img/rainbow-start.xpm")) (defconst +nyan-outerspace-image+ (concat +nyan-directory+ "img/outerspace.xpm")) (defconst +nyan-music+ (concat +nyan-directory+ "mus/nyanlooped.mp3")) ;;; Load images of Nyan Cat an it's rainbow. (defvar nyan-cat-image (create-image +nyan-cat-image+ 'xpm nil :ascent 'center)) (defvar nyan-cat-start-image (create-image +nyan-cat-start-image+ 'xpm nil :ascent 'center)) (defvar nyan-animation-frames (mapcar (lambda (id) (create-image (concat +nyan-directory+ (format "img/nyan-frame-%d.xpm" id)) 'xpm nil :ascent 'center)) '(1 2 3 4 5 6))) (defvar nyan-last-rainbow-count 0) (defvar nyan-current-frame 0) (defconst +catface+ [ ["[]*" "[]#"] ["(*^ー゚)" "( ^ー^)" "(^ー^ )" "(゚ー^*)"] ["(´ω`三 )" "( ´ω三` )" "( ´三ω` )" "( 三´ω`)" "( 三´ω`)" "( ´三ω` )" "( ´ω三` )" "(´ω`三 )"] ["(´д`;)" "( ´д`;)" "( ;´д`)" "(;´д` )"] ["(」・ω・)」" "(/・ω・)/" "(」・ω・)」" "(/・ω・)/" "(」・ω・)」" "(/・ω・)/" "(」・ω・)」" "\(・ω・)/"] ["(>ワ<三   )" "( >ワ三<  )" "(  >三ワ< )" "(   三>ワ<)" "(  >三ワ< )" "( >ワ三<  )"]]) (defun nyan-swich-anim-frame () (when (> nyan-animation-loop-count nyan-animation-loop-max) (nyan-stop-animation)) (setq nyan-current-frame (% (+ 1 nyan-current-frame) 6)) (when (equal nyan-current-frame 5) (setq nyan-animation-loop-count (1+ nyan-animation-loop-count))) (redraw-modeline)) (defun nyan-get-anim-frame (rainbows &optional start) (if (and nyan-animation-timer (> rainbows 0)) (nth nyan-current-frame nyan-animation-frames) (if start nyan-cat-start-image nyan-cat-image))) (defun nyan-wavy-rainbow-ascent (number) (if nyan-animation-timer (min 100 (+ 81 (* 3 (abs (- (/ 6 2) (% (+ number nyan-current-frame) 6)))))) (if (< (% number 6) 3) 90 'center))) (defun nyan-number-of-rainbows () (round (/ (* (round (* 100 (/ (- (float (point)) (float (point-min))) (float (point-max))))) (- nyan-bar-length +nyan-cat-size+)) 100))) (defun catface () (aref +catface+ nyan-cat-face-number)) (defun catface-index () (min (round (/ (* (round (* 100 (/ (- (float (point)) (float (point-min))) (float (point-max))))) (length (catface))) 100)) (- (length (catface)) 1))) (defun nyan-create () (let* ((rainbows (nyan-number-of-rainbows)) (outerspaces (- nyan-bar-length rainbows +nyan-cat-size+)) (rainbow-string "") (rainbow-start t) (nyancat-string (propertize (aref (catface) (catface-index)) 'display (nyan-get-anim-frame rainbows (eq rainbows 0)))) (outerspace-string "")) (if (and nyan-animate-nyancat (not (equal nyan-last-rainbow-count rainbows))) (nyan-start-animation)) (setq nyan-last-rainbow-count rainbows) (dotimes (number rainbows) (setq rainbow-string (concat rainbow-string (propertize "|" 'display (create-image (if rainbow-start +nyan-rainbow-start-image+ +nyan-rainbow-image+) 'xpm nil :ascent (if (and nyan-wavy-trail (or (not nyan-animate-nyancat) (and nyan-animate-nyancat nyan-animation-timer))) (nyan-wavy-rainbow-ascent number) 'center))))) (setq rainbow-start nil) ) (dotimes (number outerspaces) (setq outerspace-string (concat outerspace-string (propertize "-" 'display (create-image +nyan-outerspace-image+ 'xpm nil :ascent (if nyan-animation-timer 95 'center)))))) ;; Compute Nyan Cat string. (concat rainbow-string nyancat-string outerspace-string))) (defvar nyan-old-car-mode-line-position nil) ;;;###autoload (define-minor-mode nyan-mode "Use NyanCat to show buffer size and position in mode-line. You can customize this minor mode, see option `nyan-mode'. Note: If you turn this mode on then you probably want to turn off option `scroll-bar-mode'." :global t :group 'nyan (if nyan-mode (progn (unless nyan-old-car-mode-line-position (setq nyan-old-car-mode-line-position (car mode-line-position))) (setcar mode-line-position '(:eval (list (nyan-create))))) (setcar mode-line-position nyan-old-car-mode-line-position))) (provide 'nyan-mode) ;;; nyan-mode.el ends here