diff options
author | Case Duckworth | 2023-06-13 11:38:01 -0500 |
---|---|---|
committer | Case Duckworth | 2023-06-13 11:38:01 -0500 |
commit | 8c22161119b7499746764a1ae2229257e2a38f16 (patch) | |
tree | c6706dafceb16b8f47c1a02751161f0179742349 | |
parent | Polish exiting and add intro screen (diff) | |
download | apple-main.tar.gz apple-main.zip |
Update license to god willing license main
-rw-r--r-- | COPYING | 22 | ||||
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | apple.scm | 44 | ||||
-rw-r--r-- | cover.png | bin | 0 -> 10427 bytes | |||
-rw-r--r-- | desc.txt | 11 | ||||
-rw-r--r-- | todo.txt | 13 |
6 files changed, 57 insertions, 37 deletions
diff --git a/COPYING b/COPYING index be17d92..26caa42 100644 --- a/COPYING +++ b/COPYING | |||
@@ -1,17 +1,11 @@ | |||
1 | Look at This Cool Rock I Found Public License Version 1.0 | 1 | Copyright (C) Case Duckworth under the terms of the |
2 | Copyright (C) Case Duckworth <acdw@acdw.net> | ||
3 | 2 | ||
4 | Redistribution and use in source and binary forms, with or without modification, | 3 | = = = = = = = = = = = = = GOD WILLING LICENSE v1.0 = = = = = = = = = = = = = = |
5 | are permitted provided that the following conditions are met: | ||
6 | 4 | ||
7 | 1. You must agree to look at this cool rock I found[a]. Images of the cool rock | 5 | Permission to use, distribute, modify, or otherwise interact with this software |
8 | may be provided either as a URL or as an image in the source repository in | 6 | is up to the good Lord, who in Their wisdom makes all things possible. I really |
9 | JPEG or WEBP format. GIF files may also be provided, but only in addition to | 7 | recommend you take it up with Them whether you should incorporate this software |
10 | JPEG/WEBP. In the event that a URL is provided and the URL returns a 404 in | 8 | into your project or not. |
11 | the future, the user may, at their discretion, provide a backup cool rock to | ||
12 | look at until such time as the URL is fixed. | ||
13 | 9 | ||
14 | This software is provided "as is" and any express or implied warranties are | 10 | This software comes with no warranties from the copyright holder; I cannot speak |
15 | disclaimed, even if you do look at the rock. | 11 | for God. |
16 | |||
17 | [a]: https://junk.acdw.net/coolrock.jpg \ No newline at end of file | ||
diff --git a/README.md b/README.md index 95b97b6..df51f1b 100644 --- a/README.md +++ b/README.md | |||
@@ -19,9 +19,9 @@ Run `./apple.scm` in this directory. Alternatively, run `make` to build a stati | |||
19 | 19 | ||
20 | ## License | 20 | ## License |
21 | 21 | ||
22 | This software is licensed under the Look At This Cool Rock I Found Public License, version 1.0. See [COPYING][] for details. | 22 | This software is licensed under the God Willing License, version 1.0. See [COPYING][] for details. |
23 | 23 | ||
24 | Here is a picture of the cool rock I found: | 24 | Also, here is a picture of a cool rock I found: |
25 | 25 | ||
26 | ![cool rock](https://junk.acdw.net/coolrock.jpg) | 26 | ![cool rock](https://junk.acdw.net/coolrock.jpg) |
27 | 27 | ||
diff --git a/apple.scm b/apple.scm index abc5b8d..0364cf4 100755 --- a/apple.scm +++ b/apple.scm | |||
@@ -21,7 +21,7 @@ See COPYING for details. | |||
21 | (matchable) | 21 | (matchable) |
22 | (stty)) | 22 | (stty)) |
23 | 23 | ||
24 | (define (log* . xs) | 24 | #;(define (log* . xs) |
25 | (with-output-to-port (current-error-port) | 25 | (with-output-to-port (current-error-port) |
26 | (lambda () | 26 | (lambda () |
27 | (for-each (lambda (x) (display x) (display " ") x) | 27 | (for-each (lambda (x) (display x) (display " ") x) |
@@ -45,17 +45,18 @@ See COPYING for details. | |||
45 | game-cleanup))))) | 45 | game-cleanup))))) |
46 | 46 | ||
47 | (define (game-exit-message msg) | 47 | (define (game-exit-message msg) |
48 | (cond | 48 | (cond ((and (pair? msg) |
49 | ((eq? msg 'win) | 49 | (eq? (car msg) 'error)) |
50 | (print "Congrats!") | 50 | (apply error "An error occurred" msg) |
51 | #t) | 51 | #f) |
52 | ((eq? msg 'lose) | 52 | (else |
53 | (print "Better luck next time.") | 53 | (cond |
54 | #t) | 54 | ((eq? msg 'win) |
55 | ((and (pair? msg) | 55 | (print "Congrats!")) |
56 | (eq? (car msg) 'error)) | 56 | ((eq? msg 'lose) |
57 | (apply error "An error occurred" (cdr error)) | 57 | (print "Better luck next time."))) |
58 | #f))) | 58 | (print "Final score: " (score)) |
59 | #t))) | ||
59 | 60 | ||
60 | ;;; Parameters | 61 | ;;; Parameters |
61 | (define me (make-parameter #f)) | 62 | (define me (make-parameter #f)) |
@@ -63,10 +64,11 @@ See COPYING for details. | |||
63 | (define fruit (make-parameter #f)) | 64 | (define fruit (make-parameter #f)) |
64 | (define world (make-parameter #f)) | 65 | (define world (make-parameter #f)) |
65 | (define game-end (make-parameter #f)) | 66 | (define game-end (make-parameter #f)) |
67 | (define score (make-parameter 0)) | ||
66 | 68 | ||
67 | (define fruits | 69 | (define fruits |
68 | (make-parameter (list (with-attrs '(yellow) ")") | 70 | (make-parameter (list (with-attrs '(green) "ò") |
69 | (with-attrs '(green) "ò") | 71 | (with-attrs '(yellow) ")") |
70 | (with-attrs '(magenta) "%") | 72 | (with-attrs '(magenta) "%") |
71 | (with-attrs '(blue) "*")))) | 73 | (with-attrs '(blue) "*")))) |
72 | 74 | ||
@@ -110,7 +112,7 @@ See COPYING for details. | |||
110 | 112 | ||
111 | (define (game-intro) | 113 | (define (game-intro) |
112 | (draw #<#END | 114 | (draw #<#END |
113 | #erase-screen | 115 | |
114 | A P P L E! | 116 | A P P L E! |
115 | a Spring Lisp Game Jam 2023 entry | 117 | a Spring Lisp Game Jam 2023 entry |
116 | by Case Duckworth <acdw@acdw.net> | 118 | by Case Duckworth <acdw@acdw.net> |
@@ -325,7 +327,7 @@ END | |||
325 | ;;; hacky-end | 327 | ;;; hacky-end |
326 | 328 | ||
327 | (define (handle-collision a b) | 329 | (define (handle-collision a b) |
328 | (log* (thing-name a) (thing-name b)) | 330 | #;(log* (thing-name a) (thing-name b)) |
329 | (cond | 331 | (cond |
330 | ((or (and (me? a) (snake-head? b)) | 332 | ((or (and (me? a) (snake-head? b)) |
331 | (and (snake-head? a) (me? b))) | 333 | (and (snake-head? a) (me? b))) |
@@ -346,13 +348,13 @@ END | |||
346 | #f) | 348 | #f) |
347 | (thing-pos-randomize! (fruit)) | 349 | (thing-pos-randomize! (fruit)) |
348 | (thing-look-set! (fruit) (random-choice (fruits))) | 350 | (thing-look-set! (fruit) (random-choice (fruits))) |
349 | (snake-length-set! (snake) (+ (random-int 4 7) (snake-length (snake))))) | 351 | (snake-length-set! (snake) (+ (random-int 4 7) (snake-length (snake)))) |
352 | (score (+ 5 (score)))) | ||
350 | 353 | ||
351 | (define (game-win) | 354 | (define (game-win) |
352 | (draw (cursor-move 10 10) | 355 | (draw (cursor-move 10 10) |
353 | "YOU WIN! ") | 356 | "YOU WIN! ") |
354 | (sleep 1) | 357 | (sleep 1) |
355 | (flush-input) | ||
356 | (readch) | 358 | (readch) |
357 | ((game-end) 'win)) | 359 | ((game-end) 'win)) |
358 | 360 | ||
@@ -360,7 +362,6 @@ END | |||
360 | (draw (cursor-move 10 10) | 362 | (draw (cursor-move 10 10) |
361 | "YOU LOSE :( ") | 363 | "YOU LOSE :( ") |
362 | (sleep 1) | 364 | (sleep 1) |
363 | (flush-input) | ||
364 | (readch) | 365 | (readch) |
365 | ((game-end) 'lose)) | 366 | ((game-end) 'lose)) |
366 | 367 | ||
@@ -480,7 +481,8 @@ END | |||
480 | (snake-length snake))) | 481 | (snake-length snake))) |
481 | (for-each (lambda (t) (thing-place! t)) | 482 | (for-each (lambda (t) (thing-place! t)) |
482 | (snake-tail snake)) | 483 | (snake-tail snake)) |
483 | (snake-mtime-set! snake now)))) | 484 | (snake-mtime-set! snake now) |
485 | (score (+ 1 (score)))))) | ||
484 | 486 | ||
485 | (define (direction->velocity direction) | 487 | (define (direction->velocity direction) |
486 | (case direction | 488 | (case direction |
@@ -563,7 +565,7 @@ END | |||
563 | (snake-move-toward snake (fruit))) | 565 | (snake-move-toward snake (fruit))) |
564 | ;; Otherwise, move toward `me' | 566 | ;; Otherwise, move toward `me' |
565 | (else (snake-move-toward snake (me)))))) | 567 | (else (snake-move-toward snake (me)))))) |
566 | (unless (eq? direction new-dir) | 568 | #;(unless (eq? direction new-dir) |
567 | (log* direction new-dir)) | 569 | (log* direction new-dir)) |
568 | ;; Don't let the snake double back into itself | 570 | ;; Don't let the snake double back into itself |
569 | (cond | 571 | (cond |
diff --git a/cover.png b/cover.png new file mode 100644 index 0000000..6c286e4 --- /dev/null +++ b/cover.png | |||
Binary files differ | |||
diff --git a/desc.txt b/desc.txt new file mode 100644 index 0000000..56da8ba --- /dev/null +++ b/desc.txt | |||
@@ -0,0 +1,11 @@ | |||
1 | A P P L E! a Spring Lisp Game Jam 2023 entry by Case Duckworth | ||
2 | |||
3 | Welcome to APPLE, the game of SNAKE, except you're the apple instead! | ||
4 | |||
5 | Specifically, you're the RED APPLE running from the SNAKE. He's hungry and looking for you! | ||
6 | |||
7 | Luckily, you can distract him by going near other FRUIT #(fruits), which he'll eat instead of you, getting longer until he finally can't move and eat himself. | ||
8 | |||
9 | Move using HJKL or arrow keys! Quit with Q, and pause with ESC. | ||
10 | |||
11 | GOOD LUCK :D | ||
diff --git a/todo.txt b/todo.txt new file mode 100644 index 0000000..e2e0f66 --- /dev/null +++ b/todo.txt | |||
@@ -0,0 +1,13 @@ | |||
1 | # Todo for apple! | ||
2 | |||
3 | - [x] Install an exception handler to ensure the game always returns the terminal correctly | ||
4 | - [x] Add intro/rules screen | ||
5 | - Could this be after the world is drawn in like, a "press any key to start" thing? | ||
6 | - [x] Write `flush-current-input-port' : | ||
7 | (define (flush-current-input-port) (if (char-ready?) (read-string))) | ||
8 | or something.. just to ensure that pending input doesn't do things | ||
9 | |||
10 | - [ ] Score | ||
11 | - +1 every step | ||
12 | - +5 every fruit the snake eats? or +x, where x is how much the snake grows... | ||
13 | |||