121 lines
4.2 KiB
Common Lisp
121 lines
4.2 KiB
Common Lisp
;;;; 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!
|
|
|
|
(defpackage :flora-search-aurora.ui
|
|
(:use :cl :flora-search-aurora.display)
|
|
(:export #:render-menu-strip))
|
|
|
|
(in-package :flora-search-aurora.ui)
|
|
|
|
|
|
(defun render-line (matrix text x y)
|
|
"Apply a one-line string to the matrix at the given coordinates."
|
|
(if (and (stringp text)
|
|
(> (length text) 0))
|
|
(progn
|
|
(setf (aref matrix y x)
|
|
(char text 0))
|
|
(render-line matrix (subseq text 1)
|
|
(+ x 1) y))
|
|
matrix))
|
|
|
|
|
|
(defun at-most (maximum num)
|
|
"This function returns at most every hope and dream you've ever had, and at
|
|
minimum returns your more pitiful of moments."
|
|
(if (> num maximum)
|
|
maximum
|
|
num))
|
|
|
|
|
|
(defun render-menu-item
|
|
(matrix text x y &key (width (+ (length text) 2)) (height 3) (selected nil))
|
|
"Render a “menu-item” — that is, text surrounded by a box with an optional
|
|
'selected' form."
|
|
(render-string matrix text (+ x 1) (+ 1 y)
|
|
:max-column (- (+ x width) 1)
|
|
:max-row (- (+ y height) 2))
|
|
|
|
;; Render the top and bottom bars.
|
|
(dotimes (i width)
|
|
(let ((selected-width (and selected (selected)))))
|
|
(setf (aref matrix y (+ x i)) (if selected #\= #\-))
|
|
(setf (aref matrix (+ y (- height 1)) (+ x i)) (if selected #\= #\-)))
|
|
|
|
;; Render the horizontal “earmuffs” for helping the selected item stand out.
|
|
(when selected
|
|
(dotimes (i (- height 2))
|
|
(setf (aref matrix (+ y i 1) x) #\|)
|
|
(setf (aref matrix (+ y i 1) (+ x width -1)) #\|)))
|
|
matrix)
|
|
|
|
|
|
(defun render-menu-strip (matrix items x y &key max-item-width height selected-item)
|
|
"Render several menu items to the matrix, starting at the given x/y coordinates,
|
|
maximum width for any given item, and the height of all items."
|
|
(let ((x x))
|
|
(mapcar
|
|
(lambda (item)
|
|
(let ((width (at-most max-item-width
|
|
(+ (length item) 2))))
|
|
(render-menu-item matrix item x y
|
|
:width width :height height
|
|
:selected (equal item selected-item))
|
|
(setf x (+ x width 1))))
|
|
items))
|
|
matrix)
|
|
|
|
|
|
(defun render-string (matrix text x y &key (max-column 72) (max-row 20))
|
|
"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."
|
|
(let* ((dimensions (array-dimensions matrix))
|
|
(max-column (at-most (cadr dimensions) max-column))
|
|
(max-row (at-most (car dimensions) max-row))
|
|
(substrings (split-string-by-length text (- max-column x)))
|
|
(row 0))
|
|
(loop while (and (<= (+ y row) max-row)
|
|
substrings)
|
|
do
|
|
(print (+ y row))
|
|
(render-line matrix (pop substrings)
|
|
x (+ y row))
|
|
(incf row)))
|
|
matrix)
|
|
|
|
|
|
(defun split-string-by-length (string line-length &key (substrings '()))
|
|
"Given a string, split it into a list of substrings all with lengths
|
|
equal or lower to the given length."
|
|
(if (> (length string) line-length)
|
|
(split-string-by-length
|
|
(subseq string line-length)
|
|
line-length
|
|
:substrings (append substrings
|
|
`(,(subseq string 0 line-length))))
|
|
(append substrings `(,string))))
|
|
|
|
|
|
|
|
;;"---{============= -------------------"
|
|
;; | Kill your mom | Give into despair
|
|
;; ---{============= -------------------
|
|
|