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 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308
|
/* $Id: xmode2.c,v 5.14 2004/10/23 18:41:43 lirc Exp $ */
/****************************************************************************
** xmode2.c ****************************************************************
****************************************************************************
*
* xmode2 - shows the ir waveform of an IR signal
*
* patched together on Feb. 18th 1999 by
* Heinrich Langos <heinrich@mad.scientist.com>
*
* This program is based on the smode2.c file by Sinkovics Zoltan
* <sinko@szarvas.hu> which is a part of the LIRC distribution. It is
* just a conversion from svga to X with some basic support for resizing.
* I copied most of this comment.
*
* This program is based on the mode2.c file which is a part of the
* LIRC distribution. The main purpose of this program is to check
* operation of LIRC receiver hardware, and to see the IR waveform of
* the remote controller without an expensive oscilloscope. The time
* division is variable from 1 ms/div to extremely high values (integer
* type) but there is no point increasing this value above 20 ms/div,
* because one pulse is about 1 ms. I think this kind of presentation
* is much more exciting than the simple pulse&space output showed by
* mode2.
*
* Usage: xmode2 [-t (ms/div)] , default division is 5 ms/div
*
*
* compile: gcc -o xmode2 xmode2.c -L/usr/X11R6/lib -lX11
*
* version 0.01 Feb 18 1999
* initial release
*
* version 0.02 Aug 24 1999
* using select() to make the whole thing more responsive
* */
#ifdef HAVE_CONFIG_H
# include <config.h>
#endif
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <unistd.h>
#include <fcntl.h>
#include <getopt.h>
#include <sys/time.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/ioctl.h>
#include <X11/Xlib.h>
#include <X11/Xutil.h>
#include <X11/cursorfont.h>
#include "drivers/lirc.h"
Display *d1;
Window w0,w1; /*w0 = root*/
char w1_wname[]="xmode2";
char w1_iname[]="xmode2";
char font1_name[]="-*-Courier-medium-r-*-*-8-*-*-m-*-iso8859-1";
unsigned int w1_x=0,w1_y=0,w1_w=640,w1_h=480,w1_border=0;
XFontStruct *f1_str;
XColor xc1,xc2;
Colormap cm1;
XGCValues gcval1;
GC gc1,gc2;
XSetWindowAttributes winatt1;
long event_mask1;
XEvent event_return1;
void initscreen(void)
{
d1=XOpenDisplay(0);
if (d1==NULL)
{
printf("Can't open display.\n");
exit(0);
}
/*Aufbau der XWindowsAttribStr*/
w0 = DefaultRootWindow(d1);
winatt1.background_pixel = BlackPixel(d1,0);
winatt1.backing_store = WhenMapped;
winatt1.event_mask = KeyPressMask|StructureNotifyMask;
w1 = XCreateWindow(d1,w0,w1_x,w1_y,w1_w,w1_h,w1_border,CopyFromParent,InputOutput, CopyFromParent,CWBackPixel|CWBackingStore|CWEventMask,&winatt1);
XStoreName(d1,w1,w1_wname);
XSetIconName(d1,w1,w1_iname);
XMapWindow(d1,w1);
cm1=DefaultColormap(d1,0);
if (!XAllocNamedColor(d1,cm1,"blue",&xc1,&xc2)) printf("coudn't allocate blue color\n");
f1_str=XLoadQueryFont(d1,font1_name);
if (f1_str==NULL)
{
printf("could't load font\n");
exit(EXIT_FAILURE);
}
gcval1.foreground = xc1.pixel;
gcval1.font = f1_str -> fid;
gcval1.line_style = LineSolid;
gc1 = XCreateGC(d1,w1, GCForeground|GCLineStyle, &gcval1);
gcval1.foreground = WhitePixel(d1,0);
gc2 = XCreateGC(d1,w1, GCForeground|GCLineStyle|GCFont, &gcval1);
}
void closescreen(void)
{
XUnmapWindow(d1,w1);
XCloseDisplay(d1);
}
int main(int argc, char **argv)
{
fd_set rfds;
struct timeval tv;
int retval;
int fd;
unsigned long mode;
lirc_t data;
lirc_t x1,y1,x2,y2;
int result;
char textbuffer[80];
int div=5;
int dmode=0;
struct stat s;
char *device=LIRC_DRIVER_DEVICE;
char *progname;
progname="xmode2";
while(1)
{
int c;
static struct option long_options[] =
{
{"help",no_argument,NULL,'h'},
{"version",no_argument,NULL,'v'},
{"device",required_argument,NULL,'d'},
{"timediv",required_argument,NULL,'t'},
{"mode",required_argument,NULL,'m'},
{0, 0, 0, 0}
};
c = getopt_long(argc,argv,"hvd:t:m",long_options,NULL);
if(c==-1)
break;
switch (c)
{
case 'h':
printf("Usage: %s [options]\n",progname);
printf("\t -h --help\t\tdisplay usage summary\n");
printf("\t -v --version\t\tdisplay version\n");
printf("\t -d --device=device\tread from given device\n");
printf("\t -t --timediv=value\tms per unit\n");
printf("\t -m --mode\t\tenable alternative display mode\n");
return(EXIT_SUCCESS);
case 'v':
printf("%s %s\n",progname, VERSION);
return(EXIT_SUCCESS);
case 'd':
device=optarg;
break;
case 't': /* timediv */
div = strtol(optarg,NULL,10);
break;
case 'm':
dmode=1;
break;
default:
printf("Usage: %s [options]\n",progname);
return(EXIT_FAILURE);
}
}
if (optind < argc-1)
{
fprintf(stderr,"%s: too many arguments\n",progname);
return(EXIT_FAILURE);
}
fd=open(device,O_RDONLY);
if(fd==-1) {
perror(progname);
fprintf(stderr,"%s: error opening %s\n",progname,device);
exit(EXIT_FAILURE);
};
if ( (fstat(fd,&s)!=-1) && (S_ISFIFO(s.st_mode)) )
{
/* can't do ioctls on a pipe */
}
else if(ioctl(fd,LIRC_GET_REC_MODE,&mode)==-1 || mode!=LIRC_MODE_MODE2)
{
printf("This program is only intended for receivers "
"supporting the pulse/space layer.\n");
printf("Note that this is no error, but this program simply "
"makes no sense for your\nreceiver.\n");
printf("In order to test your setup run lircd with the "
"--nodaemon option and \n"
"then check if the remote works with the irw tool.\n");
close(fd);
exit(EXIT_FAILURE);
}
initscreen();
y1=20;
x1=x2=0;
sprintf(textbuffer,"%d ms/unit",div);
for (y2=0;y2<w1_w;y2+=10) XDrawLine(d1,w1,gc1,y2,0,y2,w1_h);
XDrawString(d1,w1,gc2,w1_w-100,10,textbuffer,strlen(textbuffer));
XFlush(d1);
while(1)
{
if (XCheckWindowEvent(d1, w1, KeyPressMask|StructureNotifyMask, &event_return1))
{
switch(event_return1.type)
{
case KeyPress:
if (event_return1.xkey.keycode==XKeysymToKeycode(d1,XStringToKeysym("q")))
{
closescreen();
exit(1);
}
break;
case ConfigureNotify:
w1_w=event_return1.xconfigure.width;
w1_h=event_return1.xconfigure.height;
for (y2=0;y2<w1_w;y2+=10) XDrawLine(d1,w1,gc1,y2,0,y2,w1_h);
XDrawString(d1,w1,gc2,w1_w-100,10,textbuffer,strlen(textbuffer));
// printf("resize \n");
break;
default:
;
}
}
/* Watch stdin (fd 0) to see when it has input. */
FD_ZERO(&rfds);
FD_SET(fd, &rfds);
/* Wait up to one second. */
tv.tv_sec = 1;
tv.tv_usec = 0;
retval = select(fd+1, &rfds, NULL, NULL, &tv);
if (FD_ISSET(fd,&rfds)) {
result=read(fd,&data,sizeof(data));
if (result!=0)
{
// printf("%.8x\t",data);
x2=(data&PULSE_MASK)/(div*50);
if(x2>400)
{
if(!dmode) { y1+=15; } else { y1++; }
x1=0;
}
else
{
if (x1==0)
{
if(!dmode) XDrawLine(d1,w1,gc2,x1, y1+10, x1+10, y1+10);
x1+=10;
if(!dmode) XDrawLine(d1,w1,gc2,x1, y1+10, x1, y1);
}
if (x1<w1_w)
{
if(dmode)
{
if(data&PULSE_BIT) XDrawLine(d1,w1,gc2,x1,y1,x1+x2,y1);
x1+=x2;
}
else
{
XDrawLine(d1,w1,gc2,x1,
((data&PULSE_BIT) ? y1:y1+10),x1+x2,
((data&PULSE_BIT) ? y1:y1+10));
x1+=x2;
XDrawLine(d1,w1,gc2,x1,
((data&PULSE_BIT) ? y1:y1+10),x1,
((data&PULSE_BIT) ? y1+10:y1));
}
}
}
if (y1>w1_h)
{
y1=20;
XClearWindow(d1,w1);
for (y2=0;y2<w1_w;y2+=10) XDrawLine(d1,w1,gc1,y2,0,y2,w1_h);
XDrawString(d1,w1,gc2,w1_w-100,10,textbuffer,strlen(textbuffer));
}
}
}
// gl_copyscreen(physicalscreen);
// XFlush(d1);
};
exit(EXIT_SUCCESS);
}
|