2023-06-27 21:36:13 -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/>.
|
|
|
|
|
|
2023-07-15 05:04:17 -05:00
|
|
|
|
;;;; FLORA-SEARCH-AURORA.INVENTORY 🎒
|
2023-06-27 21:36:13 -05:00
|
|
|
|
;;;; The menu for inventory selection/management.
|
|
|
|
|
|
|
|
|
|
(in-package :flora-search-aurora.inventory)
|
|
|
|
|
|
2023-07-02 20:47:31 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-07-03 11:55:09 -05:00
|
|
|
|
;;; Misc. Utils
|
2023-07-02 20:47:31 -05:00
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
(defun subseq-head (length sequence)
|
|
|
|
|
"Get a subsequence of SEQUENCE containing its first LENGTH elements. If LENGTH
|
|
|
|
|
exceeds the size of SEQUENCE, the returned subsequence is equivalent to SEQUENCE."
|
|
|
|
|
(subseq sequence 0 (…:at-most (length sequence) length)))
|
|
|
|
|
|
|
|
|
|
|
2023-07-03 11:55:09 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Menu-creation! How fun!
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-07-02 20:47:31 -05:00
|
|
|
|
(defun items->menu-plist (item-plists &key (row-width 72))
|
|
|
|
|
"Convert a list of items’ plists (that one might get from OVERWORLD’s map
|
|
|
|
|
:ITEMS) into a pretty and presentable menu-grid of items, for use with
|
|
|
|
|
📋:MENU-STATE(-*)."
|
|
|
|
|
(let* ((label-width 7)
|
|
|
|
|
(border-width 2)
|
|
|
|
|
;; Weird bounding, whoops! I’m so clumsy, it’s endearing instead of just annoying! … Right? =w=”
|
|
|
|
|
(column (- 0 label-width border-width))
|
|
|
|
|
(row 0))
|
|
|
|
|
(mapcar (lambda (item)
|
|
|
|
|
(incf column (+ label-width border-width))
|
|
|
|
|
(when (>= column row-width)
|
|
|
|
|
(incf row)
|
|
|
|
|
(setf column 0))
|
2023-07-03 11:55:09 -05:00
|
|
|
|
(append (list :en (subseq-head label-width (or (getf (cdr item) :inv-name-en)
|
|
|
|
|
(getf (cdr item) :name-en)
|
|
|
|
|
(getf (cdr item) :id)))
|
|
|
|
|
:eo (subseq-head label-width (or (getf (cdr item) :inv-name-eo)
|
|
|
|
|
(getf (cdr item) :name-eo)))
|
|
|
|
|
:selected (and (eq row 0) (eq column 0))
|
|
|
|
|
:selection (if (and (eq row 0) (eq column 0)) 100 0)
|
2023-07-12 18:29:49 -05:00
|
|
|
|
:submenu 't
|
2023-07-03 11:55:09 -05:00
|
|
|
|
:row row)
|
|
|
|
|
(cdr item)))
|
2023-07-02 20:47:31 -05:00
|
|
|
|
item-plists)))
|
|
|
|
|
|
|
|
|
|
|
2023-06-27 21:36:13 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Inventory loop logic
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(defun submenu (item)
|
|
|
|
|
"Create a ITEM’s submenu, from its plist."
|
|
|
|
|
(nconc (when (getf item :use)
|
|
|
|
|
(list
|
|
|
|
|
(list :en "Use it!"
|
|
|
|
|
:eo "Uzi ĝin!"
|
|
|
|
|
:selected 't :selection 100
|
|
|
|
|
:use 't)))
|
|
|
|
|
(list
|
|
|
|
|
(list :en "Lose it!"
|
|
|
|
|
:eo "Ne!"
|
|
|
|
|
:use nil))))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun inventory-state-update (map inventory-menu submenu)
|
2023-07-03 11:55:09 -05:00
|
|
|
|
"The input-taking/logic-handling component of the inventory state-function.
|
|
|
|
|
Part of INVENTORY-STATE."
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(let ((menu-return (📋:menu-state-update (if submenu submenu inventory-menu)))
|
|
|
|
|
(selected-item (📋:selected-menu-item inventory-menu)))
|
|
|
|
|
(cond
|
|
|
|
|
;; Display the pop-up menu when an item is selected.
|
|
|
|
|
((and (listp menu-return) (getf menu-return :submenu))
|
|
|
|
|
(list :parameters (list :map map :inventory inventory-menu
|
|
|
|
|
:submenu (submenu selected-item))))
|
|
|
|
|
;; User decided to use the item, let’s go!
|
|
|
|
|
((and (listp menu-return) (getf menu-return :use) (getf selected-item :use))
|
|
|
|
|
(funcall (…:string->symbol (getf selected-item :use)) map selected-item))
|
|
|
|
|
;; User decided not to use the item.
|
|
|
|
|
((and (listp menu-return) (member :use menu-return))
|
|
|
|
|
(list :parameters (list :map map :inventory inventory-menu)))
|
|
|
|
|
;; Return the menu itself, if non-nil.
|
|
|
|
|
(menu-return
|
2023-07-15 05:04:17 -05:00
|
|
|
|
't)
|
2023-07-12 18:29:49 -05:00
|
|
|
|
;; If menu-return was non-nil, the user left the menu. Let’s leave inventory!
|
|
|
|
|
('t
|
|
|
|
|
(list :drop 1 :parameters (list :map map))))))
|
2023-06-27 21:36:13 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Inventory loop drawing
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-07-03 11:55:09 -05:00
|
|
|
|
(defun render-selected-item (matrix items)
|
|
|
|
|
"Draw the title, avatar, and description of the currently-selected item to
|
|
|
|
|
the bottom of the screen."
|
2023-07-15 05:04:17 -05:00
|
|
|
|
(let* ((item (📋:selected-menu-item items))
|
2023-07-03 11:55:09 -05:00
|
|
|
|
(name (list :en (or (getf item :name-en) (getf item :inv-name-en) (getf item :id))
|
|
|
|
|
:eo (or (getf item :name-eo) (getf item :inv-name-eo))))
|
|
|
|
|
(desc (list :en (getf item :desc-en)
|
|
|
|
|
:eo (getf item :desc-eo))))
|
2023-07-15 05:04:17 -05:00
|
|
|
|
(✎:render-string-verbatim matrix (str:concat ":" (…:getf-lang name) ": "
|
|
|
|
|
(getf item :avatar))
|
2023-07-03 11:55:09 -05:00
|
|
|
|
'(:x 1 :y 17))
|
2023-07-15 05:04:17 -05:00
|
|
|
|
(✎:render-string matrix (…:getf-lang desc)
|
2023-07-03 11:55:09 -05:00
|
|
|
|
'(:x 1 :y 18) :width 70)))
|
|
|
|
|
|
|
|
|
|
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(defun inventory-state-draw (matrix items submenu)
|
2023-07-03 11:55:09 -05:00
|
|
|
|
"The drawing component of the inventory state-function.
|
|
|
|
|
Part of INVENTORY-STATE."
|
|
|
|
|
(📋:menu-state-draw matrix items)
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(render-selected-item matrix items)
|
|
|
|
|
(when submenu
|
|
|
|
|
(📋:menu-state-draw matrix submenu)))
|
2023-06-27 21:36:13 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Inventory loop
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(defun inventory-state (matrix &key map inventory (submenu nil))
|
2023-06-27 21:36:13 -05:00
|
|
|
|
"A state-function for use with STATE-LOOP."
|
|
|
|
|
(sleep .02)
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(inventory-state-draw matrix inventory submenu)
|
|
|
|
|
(inventory-state-update map inventory submenu))
|
2023-06-27 21:36:13 -05:00
|
|
|
|
|
|
|
|
|
|
2023-07-15 05:04:17 -05:00
|
|
|
|
(defun make-inventory-function (map)
|
2023-06-27 21:36:13 -05:00
|
|
|
|
"Return a state-function for inventory-listing, for use with STATE-LOOP."
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(lambda (matrix &key (map map) (submenu nil) (inventory (items->menu-plist (gethash :items map))))
|
2023-06-27 21:36:13 -05:00
|
|
|
|
(apply #'🎒:inventory-state
|
2023-07-12 18:29:49 -05:00
|
|
|
|
(list matrix :map map :inventory inventory :submenu submenu))))
|