clocks.lisp 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. ;;;; Copyright © 2023, Jaidyn Ann <jadedctrl@posteo.at>
  2. ;;;;
  3. ;;;; This program is free software: you can redistribute it and/or
  4. ;;;; modify it under the terms of the GNU General Public License as
  5. ;;;; published by the Free Software Foundation, either version 3 of
  6. ;;;; the License, or (at your option) any later version.
  7. ;;;;
  8. ;;;; This program is distributed in the hope that it will be useful,
  9. ;;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. ;;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. ;;;; GNU General Public License for more details.
  12. ;;;;
  13. ;;;; You should have received a copy of the GNU General Public License
  14. ;;;; along with this program. If not, see <https://www.gnu.org/licenses/>.
  15. ;;;; FLORA-SEARCH-AURORA.INTERMISSION — CLOCKS
  16. ;;;; Some ASCII clock-stuff, for use with INTERMISSION’s clock-rendering.
  17. (in-package :flora-search-aurora.intermission)
  18. (defparameter *clock-base*
  19. "
  20. ---------------
  21. / ________ \\\"\
  22. / . / \\ ,.\\\"\
  23. ⁄ / \\ \\\"|
  24. | | | |\"|
  25. | ,| () | ,|\"|
  26. |. | | |\"|
  27. | \\ / , |\"|
  28. | ,. \\________/. |\"|
  29. | . . . |\"|
  30. | .,- ., . . |\"|
  31. | .. . . . . . . |\"|
  32. |__________________|\"|
  33. ")
  34. (defparameter *calendar-base*
  35. "
  36. :===================:
  37. :===================:|
  38. |\/ / ||
  39. | ||\"
  40. | ||\"
  41. | ||\"'
  42. | ||\"'
  43. | ||\"'
  44. | ||\"''
  45. | ||\"''
  46. | ||\"''
  47. |___________________||
  48. ")