/* * opts.c -- GTK+ 2 melted gui * Copyright (C) 2012 Maksym Veremeyenko * * 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. * * 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 #endif #include #include #include #include #include #include #include "opts.h" static const char short_options [] = "h"; static const struct option long_options [] = { { "host", required_argument, NULL, '0'}, { "unit", required_argument, NULL, '1'}, { "help", no_argument, NULL, 'h'}, { 0, 0, 0, 0} }; int instance_opt(int argc, char** argv, instance_t* app) { char* p; int c, index = 0; /* setup defaults */ app->library.id_display_rate = 20; /* reset datas */ optind = 0; opterr = 0; optopt = 0; /* program arguments processing */ while(1) { c = getopt_long (argc, argv, short_options, long_options, &index); if((-1) == c) break; switch(c) { case 0: break; /** --host */ case '0': strncpy(app->players.host, optarg, PATH_MAX); break; /** --unit */ case '1': app->players.item[app->players.count].unit = atol(optarg); app->players.item[app->players.count].idx = app->players.count; app->players.item[app->players.count].app = app; app->players.count++; break; default: fprintf(stderr, "ERROR: Incorrect argument!\n"); return 1; break; }; }; return 0; }; void instance_usage(void) { fprintf ( stderr, "Usage:\n" "\t--host= Host name of melted server\n" "\t--unit= Player to use (e.g. unit number)\n" ); };