etype/etype.el

354 lines
12 KiB
EmacsLisp
Raw Normal View History

(eval-when-compile
(require 'cl))
(defcustom etype-lines-file
(concat
(if load-file-name
(file-name-directory load-file-name)
default-directory) "etype.lines")
"A path to a file named 'etype.lines' containing one word per
line that will be used in the game."
:group 'etype)
2013-11-25 12:29:08 +00:00
(defvar etype-words-in-play nil)
2013-11-25 12:29:08 +00:00
(defvar etype-unused-words [])
2013-11-25 12:29:08 +00:00
(defvar etype-score 0)
2013-11-25 12:29:08 +00:00
(defvar etype-in-game nil)
2013-11-25 12:29:08 +00:00
(defvar etype-timers nil)
(defvar etype-overlay nil)
(defvar etype-point-max nil)
(defvar etype-completing-word nil)
2013-11-25 12:29:08 +00:00
2013-12-17 20:56:46 +00:00
(defvar etype-level 1)
2013-11-25 12:29:08 +00:00
(defun etype-read-file ()
2013-12-14 22:26:00 +00:00
"Returns a vector of lines from the 'etype-lines-file'."
(with-temp-buffer
(insert-file-contents etype-lines-file)
(apply
'vector
(split-string
(buffer-substring-no-properties (point-min) (point-max)) "\n"))))
2013-11-25 12:29:08 +00:00
(defun init-game ()
2013-12-14 22:26:00 +00:00
"Sets up the game grid containing 'fill-column' number of spaces and 30
lines. Also some variables are set."
2013-11-25 12:29:08 +00:00
(let ((space (make-string fill-column ? )))
(dotimes (i 30)
(insert space)
(newline))
(setq etype-point-max (point))
2013-12-17 20:56:46 +00:00
(let* ((score "\nScore: 0")
(level "Level: 1"))
(insert (make-string fill-column ?-))
(insert score)
(insert (make-string
(- fill-column
(+ (length score) (length level))) ? ))
(insert level)))
(goto-char (point-min))
2013-12-17 20:56:46 +00:00
(setq cursor-type nil)
(setq etype-score 0)
(setq etype-in-game t)
2013-12-14 22:26:00 +00:00
;; Shuffle the vector returned from etype-read-file, and turns it in to a
;; list.
(setq etype-unused-words (etype-read-file))
2013-12-26 01:21:10 +00:00
(read-only-mode 1))
2013-11-25 12:29:08 +00:00
2013-12-17 20:56:46 +00:00
(defun etype-increase-level ()
"Increases the level."
(interactive)
(when (< etype-level 10)
(let ((inhibit-read-only t))
(incf etype-level)
(etype-update-level))))
2013-12-17 20:56:46 +00:00
(defun etype-decrease-level ()
"Decreases the level."
(interactive)
(when (> etype-level 1)
(let ((inhibit-read-only t))
(decf etype-level)
(etype-update-level))))
2013-12-17 20:56:46 +00:00
2013-11-25 12:29:08 +00:00
(defun etype-fit-word (word)
2013-12-14 22:26:00 +00:00
"Returns a point that a word can be inserted on the next
line. If there is no room (a word is directly beneath it) it
tries to find the nearest point it could fit. If there is no room
NIL is returned, and the word is not moved."
(let* ((point (point))
(space (make-string (+ 2 (length word)) ? )))
(if (and (or (looking-back " ") (bolp)) (looking-at space))
point
(let* ((backward (search-backward space (point-at-bol) t))
(backward (and backward (+ backward 1))))
(goto-char point)
(let* ((forward (search-forward space (point-at-eol) t))
(forward (and forward (- forward (- (length space) 1)))))
(cond ((not backward) forward)
((not forward) backward)
((< (- point backward) (- forward point)) backward)
(t forward)))))))
2013-11-25 12:29:08 +00:00
(defun etype-search-timers (word)
"Returns the timer that is associated with WORD."
2013-11-25 12:29:08 +00:00
(first
(remove-if-not
(lambda (timer)
(member word (timer--args timer))) etype-timers)))
2013-12-06 02:14:55 +00:00
(defun etype-remove-word (point word)
"Removes a word and replacing it with whitespace."
(let* ((len (length word))
(space (make-string len ? )))
(goto-char point)
(when (looking-at word)
(delete-char len)
(insert space))))
(defun etype-insert-word (point word)
"Inserts word 'overwrite-mode' style, but only if the word fits on the
line."
(goto-char point)
(let* ((destination (etype-fit-word word)))
(when destination
(goto-char destination)
(delete-char (length word))
(insert word)
(goto-char destination))))
(defun etype-next-line ()
(let ((column (current-column)))
(forward-line)
(forward-char column)))
(defun etype-previous-line ()
(let ((column (current-column)))
(forward-line -1)
(forward-char column)))
(defun etype-move-word (point word)
"Move WORD at POINT to the next line. If there is not enough space on the
next line the word will not move."
2013-12-06 02:14:55 +00:00
(when etype-in-game
(let ((inhibit-read-only t))
(when etype-completing-word
(goto-char etype-completing-word))
(let ((moving-word-at-point (string= word (current-word t)))
(search-string (buffer-substring-no-properties point (point))))
2013-12-06 02:14:55 +00:00
(save-excursion
(goto-char point)
(unless (looking-at word)
(goto-char (point-min))
(search-forward word etype-point-max)
(backward-word))
;; The point is now in front of the word that is to be moved.
(let ((point (point))
(timer (etype-search-timers word)))
(etype-next-line)
(let ((destination (etype-insert-word (point) word)))
(when destination
(etype-remove-word point word)
(setf (timer--args timer) (list destination word))))))
;; If we are moving the word at point the overlay must be moved and
;; the point needs to be updated.
(when moving-word-at-point
(search-forward-regexp (concat "\\<" search-string))
(setq etype-completing-word (point))
(save-excursion
(let ((point (point)))
(backward-word)
(move-overlay etype-overlay (point) point))))))))
(defun etype-random ()
"Returns a random float between 1 and 10, depending on the
level."
(let* ((random (abs (random))))
2013-12-17 20:56:46 +00:00
(/ random (expt 10.0 (floor (log random 10))))))
2013-11-26 14:44:19 +00:00
(defun etype-get-word (&optional count)
"Tries to find a word in ETYPE-UNUSED-WORDS that has a
different capital letter from all words in
ETYPE-WORDS-IN-PLAY. It does not try very hard, and gives up
after checking 5 words - this is done to give a natural slow down
when there are a lot of words in play."
(let ((word (elt etype-unused-words
(random (length etype-unused-words)))))
(if (null (member
(string-to-char word)
(mapcar 'string-to-char etype-words-in-play)))
word
(unless (and count (> count 5))
(etype-get-word (if count (+ count 1) 1))))))
2013-11-25 12:29:08 +00:00
(defun etype-spawn-word ()
"This function spawns a word. It does this by finding a word
and inserting it at a random point in the game buffer. A timer
object is added to ETYPE-TIMERS, invoking ETYPE-MOVE-WORD at a
random time between 1 and 10 seconds."
(let* ((word (etype-get-word))
(point (1+ (random (- fill-column (1+ (length word))))))
(random (etype-random)))
(when (and word (etype-insert-word point word))
(push word etype-words-in-play)
(push (run-at-time random random 'etype-move-word (point) word)
etype-timers))))
(defun etype-spawn-wave (recur limit)
2014-09-29 21:15:28 +00:00
"Spawn multiple words according to ETYPE-LEVEL."
2013-11-25 12:29:08 +00:00
(save-excursion
2014-09-29 21:15:28 +00:00
(let ((inhibit-read-only t))
(when (< recur limit)
(etype-spawn-word)
(run-at-time (/ (etype-random) etype-level) nil
'etype-spawn-wave (1+ recur) limit)))))
2014-09-29 21:15:28 +00:00
(defun etype-wave-limit ()
"Generates the number of words that should be spawn according to the level
and current score."
2014-09-29 21:15:28 +00:00
(+ (* etype-level etype-level) 5
(if (plusp etype-score) (ceiling (log etype-score)) 0)))
2013-11-25 12:29:08 +00:00
2013-12-11 02:02:23 +00:00
(defun etype-move-shooter (column)
"Moves the shooter to COLUMN."
2013-12-11 02:02:23 +00:00
(save-excursion
(goto-char (point-max))
(forward-line -1)
2013-12-11 02:02:23 +00:00
(delete-region (point-at-bol) (point-at-eol))
(insert (make-string (- fill-column 5) ?-))
(beginning-of-line)
(let* ((shooter " /.\\ ")
(len (length shooter)))
(cond ((and (> column 1) (< column (- fill-column (+ len 1))))
(forward-char (- column 2)))
2013-12-15 21:05:13 +00:00
((> column (- fill-column (+ len 2)))
2013-12-11 02:02:23 +00:00
(forward-char (- fill-column len))))
(insert shooter))))
(defun etype-shoot (&optional steps)
"Triggers the shooter to fire at a word. It calls itself
recursively until the bullet hits the word."
2013-12-15 21:05:13 +00:00
(unless (= 0 (current-column))
(let* ((inhibit-read-only t)
(bullet-dest (+ (- etype-point-max
2013-12-15 21:05:13 +00:00
(* (or steps 0) (+ fill-column 1)))
(current-column)))
(overlay (make-overlay bullet-dest (+ bullet-dest 1)))
(time (* 0.00005 (or steps 0))))
(etype-move-shooter (current-column))
(overlay-put overlay 'display "|")
(run-at-time (+ time 0.05) nil 'delete-overlay overlay)
(when (< (point) (- bullet-dest (+ fill-column 1)))
(run-at-time time nil 'etype-shoot (+ (or steps 0) 1))))))
2013-12-11 02:02:23 +00:00
2013-11-25 12:29:08 +00:00
(defun etype-search-word (key-etyped)
"Searches the buffer for a word that begins with the typed
key. If a word is found a shot is fired at it, and a overlay is
created."
2013-11-25 12:29:08 +00:00
(setq etype-completing-word
2013-11-30 02:22:34 +00:00
(search-forward-regexp
(concat
"\\<" (single-key-description last-input-event))
etype-point-max t))
(when etype-completing-word
(let ((inhibit-read-only t))
(etype-shoot)
(setq etype-overlay
(make-overlay (- etype-completing-word 1) etype-completing-word))
(overlay-put etype-overlay 'face '(:inherit isearch)))))
2013-11-25 12:29:08 +00:00
(defun etype-continue-word (key-typed)
"Moves the point forward if the typed key is the char in front of the
point. If the word is complete the word is cleared."
(goto-char etype-completing-word)
(let ((inhibit-read-only t))
(when (looking-at key-typed)
(forward-char)
(setq etype-completing-word (point))
(move-overlay etype-overlay (overlay-start etype-overlay) (point))
(etype-shoot)
(when (looking-at " ")
(etype-clear-word)
(setq etype-completing-word nil)))))
2013-11-25 12:29:08 +00:00
2013-12-17 20:56:46 +00:00
(defun etype-update-score (word)
"Updates the score."
(save-excursion
(incf etype-score (* (length word) etype-level))
(re-search-forward "Score: [0-9]+")
(replace-match (concat "Score: " (number-to-string etype-score)))))
(defun etype-update-level ()
"Updates the level."
(save-excursion
(re-search-forward "Level: [0-9]+")
(replace-match (concat "Level: " (number-to-string etype-level)))))
(defun etype-clear-word ()
"Removes a word from the game, then updates the score."
(let* ((inhibit-read-only t)
(word (current-word t))
(timer (etype-search-timers (current-word t))))
(cancel-timer timer)
(setq etype-timers (remove timer etype-timers))
(delete-overlay etype-overlay)
(etype-move-shooter (/ fill-column 2))
(backward-word)
(etype-remove-word (point) word)
2013-11-30 02:22:34 +00:00
(setq etype-words-in-play
(remove word etype-words-in-play))
2013-12-17 20:56:46 +00:00
(etype-update-score word)
(goto-char (point-min))
(unless etype-words-in-play
(etype-spawn-wave 0 (etype-wave-limit)))))
2013-11-25 12:29:08 +00:00
(defun etype-catch-input ()
"'self-insert-command' is remapped to this function. Instead of
inserting the typed key, it triggers a shot."
2013-11-25 12:29:08 +00:00
(interactive)
2013-12-11 02:02:23 +00:00
(let ((key-typed (single-key-description last-input-event)))
2013-11-25 12:29:08 +00:00
(if etype-completing-word
2013-12-11 02:02:23 +00:00
(etype-continue-word key-typed)
(etype-search-word key-typed))))
2013-11-25 12:29:08 +00:00
(defun etype ()
"Starts a game of Etype."
2013-11-25 12:29:08 +00:00
(interactive)
(switch-to-buffer "Etype")
(etype-mode)
(init-game)
(etype-spawn-wave 0 (etype-wave-limit)))
2013-11-25 12:29:08 +00:00
(defun etype-cleanup ()
"Cancels all etype-timers."
2013-11-25 12:29:08 +00:00
(mapc 'cancel-timer etype-timers))
(define-derived-mode etype-mode nil "Etype"
"A mode for playing Etype."
(dolist (var '(etype-score
etype-timers
etype-overlay
etype-in-game
etype-point-max
etype-unused-words
etype-words-in-play
etype-completing-word
etype-level))
(make-local-variable var))
2013-12-17 20:56:46 +00:00
2013-11-30 02:22:34 +00:00
(define-key (current-local-map)
[remap self-insert-command] 'etype-catch-input)
2013-12-17 20:56:46 +00:00
(local-set-key (kbd "<up>") 'etype-increase-level)
(local-set-key (kbd "<down>") 'etype-decrease-level)
2013-11-25 12:29:08 +00:00
(add-hook 'kill-buffer-hook 'etype-cleanup))