summaryrefslogtreecommitdiff
path: root/guile-osc.c
AgeCommit message (Collapse)Author
2024-03-17Add add-osc-wildcardThomas White
2024-03-17osc-send(-from): Fix check for integer typeThomas White
scm_integer_p returns #t for something like 50.0. We need to recognise 50.0 as not-an-integer to send the right OSC type.
2024-03-17Add osc-send-fromThomas White
2023-04-25Add blocking serverThomas White
2023-04-22osc-send: Check for integer firstThomas White
Rationale: real? returns #t for an integer
2023-04-22make-osc-server-thread: Take URL instead of port numberThomas White
2023-04-22make-osc-address: Take URL instead of port numberThomas White
2023-04-22Return #f on errorThomas White
2023-04-22osc-send: Handle string typesThomas White
2023-04-22Add almost all argument typesThomas White
2023-04-22Add arguments to server methodsThomas White
2023-04-22Fix incorrect pointerThomas White
2023-04-16osc-send: Send argumentsThomas White
Only int and float implemented so far.
2023-04-16Add initial (osc-send ...)Thomas White
2023-04-16Rearrange namespaceThomas White
(guile-osc engine) becomes (open-sound-control server-thread) to better match liblo's types. Later on, we could also have the non-threading server. This also makes the port number into a parameter for make-osc-server-thread.
2023-04-15Initial commitThomas White