src/entities/clothing.lisp @ 694cf6c40aac

Final flavor tweaks
author Steve Losh <steve@stevelosh.com>
date Sun, 08 Jan 2017 16:42:11 +0000
parents 7498a056c40c
children 1a47adb89b93
(in-package :ap.entities)

(defparameter *fabrics*
  (read-file-into-form "data/fabrics.lisp"))

(defparameter *singular-clothes*
  #("coat"
    "shirt"
    "skirt"
    "dress"
    "belt"
    "tie"
    "bow tie"
    "sock"
    "bra"
    "scarf"
    "jacket"
    "vest"
    "blouse"
    "sweater"
    "dress shirt"))

(defparameter *plural-clothes*
  #("pants"
    "socks"
    "briefs"
    "gloves"
    "tights"
    "shorts"
    "boxers"
    "panties"))

(define-entity clothing (visible coords holdable worth))

(defun random-clothing-description ()
  (destructuring-bind (article fabric)
      (random-elt *fabrics*)
    (if (randomp)
      (format nil "~A ~A ~A"
              article
              fabric
              (random-elt *singular-clothes*))
      (format nil "a pair of ~A ~A"
              fabric
              (random-elt *plural-clothes*)))))

(defun make-clothing (x y)
  (create-entity 'clothing
    :coords/x x
    :coords/y y
    :visible/glyph "&"
    :visible/color ap::+black-white+
    :worth/points (random-range 100 200)
    :holdable/description (random-clothing-description)))