about summary refs log tree commit diff stats
path: root/enumerate
Commit message (Expand)AuthorAgeFilesLines
* 3726Kartik K. Agaram2016-12-301-0/+1
* 3450Kartik K. Agaram2016-10-061-5/+0
* 2665Kartik K. Agaram2016-02-172-14/+5
* 2155 - `mu` can now load all files in a directoryKartik K. Agaram2015-09-051-1/+1
* 1439 - support clang in addition to gccKartik K. Agaram2015-05-231-1/+1
* 1276 - make C++ version the defaultKartik K. Agaram2015-05-052-0/+40
70e0b9716d8f469458b901efec8'>7a84094a ^
9f484946 ^
6fef33fd ^
45c08fea ^


9f484946 ^
7a84094a ^


45c08fea ^

6fef33fd ^
7a84094a ^

6fef33fd ^

45c08fea ^
7a84094a ^
a0331a9b ^
e3092e7b ^

a0331a9b ^
77d5b5d6 ^
104854ca ^
760f683f ^
0d2686c7 ^
e3092e7b ^

d803b687 ^
77d5b5d6 ^
104854ca ^
e3092e7b ^
104854ca ^
7a84094a ^
a0331a9b ^
e3092e7b ^
7a84094a ^
80df524b ^
502d2ea5 ^
760f683f ^
d803b687 ^
e3092e7b ^
0d2686c7 ^


d803b687 ^
e3092e7b ^
6aa42628 ^
80df524b ^
d803b687 ^
e3092e7b ^

c6c19a27 ^


d803b687 ^
77d5b5d6 ^
104854ca ^
d803b687 ^


80df524b ^
d803b687 ^

e3092e7b ^
f8c0ef3e ^
760f683f ^
77d5b5d6 ^
104854ca ^
f8c0ef3e ^
d803b687 ^
502d2ea5 ^


136412d2 ^
502d2ea5 ^
f8c0ef3e ^

5b1219ca ^
f8c0ef3e ^
6a0f71b9 ^
760f683f ^
77d5b5d6 ^
104854ca ^
6a0f71b9 ^
d803b687 ^
ccfee303 ^


6a0f71b9 ^

5e9eff8c ^
760f683f ^
77d5b5d6 ^
104854ca ^
dc0e767c ^
104854ca ^
5e9eff8c ^
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

                                                                            
 
                           
           
                                                                  
                                              
                     


                                                              
                       


            

 
                        

            

 
                   
                         
                  

 
                                                           
             
                  
                                      
                                               

 
                                                                                              
             
                  
   
                        
                                                                       
                                                
     
                            
                                                             
                        
                                     
                                    
     


                                                                             
                                  
   
                                                                      
                                                    
                               

 


                                                                            
                                                                                           
             
                  


                                                                 
                                                          

                                              
 
 
                                                                                                                                       
             
                  
   
                                                                


                                            
                             
                         

        
                    
 
 
                                                           
             
                  
   
                                        


                   

   
 
                                                       
             
                  
                                                                                
                              
 
# Wrappers around interaction primitives that take a potentially fake object
# and are thus easier to test.

exclusive-container event [
  text:char
  keycode:num  # keys on keyboard without a unicode representation
  touch:touch-event  # mouse, track ball, etc.
  resize:resize-event
  # update the assume-console handler if you add more variants
]

container touch-event [
  type:num
  row:num
  column:num
]

container resize-event [
  width:num
  height:num
]

container console [
  current-event-index:num
  events:&:@:event
]

def new-fake-console events:&:@:event -> result:&:console [
  local-scope
  load-ingredients
  result:&:console <- new console:type
  *result <- put *result, events:offset, events
]

def read-event console:&:console -> result:event, found?:bool, quit?:bool, console:&:console [
  local-scope
  load-ingredients
  {
    break-unless console
    current-event-index:num <- get *console, current-event-index:offset
    buf:&:@:event <- get *console, events:offset
    {
      max:num <- length *buf
      done?:bool <- greater-or-equal current-event-index, max
      break-unless done?
      dummy:&:event <- new event:type
      return *dummy, 1/found, 1/quit
    }
    result <- index *buf, current-event-index
    current-event-index <- add current-event-index, 1
    *console <- put *console, current-event-index:offset, current-event-index
    return result, 1/found, 0/quit
  }
  switch  # real event source is infrequent; avoid polling it too much
  result:event, found?:bool <- check-for-interaction
  return result, found?, 0/quit
]

# variant of read-event for just keyboard events. Discards everything that
# isn't unicode, so no arrow keys, page-up/page-down, etc. But you still get
# newlines, tabs, ctrl-d..
def read-key console:&:console -> result:char, found?:bool, quit?:bool, console:&:console [
  local-scope
  load-ingredients
  x:event, found?:bool, quit?:bool, console <- read-event console
  return-if quit?, 0, found?, quit?
  return-unless found?, 0, found?, quit?
  c:char, converted?:bool <- maybe-convert x, text:variant
  return-unless converted?, 0, 0/found, 0/quit
  return c, 1/found, 0/quit
]

def send-keys-to-channel console:&:console, chan:&:sink:char, screen:&:screen -> console:&:console, chan:&:sink:char, screen:&:screen [
  local-scope
  load-ingredients
  {
    c:char, found?:bool, quit?:bool, console <- read-key console
    loop-unless found?
    break-if quit?
    assert c, [invalid event, expected text]
    screen <- print screen, c
    chan <- write chan, c
    loop
  }
  chan <- close chan
]

def wait-for-event console:&:console -> console:&:console [
  local-scope
  load-ingredients
  {
    _, found?:bool <- read-event console
    break-if found?
    switch
    loop
  }
]

def has-more-events? console:&:console -> result:bool [
  local-scope
  load-ingredients
  return-if console, 0/false  # fake events are processed as soon as they arrive
  result <- interactions-left?
]