This commit is contained in:
Logan Hunt 2021-04-19 22:23:47 -06:00
parent b66ae29fe1
commit 0d06592af4

101
main.lisp
View File

@ -1,9 +1,30 @@
(ql:quickload "cl-charms") (ql:quickload "cl-charms")
(ql:quickload "trivial-left-pad") (ql:quickload "trivial-left-pad")
(defvar *splits* '(("Kraid" 0 0 0)("Phantoon" 0 0 0)("Draygon" 0 0 0) ("Ridley" 0 0 0))) (defvar *splits* '(("start" 0 0 0)("Kraid" 0 0 0)("Phantoon" 0 0 0)("Draygon" 0 0 0)("Ridley" 0 0 0)))
(defvar *current-split-index* 0)
(defvar *interval* internal-time-units-per-second)
(defvar *start-time* 0)
(defun make-string-bruh () "bruh") (defun current-time ()
(let ((time (get-internal-real-time)))
(cond ((zerop *start-time*) (setf *start-time* time))
(t (- time *start-time*)))))
(defun time-to-millis (time)
(* (/ time *interval*) 1000))
(defun get-value (list index)
(cond
((null list) nil)
((zerop index) (car list))
(t (get-value (cdr list) (1- index)))))
(defun change-value (list index value)
(cond
((null list) '())
((zerop index) (setq list (cons value (cdr list))))
(t (setq list (cons (car list) (change-value (cdr list) (1- index) value))))))
(defun add-to-string-if-not-empty (string suffix) (defun add-to-string-if-not-empty (string suffix)
(cond ((not (zerop (length string))) (concatenate 'string string suffix)))) (cond ((not (zerop (length string))) (concatenate 'string string suffix))))
@ -30,23 +51,73 @@
(add-to-string-if-not-empty (caddr time_strs) ".") (add-to-string-if-not-empty (caddr time_strs) ".")
(cadddr time_strs))) (cadddr time_strs)))
(defun format-my-split (split) (defun format-split (split)
(cond (cond
((null split) "") ((null split) "")
(t (concatenate 'string (trivial-left-pad:left-pad (car split) 15) (format-my-split (cdr split)))))) (t
(concatenate
'string
(trivial-left-pad:left-pad
(cond
((numberp (car split))
(time->string (millis->strings (car split))))
(t (car split)))
15)
(format-split (cdr split))))))
(defun start-split (split)
(setq split (change-value split 1 (time-to-millis (current-time))))
(setq split (change-value split 2 (time-to-millis (current-time)))))
(defun update-split (split)
(cond
((zerop (caddr split)) (setq split (start-split split)))
)
(setq split (change-value split 2 (time-to-millis (current-time))))
(setq split (change-value split 3 (- (caddr split) (cadr split)))))
(defun format-splits (current_list)
(cond
((null current_list) "")
(t
(concatenate
'string
(format nil "|~a|~%" (format-split (car current_list)))
(format-splits (cdr current_list)))))
)
(defun do-on-current-split (f)
(setq
*splits*
(change-value
*splits*
*current-split-index*
(funcall f
(get-value
*splits*
*current-split-index*)))))
(defun hello-world () (defun hello-world ()
(charms:with-curses () (charms:with-curses ()
(charms:disable-echoing) (charms:disable-echoing)
(charms:enable-raw-input) (charms:enable-raw-input :interpret-control-characters t)
(loop named hello-world (charms:enable-non-blocking-mode charms:*standard-window*)
with window = (charms:make-window 50 15 10 10) (setq *start-time* (get-internal-real-time))
do (progn (loop :named driver-loop
(charms:clear-window window) :for c := (charms:get-char charms:*standard-window*
(charms:write-string-at-point window (make-string-bruh) 0 0) :ignore-error t)
(charms:refresh-window window) :do (progn
(charms:clear-window charms:*standard-window*)
(cond ((null (get-value *splits* *current-split-index*)) (return-from driver-loop)))
(do-on-current-split (lambda (x) (update-split x)))
(charms:write-string-at-point charms:*standard-window*(format-splits *splits*) 0 0)
(charms:refresh-window charms:*standard-window*)
(case c
((nil) nil)
((#\Space) (incf *current-split-index* 1))
((#\q) (return-from driver-loop)))
(sleep 0.01)
)))
(get-value *splits* (1- *current-split-index*))
)
;; Process input
(when (eql (charms:get-char window) #\q)
(return-from hello-world))
(sleep 0.1)))))