2019-12-27 18:18:24 +01:00
|
|
|
#lang racket
|
|
|
|
(require pict3d
|
|
|
|
pict3d/universe
|
2019-12-27 19:00:00 +01:00
|
|
|
"pict3d-lib.rkt"
|
|
|
|
"noise.rkt")
|
2019-12-27 18:18:24 +01:00
|
|
|
|
|
|
|
(struct scene-state
|
2019-12-28 15:56:39 +01:00
|
|
|
(done? dx dy dz dsun)
|
2019-12-27 18:18:24 +01:00
|
|
|
#:transparent)
|
|
|
|
|
|
|
|
(define init-scene-state
|
2019-12-28 15:56:39 +01:00
|
|
|
(scene-state #f 0 0 0 0))
|
2019-12-27 18:18:24 +01:00
|
|
|
|
2019-12-27 18:27:27 +01:00
|
|
|
(current-material (material #:ambient 0.1
|
|
|
|
#:diffuse 0.6
|
|
|
|
#:specular 0.3
|
|
|
|
#:roughness 0.5))
|
2019-12-27 18:18:24 +01:00
|
|
|
|
2019-12-28 17:57:51 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;;; the wavy road thingie
|
|
|
|
|
2019-12-28 16:55:17 +01:00
|
|
|
(define (road t)
|
2019-12-28 17:09:20 +01:00
|
|
|
(define i-range-start -11)
|
|
|
|
(define i-range-end 11)
|
|
|
|
(define j-range-start -3)
|
|
|
|
(define j-range-end 12)
|
2019-12-28 16:55:17 +01:00
|
|
|
(define (calculate-noise-fn f)
|
|
|
|
(lambda (i j)
|
|
|
|
(scale-number (f (scale-number i i-range-start i-range-end -1 1)
|
|
|
|
(scale-number j j-range-start j-range-end -1 1)
|
|
|
|
(scale-number t 0 9000 -1 1))
|
|
|
|
-1 1
|
|
|
|
0 1)))
|
|
|
|
(define calculate-noise (calculate-noise-fn perlin))
|
|
|
|
(define calculate-noise-simplex (calculate-noise-fn simplex))
|
|
|
|
(let* ([rgba-noise (lambda (i j)
|
|
|
|
(let* ([r (calculate-noise i j)]
|
|
|
|
[g (calculate-noise-simplex i j)]
|
|
|
|
[b (calculate-noise-simplex r g)])
|
|
|
|
(rgba r g b 1)))]
|
|
|
|
[vertex-with-noise (lambda (i j)
|
2019-12-28 17:09:20 +01:00
|
|
|
(vertex (pos i (* (calculate-noise-simplex i j) 3) j)
|
|
|
|
#:color (rgba-noise i j)))]
|
2019-12-28 16:55:17 +01:00
|
|
|
[mesh
|
|
|
|
(for*/list ([i (in-range i-range-start i-range-end)]
|
|
|
|
[j (in-range j-range-start j-range-end)])
|
|
|
|
(quad (vertex-with-noise (add1 i) (add1 j))
|
|
|
|
(vertex-with-noise i (add1 j))
|
|
|
|
(vertex-with-noise i j)
|
|
|
|
(vertex-with-noise (add1 i) j)
|
|
|
|
#:back? #t))])
|
|
|
|
(combine mesh)))
|
|
|
|
|
2019-12-28 17:57:51 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; the jumping spheres
|
|
|
|
|
2019-12-28 17:09:20 +01:00
|
|
|
(define (spheres t)
|
2019-12-28 16:55:17 +01:00
|
|
|
(define (calculate-noise i j)
|
|
|
|
(scale-number (perlin (scale-number i -10 10 -1 1)
|
|
|
|
(scale-number j -1 10 -1 1)
|
|
|
|
(scale-number t 0 3000 -1 1))
|
|
|
|
-1 1
|
|
|
|
0 4))
|
|
|
|
(define (calculate-pos i j)
|
|
|
|
(pos i (calculate-noise i j) j))
|
2019-12-28 17:09:20 +01:00
|
|
|
(define spheres
|
|
|
|
(for*/list ([i (in-range -10 10)]
|
|
|
|
[j (in-range -1 10)])
|
|
|
|
(let ([x i]
|
|
|
|
[z j]
|
|
|
|
[y (calculate-noise i j)]
|
|
|
|
[alpha (scale-number
|
|
|
|
(simplex (scale-number i -10 10 -1 1)
|
|
|
|
(scale-number j -1 10 -1 1)
|
|
|
|
(scale-number t 0 2000 -1 1))
|
|
|
|
-1 1
|
|
|
|
0.33 1)])
|
|
|
|
(with-color (rgba-hex "ff71ce" alpha)
|
|
|
|
(sphere (pos x y z) 0.2)))))
|
|
|
|
(combine spheres))
|
|
|
|
|
2019-12-28 17:57:51 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; the static mesh
|
|
|
|
|
2019-12-28 17:09:20 +01:00
|
|
|
(define (mesh t)
|
2019-12-27 19:00:00 +01:00
|
|
|
(let* ([lines
|
|
|
|
(for*/list ([i (in-range -10 10)]
|
|
|
|
[j (in-range 0 10)])
|
|
|
|
(with-color (rgba-hex "05ffa1")
|
2019-12-27 18:27:27 +01:00
|
|
|
(move (cylinder (pos (- 0.1) (- 0.1) -5)
|
|
|
|
(pos 0.1 0.1 10))
|
2019-12-27 19:00:00 +01:00
|
|
|
(dir i 0 j))))]
|
2019-12-28 17:57:51 +01:00
|
|
|
[lines-comb (apply combine lines)])
|
|
|
|
(freeze (combine lines
|
|
|
|
(move (rotate-y lines-comb 90)
|
|
|
|
(dir -7 0 5))))))
|
2019-12-27 18:18:24 +01:00
|
|
|
|
2019-12-28 17:57:51 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; the bendy pipe
|
|
|
|
|
|
|
|
(define my-pipe (tessellate (with-color (rgba-hex "01cdfe") (pipe origin (dir 1 1/2 1)))))
|
2019-12-28 15:56:31 +01:00
|
|
|
(define (bend+ p x y z)
|
|
|
|
(bend p
|
|
|
|
(scale-number (perlin x y z) -1 1 -180 180)))
|
|
|
|
(define (scene t)
|
2019-12-28 16:55:17 +01:00
|
|
|
(move-y (rotate-x
|
|
|
|
(bend+ my-pipe (/ t 3000) (/ t 4000) 69)
|
|
|
|
90)
|
|
|
|
2))
|
2019-12-27 18:18:24 +01:00
|
|
|
|
2019-12-28 17:57:51 +01:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
;; the lights
|
|
|
|
|
2019-12-27 19:25:24 +01:00
|
|
|
(define (make-sunlight dsun)
|
2019-12-27 18:18:24 +01:00
|
|
|
(sunlight
|
2019-12-27 19:25:24 +01:00
|
|
|
(angles->dir -30 (* 10 dsun))
|
2019-12-28 17:57:51 +01:00
|
|
|
(emitted-hex "fffb96" 1/2)))
|
2019-12-27 18:18:24 +01:00
|
|
|
|
2019-12-28 15:56:39 +01:00
|
|
|
;; Calculate camera position based on the state
|
|
|
|
(define (camera-position s)
|
|
|
|
(pos 0 (+ 4 (scene-state-dy s)) (- (scene-state-dz s) 4)))
|
|
|
|
;; Calculate camera direction based on the state
|
|
|
|
(define (camera-direction s)
|
|
|
|
(angles->dir -90 55))
|
|
|
|
|
2019-12-27 18:18:24 +01:00
|
|
|
(define (on-draw s n t)
|
|
|
|
(combine (basis 'camera
|
2019-12-28 15:56:39 +01:00
|
|
|
(point-at (camera-position s)
|
|
|
|
(camera-direction s)))
|
2019-12-27 19:25:24 +01:00
|
|
|
(make-sunlight (scene-state-dsun s))
|
2019-12-27 19:00:00 +01:00
|
|
|
(mesh t)
|
2019-12-28 17:57:51 +01:00
|
|
|
;; (move-y (road t) -1)
|
|
|
|
(spheres t)
|
|
|
|
(scene t)
|
2019-12-28 17:09:20 +01:00
|
|
|
))
|
2019-12-27 18:18:24 +01:00
|
|
|
|
|
|
|
(define (on-key s n t k)
|
|
|
|
(case k
|
|
|
|
[("escape" "q") (struct-copy scene-state s [done? #t])]
|
|
|
|
[("right") (struct-copy scene-state s
|
2019-12-27 19:25:24 +01:00
|
|
|
[dsun (add1 (scene-state-dsun s))])]
|
2019-12-27 18:18:24 +01:00
|
|
|
[("left") (struct-copy scene-state s
|
2019-12-27 19:25:24 +01:00
|
|
|
[dsun (sub1 (scene-state-dsun s))])]
|
2019-12-28 15:56:39 +01:00
|
|
|
[("up") (struct-copy scene-state s
|
|
|
|
[dy (+ (scene-state-dy s) 0.1)])]
|
|
|
|
[("down") (struct-copy scene-state s
|
|
|
|
[dy (- (scene-state-dy s) 0.1)])]
|
|
|
|
[("w") (struct-copy scene-state s
|
|
|
|
[dz (+ (scene-state-dz s) 0.1)])]
|
|
|
|
[("s") (struct-copy scene-state s
|
|
|
|
[dz (- (scene-state-dz s) 0.1)])]
|
2019-12-27 18:18:24 +01:00
|
|
|
[else s]))
|
|
|
|
|
|
|
|
(define (stop-state? s n t) (scene-state-done? s))
|
|
|
|
|
|
|
|
(big-bang3d init-scene-state
|
|
|
|
#:on-draw on-draw
|
|
|
|
#:on-key on-key
|
|
|
|
#:stop-state? stop-state?
|
2019-12-27 19:18:26 +01:00
|
|
|
#:name "sketch"
|
2019-12-28 17:09:20 +01:00
|
|
|
#:width 960
|
|
|
|
#:height 760)
|
2019-12-27 18:18:24 +01:00
|
|
|
|