syndilights/open-lighting-architecture/artnet-examples-0.3.11/src/artnet-profile-rx.c

97 lines
2.3 KiB
C

/*
* 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 Library General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <string.h>
#include <fcntl.h>
#include <artnet/artnet.h>
int verbose = 0;
int dmx_callback(artnet_node n, int port, void *d) {
if(verbose)
printf("got data\n") ;
return 0;
}
int main(int argc, char *argv[]) {
artnet_node node ;
char *ip_addr = NULL ;
int optc, subnet_addr = 0, port_addr = 0 ;
// parse options
while ((optc = getopt (argc, argv, "s:p:a:v")) != EOF) {
switch (optc) {
case 'a':
ip_addr = (char *) strdup(optarg) ;
break;
case 'v':
verbose = 1 ;
break;
case 's':
subnet_addr = atoi(optarg) ;
if(subnet_addr < 0 && subnet_addr > 15) {
printf("Subnet address must be between 0 and 15\n") ;
exit(1) ;
}
break ;
case 'p':
port_addr = atoi(optarg) ;
if(port_addr < 0 && port_addr > 15) {
printf("Port address must be between 0 and 15\n") ;
exit(1) ;
}
break ;
default:
break;
}
}
node = artnet_new(ip_addr, verbose) ; ;
artnet_set_short_name(node, "Artnet -> DMX ") ;
artnet_set_long_name(node, "ArtNet to DMX convertor") ;
artnet_set_node_type(node, ARTNET_NODE) ;
artnet_set_dmx_handler(node, dmx_callback, NULL) ;
// set the first port to output dmx data
artnet_set_port_type(node, 0, ARTNET_ENABLE_OUTPUT, ARTNET_PORT_DMX) ;
artnet_set_subnet_addr(node, subnet_addr) ;
// set the universe address of the first port
artnet_set_port_addr(node, 0, ARTNET_OUTPUT_PORT, port_addr) ;
artnet_start(node) ;
while(1) {
artnet_read(node, 1) ;
}
return 0 ;
}