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
|
/*
* Copyright (C) 2004 Steve Harris, Uwe Koloska
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* $Id: example_client.c,v 1.1.1.1 2004/08/07 22:21:02 theno23 Exp $
*/
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include "lo/lo.h"
char testdata[5] = "ABCDE";
int main(int argc, char *argv[])
{
/* build a blob object from some data */
lo_blob btest = lo_blob_new(sizeof(testdata), testdata);
/* an address to send messages to. sometimes it is better to let the server
* pick a port number for you by passing NULL as the last argument */
lo_address t = lo_address_new(NULL, "7770");
if (argc > 1 && argv[1][0] == '-' && argv[1][1] == 'q') {
/* send a message with no arguments to the path /quit */
lo_send(t, "/quit", NULL);
} else {
/* send a message to /foo/bar with two float arguments, report any
* errors */
if (lo_send(t, "/foo/bar", "ff", 0.12345678f, 23.0f) == -1) {
printf("OSC error %d: %s\n", lo_address_errno(t), lo_address_errstr(t));
}
/* send a message to /a/b/c/d with a mixtrure of float and string
* arguments */
lo_send(t, "/a/b/c/d", "sfsff", "one", 0.12345678f, "three",
-0.00000023001f, 1.0);
/* send a 'blob' object to /a/b/c/d */
lo_send(t, "/a/b/c/d", "b", btest);
/* send a jamin scene change instruction with a 32bit integer argument */
lo_send(t, "/jamin/scene", "i", 2);
}
return 0;
}
/* vi:set ts=8 sts=4 sw=4: */
|