123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110 |
- #include "parser_local_proto.h"
- void G__script(void)
- {
- FILE *fp = stdout;
- char *type;
- fprintf(fp,
- "############################################################################\n");
- fprintf(fp, "#\n");
- fprintf(fp, "# MODULE: %s_wrapper\n", G_program_name());
- fprintf(fp, "# AUTHOR(S): %s\n", G_whoami());
- fprintf(fp, "# PURPOSE: \n");
- fprintf(fp, "# COPYRIGHT: (C) 2009 by %s, and The GRASS Development Team\n",
- G_whoami());
- fprintf(fp, "#\n");
- fprintf(fp,
- "# This program is free software; you can redistribute it and/or modify\n");
- fprintf(fp,
- "# it under the terms of the GNU General Public License as published by\n");
- fprintf(fp,
- "# the Free Software Foundation; either version 2 of the License, or\n");
- fprintf(fp, "# (at your option) any later version.\n");
- fprintf(fp, "#\n");
- fprintf(fp,
- "# This program is distributed in the hope that it will be useful,\n");
- fprintf(fp,
- "# but WITHOUT ANY WARRANTY; without even the implied warranty of\n");
- fprintf(fp,
- "# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n");
- fprintf(fp, "# GNU General Public License for more details.\n");
- fprintf(fp, "#\n");
- fprintf(fp,
- "############################################################################\n\n");
- fprintf(fp, "#%%module\n");
- if (st->module_info.label)
- fprintf(fp, "#%% label: %s\n", st->module_info.label);
- if (st->module_info.description)
- fprintf(fp, "#%% description: %s\n", st->module_info.description);
- if (st->module_info.keywords) {
- fprintf(fp, "#%% keywords: ");
- G__print_keywords(fp, NULL);
- fprintf(fp, "\n");
- }
- fprintf(fp, "#%%end\n");
- if (st->n_flags) {
- struct Flag *flag;
- for (flag = &st->first_flag; flag; flag = flag->next_flag) {
- fprintf(fp, "#%%flag\n");
- fprintf(fp, "#%% key: %c\n", flag->key);
- if (flag->label)
- fprintf(fp, "#%% label: %s\n", flag->label);
- if (flag->description)
- fprintf(fp, "#%% description: %s\n", flag->description);
- if (flag->guisection)
- fprintf(fp, "#%% guisection: %s\n", flag->guisection);
- fprintf(fp, "#%%end\n");
- }
- }
- if (st->n_opts) {
- struct Option *opt;
- for (opt = &st->first_option; opt; opt = opt->next_opt) {
- switch (opt->type) {
- case TYPE_INTEGER:
- type = "integer";
- break;
- case TYPE_DOUBLE:
- type = "double";
- break;
- case TYPE_STRING:
- type = "string";
- break;
- default:
- type = "string";
- break;
- }
- fprintf(fp, "#%%option\n");
- fprintf(fp, "#%% key: %s\n", opt->key);
- fprintf(fp, "#%% type: %s\n", type);
- fprintf(fp, "#%% required: %s\n", opt->required ? "yes" : "no");
- fprintf(fp, "#%% multiple: %s\n", opt->multiple ? "yes" : "no");
- if (opt->options)
- fprintf(fp, "#%% options: %s\n", opt->options);
- if (opt->key_desc)
- fprintf(fp, "#%% key_desc: %s\n", opt->key_desc);
- if (opt->label)
- fprintf(fp, "#%% label: %s\n", opt->label);
- if (opt->description)
- fprintf(fp, "#%% description: %s\n", opt->description);
- if (opt->descriptions)
- fprintf(fp, "#%% descriptions: %s\n", opt->descriptions);
- if (opt->answer)
- fprintf(fp, "#%% answer: %s\n", opt->answer);
- if (opt->gisprompt)
- fprintf(fp, "#%% gisprompt: %s\n", opt->gisprompt);
- if (opt->guisection)
- fprintf(fp, "#%% guisection: %s\n", opt->guisection);
- if (opt->guidependency)
- fprintf(fp, "#%% guidependency: %s\n", opt->guidependency);
- fprintf(fp, "#%%end\n");
- }
- }
- }
|