summaryrefslogtreecommitdiff
path: root/chickadee/graphics/seagull/utils.scm
blob: af155a68dce8b3c0c39d47a521b604a9d58644e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
;;; Chickadee Game Toolkit
;;; Copyright © 2023 David Thompson <dthompson2@worcester.edu>
;;;
;;; Licensed under the Apache License, Version 2.0 (the "License");
;;; you may not use this file except in compliance with the License.
;;; You may obtain a copy of the License at
;;;
;;;    http://www.apache.org/licenses/LICENSE-2.0
;;;
;;; Unless required by applicable law or agreed to in writing, software
;;; distributed under the License is distributed on an "AS IS" BASIS,
;;; WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
;;; See the License for the specific language governing permissions and
;;; limitations under the License.

(define-module (chickadee graphics seagull utils)
  #:use-module (ice-9 exceptions)
  #:use-module (ice-9 match)
  #:use-module (language cps intmap)
  #:use-module (srfi srfi-1)
  #:use-module (srfi srfi-9)
  #:export (float?
            sourcev->string
            stage:vertex
            stage:fragment
            shader-stage?
            vertex-stage?
            fragment-stage?

            environment?
            fresh-environment
            environment
            bound?
            lookup
            extend
            compose-environments

            intmap->alist
            alist->intmap))

(define (float? x)
  (and (number? x) (inexact? x)))

(define (sourcev->string sourcev)
  (match sourcev
    (#f
     "unknown location")
    (#(#f line column)
     (format #f "unknown:~a:~a" line column))
    (#(file line column)
     (format #f "~a:~a:~a" file line column))))


;;;
;;; Shader stages
;;;

(define-record-type <shader-stage>
  (shader-stage name)
  shader-stage?
  (name shader-stage-name))

(define stage:vertex (shader-stage 'vertex))
(define stage:fragment (shader-stage 'fragment))

(define (vertex-stage? obj)
  (eq? obj stage:vertex))

(define (fragment-stage? obj)
  (eq? obj stage:fragment))


;;;
;;; Environments
;;;

;; Environments provide a lookup table.  Used for lexical scoping,
;; alpha conversion, etc.
(define-record-type <environment>
  (make-environment bindings)
  environment?
  (bindings environment-bindings))

(define (fresh-environment)
  (make-environment '()))

(define-syntax-rule (environment (key value) ...)
  (make-environment (list (cons 'key value) ...)))

(define (lookup name env)
  (assq-ref (environment-bindings env) name))

(define (bound? name env)
  (not (not (lookup name env))))

(define (extend name value env)
  (make-environment
    (alist-cons name value (environment-bindings env))))

(define (compose-environments . envs)
  (match envs
    ((a b)
     (make-environment
       (append (environment-bindings a)
               (environment-bindings b))))
    (_
     (make-environment
       (concatenate
        (map environment-bindings envs))))))


;;;
;;; Intmap helpers
;;;

(define (intmap->alist intmap)
  (intmap-fold-right alist-cons intmap '()))

(define (alist->intmap alist)
  (fold (lambda (pair intmap)
          (match pair
            ((k . v)
             (intmap-add intmap k v))))
        empty-intmap alist))