2023-06-09 07:07:28 -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.OVERWORLD
|
|
|
|
|
;;;; All game-functions and data relating to the “overworld” (that is,
|
|
|
|
|
;;;; the primary gameplay, the RPG-ish-ish bits).
|
|
|
|
|
|
|
|
|
|
(defpackage :flora-search-aurora.overworld
|
2023-06-19 14:56:13 -05:00
|
|
|
|
(:nicknames :fsa.o :overworld :🌍)
|
2023-06-09 07:07:28 -05:00
|
|
|
|
(:use :cl
|
2023-06-17 10:12:23 -05:00
|
|
|
|
:flora-search-aurora.overworld.tiled :flora-search-aurora.overworld.util)
|
2023-06-23 13:29:09 -05:00
|
|
|
|
(:export #:overworld-state #:make-overworld-state #:overworld-state-draw
|
2023-06-20 20:04:13 -05:00
|
|
|
|
#:world-coords->screen-coords
|
2023-06-17 10:12:23 -05:00
|
|
|
|
#:getf-entity #:getf-entity-data
|
2023-06-22 19:08:14 -05:00
|
|
|
|
#:move-entity-to #:move-entity
|
2023-06-21 20:31:29 -05:00
|
|
|
|
:left :right
|
2023-06-17 10:12:23 -05:00
|
|
|
|
:player))
|
2023-06-09 07:07:28 -05:00
|
|
|
|
|
|
|
|
|
(in-package :flora-search-aurora.overworld)
|
|
|
|
|
|
2023-06-16 20:09:35 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
;;; Accessors
|
|
|
|
|
;;; ———————————————————————————————————
|
|
|
|
|
(defmacro getf-entity (map entity-id)
|
|
|
|
|
"Get an entity from the map-data, using its ID."
|
2023-06-21 23:47:54 -05:00
|
|
|
|
`(mapcan (lambda (chunk) (assoc ,entity-id (cdr chunk)))
|
|
|
|
|
(gethash :entities ,map)))
|
|
|
|
|
|
2023-06-16 20:09:35 -05:00
|
|
|
|
|
|
|
|
|
(defmacro getf-entity-data (map entity-id key)
|
|
|
|
|
"Get a specific piece of data from the given entity's property-list."
|
2023-06-21 23:47:54 -05:00
|
|
|
|
`(getf (cdr (mapcan (lambda (chunk) (assoc ,entity-id (cdr chunk)))
|
|
|
|
|
(gethash :entities ,map)))
|
|
|
|
|
,key))
|
2023-06-16 20:09:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun entities-near-coords (coords radius entities &key (x-radius radius) (y-radius radius))
|
|
|
|
|
"Return a list of entity-plists that are near the given coordinates within the given RADIUS."
|
|
|
|
|
(remove-if-not
|
|
|
|
|
(lambda (test-entity)
|
|
|
|
|
(let ((test-coords (getf (cdr test-entity) :coords)))
|
|
|
|
|
(and (< (abs (- (getf coords :x)
|
|
|
|
|
(getf test-coords :x)))
|
|
|
|
|
x-radius)
|
|
|
|
|
(< (abs (- (getf coords :y)
|
|
|
|
|
(getf test-coords :y)))
|
|
|
|
|
y-radius))))
|
2023-06-21 23:47:54 -05:00
|
|
|
|
(cdr (assoc (world-coords-chunk coords) entities))))
|
2023-06-16 20:09:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun entities-near-entity (entity entities)
|
|
|
|
|
"Return a list of entities near the given entity — that is, within touching-distance."
|
|
|
|
|
(remove-if
|
|
|
|
|
(lambda (test-entity)
|
2023-06-22 19:08:14 -05:00
|
|
|
|
(…:plist= (cdr entity)
|
2023-06-16 20:09:35 -05:00
|
|
|
|
(cdr test-entity)))
|
|
|
|
|
(entities-near-coords (getf (cdr entity) :coords)
|
|
|
|
|
(+ (length (getf (cdr entity) :face)) 2)
|
|
|
|
|
entities
|
|
|
|
|
:y-radius 2)))
|
|
|
|
|
|
|
|
|
|
(defun cell-at-world-coords-p (map-chunks coords)
|
|
|
|
|
"Return whether or not there is a cell at the given coordinates."
|
|
|
|
|
(let ((chunk (world-coords-chunk coords)))
|
|
|
|
|
(member 't (cdr (assoc chunk map-chunks))
|
|
|
|
|
:test (lambda (ignored cell)
|
2023-06-22 19:08:14 -05:00
|
|
|
|
(…:plist= (getf cell :coords) coords)))))
|
2023-06-16 20:09:35 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun walkable-tile-p (map x y)
|
|
|
|
|
"Return whether or not the given coordinates on the map are traversable for an entity."
|
|
|
|
|
(not (cell-at-world-coords-p (gethash :bump-map map)
|
|
|
|
|
(list :x x :y y))))
|
|
|
|
|
|
|
|
|
|
|
2023-06-09 07:07:28 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-16 20:11:38 -05:00
|
|
|
|
;;; Overworld logic
|
2023-06-09 07:07:28 -05:00
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-15 11:15:46 -05:00
|
|
|
|
(defun overworld-state-update (map)
|
2023-06-11 17:12:52 -05:00
|
|
|
|
"Do nothing, lol. Core part of OVERWORLD-STATE.
|
|
|
|
|
Returns parameters to be used in the next invocation of OVERWORLD-STATE."
|
2023-06-17 22:47:30 -05:00
|
|
|
|
(process-overworld-input map))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-15 11:15:46 -05:00
|
|
|
|
(defun process-overworld-input (map)
|
2023-06-09 23:00:26 -05:00
|
|
|
|
"Get and process any keyboard input, modifying the map or entities as necessary."
|
|
|
|
|
(if (listen)
|
2023-06-19 14:56:13 -05:00
|
|
|
|
(let* ((input (⌨:normalize-char-plist (⌨:read-char-plist))))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
(cond
|
2023-06-16 14:28:41 -05:00
|
|
|
|
;; Interacting with nearby characters/entities
|
2023-06-22 19:08:14 -05:00
|
|
|
|
((…:plist= input '(:modifier nil :char #\return))
|
2023-06-16 20:09:35 -05:00
|
|
|
|
(let* ((player (getf-entity map 'player))
|
2023-06-16 14:28:41 -05:00
|
|
|
|
(interactee (car (entities-near-entity player (gethash :entities map))))
|
|
|
|
|
(interaction (getf (cdr interactee) :interact)))
|
|
|
|
|
(if interaction
|
2023-06-17 22:47:30 -05:00
|
|
|
|
(apply (intern (string-upcase interaction)) (list map))
|
|
|
|
|
(list :map map))))
|
2023-06-22 19:08:14 -05:00
|
|
|
|
;; The pause-menu…
|
|
|
|
|
;; ((plist = input '(:modifier nil :char #\Esc)))
|
2023-06-16 14:28:41 -05:00
|
|
|
|
;; Simple up-down-left-right movements
|
2023-06-22 19:08:14 -05:00
|
|
|
|
((…:plist= input '(:modifier nil :char #\→))
|
2023-06-17 22:47:30 -05:00
|
|
|
|
(move-entity map 'player :x 1)
|
|
|
|
|
(list :map map))
|
2023-06-22 19:08:14 -05:00
|
|
|
|
((…:plist= input '(:modifier nil :char #\←))
|
2023-06-17 22:47:30 -05:00
|
|
|
|
(move-entity map 'player :x -1)
|
|
|
|
|
(list :map map))
|
2023-06-22 19:08:14 -05:00
|
|
|
|
((…:plist= input '(:modifier nil :char #\↑))
|
2023-06-17 22:47:30 -05:00
|
|
|
|
(move-entity map 'player :y -1)
|
|
|
|
|
(list :map map))
|
2023-06-22 19:08:14 -05:00
|
|
|
|
((…:plist= input '(:modifier nil :char #\↓))
|
2023-06-17 22:47:30 -05:00
|
|
|
|
(move-entity map 'player :y 1)
|
|
|
|
|
(list :map map))
|
|
|
|
|
('t
|
|
|
|
|
(list :map map))))
|
|
|
|
|
(list :map map)))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-16 20:09:35 -05:00
|
|
|
|
(defun move-entity (map entity-id &key (x 0) (y 0))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
"Move an entity relative to its current position."
|
2023-06-16 20:09:35 -05:00
|
|
|
|
(when (< x 0)
|
|
|
|
|
(setf (getf-entity-data map entity-id :direction) 'left))
|
|
|
|
|
(when (> x 0)
|
|
|
|
|
(setf (getf-entity-data map entity-id :direction) 'right))
|
|
|
|
|
(let ((coords (getf-entity-data map entity-id :coords)))
|
|
|
|
|
(move-entity-to map entity-id
|
|
|
|
|
:x (+ x (getf coords :x))
|
|
|
|
|
:y (+ y (getf coords :y)))))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-15 11:15:46 -05:00
|
|
|
|
(defun move-entity-to (map entity &key (x 0) (y 0))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
"Move the given entity to the given coordinates."
|
2023-06-21 23:47:54 -05:00
|
|
|
|
(let ((old-chunk (world-coords-chunk (getf-entity-data map entity :coords)))
|
|
|
|
|
(new-chunk (world-coords-chunk (list :x x :y y))))
|
|
|
|
|
;; Change the entity’s world coordinates…
|
2023-06-15 11:15:46 -05:00
|
|
|
|
(when (walkable-tile-p map x y)
|
2023-06-21 23:47:54 -05:00
|
|
|
|
(setf (getf (getf-entity-data map entity :coords) :x) x)
|
|
|
|
|
(setf (getf (getf-entity-data map entity :coords) :y) y))
|
|
|
|
|
;; If the entity’s moved into a different screen-chunk (and so into a different
|
|
|
|
|
;; sub-alist of MAP hash-table’s :entities), move its list into the new chunk’s.
|
|
|
|
|
(when (not (eq old-chunk new-chunk))
|
|
|
|
|
;; Add it to the new chunk list…
|
|
|
|
|
(setf (assoc-utils:aget (assoc-utils:aget (gethash :entities map) new-chunk) entity)
|
|
|
|
|
(cdr (getf-entity map entity)))
|
|
|
|
|
;; Delete it from the old list…
|
|
|
|
|
(alexandria:deletef (assoc-utils:aget (gethash :entities map) old-chunk) entity
|
|
|
|
|
:test (lambda (id alist) (eq id (car alist)))))))
|
2023-06-15 11:15:46 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-09 07:07:28 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-16 20:09:35 -05:00
|
|
|
|
;;; Overworld-drawing: Map-rendering
|
2023-06-09 07:07:28 -05:00
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-16 20:11:38 -05:00
|
|
|
|
(defun overworld-state-draw (matrix map)
|
|
|
|
|
"Draw the overworld map to the given matrix.
|
|
|
|
|
A core part of OVERWORLD-STATE."
|
|
|
|
|
(let* ((chunk (world-coords-chunk (getf-entity-data map 'player :coords))))
|
|
|
|
|
(matrix-write-map-chunk matrix map chunk)
|
2023-06-21 23:47:54 -05:00
|
|
|
|
(matrix-write-entities matrix map chunk)))
|
2023-06-16 20:11:38 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-16 09:00:58 -05:00
|
|
|
|
(defun matrix-write-map-chunk (matrix map chunk
|
|
|
|
|
&key (chunk-width 72) (chunk-height 20))
|
2023-06-15 11:15:46 -05:00
|
|
|
|
"Draw a map’s specific chunk (by its ID) to the matrix."
|
2023-06-16 12:41:19 -05:00
|
|
|
|
(mapcar (lambda (cell)
|
2023-06-23 12:41:47 -05:00
|
|
|
|
(if (or (not (getf cell :lang))
|
|
|
|
|
(eq (getf cell :lang) (…:system-language)))
|
|
|
|
|
(matrix-write-cell matrix cell)))
|
2023-06-16 12:41:19 -05:00
|
|
|
|
(cdr (assoc chunk (gethash :tiles map)))))
|
2023-06-11 17:12:52 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-15 18:14:39 -05:00
|
|
|
|
(defun matrix-write-cell (matrix cell)
|
|
|
|
|
"Set a matrice's (2d array's) element corresponding to a “cell”; that is, an
|
|
|
|
|
alist containing a character (:CHAR) and :X & :Y coordinates."
|
|
|
|
|
(let ((coords (world-coords->screen-coords (getf cell :coords))))
|
2023-06-13 18:10:15 -05:00
|
|
|
|
(setf (aref matrix
|
|
|
|
|
(getf coords :y)
|
|
|
|
|
(getf coords :x))
|
2023-06-15 18:14:39 -05:00
|
|
|
|
(getf cell :char))))
|
2023-06-09 07:07:28 -05:00
|
|
|
|
|
|
|
|
|
|
2023-06-09 23:00:26 -05:00
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-16 20:09:35 -05:00
|
|
|
|
;;; Overworld-drawing: Entity-rendering
|
2023-06-09 23:00:26 -05:00
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-21 23:47:54 -05:00
|
|
|
|
(defun matrix-write-entities (matrix map chunk)
|
2023-06-09 23:00:26 -05:00
|
|
|
|
"Draw all entities from an alist of entities to the matrix."
|
|
|
|
|
(mapcar (lambda (entity-assoc)
|
2023-06-15 11:15:46 -05:00
|
|
|
|
(matrix-write-entity matrix (cdr entity-assoc)))
|
2023-06-21 23:47:54 -05:00
|
|
|
|
(cdr (assoc chunk (gethash :entities map)))))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun matrix-write-entity (matrix entity-plist)
|
|
|
|
|
"Render an entity-plist to the matrix."
|
2023-06-14 16:36:34 -05:00
|
|
|
|
(matrix-write-entity-head matrix entity-plist)
|
|
|
|
|
(matrix-write-entity-legs matrix entity-plist))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun matrix-write-entity-head (matrix entity-plist)
|
|
|
|
|
"Draw an entity’s head. There aren't any Mami Tomoes in this game, dang it!"
|
2023-06-13 18:10:15 -05:00
|
|
|
|
(let* ((screen-coords (world-coords->screen-coords (getf entity-plist :coords)))
|
2023-06-14 16:36:34 -05:00
|
|
|
|
(direction (getf entity-plist :direction))
|
|
|
|
|
(face (getf entity-plist :face))
|
|
|
|
|
(width (+ (length face) 2)) ;; Face + |borders|
|
|
|
|
|
(y (- (getf screen-coords :y) 1))
|
|
|
|
|
(x (if (eq direction 'right)
|
|
|
|
|
(- (getf screen-coords :x) (floor (/ width 2)) 0)
|
|
|
|
|
(- (getf screen-coords :x) (floor (/ width 2)) 0))))
|
2023-06-19 14:56:13 -05:00
|
|
|
|
(📋:render-line matrix face (+ x 1) y)
|
2023-06-14 16:36:34 -05:00
|
|
|
|
(ignore-errors (setf (aref matrix y x) #\|))
|
|
|
|
|
(ignore-errors (setf (aref matrix y (+ width x -1))
|
|
|
|
|
#\|))))
|
2023-06-10 15:29:47 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun matrix-write-entity-legs (matrix entity-plist)
|
2023-06-14 16:36:34 -05:00
|
|
|
|
"Draw a bipdel entity’s legs — a surprisingly in-depth task!"
|
2023-06-13 18:10:15 -05:00
|
|
|
|
(let* ((screen-coords (world-coords->screen-coords (getf entity-plist :coords)))
|
|
|
|
|
(x (getf screen-coords :x))
|
2023-06-14 16:36:34 -05:00
|
|
|
|
(y (getf screen-coords :y))
|
2023-06-13 18:10:15 -05:00
|
|
|
|
(direction (getf entity-plist :direction)))
|
2023-06-10 15:29:47 -05:00
|
|
|
|
(cond ((eq direction 'right)
|
2023-06-14 16:36:34 -05:00
|
|
|
|
(ignore-errors (setf (aref matrix y x) #\|))
|
|
|
|
|
(ignore-errors (setf (aref matrix y (- x 1)) #\|)))
|
2023-06-16 12:16:44 -05:00
|
|
|
|
('t
|
2023-06-14 16:36:34 -05:00
|
|
|
|
(ignore-errors (setf (aref matrix y x) #\|))
|
|
|
|
|
(ignore-errors (setf (aref matrix y (+ x 1)) #\|))))))
|
2023-06-09 23:00:26 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-16 20:11:38 -05:00
|
|
|
|
;;; Overworld loop
|
2023-06-09 23:00:26 -05:00
|
|
|
|
;;; ———————————————————————————————————
|
2023-06-16 20:11:38 -05:00
|
|
|
|
(defun overworld-state
|
|
|
|
|
(matrix &key (map-path nil) (map (load-map map-path)))
|
|
|
|
|
"Render the given map to the matrix and take user-input — for one frame.
|
|
|
|
|
A state-function for use with STATE-LOOP."
|
|
|
|
|
(sleep .02)
|
|
|
|
|
(overworld-state-draw matrix map)
|
|
|
|
|
(overworld-state-update map))
|
2023-06-23 13:29:09 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
(defun make-overworld-state (map-path)
|
|
|
|
|
"Return a state-function for a a map, for use with STATE-LOOP."
|
|
|
|
|
(lambda (matrix &rest args)
|
|
|
|
|
(apply #'🌍:overworld-state
|
|
|
|
|
(append (list matrix :map-path map-path)
|
|
|
|
|
args))))
|