aboutsummaryrefslogtreecommitdiffstats
path: root/alv-lib/love.moon
blob: e18ea3f644428cf18ab69e15e8f5d76e5f4842c5 (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
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
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
import Constant, Op, PureOp, Input, Error, T, Array, any, sig, const from require 'alv.base'
import RTNode from require 'alv'
tsv = do
  ok, mod = pcall require, 'texture-share-vk'
  ok and mod

unpack or= table.unpack

vec2 = Array 2, T.num
vec3 = Array 3, T.num
vec4 = Array 4, T.num

class DrawId
  new: =>

draw = Constant.meta
  meta:
    name: 'draw'
    summary: "draw one or more love/shape shapes."
    examples: { '(love/draw shape1 …)', '(love/draw shapes)' }

  value: class extends Op
    pattern = any['love/shape']*0
    setup: (inputs, scope) =>
      if #inputs == 1
        only = inputs[1]
        type = only\type!
        if type.__class == Array and type.type == T['love/shape']
          super Input.hot only
          return

      shapes = pattern\match inputs
      inputs = [Input.hot shape for shape in *shapes]
      inputs.num = Input.cold Constant.num #shapes
      super inputs

    tick: =>
      shapes = @unwrap_all!
      num = shapes.num or #shapes
      for i=1, num do shapes[i] or= ->

      COPILOT.drawlist[@tag\ident!] = shapes

    destroy: =>
      COPILOT.drawlist[@tag\ident!] = nil

group = Constant.meta
  meta:
    name: 'group'
    summary: "combine shapes to transform as one."
    examples: { '(love/group shape…)' }

  value: class extends PureOp
    pattern: any['love/shape']*0
    type: T['love/shape']

    tick: =>
      shapes = @unwrap_all!

      @out\set ->
        for shape in *shapes
          shape!

window_mode = Constant.meta
  meta:
    name: 'window-mode'
    summary: "set the love2d swagger."
    examples: { '(love/window-mode width height [flags])' }

  value: class extends PureOp
    pattern: any.num + any.num + -any!
    tick: =>
      { width, height, flags } = @unwrap_all!
      love.window.setMode width, height, flags
      COPILOT.window_size\set { width, height }

tsv_output = Constant.meta
  meta:
    name: 'tsv-output'
    summary: "send rendered output via texture_share_vk."
    examples: { '(love/tsv-output name [size] shape)' }

  value: class extends Op
    pattern = const.str + -const(vec2) + any['love/shape']
    setup: (inputs, scope) =>
      { name, size, shape } = pattern\match inputs

      super
        name: Input.hot name
        size: Input.hot size or COPILOT.window_size
        shape: Input.hot shape

      @state or= { tsv: assert tsv.new! }
      @setup_out '~', T['love/shape']

    fork: =>
      out = @out\fork!
      state = {
        tsv: @state.tsv
        canvas: @state.canvas
      }
      @@ out, state, @inputs

    tick: =>
      { :name, :size, :shape } = @inputs

      if not @state.canvas or name\dirty! or size\dirty!
        @state.canvas = @state.tsv\newSharedCanvas name!, unpack size!

      @out\set ->
        love.graphics.push "all"
        love.graphics.reset!
        love.graphics.setCanvas @state.canvas.canvas

        love.graphics.clear!
        shape!!
        love.graphics.pop!

        assert @state.canvas\send!

        love.graphics.push "all"
        love.graphics.draw @state.canvas.canvas
        love.graphics.pop!

no_shape = Constant.meta
  meta:
    name: 'no-shape'
    summary: "invisible null shape."

  value: T['love/shape']\mk_const ->

circle = Constant.meta
  meta:
    name: 'circle'
    summary: "create a circle shape."
    examples: { '(love/circle mode radius [segments])' }

  value: class extends PureOp
    pattern: any.str + any.num + -any.num
    type: T['love/shape']

    tick: =>
      { mode, radius, segments } = @unwrap_all!

      @out\set ->
        love.graphics.circle mode, 0, 0, radius, segments

ellipse = Constant.meta
  meta:
    name: 'ellipse'
    summary: "create a ellipse shape."
    examples: { '(love/ellipse mode size [segments])', '(love/ellipse mode rx ry [segments])' }

  value: class extends PureOp
    pattern: any.str + (any(vec2) / (any.num + any.num)) + -any.num
    type: T['love/shape']

    tick: =>
      { mode, size, segments } = @unwrap_all!
      { rx, ry } = size

      @out\set ->
        love.graphics.ellipse mode, 0, 0, rx, ry, segments

rectangle = Constant.meta
  meta:
    name: 'rectangle'
    summary: "create a rectangle shape."
    examples: { '(love/rectangle mode size)', '(love/rectangle mode w h)' }

  value: class extends PureOp
    pattern: any.str + (any(vec2) / (any.num + any.num))
    type: T['love/shape']

    tick: =>
      { mode, size } = @unwrap_all!
      { w, h } = size
      x, y = -w/2, -h/2

      @out\set ->
        love.graphics.rectangle mode, x, y, w, h

font = Constant.meta
  meta:
    name: 'font'
    summary: "create a font."
    examples: { '(love/font [filename] size)' }

  value: class extends PureOp
    pattern: -any.str + any.num
    type: T['love/font']

    tick: =>
      { name, size } = @unwrap_all!
      name, size = size, nil if not name
      @out\set love.graphics.newFont name, size

text = Constant.meta
  meta:
    name: 'text'
    summary: "create a text shape."
    examples: { '(love/text str [align] [font])' }
    description: "
Create a shape that draws the text `str` with font `font` (or the default font).
`align` should be on of the following strings:
- `center` (the default)
- `left`
- `right`"

  value: class extends PureOp
    pattern: any.str + -any.str + -any['love/font']
    type: T['love/shape']

    tick: =>
      { str, align, fnt } = @unwrap_all!

      wm = switch align or 'center'
        when 'left' then 0
        when 'center' then -0.5
        when 'right' then -1
        else
          error Error 'argument', "unknown text alignment '#{align}'"

      @out\set ->
        fnt or= love.graphics.getFont!
        width = fnt\getWidth str
        height = fnt\getHeight!
        love.graphics.print str, fnt, math.floor(width*wm), math.floor(-height/2)

text_wrap = Constant.meta
  meta:
    name: 'text'
    summary: "create a text shape, wrapping beyond a certain width."
    examples: { '(love/text-wrap str width [align] [font])' }
    description: "
Create a shape that draws the text `str` with font `font` (or the default font).
`align` should be on of the following strings:
- `center` (the default)
- `left`
- `right`"

  value: class extends PureOp
    pattern: any.str + any.num + -any.str + -any['love/font']
    type: T['love/shape']

    tick: =>
      { str, width, align, fnt } = @unwrap_all!

      wm = switch align or 'center'
        when 'left' then 0
        when 'center' then -0.5
        when 'right' then -1
        else
          error Error 'argument', "unknown text alignment '#{align}'"

      @out\set ->
        fnt or= love.graphics.getFont!
        _, lines = fnt\getWrap str, width
        height = #lines * fnt\getHeight!
        love.graphics.printf str, fnt, math.floor(width*wm), math.floor(-height/2), width, align

color = Constant.meta
  meta:
    name: 'color'
    summary: "set color of a shape."
    examples: { '(love/color color shape)', '(love/color r g b [a] shape)' }

  value: class extends PureOp
    pattern: (any(vec3) / any(vec4) / any.num\rep(3, 4)) + any['love/shape']
    type: T['love/shape']

    tick: =>
      { col, shape } = @unwrap_all!
      { r, g, b, a } = col

      @out\set ->
        love.graphics.setColor r, g, b, a
        shape!
        love.graphics.setColor 1, 1, 1

line_width = Constant.meta
  meta:
    name: 'line-width'
    summary: "set line-width of a shape."
    examples: { '(love/line-width width shape)' }

  value: class extends PureOp
    pattern: any.num + any['love/shape']
    type: T['love/shape']

    tick: =>
      { width, shape } = @unwrap_all!

      @out\set ->
        love.graphics.setLineWidth width
        shape!
        love.graphics.setLineWidth 1

translate = Constant.meta
  meta:
    name: 'translate'
    summary: "translate a shape."
    examples: { '(love/translate [delta] shape)', '(love/translate x y shape)' }

  value: class extends PureOp
    pattern: (any(vec2) / (any.num + any.num)) + any['love/shape']
    type: T['love/shape']

    tick: =>
      { pos, shape } = @unwrap_all!
      { x, y } = pos

      @out\set ->
        love.graphics.push!
        love.graphics.translate x, y
        shape!
        love.graphics.pop!

rotate = Constant.meta
  meta:
    name: 'rotate'
    summary: "rotate a shape."
    examples: { '(love/rotate angle shape)' }

  value: class extends PureOp
    pattern: any.num + any['love/shape']
    type: T['love/shape']

    tick: =>
      { angle, shape } = @unwrap_all!

      @out\set ->
        love.graphics.push!
        love.graphics.rotate angle
        shape!
        love.graphics.pop!

scale = Constant.meta
  meta:
    name: 'scale'
    summary: "scale a shape."
    examples: { '(love/scale scale shape)', '(love/scale sx [sy] shape)' }

  value: class extends PureOp
    pattern: (any(vec2) / (any.num + -any.num)) + any['love/shape']
    type: T['love/shape']

    tick: =>
      { pos, shape } = @unwrap_all!
      { sx, sy } = pos

      @out\set ->
        love.graphics.push!
        love.graphics.scale sx, sy
        shape!
        love.graphics.pop!

shear = Constant.meta
  meta:
    name: 'shear'
    summary: "shear a shape."
    examples: { '(love/shear x y shape)' }

  value: class extends PureOp
    pattern: (any(vec2) / (any.num + any.num)) + any['love/shape']
    type: T['love/shape']

    tick: =>
      { pos, shape } = @unwrap_all!
      { sx, sy } = pos

      @out\set ->
        love.graphics.push!
        love.graphics.shear sx, sy
        shape!
        love.graphics.pop!

mouse_pos = Constant.meta
  meta:
    name: 'mouse-pos'
    summary: "outputs current mouse position."
    examples: { '(love/mouse-pos)' }
    description: "vec2~ stream of mouse position."

  value: class extends Op
    setup: =>
      @out = COPILOT.mouse_pos
      super Input.hot @out

    poll: => @out\dirty!

mouse_delta = Constant.meta
  meta:
    name: 'mouse-delta'
    summary: "outputs mouse move events."
    examples: { '(love/mouse-delta)' }
    description: "vec2! stream of mouse movements."

  value: class extends Op
    setup: =>
      @out = COPILOT.mouse_delta
      super Input.hot @out

    poll: => @out\dirty!
  
mouse_presses = Constant.meta
  meta:
    name: 'mouse-presses'
    summary: "outputs mouse press events."
    examples: { '(love/mouse-presses)', '(love/mouse-presses button)' }
    description: "With no arguments, outputs a !-stream of press events with the following keys:
- `pos` (vec2): x/y position of mouse
- `button` (num): mouse button number

If `button` is passed, outputs a vec2! stream."

  value: class extends Op
    setup: (inputs) =>
      button = (-sig.num)\match inputs
      event = Input.hot COPILOT.mouse_presses

      if button
        super :event, button: Input.cold button
        @out = vec2\mk_evt!
      else
        super :event
        @out = COPILOT.mouse_presses

    poll: => COPILOT.mouse_presses\dirty!

    tick: =>
      { :button, :event } = @unwrap_all!
      if event and event.button == button
        @out\set event.pos

mouse_releases = Constant.meta
  meta:
    name: 'mouse-releases'
    summary: "outputs mouse release events."
    examples: { '(love/mouse-releases)', '(love/mouse-releases button)' }
    description: "With no arguments, outputs a !-stream of release events with the following keys:
- `pos` (vec2): x/y position of mouse
- `button` (num): mouse button number

If `button` is passed, outputs a vec2! stream."

  value: class extends Op
    setup: (inputs) =>
      button = (-sig.num)\match inputs
      event = Input.hot COPILOT.mouse_releases

      if button
        super :event, button: Input.cold button
        @out = vec2\mk_evt!
      else
        super :event
        @out = COPILOT.mouse_releases

    poll: => COPILOT.mouse_releases\dirty!

    tick: =>
      { :button, :event } = @unwrap_all!
      if event and event.button == button
        @out\set event.pos

mouse_down = Constant.meta
  meta:
    name: 'mouse-down?'
    summary: "checks whether a mouse button is down."
    examples: { '(love/mouse-down? [button])' }
    description: "checks whether `button` is down and returns a bool ~-stream.

`button` should be a num~ stream and defaults to `1` (the left mouse button)."

  value: class extends Op
    pattern = -sig.num
    setup: (inputs) =>
      button = pattern\match inputs

      super
        button: Input.hot button or T.num\mk_const 1
        press: Input.hot COPILOT.mouse_presses
        release: Input.hot COPILOT.mouse_releases

      @setup_out '~', T.bool, false

    poll: =>
      return true if COPILOT.mouse_presses\dirty!
      return true if COPILOT.mouse_releases\dirty!

    tick: =>
      { :button, :press, :release } = @unwrap_all!
      if button and @inputs.button\dirty!
        @state = false

      if press and (not button or press.button == button)
        @state = true

      if release and (not button or release.button == button)
        @state = false

      @out\set @state

wheel_delta = Constant.meta
  meta:
    name: 'wheel-delta'
    summary: "outputs mouse wheel move events."
    examples: { '(love/wheel-delta)' }
    description: "vec2! stream of mouse wheel movements."

  value: class extends Op
    setup: (inputs) =>
      assert #inputs == 0, Error "argument", "no arguments expected"
      @out = COPILOT.wheel_delta
      super Input.hot @out

    poll: => @out\dirty!

key_presses = Constant.meta
  meta:
    name: 'key-presses'
    summary: "outputs key press events."
    examples: { '(love/key-presses)', '(love/key-presses key)' }
    description: "With no arguments, outputs a str! stream of key names.

If `key` is passed, outputs a bang! stream."

  value: class extends Op
    setup: (inputs) =>
      key = (-sig.str)\match inputs
      event = Input.hot COPILOT.key_presses

      if key
        super :event, key: Input.cold key
        @out = T.bang\mk_evt!
      else
        super :event
        @out = COPILOT.key_presses

    poll: => COPILOT.key_presses\dirty!

    tick: =>
      { :key, :event } = @unwrap_all!
      if event and event == key
        @out\set true

key_releases = Constant.meta
  meta:
    name: 'key-releases'
    summary: "outputs key release events."
    examples: { '(love/key-releases)', '(love/key-releases key)' }
    description: "With no arguments, outputs a str! stream of key names.

If `key` is passed, outputs a bang! stream."

  value: class extends Op
    setup: (inputs) =>
      key = (-sig.str)\match inputs
      event = Input.hot COPILOT.key_releases

      if key
        super :event, key: Input.cold key
        @out = T.bang\mk_evt!
      else
        super :event
        @out = COPILOT.key_releases

    poll: => COPILOT.key_releases\dirty!

    tick: =>
      { :key, :event } = @unwrap_all!
      if event and event == key
        @out\set true

key_down = Constant.meta
  meta:
    name: 'key-down?'
    summary: "checks whether a key is down."
    examples: { '(love/key-down? key)' }
    description: "checks whether `key` is down and returns a bool ~-stream.

`key` should be a str~ stream."

  value: class extends Op
    pattern = sig.str
    setup: (inputs) =>
      key = pattern\match inputs

      super
        key: Input.hot key
        press: Input.hot COPILOT.key_presses
        release: Input.hot COPILOT.key_releases

      @setup_out '~', T.bool, false

    poll: =>
      return true if COPILOT.key_presses\dirty!
      return true if COPILOT.key_releases\dirty!

    tick: =>
      { :key, :press, :release } = @unwrap_all!
      if key and @inputs.key\dirty!
        @state = false

      if press and (not key or press == key)
        @state = true

      if release and (not key or release == key)
        @state = false

      @out\set @state

window_size = Constant.meta
  meta:
    name: 'window-size'
    summary: "outputs window size."
    examples: { '(love/window-size)' }
    description: "vec2! stream of mouse wheel movements."

  value: class extends Op
    setup: (inputs) =>
      assert #inputs == 0, Error "argument", "no arguments expected"
      @out = COPILOT.window_size
      super Input.hot @out

    poll: => @out\dirty!

Constant.meta
  meta:
    name: 'love'
    summary: "LÖVE graphics."
    description: "
This module implements basic graphics using the [love2d game engine][love].

#### running

In order to use this module, the copilot has to be started in a specific way:

    $ love bin/alv-love <session.alv>

#### usage

The [love/draw][] ops can be used to draw one or more `love/shape`s in a fixed
stacking order. `love/shape`s can be created using [love/rectangle][] etc, and
positioned and styled using the modifier ops like [love/translate][],
[love/color][] and so on. All modifier ops take the shape as the last input and
output a modified shape, and can be used comfortably with the thread-last
macro [->>][]:

    (import* love math)
    (draw (->>
      (rectangle 'fill' 100 100)
      (color 1 0 0)
      (rotate (/ pi 4))
      (translate 150 150)))


[love]: https://love2d.org"

  value:
    :draw, :group
    'window-mode': window_mode

    'no-shape': no_shape
    :font
    :circle, :ellipse, :line, :rectangle
    :text, 'text-wrap': text_wrap

    :translate, :rotate, :scale, :shear
    :color, 'line-width': line_width

    'tsv-output': if tsv then tsv_output

    'mouse-pos': mouse_pos
    'mouse-delta': mouse_delta
    'mouse-presses': mouse_presses
    'mouse-releases': mouse_releases
    'mouse-down?': mouse_down
    'wheel-delta': wheel_delta
    'key-presses': key_presses
    'key-releases': key_releases
    'key-down?': key_down
    'window-size': window_size