about summary refs log tree commit diff stats
path: root/shell/data.limg
blob: 03aa276d5f1cfb95af98b2b870c853116d923cc6 (plain) (blame)
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
(
  (globals . (
    (mac . [define mac
  (litmac litfn () ((m . params) . body)
    `(define ,m
       (litmac litfn () ,params ,@body)))])
    (def . [mac (def (name . params) . body)
  `(define ,name (fn ,params ,@body))])
    (do . [mac (do . body)
  `((fn () ,@body))])
    (let . [mac (let var val . body)
  `((fn (,var) ,@body) ,val)])
    (when . [mac (when cond . body)
  `(if ,cond (do ,@body) ())])
    (iflet . [mac (iflet var expr then else)
  `(let ,var ,expr
     (if ,var ,then ,else))])
    (aif . [mac (aif expr then else)
  `(iflet it ,expr ,then ,else)])
    (forever . [mac (forever . body)
  `(while 1 ,@body)])
    (list . [def (list . args)
  # we should probably make a copy here
  args])
    (ret . [mac (ret var val . body)
  `(let ,var ,val ,@body ,var)])
    (nth . [def (nth n xs)
  if (n < 1)
    (car xs)
    (nth n-1 (cdr xs))])
    (map1 . [def (map1 f xs)
  if (no xs)
    ()
    (cons (f (car xs))
          (map1 f (cdr xs)))])
    (compose . [def (compose f g)
  (fn args
    (f (apply g args)))])
    (caar . [define caar (compose car car)])
    (cadr . [define cadr (compose car cdr)])
    (cddr . [define cddr (compose cdr cdr)])
    (cdar . [define cdar (compose cdr car)])
    (val . [define val cadr])
    (some . [def (some f xs)
  if (no xs)
    ()
    if (f (car xs))
      xs
      (some f (cdr xs))])
    (any . [define any some])
    (all . [def (all f xs)
  if (no xs)
    1
    if (f (car xs))
      (all f (cdr xs))
      ()])
    (find . [def (find x xs)
  if (no xs)
    ()
    if (x = (car xs))
      1
      (find x (cdr xs))])
    (pair . [def (pair xs)
  if (no xs)
    ()
    if (no (cdr xs))
      (list (list (car xs)))
      (cons (list (car xs) (cadr xs))
            (pair (cddr xs)))])
    (with . [mac (with bindings . body)
  `((fn ,(map1 car (pair bindings))
      ,@body)
    ,@(map1 cadr (pair bindings)))])
    (afn . [mac (afn params . body)
  `(let self ()
     (set self (fn ,params ,@body)))])
    (seq . [def (seq n)
  ((afn (i)
     (if (i > n)
       ()
       (cons i (self i+1))))
   1)])
    (each . [mac (each x xs . body)
  `(walk ,xs (fn (,x) ,@body))])
    (walk . [def (walk xs f)
  when xs
    (f (car xs))
    (walk (cdr xs) f)])
    (rem . [def (rem f xs)
  if (no xs)
    ()
    let rest (rem f (cdr xs))
      if (f (car xs))
        rest
        (cons (car xs) rest)])
    (keep . [def (keep f xs)
  if (no xs)
    ()
    let rest (keep f (cdr xs))
      if (f (car xs))
        (cons (car xs) rest)
        rest])
    (alist? . [def (alist? x)
  (and (cons? x)
       (cons? (car x)))])
    (assoc . [def (assoc alist key)
  if (no alist)
    ()
    if (key = (caar alist))
      (car alist)
      (assoc (cdr alist) key)])
    (get . [def (get alist key)
  aif (assoc alist key)
    (cdr it)
    ()])
    (+= . [mac (var += inc)
  `(set ,var (,var + ,inc))])
    (++ . [mac (++ var)
  `(+= ,var 1)])
    (for . [mac (for var init test update . body)
  `(let ,var ,init
     (while ,test
       ,@body
       ,update))])
    (grid . [def (grid m n val)
  ret g (populate n ())
    for i 0 (< i n) ++i
      iset g i (populate m val)])
    (indexgrid . [def (indexgrid g x y)
  (index (index g y) x)])
    (isetgrid . [def (isetgrid g x y val)
  iset (index g y) x val])
    (hborder . [def (hborder scr y color)
  (hline scr y 0 (width scr) color)])
    (vborder . [def (vborder scr x color)
  (vline scr x 0 (height scr) color)])
    (read_line . [def (read_line keyboard)
  ret str (stream)
    let c (key keyboard)
      while (not (or (c = 0) (c = 10)))
        (write str c)
        (set c (key keyboard))])
    (wait . [def (wait keyboard)
  while (= 0 (key keyboard))
    ()])
    (sq . [def (sq n) (n * n)])
    (cube . [def (cube n) (n * n * n)])
    (fill_rect . [def (fill_rect screen x1 y1 x2 y2 color)
  for y y1 (y < y2) ++y
    (hline screen y x1 x2 color)])
    (ring . [def (ring screen cx cy r0 w clr)
  for r r0 (r < r0+w) ++r
    (circle screen cx cy r clr)])
    (Greys . [define Greys
  ret p (populate 16 ())
    for i 0 (< i 16) ++i
      iset p i i+16])
    (Pinks . [define Pinks (array
                84 85 59 60 61
                13 36 37 5 108)])
    (palette . [def (palette p i)
  (index p (i % (len p)))])
    (pat . [def (pat screen)
  with (w (width screen)
        h (height screen))
    for y 0 (y < h) ++y
      for x 0 (x < w) ++x
        (pixel screen x y (palette Greys x*y))])
    (main . [def (main screen keyboard)
  (life screen)])
    (liferes . [define liferes 8])
    (life . [def (life screen)
  with (w (/ (width screen) liferes)
        h (/ (height screen) liferes))
    with (g1 (grid w h 0)
          g2 (grid w h 0))
      isetgrid g1 w/2 h/2-1 1
      isetgrid g1 w/2+1 h/2-1 1
      isetgrid g1 w/2-1 h/2 1
      isetgrid g1 w/2 h/2 1
      isetgrid g1 w/2 h/2+1 1
      renderlife screen g1
      while 1
        steplife g1 g2 screen
        renderlife screen g2
        steplife g2 g1 screen
        renderlife screen g1])
    (steplife . [def (steplife old new screen)
  ++lifetime
  with (h (len old)
        w (len (index old 0)))
    for x 0 (< x w) ++x
      for y 0 (< y h) ++y
        fill_rect screen x*liferes y*liferes x+1*liferes y+1*liferes 0
        with (curr (indexgrid old x y)
              n (neighbors old x y w h)
             )
          isetgrid new x y (if (= n 2)
                             curr
                             (if (= n 3)
                               1
                               0))])
    (renderlife . [def (renderlife screen g)
  with (w (width screen)
        h (height screen))
    for y 0 (< y h) y+=liferes
      for x 0 (< x w) x+=liferes
        (fill_rect screen x y x+liferes y+liferes 
          (if (0 = (indexgrid g x/liferes y/liferes))
            3
#            (1 + lifetime%15)
            0))])
    (neighbors . [def (neighbors g x y w h)
  ret result 0
    when (y > 0)
      when (x > 0)
        result += (indexgrid g x-1 y-1)
      result += (indexgrid g x y-1)
      when (x < w-1)
        result += (indexgrid g x+1 y-1)
    when (x > 0)
      result += (indexgrid g x-1 y)
    when (x < w-1)
      result += (indexgrid g x+1 y)
    when (y < h-1)
      when (x > 0)
        result += (indexgrid g x-1 y+1)
      result += (indexgrid g x y+1)
      when (x < w-1)
        result += (indexgrid g x+1 y+1)])
    (lifetime . [define lifetime 0])
  ))
  (sandbox . [life screen])
)