2023-06-04 12:52:18 -05:00
|
|
|
|
;;;; Copyright © 2023, Jaidyn Ann <jadedctrl@posteo.at>
|
|
|
|
|
;;;;
|
|
|
|
|
;;;; 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 of
|
|
|
|
|
;;;; the License, 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. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
;;;; FLORA-SEARCH-AURORA.UI
|
|
|
|
|
;;;; Generic menu-making, displaying, and management.
|
|
|
|
|
;;;; Let's get to it, we're on a deadline!
|
|
|
|
|
|
|
|
|
|
(in-package :flora-search-aurora.ui)
|
|
|
|
|
|
2023-06-06 15:59:31 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Menu loops
|
2023-06-23 12:41:47 -05:00
|
|
|
|
;;; ——————————————————————————————————
|
|
|
|
|
(defun make-menu-state (menu-list)
|
|
|
|
|
"Return a state-function for the game’s main menu, for use with STATE-LOOP."
|
|
|
|
|
(lambda (matrix)
|
|
|
|
|
(📋:menu-state matrix menu-list)))
|
|
|
|
|
|
|
|
|
|
|
2023-06-09 16:14:46 -05:00
|
|
|
|
(defun menu-state (matrix menu-alist)
|
|
|
|
|
"Render a menu in menu-alist format to the given matrix, and process user-input.
|
|
|
|
|
A state-function for use with the #'state-loop."
|
2023-06-08 21:57:51 -05:00
|
|
|
|
(sleep .02)
|
2023-06-09 16:14:46 -05:00
|
|
|
|
(menu-state-draw matrix menu-alist)
|
|
|
|
|
(menu-state-update menu-alist))
|
2023-06-06 15:59:31 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-09 16:14:46 -05:00
|
|
|
|
(defun menu-state-draw (matrix menu-alist)
|
|
|
|
|
"Render a menu in menu-alist format to the given matrix.
|
|
|
|
|
A core part of #'menu-state."
|
2023-06-08 21:57:51 -05:00
|
|
|
|
(render-menu-strip matrix menu-alist 0 0))
|
2023-06-06 15:59:31 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-09 16:14:46 -05:00
|
|
|
|
(defun menu-state-update (menu-alist)
|
|
|
|
|
"Update a menu — that is, take user input and modify the menu’s alist appropriately.
|
|
|
|
|
A core part of #'menu-state."
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(progress-menu-items menu-alist)
|
2023-06-08 21:57:51 -05:00
|
|
|
|
(process-menu-input menu-alist))
|
2023-06-06 15:59:31 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Menu display
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-04 12:52:18 -05:00
|
|
|
|
(defun render-line (matrix text x y)
|
|
|
|
|
"Apply a one-line string to the matrix at the given coordinates."
|
2023-06-13 18:10:15 -05:00
|
|
|
|
(let ((dims (array-dimensions matrix)))
|
|
|
|
|
(if (and (stringp text)
|
|
|
|
|
(> (length text) 0))
|
|
|
|
|
(progn
|
|
|
|
|
(ignore-errors (setf (aref matrix y x) (char text 0)))
|
|
|
|
|
(render-line matrix (subseq text 1)
|
|
|
|
|
(+ x 1) y))
|
|
|
|
|
matrix)))
|
2023-06-04 12:52:18 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-05 23:28:03 -05:00
|
|
|
|
(defun render-menu-item
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(matrix text x y &key (width (+ (length text) 2)) (height 3) (selection 0) (selected nil))
|
2023-06-05 23:28:03 -05:00
|
|
|
|
"Render a “menu-item” — that is, text surrounded by a box with an optional
|
2023-06-06 00:07:47 -05:00
|
|
|
|
'selected' form. If selected is a non-zero number below 100, then that percent
|
|
|
|
|
of the box will be displayed as selected/highlighted. This percent is from
|
|
|
|
|
left-to-right, unless negative — in which case, right-to-left."
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(render-string matrix text (list :x (+ x 1) :y (+ 1 y))
|
2023-06-05 23:28:03 -05:00
|
|
|
|
:max-column (- (+ x width) 1)
|
|
|
|
|
:max-row (- (+ y height) 2))
|
2023-06-06 00:07:47 -05:00
|
|
|
|
;; Render the normal top and bottom bars.
|
2023-06-05 23:28:03 -05:00
|
|
|
|
(dotimes (i width)
|
2023-06-06 00:07:47 -05:00
|
|
|
|
(setf (aref matrix y (+ x i)) #\-)
|
|
|
|
|
(setf (aref matrix (+ y (- height 1)) (+ x i)) #\-))
|
|
|
|
|
|
|
|
|
|
;; Render the weird “selected” top and bottom bars. A menu item might be
|
|
|
|
|
;; only partially-selected…
|
2023-06-06 23:27:30 -05:00
|
|
|
|
(if (and selection
|
|
|
|
|
(not (eq selection 0)))
|
2023-06-06 00:07:47 -05:00
|
|
|
|
(let* ((bar-width
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(…:at-most width (ceiling (* width (* (abs selection)
|
|
|
|
|
.01)))))
|
2023-06-06 23:27:30 -05:00
|
|
|
|
(bar-start (if (> 0 selection) (- width bar-width) 0)))
|
2023-06-06 00:07:47 -05:00
|
|
|
|
(dotimes (i bar-width)
|
|
|
|
|
(setf (aref matrix y (+ x bar-start i)) #\=)
|
|
|
|
|
(setf (aref matrix (+ y (- height 1)) (+ x bar-start i)) #\=))))
|
2023-06-05 23:28:03 -05:00
|
|
|
|
|
|
|
|
|
;; Render the horizontal “earmuffs” for helping the selected item stand out.
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(when selected
|
2023-06-05 23:28:03 -05:00
|
|
|
|
(dotimes (i (- height 2))
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(setf (aref matrix (+ y i 1) x) #\|)
|
|
|
|
|
(setf (aref matrix (+ y i 1) (+ x width -1)) #\|))
|
2023-06-06 00:07:47 -05:00
|
|
|
|
matrix))
|
2023-06-05 23:28:03 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-06 15:59:31 -05:00
|
|
|
|
(defun render-menu-strip (matrix items x y &key (max-item-width 12) (height 3))
|
2023-06-05 23:28:03 -05:00
|
|
|
|
"Render several menu items to the matrix, starting at the given x/y coordinates,
|
2023-06-06 23:27:30 -05:00
|
|
|
|
maximum width for any given item, and the height of all items.
|
|
|
|
|
The item list should be an alist of the following format:
|
2023-06-23 12:54:29 -05:00
|
|
|
|
(((LABEL :en “BIRD” :eo “BIRDO”)(SELECTED . T)(SELECTION . 100))
|
|
|
|
|
((LABEL :en “BAR” :eo “BARO”)(SELECTION . -20)) ⋯)"
|
2023-06-05 23:28:03 -05:00
|
|
|
|
(let ((x x))
|
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (item)
|
2023-06-23 12:54:29 -05:00
|
|
|
|
(let* ((label (…:getf-lang (cdr (assoc 'label item))))
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(selection (or (cdr (assoc 'selection item))
|
2023-06-06 23:27:30 -05:00
|
|
|
|
0))
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(width (…:at-most max-item-width
|
2023-06-06 15:59:31 -05:00
|
|
|
|
(+ (length label) 2))))
|
|
|
|
|
(render-menu-item matrix label x y
|
2023-06-06 00:07:47 -05:00
|
|
|
|
:width width
|
|
|
|
|
:height height
|
2023-06-07 19:02:11 -05:00
|
|
|
|
:selection selection
|
2023-06-08 08:22:14 -05:00
|
|
|
|
:selected (cdr (assoc 'selected item)))
|
2023-06-05 23:28:03 -05:00
|
|
|
|
(setf x (+ x width 1))))
|
|
|
|
|
items))
|
|
|
|
|
matrix)
|
|
|
|
|
|
|
|
|
|
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(defun render-string (matrix text coords &key (max-column 72) (max-row 20))
|
2023-06-04 12:52:18 -05:00
|
|
|
|
"Render the given string to the matrix of characters, character-by-character.
|
|
|
|
|
Will line-break or truncate as appropriate and necessary to not exceed the
|
|
|
|
|
positional arguments nor the dimensions of the matrix."
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(render-string-partially matrix text coords :max-column max-column :max-row max-row
|
2023-06-19 14:43:46 -05:00
|
|
|
|
:char-count (length text)))
|
|
|
|
|
|
|
|
|
|
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(defun render-string-partially (matrix text coords &key (char-count 0) (max-column 72) (max-row 20))
|
2023-06-19 14:43:46 -05:00
|
|
|
|
"Partially render the given string to a matrix of characters. Will render only
|
|
|
|
|
a portion of the string, dictated by the CHAR-COUNT.
|
|
|
|
|
See the similar RENDER-STRING function."
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(let* ((x (getf coords :x))
|
|
|
|
|
(y (getf coords :y))
|
|
|
|
|
(dimensions (array-dimensions matrix))
|
|
|
|
|
(max-column (…:at-most (cadr dimensions) max-column))
|
|
|
|
|
(row-width (- max-column x))
|
|
|
|
|
(max-write-row (…:at-most (…:at-most (car dimensions) max-row)
|
|
|
|
|
(floor (/ char-count row-width))))
|
|
|
|
|
(row-width-at-max-write-row
|
|
|
|
|
(…:at-most row-width
|
|
|
|
|
(- char-count (* max-write-row row-width))))
|
|
|
|
|
(substrings (…:split-string-by-length text row-width))
|
2023-06-04 12:52:18 -05:00
|
|
|
|
(row 0))
|
2023-06-05 23:28:03 -05:00
|
|
|
|
(loop while (and (<= (+ y row) max-row)
|
2023-06-04 12:52:18 -05:00
|
|
|
|
substrings)
|
2023-06-19 14:43:46 -05:00
|
|
|
|
do (cond ((< row max-write-row)
|
|
|
|
|
(render-line matrix (pop substrings)
|
|
|
|
|
x (+ y row)))
|
2023-06-20 20:04:13 -05:00
|
|
|
|
;; At the last line, write only up til the :CHAR-COUNT
|
2023-06-19 14:43:46 -05:00
|
|
|
|
((eq row max-write-row)
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(render-line
|
|
|
|
|
matrix
|
|
|
|
|
(subseq (pop substrings) 0 row-width-at-max-write-row)
|
|
|
|
|
x (+ y row)))
|
2023-06-19 14:43:46 -05:00
|
|
|
|
('t
|
|
|
|
|
(pop substrings)))
|
2023-06-04 12:52:18 -05:00
|
|
|
|
(incf row)))
|
|
|
|
|
matrix)
|
|
|
|
|
|
|
|
|
|
|
2023-06-06 23:27:30 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Menu logic
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
(defun progress-menu-items (menu-alist)
|
|
|
|
|
"Given an associative list of menu-items, decrement or increment each
|
|
|
|
|
item's “selected-percentage”, so that they converge at the right percent.
|
|
|
|
|
That is, 0 for non-selected items and 100 for selected items."
|
|
|
|
|
(mapcar
|
|
|
|
|
(lambda (item)
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(let* ((selection (assoc 'selection item))
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(selection-num (or (cdr selection) 0))
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(selectedp (cdr (assoc 'selected item))))
|
2023-06-06 23:27:30 -05:00
|
|
|
|
(if selection
|
|
|
|
|
(setf (cdr selection)
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(gravitate-toward
|
|
|
|
|
(cond ((and selectedp (< selection-num 0) 0)
|
|
|
|
|
-100)
|
|
|
|
|
(selectedp 100)
|
|
|
|
|
('t 0))
|
|
|
|
|
(cdr selection) 10)))))
|
2023-06-06 23:27:30 -05:00
|
|
|
|
menu-alist)
|
|
|
|
|
menu-alist)
|
|
|
|
|
|
|
|
|
|
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(defun process-menu-input (menu-alist)
|
|
|
|
|
"Get and process any keyboard input, modifying the menu alist as necessary."
|
2023-06-08 21:57:51 -05:00
|
|
|
|
(if (listen)
|
2023-06-27 11:54:52 -05:00
|
|
|
|
(let* ((input (⌨:read-gamefied-char-plist))
|
2023-06-08 21:57:51 -05:00
|
|
|
|
(selected-item (nth (selected-menu-item-position menu-alist)
|
|
|
|
|
menu-alist))
|
2023-06-09 18:22:56 -05:00
|
|
|
|
(func (cdr (assoc 'function selected-item)))
|
|
|
|
|
(return-val (assoc 'return selected-item)))
|
2023-06-27 11:54:52 -05:00
|
|
|
|
(case (getf input :semantic)
|
|
|
|
|
('⌨:→ (progn (select-right-menu-item menu-alist)
|
|
|
|
|
't))
|
|
|
|
|
('⌨:← (progn (select-left-menu-item menu-alist)
|
|
|
|
|
't))
|
|
|
|
|
('⌨:❎
|
|
|
|
|
nil)
|
|
|
|
|
('⌨:🆗
|
2023-06-09 18:22:56 -05:00
|
|
|
|
(cond ((and func return-val)
|
|
|
|
|
(apply func '())
|
|
|
|
|
(cdr return-val))
|
|
|
|
|
(func
|
|
|
|
|
(apply func '()))
|
|
|
|
|
(return-val
|
|
|
|
|
(cdr return-val))
|
|
|
|
|
('t
|
|
|
|
|
't)))
|
|
|
|
|
(otherwise 't)))
|
2023-06-08 21:57:51 -05:00
|
|
|
|
't))
|
2023-06-07 19:02:11 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun select-menu-item (menu-alist position)
|
|
|
|
|
"Given a menu associative list, select the menu-item at the given position."
|
|
|
|
|
(let ((old-position (selected-menu-item-position menu-alist)))
|
|
|
|
|
;; The “polarity” (direction of selection) depends on the relative
|
|
|
|
|
;; direction of the previous selection.
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(setf (aget (nth position menu-alist) 'selection)
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(if (< old-position position) 10 -10))
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(setf (aget (nth position menu-alist) 'selected) 't)
|
2023-06-07 19:02:11 -05:00
|
|
|
|
;; Likewise for the previously-selected item.
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(setf (aget (nth old-position menu-alist) 'selection)
|
2023-06-07 19:02:11 -05:00
|
|
|
|
(if (< old-position position) -90 90))
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(setf (aget (nth old-position menu-alist) 'selected) nil))
|
2023-06-07 19:02:11 -05:00
|
|
|
|
menu-alist)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun select-right-menu-item (menu-alist)
|
|
|
|
|
"Select the item to the right of the currenty-selected item."
|
|
|
|
|
(let ((new-selection (+ (selected-menu-item-position menu-alist) 1)))
|
|
|
|
|
(if (< new-selection (length menu-alist))
|
|
|
|
|
(select-menu-item menu-alist new-selection))))
|
|
|
|
|
|
|
|
|
|
|
2023-06-08 08:22:14 -05:00
|
|
|
|
(defun select-left-menu-item ( menu-alist)
|
2023-06-07 19:02:11 -05:00
|
|
|
|
"Select the item to the left of the currenty-selected item."
|
|
|
|
|
(let ((new-selection (- (selected-menu-item-position menu-alist) 1)))
|
|
|
|
|
(if (>= new-selection 0)
|
|
|
|
|
(select-menu-item menu-alist new-selection))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun selected-menu-item-position (menu-alist)
|
|
|
|
|
"Returns the index of the menu alist's selected item."
|
2023-06-09 18:22:56 -05:00
|
|
|
|
(or (position
|
|
|
|
|
't menu-alist
|
|
|
|
|
:test (lambda (ignore list-item)
|
|
|
|
|
(cdr (assoc 'selected list-item))))
|
|
|
|
|
0))
|
2023-06-07 19:02:11 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-06 15:59:31 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Misc. utils
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-06 23:27:30 -05:00
|
|
|
|
(defun gravitate-toward (goal num delta)
|
2023-06-06 15:59:31 -05:00
|
|
|
|
"Either add to a number, or subtract from it; whichever brings it closer to zero.
|
|
|
|
|
In addition, the resultant value shall not “pass” zero."
|
|
|
|
|
(cond
|
2023-06-06 23:27:30 -05:00
|
|
|
|
((< num goal)
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(…:at-most goal (+ num delta)))
|
2023-06-06 23:27:30 -05:00
|
|
|
|
((> num goal)
|
2023-06-20 20:04:13 -05:00
|
|
|
|
(…:at-least goal (- num delta)))
|
2023-06-06 15:59:31 -05:00
|
|
|
|
('t
|
2023-06-06 23:27:30 -05:00
|
|
|
|
goal)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;"---{============= -------------------"
|
|
|
|
|
;; | Kill your mom | Give into despair
|
|
|
|
|
;; ---{============= -------------------
|