X-Git-Url: http://git.tdb.fi/?p=geometrycompositor.git;a=blobdiff_plain;f=source%2Fcontrol.c;h=292c108bc34538a9399ded9b7672df58fdd1df0e;hp=fc0f8718c4e554e92dd41f8505b1f8598478d2a5;hb=d1f9b38df9dbe416341869c1bd630fe24367673e;hpb=ba8b1bb54c180503ac90874d950002b025f5b2dd diff --git a/source/control.c b/source/control.c index fc0f871..292c108 100644 --- a/source/control.c +++ b/source/control.c @@ -11,7 +11,8 @@ typedef struct GeometryCorrection { char *monitor_name; float keystone_vertical; - float cylinder_depth; + int curvature_type; + float curvature_depth; float vertical_center; float perspective; } GeometryCorrection; @@ -141,8 +142,8 @@ GeometryCorrection *get_corrections(Display *display) for(i=0; ivalues_length) - ncorrections = values_length/4; + if(ncorrections*5>values_length) + ncorrections = values_length/5; corrections = (GeometryCorrection *)malloc((ncorrections+1)*sizeof(GeometryCorrection)); name_ptr = names; @@ -154,10 +155,11 @@ GeometryCorrection *get_corrections(Display *display) corrections[i].monitor_name = (char *)malloc(namelen+1); strcpy(corrections[i].monitor_name, name_ptr); - corrections[i].keystone_vertical = values[i*4]/4096.0f; - corrections[i].cylinder_depth = values[i*4+1]/4096.0f; - corrections[i].vertical_center = values[i*4+2]/4096.0f; - corrections[i].perspective = values[i*4+3]/4096.0f; + corrections[i].keystone_vertical = values[i*5]/4096.0f; + corrections[i].curvature_type = values[i*5+1]; + corrections[i].curvature_depth = values[i*5+2]/4096.0f; + corrections[i].vertical_center = values[i*5+3]/4096.0f; + corrections[i].perspective = values[i*5+4]/4096.0f; name_ptr += namelen+1; } @@ -191,24 +193,25 @@ void set_corrections(Display *display, GeometryCorrection *corrections) } names = (char *)malloc(total_len+ncorrections); - values = (short *)malloc(ncorrections*4*sizeof(short)); + values = (short *)malloc(ncorrections*5*sizeof(short)); name_ptr = names; for(i=0; ikeystone_vertical -= 1.0f/64; else if(keysym==XK_w) - target->cylinder_depth += 1.0f/256; + target->curvature_depth += 1.0f/256; else if(keysym==XK_s) - target->cylinder_depth -= 1.0f/256; + target->curvature_depth -= 1.0f/256; else if(keysym==XK_e) target->vertical_center += 1.0f/32; else if(keysym==XK_d) @@ -410,6 +413,8 @@ int interactive(Display *display, GeometryCorrection *corrections, GeometryCorre target->perspective += 1.0f/16; else if(keysym==XK_f) target->perspective -= 1.0f/16; + else if(keysym==XK_z) + target->curvature_type = target->curvature_type%2+1; else break; @@ -447,9 +452,9 @@ int main(int argc, char **argv) GeometryCorrection *corrections; unsigned i; - if(argc!=2 && argc!=6) + if(argc!=2 && argc!=7) { - fprintf(stderr, "Usage: %s [ ]\n", argv[0]); + fprintf(stderr, "Usage: %s [ ]\n", argv[0]); return 1; } @@ -475,19 +480,29 @@ int main(int argc, char **argv) strcpy(corrections[i].monitor_name, argv[1]); corrections[i+1].monitor_name = NULL; corrections[i].keystone_vertical = 0.0f; - corrections[i].cylinder_depth = 0.0f; + corrections[i].curvature_type = 1; + corrections[i].curvature_depth = 0.0f; corrections[i].vertical_center = 0.5f; corrections[i].perspective = 1.0f; } if(argc==2) interactive(display, corrections, &corrections[i]); - else if(argc==6) + else if(argc==7) { + if(!strcmp(argv[3], "cylindrical")) + corrections[i].curvature_type = 1; + else if(!strcmp(argv[3], "spherical")) + corrections[i].curvature_type = 2; + else + { + fprintf(stderr, "Invalid curvature\n"); + return 1; + } corrections[i].keystone_vertical = strtod(argv[2], NULL); - corrections[i].cylinder_depth = strtod(argv[3], NULL); - corrections[i].vertical_center = strtod(argv[4], NULL); - corrections[i].perspective = strtod(argv[5], NULL); + corrections[i].curvature_depth = strtod(argv[4], NULL); + corrections[i].vertical_center = strtod(argv[5], NULL); + corrections[i].perspective = strtod(argv[6], NULL); set_corrections(display, corrections); }