;; -*- mode: lisp -*- ;; ;; Examples of how to send OSC messages. .. ;; ;; Copyright (C) 2004 FoAM vzw ;; ;; Authors ;; - nik gaffney ;; ;;;;; ;; ; ; ;; ; ; ;;;;;::::: : : : ; ;; ; ; ; ; ; ; ;; ;; Commentry ;; ;; These examples are currently sbcl specific, but should be easily ported to ;; work with trivial-sockets, acl-compat or something similar. ;; They should be enough to get you started. ;; ;; eg. listen on port 6667 for incoming messages ;; ;; (osc-receive-test 6667) ;; ;; send a test message to localhost port 6668 ;; ;; (osc-send-test "localhost" 6668) ;; ;; listen on port 6667 and send to 10.0.89:6668 ;; (note the ip# is formatted as a vector) ;; ;; (osc-reflector-test 6667 #(10 0 0 89) 6668) ;; ;;;;;:::;;: ; ; ;::: ; ;; ;; ; ;; ; (eval-when (:compile-toplevel :load-toplevel) (ql:quickload :osc) (ql:quickload :usocket) (use-package :osc) (use-package :usocket)) (defun osc-listen-test (port) "a basic test function which attempts to decode an osc message a given port." (let ((s (socket-connect nil nil :local-port port :protocol :datagram :element-type '(unsigned-byte 8))) (buffer (make-sequence '(vector (unsigned-byte 8)) 1024))) (format t "listening on localhost port ~A~%~%" port) (unwind-protect (loop do (socket-receive s buffer (length buffer)) (format t "received -=> ~S~%" (osc:decode-bundle buffer))) (when s (socket-close s))))) (defun osc-send-test (host port) "a basic test function which sends osc test message to a given port/hostname." (let ((s (socket-connect host port :protocol :datagram :element-type '(unsigned-byte 8))) (b (osc:encode-message "/foo/bar" "baz" 1 2 3 (coerce PI 'single-float)))) (format t "listening on localhost port ~A~%~%" port) (unwind-protect (socket-send s b (length b)) (when s (socket-close s))))) (defun osc-reflector-test (listen-port send-host send-port) "reflector. listens on a given port and sends out on another." (let ((in (socket-connect nil nil :local-port listen-port :protocol :datagram :element-type '(unsigned-byte 8))) (out (socket-connect send-host send-port :protocol :datagram :element-type '(unsigned-byte 8))) (buffer (make-sequence '(vector (unsigned-byte 8)) 1024))) (unwind-protect (loop do (socket-receive in buffer (length buffer)) (format t "glonked -=> message: ~{~A, ~}~%" (osc:decode-bundle buffer)) (let ((mess (apply #'osc:encode-message (cons "/echo" (osc:decode-message buffer))))) (socket-send out mess (length mess)))) (when in (socket-close in)) (when out (socket-close out))))) ;;end