mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 08:38:20 +00:00
[client] improved option parsing
This commit is contained in:
parent
133d8ec21f
commit
7d307c0a9c
@ -1031,43 +1031,46 @@ void doLicense()
|
|||||||
|
|
||||||
int main(int argc, char * argv[])
|
int main(int argc, char * argv[])
|
||||||
{
|
{
|
||||||
int c;
|
for(;;)
|
||||||
while((c = getopt(argc, argv, "hf:sc:p:jMvkg:o:anrdFx:y:w:b:Ql")) != -1)
|
{
|
||||||
switch(c)
|
switch(getopt(argc, argv, "hf:sc:p:jMvkg:o:anrdFx:y:w:b:Ql"))
|
||||||
{
|
{
|
||||||
case '?':
|
case '?':
|
||||||
case 'h':
|
case 'h':
|
||||||
default :
|
default :
|
||||||
doHelp(argv[0]);
|
doHelp(argv[0]);
|
||||||
return (c == 'h') ? 0 : -1;
|
return -1;
|
||||||
|
|
||||||
|
case -1:
|
||||||
|
break;
|
||||||
|
|
||||||
case 'f':
|
case 'f':
|
||||||
params.ivshmemSocket = optarg;
|
params.ivshmemSocket = optarg;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 's':
|
case 's':
|
||||||
params.useSpice = false;
|
params.useSpice = false;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'c':
|
case 'c':
|
||||||
params.spiceHost = optarg;
|
params.spiceHost = optarg;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'p':
|
case 'p':
|
||||||
params.spicePort = atoi(optarg);
|
params.spicePort = atoi(optarg);
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'j':
|
case 'j':
|
||||||
params.scaleMouseInput = false;
|
params.scaleMouseInput = false;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'M':
|
case 'M':
|
||||||
params.hideMouse = false;
|
params.hideMouse = false;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'k':
|
case 'k':
|
||||||
params.showFPS = true;
|
params.showFPS = true;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'g':
|
case 'g':
|
||||||
{
|
{
|
||||||
@ -1089,7 +1092,7 @@ int main(int argc, char * argv[])
|
|||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
case 'o':
|
case 'o':
|
||||||
@ -1190,66 +1193,64 @@ int main(int argc, char * argv[])
|
|||||||
opts->argv[opts->argc].opt = opt;
|
opts->argv[opts->argc].opt = opt;
|
||||||
opts->argv[opts->argc].value = value;
|
opts->argv[opts->argc].value = value;
|
||||||
++opts->argc;
|
++opts->argc;
|
||||||
break;
|
continue;
|
||||||
}
|
}
|
||||||
#if 0
|
|
||||||
if (params.rendererOptCount == params.rendererOptSize)
|
|
||||||
{
|
|
||||||
params.rendererOptSize += 5;
|
|
||||||
params.rendererOpts = realloc(
|
|
||||||
params.rendererOpts,
|
|
||||||
params.rendererOptSize * sizeof(char *));
|
|
||||||
}
|
|
||||||
params.rendererOpts[params.rendererOptCount++] = optarg;
|
|
||||||
#endif
|
|
||||||
break;
|
|
||||||
|
|
||||||
case 'a':
|
case 'a':
|
||||||
params.autoResize = true;
|
params.autoResize = true;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'n':
|
case 'n':
|
||||||
params.allowResize = false;
|
params.allowResize = false;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'r':
|
case 'r':
|
||||||
params.keepAspect = false;
|
params.keepAspect = false;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'd':
|
case 'd':
|
||||||
params.borderless = true;
|
params.borderless = true;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'F':
|
case 'F':
|
||||||
params.fullscreen = true;
|
params.fullscreen = true;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'x':
|
case 'x':
|
||||||
params.center = false;
|
params.center = false;
|
||||||
params.x = atoi(optarg);
|
params.x = atoi(optarg);
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'y':
|
case 'y':
|
||||||
params.center = false;
|
params.center = false;
|
||||||
params.y = atoi(optarg);
|
params.y = atoi(optarg);
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'w':
|
case 'w':
|
||||||
params.w = atoi(optarg);
|
params.w = atoi(optarg);
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'b':
|
case 'b':
|
||||||
params.h = atoi(optarg);
|
params.h = atoi(optarg);
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'Q':
|
case 'Q':
|
||||||
params.ignoreQuit = true;
|
params.ignoreQuit = true;
|
||||||
break;
|
continue;
|
||||||
|
|
||||||
case 'l':
|
case 'l':
|
||||||
doLicense();
|
doLicense();
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (optind != argc)
|
||||||
|
{
|
||||||
|
fprintf(stderr, "A non option was supplied\n");
|
||||||
|
doHelp(argv[0]);
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
return run();
|
return run();
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user