Annotation of uae/src/cfgfile.c, revision 1.1.1.8

1.1       root        1:  /*
                      2:   * UAE - The Un*x Amiga Emulator
                      3:   *
                      4:   * Config file handling
                      5:   * This still needs some thought before it's complete...
                      6:   *
                      7:   * Copyright 1998 Brian King, Bernd Schmidt
                      8:   */
                      9: 
                     10: #include "sysconfig.h"
                     11: #include "sysdeps.h"
                     12: 
                     13: #include <ctype.h>
                     14: 
                     15: #include "config.h"
                     16: #include "options.h"
                     17: #include "threaddep/penguin.h"
                     18: #include "uae.h"
                     19: #include "autoconf.h"
1.1.1.8 ! root       20: #include "events.h"
1.1.1.3   root       21: #include "custom.h"
1.1       root       22: 
                     23: /* @@@ need to get rid of this... just cut part of the manual and print that
                     24:  * as a help text.  */
                     25: struct cfg_lines
                     26: {
                     27:     const char *config_label, *config_help;
                     28: };
                     29: 
                     30: static struct cfg_lines opttable[] =
                     31: {
                     32:     {"help", "Prints this help" },
                     33:     {"config_description", "" },
                     34:     {"use_gui", "Enable the GUI?  If no, then goes straight to emulator" },
                     35:     {"use_debugger", "Enable the debugger?" },
                     36:     {"cpu_speed", "can be max, real, or a number between 1 and 20" },
                     37:     {"cpu_type", "Can be 68000, 68010, 68020, 68020/68881" },
                     38:     {"cpu_compatible", "yes enables compatibility-mode" },
                     39:     {"cpu_24bit_addressing", "must be set to 'no' in order for Z3mem or P96mem to work" },
                     40:     {"autoconfig", "yes = add filesystems and extra ram" },
                     41:     {"accuracy", "emulation accuracy, default is 2" },
                     42:     {"log_illegal_mem", "print illegal memory access by Amiga software?" },
                     43:     {"fastmem_size", "Size in megabytes of fast-memory" },
                     44:     {"chipmem_size", "Size in megabytes of chip-memory" },
                     45:     {"bogomem_size", "Size in megabytes of bogo-memory at 0xC00000" },
                     46:     {"a3000mem_size", "Size in megabytes of A3000 memory" },
                     47:     {"gfxcard_size", "Size in megabytes of Picasso96 graphics-card memory" },
                     48:     {"z3mem_size", "Size in megabytes of Zorro-III expansion memory" },
                     49:     {"gfx_test_speed", "Test graphics speed?" },
                     50:     {"framerate", "Print every nth frame" },
                     51:     {"gfx_width", "Screen width" },
                     52:     {"gfx_height", "Screen height" },
                     53:     {"gfx_lores", "Treat display as lo-res?" },
                     54:     {"gfx_linemode", "Can be none, double, or scanlines" },
                     55:     {"gfx_fullscreen_amiga", "Amiga screens are fullscreen?" },
                     56:     {"gfx_fullscreen_picasso", "Picasso screens are fullscreen?" },
                     57:     {"gfx_correct_aspect", "Correct aspect ratio?" },
                     58:     {"gfx_center_horizontal", "Center display horizontally?" },
                     59:     {"gfx_center_vertical", "Center display vertically?" },
                     60:     {"gfx_colour_mode", "" },
                     61:     {"32bit_blits", "Enable 32 bit blitter emulation" },
                     62:     {"immediate_blits", "Perform blits immediately" },
                     63:     {"gfxlib_replacement", "Use graphics.library replacement?" },
                     64:     {"sound_output", "" },
                     65:     {"sound_frequency", "" },
                     66:     {"sound_bits", "" },
                     67:     {"sound_channels", "" },
                     68:     {"sound_min_buff", "" },
                     69:     {"sound_max_buff", "" },
                     70:     {"parallel_on_demand", "" },
                     71:     {"serial_on_demand", "" },
                     72:     {"joyport0", "" },
                     73:     {"joyport1", "" },
                     74:     {"kickstart_rom_file", "Kickstart ROM image, (C) Copyright Amiga, Inc." },
                     75:     {"kickstart_key_file", "Key-file for encrypted ROM images (from Cloanto's Amiga Forever)" },
                     76:     {"floppy0", "Diskfile for drive 0" },
                     77:     {"floppy1", "Diskfile for drive 1" },
                     78:     {"floppy2", "Diskfile for drive 2" },
                     79:     {"floppy3", "Diskfile for drive 3" },
                     80:     {"hardfile", "access,sectors, surfaces, reserved, blocksize, path format" },
                     81:     {"filesystem", "access,'Amiga volume-name':'host directory path' - where 'access' can be 'read-only' or 'read-write'" }
                     82: };
                     83: 
1.1.1.3   root       84: static const char *csmode[] = { "ocs", "ecs_agnus", "ecs_denise", "ecs", "aga" };
1.1       root       85: static const char *linemode1[] = { "none", "double", "scanlines", 0 };
                     86: static const char *linemode2[] = { "n", "d", "s", 0 };
                     87: static const char *speedmode[] = { "max", "real", 0 };
1.1.1.7   root       88: static const char *cpumode[] = {
                     89:     "68000", "68000", "68010", "68010", "68ec020", "68020", "68ec020/68881", "68020/68881",
                     90:     "68040", 0
                     91: };
1.1       root       92: static const char *portmode[] = { "joy0", "joy1", "mouse", "kbd1", "kbd2", "kbd3", 0 };
                     93: static const char *colormode1[] = { "8bit", "15bit", "16bit", "8bit_dither", "4bit_dither", "32bit", 0 };
                     94: static const char *colormode2[] = { "8", "15", "16", "8d", "4d", "32", 0 };
                     95: static const char *soundmode[] = { "none", "interrupts", "normal", "exact", 0 };
1.1.1.2   root       96: static const char *centermode1[] = { "none", "simple", "smart", 0 };
                     97: static const char *centermode2[] = { "false", "true", "smart", 0 };
1.1.1.8 ! root       98: static const char *stereomode1[] = { "mono", "stereo", "mixed", 0 };
        !            99: static const char *stereomode2[] = { "m", "s", "x", 0 };
        !           100: static const char *stereomode3[] = { "1", "2", "3", 0 };
1.1.1.4   root      101: static const char *interpolmode[] = { "none", "rh", "crux", 0 };
1.1.1.8 ! root      102: static const char *collmode[] = { "sprites", "full", 0 };
1.1       root      103: 
                    104: #define UNEXPANDED "$(FILE_PATH)"
                    105: 
                    106: static int match_string (const char *table[], const char *str)
                    107: {
                    108:     int i;
                    109:     for (i = 0; table[i] != 0; i++)
                    110:        if (strcasecmp (table[i], str) == 0)
                    111:            return i;
                    112:     return -1;
                    113: }
                    114: 
                    115: char *cfgfile_subst_path (const char *path, const char *subst, const char *file)
                    116: {
                    117:     /* @@@ use strcasecmp for some targets.  */
                    118:     if (strlen (path) > 0 && strncmp (file, path, strlen (path)) == 0) {
                    119:        int l;
                    120:        char *p = xmalloc (strlen (file) + strlen (subst) + 2);
                    121:        strcpy (p, subst);
                    122:        l = strlen (p);
                    123:        while (l > 0 && p[l - 1] == '/')
                    124:            p[--l] = '\0';
                    125:        l = strlen (path);
                    126:        while (file[l] == '/')
                    127:            l++;
                    128:        strcat (p, "/"); strcat (p, file + l);
                    129:        return p;
                    130:     }
                    131:     return my_strdup (file);
                    132: }
                    133: 
                    134: void save_options (FILE *f, struct uae_prefs *p)
                    135: {
                    136:     struct strlist *sl;
                    137:     char *str;
                    138:     int i;
                    139: 
                    140:     fprintf (f, "config_description=%s\n", p->description);
                    141: 
                    142:     for (sl = p->unknown_lines; sl; sl = sl->next)
                    143:        fprintf (f, "%s\n", sl->str);
                    144: 
                    145:     fprintf (f, "%s.rom_path=%s\n", TARGET_NAME, p->path_rom);
                    146:     fprintf (f, "%s.floppy_path=%s\n", TARGET_NAME, p->path_floppy);
                    147:     fprintf (f, "%s.hardfile_path=%s\n", TARGET_NAME, p->path_hardfile);
                    148: 
1.1.1.2   root      149:     target_save_options (f, p);
                    150: 
1.1       root      151:     fprintf (f, "use_gui=%s\n", p->start_gui ? "true" : "false");
                    152:     fprintf (f, "use_debugger=%s\n", p->start_debugger ? "true" : "false");
                    153:     str = cfgfile_subst_path (p->path_rom, UNEXPANDED, p->romfile);
                    154:     fprintf (f, "kickstart_rom_file=%s\n", str);
                    155:     free (str);
                    156:     str = cfgfile_subst_path (p->path_rom, UNEXPANDED, p->keyfile);
                    157:     fprintf (f, "kickstart_key_file=%s\n", str);
                    158:     free (str);
                    159: 
                    160:     for (i = 0; i < 4; i++) {
                    161:        str = cfgfile_subst_path (p->path_floppy, UNEXPANDED, p->df[i]);
                    162:        fprintf (f, "floppy%d=%s\n", i, str);
                    163:        free (str);
                    164:     }
1.1.1.6   root      165:     fprintf (f, "nr_floppies=%d\n", p->nr_floppies);
1.1       root      166:     fprintf (f, "parallel_on_demand=%s\n", p->parallel_demand ? "true" : "false");
                    167:     fprintf (f, "serial_on_demand=%s\n", p->serial_demand ? "true" : "false");
                    168: 
                    169:     fprintf (f, "sound_output=%s\n", soundmode[p->produce_sound]);
                    170:     fprintf (f, "sound_channels=%s\n", stereomode1[p->stereo]);
                    171:     fprintf (f, "sound_bits=%d\n", p->sound_bits);
                    172:     fprintf (f, "sound_min_buff=%d\n", p->sound_minbsiz);
                    173:     fprintf (f, "sound_max_buff=%d\n", p->sound_maxbsiz);
                    174:     fprintf (f, "sound_frequency=%d\n", p->sound_freq);
1.1.1.4   root      175:     fprintf (f, "sound_interpol=%s\n", interpolmode[p->sound_interpol]);
1.1       root      176: 
                    177:     fprintf (f, "sound_pri_time=%d\n", p->sound_pri_time);
                    178:     fprintf (f, "sound_pri_cutoff=%d\n", p->sound_pri_cutoff);
                    179: 
                    180:     fprintf (f, "joyport0=%s\n", portmode[p->jport0]);
                    181:     fprintf (f, "joyport1=%s\n", portmode[p->jport1]);
                    182: 
1.1.1.3   root      183:     fprintf (f, "bsdsocket_emu=%s\n", p->socket_emu ? "true" : "false");
1.1       root      184: 
1.1.1.3   root      185:     fprintf (f, "gfx_framerate=%d\n", p->gfx_framerate);
1.1       root      186:     fprintf (f, "gfx_width=%d\n", p->gfx_width);
                    187:     fprintf (f, "gfx_height=%d\n", p->gfx_height);
                    188:     fprintf (f, "gfx_lores=%s\n", p->gfx_lores ? "true" : "false");
                    189:     fprintf (f, "gfx_linemode=%s\n", linemode1[p->gfx_linedbl]);
                    190:     fprintf (f, "gfx_correct_aspect=%s\n", p->gfx_correct_aspect ? "true" : "false");
                    191:     fprintf (f, "gfx_fullscreen_amiga=%s\n", p->gfx_afullscreen ? "true" : "false");
                    192:     fprintf (f, "gfx_fullscreen_picasso=%s\n", p->gfx_pfullscreen ? "true" : "false");
1.1.1.2   root      193:     fprintf (f, "gfx_center_horizontal=%s\n", centermode1[p->gfx_xcenter]);
                    194:     fprintf (f, "gfx_center_vertical=%s\n", centermode1[p->gfx_ycenter]);
1.1       root      195:     fprintf (f, "gfx_colour_mode=%s\n", colormode1[p->color_mode]);
                    196: 
                    197:     fprintf (f, "32bit_blits=%s\n", p->blits_32bit_enabled ? "true" : "false");
                    198:     fprintf (f, "immediate_blits=%s\n", p->immediate_blits ? "true" : "false");
1.1.1.3   root      199:     fprintf (f, "ntsc=%s\n", p->ntscmode ? "true" : "false");
                    200:     if (p->chipset_mask & CSMASK_AGA)
                    201:        fprintf (f, "chipset=aga\n");
                    202:     else if ((p->chipset_mask & CSMASK_ECS_AGNUS) && (p->chipset_mask & CSMASK_ECS_AGNUS))
                    203:        fprintf (f, "chipset=ecs\n");
                    204:     else if (p->chipset_mask & CSMASK_ECS_AGNUS)
                    205:        fprintf (f, "chipset=ecs_agnus\n");
                    206:     else if (p->chipset_mask & CSMASK_ECS_DENISE)
                    207:        fprintf (f, "chipset=ecs_denise\n");
                    208:     else
                    209:        fprintf (f, "chipset=ocs\n");
1.1.1.8 ! root      210:     fprintf (f, "collision_level=%s\n", collmode[p->collision_level]);
1.1       root      211: 
                    212:     fprintf (f, "fastmem_size=%d\n", p->fastmem_size / 0x100000);
                    213:     fprintf (f, "a3000mem_size=%d\n", p->a3000mem_size / 0x100000);
                    214:     fprintf (f, "z3mem_size=%d\n", p->z3fastmem_size / 0x100000);
                    215:     fprintf (f, "bogomem_size=%d\n", p->bogomem_size / 0x40000);
                    216:     fprintf (f, "gfxcard_size=%d\n", p->gfxmem_size / 0x100000);
                    217:     fprintf (f, "chipmem_size=%d\n", p->chipmem_size / 0x80000);
                    218: 
1.1.1.3   root      219:     if (p->m68k_speed > 0)
1.1.1.8 ! root      220:        fprintf (f, "finegrain_cpu_speed=%d\n", p->m68k_speed);
1.1       root      221:     else
1.1.1.8 ! root      222:        fprintf (f, "finegrain_cpu_speed=%s\n", p->m68k_speed == -1 ? "max" : "real");
1.1       root      223: 
                    224:     fprintf (f, "cpu_type=%s\n", cpumode[p->cpu_level * 2 + !p->address_space_24]);
                    225:     fprintf (f, "cpu_compatible=%s\n", p->cpu_compatible ? "true" : "false");
                    226:     fprintf (f, "autoconfig=%s\n", p->automount_uaedev ? "true" : "false");
                    227: 
                    228:     fprintf (f, "accuracy=%d\n", p->emul_accuracy);
                    229:     fprintf (f, "log_illegal_mem=%s\n", p->illegal_mem ? "true" : "false");
                    230: 
                    231:     fprintf (f, "kbd_lang=%s\n", (p->keyboard_lang == KBD_LANG_DE ? "de"
                    232:                                  : p->keyboard_lang == KBD_LANG_ES ? "es"
                    233:                                  : p->keyboard_lang == KBD_LANG_US ? "us"
                    234:                                  : p->keyboard_lang == KBD_LANG_SE ? "se"
                    235:                                  : p->keyboard_lang == KBD_LANG_FR ? "fr"
                    236:                                  : p->keyboard_lang == KBD_LANG_IT ? "it"
                    237:                                  : "FOO"));
                    238: 
                    239:     write_filesys_config (p->mountinfo, UNEXPANDED, p->path_hardfile, f);
                    240: 
                    241:     /* Don't write gfxlib/gfx_test_speed options.  */
                    242: }
                    243: 
                    244: int cfgfile_yesno (char *option, char *value, char *name, int *location)
                    245: {
                    246:     if (strcmp (option, name) != 0)
                    247:        return 0;
                    248:     if (strcasecmp (value, "yes") == 0 || strcasecmp (value, "y") == 0
                    249:        || strcasecmp (value, "true") == 0 || strcasecmp (value, "t") == 0)
                    250:        *location = 1;
                    251:     else if (strcasecmp (value, "no") == 0 || strcasecmp (value, "n") == 0
                    252:        || strcasecmp (value, "false") == 0 || strcasecmp (value, "f") == 0)
                    253:        *location = 0;
                    254:     else
                    255:        write_log ("Option `%s' requires a value of either `yes' or `no'.\n", option);
                    256:     return 1;
                    257: }
                    258: 
                    259: int cfgfile_intval (char *option, char *value, char *name, int *location, int scale)
                    260: {
                    261:     int base = 10;
                    262:     char *endptr;
                    263:     if (strcmp (option, name) != 0)
                    264:        return 0;
                    265:     /* I guess octal isn't popular enough to worry about here...  */
                    266:     if (value[0] == '0' && value[1] == 'x')
                    267:        value += 2, base = 16;
                    268:     *location = strtol (value, &endptr, base) * scale;
                    269: 
                    270:     if (*endptr != '\0' || *value == '\0')
                    271:        write_log ("Option `%s' requires a numeric argument.\n", option);
                    272:     return 1;
                    273: }
                    274: 
                    275: int cfgfile_strval (char *option, char *value, char *name, int *location, const char *table[], int more)
                    276: {
                    277:     int val;
                    278:     if (strcmp (option, name) != 0)
                    279:        return 0;
                    280:     val = match_string (table, value);
                    281:     if (val == -1) {
1.1.1.6   root      282:        if (more)
                    283:            return 0;
                    284: 
                    285:        write_log ("Unknown value for option `%s'.\n", option);
1.1       root      286:        return 1;
                    287:     }
                    288:     *location = val;
                    289:     return 1;
                    290: }
                    291: 
                    292: int cfgfile_string (char *option, char *value, char *name, char *location, int maxsz)
                    293: {
                    294:     if (strcmp (option, name) != 0)
                    295:        return 0;
                    296:     strncpy (location, value, maxsz - 1);
                    297:     location[maxsz - 1] = '\0';
                    298:     return 1;
                    299: }
                    300: 
                    301: static int getintval (char **p, int *result, int delim)
                    302: {
                    303:     char *value = *p;
                    304:     int base = 10;
                    305:     char *endptr;
                    306:     char *p2 = strchr (*p, delim);
                    307: 
                    308:     if (p2 == 0)
                    309:        return 0;
                    310: 
                    311:     *p2++ = '\0';
                    312: 
                    313:     if (value[0] == '0' && value[1] == 'x')
                    314:        value += 2, base = 16;
                    315:     *result = strtol (value, &endptr, base);
                    316:     *p = p2;
                    317: 
                    318:     if (*endptr != '\0' || *value == '\0')
                    319:        return 0;
                    320: 
                    321:     return 1;
                    322: }
                    323: 
1.1.1.8 ! root      324: static void set_chipset_mask (struct uae_prefs *p, int val)
1.1.1.5   root      325: {
                    326:     p->chipset_mask = (val == 0 ? 0
                    327:                       : val == 1 ? CSMASK_ECS_AGNUS
                    328:                       : val == 2 ? CSMASK_ECS_DENISE
                    329:                       : val == 3 ? CSMASK_ECS_DENISE | CSMASK_ECS_AGNUS
                    330:                       : CSMASK_AGA | CSMASK_ECS_DENISE | CSMASK_ECS_AGNUS);
                    331: }
                    332: 
1.1.1.2   root      333: int cfgfile_parse_option (struct uae_prefs *p, char *option, char *value)
1.1       root      334: {
1.1.1.3   root      335:     int tmpval;
1.1       root      336:     char *section = 0;
                    337:     char *tmpp;
1.1.1.3   root      338: 
1.1       root      339:     for (tmpp = option; *tmpp != '\0'; tmpp++)
                    340:        if (isupper (*tmpp))
                    341:            *tmpp = tolower (*tmpp);
                    342:     tmpp = strchr (option, '.');
                    343:     if (tmpp) {
                    344:        section = option;
                    345:        option = tmpp + 1;
                    346:        *tmpp = '\0';
                    347:        if (strcmp (section, TARGET_NAME) == 0) {
                    348:            /* We special case the various path options here.  */
                    349:            if (cfgfile_string (option, value, "rom_path", p->path_rom, 256)
                    350:                || cfgfile_string (option, value, "floppy_path", p->path_floppy, 256)
                    351:                || cfgfile_string (option, value, "hardfile_path", p->path_hardfile, 256))
                    352:                return 1;
                    353:            return target_parse_option (p, option, value);
                    354:        }
                    355:        return 0;
                    356:     }
                    357:     if (cfgfile_yesno (option, value, "use_debugger", &p->start_debugger)
                    358:        || cfgfile_yesno (option, value, "use_gui", &p->start_gui)
1.1.1.3   root      359:        || cfgfile_yesno (option, value, "bsdsocket_emu", &p->socket_emu)
1.1       root      360:        || cfgfile_yesno (option, value, "immediate_blits", &p->immediate_blits)
                    361:        || cfgfile_yesno (option, value, "32bit_blits", &p->blits_32bit_enabled)
                    362:        || cfgfile_yesno (option, value, "gfx_lores", &p->gfx_lores)
                    363:        || cfgfile_yesno (option, value, "gfx_correct_aspect", &p->gfx_correct_aspect)
                    364:        || cfgfile_yesno (option, value, "gfx_fullscreen_amiga", &p->gfx_afullscreen)
                    365:        || cfgfile_yesno (option, value, "gfx_fullscreen_picasso", &p->gfx_pfullscreen)
1.1.1.3   root      366:        || cfgfile_yesno (option, value, "ntsc", &p->ntscmode)
1.1       root      367:        || cfgfile_yesno (option, value, "cpu_compatible", &p->cpu_compatible)
                    368:        || cfgfile_yesno (option, value, "cpu_24bit_addressing", &p->address_space_24)
                    369:        || cfgfile_yesno (option, value, "autoconfig", &p->automount_uaedev)
                    370:        || cfgfile_yesno (option, value, "parallel_on_demand", &p->parallel_demand)
                    371:        || cfgfile_yesno (option, value, "serial_on_demand", &p->serial_demand)
                    372:        || cfgfile_yesno (option, value, "log_illegal_mem", &p->illegal_mem))
                    373:        return 1;
                    374:     if (cfgfile_intval (option, value, "accuracy", &p->emul_accuracy, 1)
                    375:        || cfgfile_intval (option, value, "sound_min_buff", &p->sound_minbsiz, 1)
                    376:        || cfgfile_intval (option, value, "sound_max_buff", &p->sound_maxbsiz, 1)
                    377:        || cfgfile_intval (option, value, "sound_frequency", &p->sound_freq, 1)
                    378:        || cfgfile_intval (option, value, "sound_bits", &p->sound_bits, 1)
                    379:        || cfgfile_intval (option, value, "sound_pri_cutoff", &p->sound_pri_cutoff, 1)
                    380:        || cfgfile_intval (option, value, "sound_pri_time", &p->sound_pri_time, 1)
1.1.1.3   root      381:        || cfgfile_intval (option, value, "gfx_framerate", &p->gfx_framerate, 1)
1.1       root      382:        || cfgfile_intval (option, value, "gfx_width", &p->gfx_width, 1)
                    383:        || cfgfile_intval (option, value, "gfx_height", &p->gfx_height, 1)
                    384:        || cfgfile_intval (option, value, "fastmem_size", &p->fastmem_size, 0x100000)
                    385:        || cfgfile_intval (option, value, "a3000mem_size", &p->a3000mem_size, 0x100000)
                    386:        || cfgfile_intval (option, value, "z3mem_size", &p->z3fastmem_size, 0x100000)
                    387:        || cfgfile_intval (option, value, "bogomem_size", &p->bogomem_size, 0x40000)
                    388:        || cfgfile_intval (option, value, "gfxcard_size", &p->gfxmem_size, 0x100000)
1.1.1.6   root      389:        || cfgfile_intval (option, value, "chipmem_size", &p->chipmem_size, 0x80000)
                    390:        || cfgfile_intval (option, value, "nr_floppies", &p->nr_floppies, 1))
1.1       root      391:        return 1;
                    392:     if (cfgfile_strval (option, value, "sound_output", &p->produce_sound, soundmode, 0)
1.1.1.4   root      393:        || cfgfile_strval (option, value, "sound_interpol", &p->sound_interpol, interpolmode, 0)
1.1       root      394:        || cfgfile_strval (option, value, "joyport0", &p->jport0, portmode, 0)
                    395:        || cfgfile_strval (option, value, "joyport1", &p->jport1, portmode, 0)
1.1.1.8 ! root      396:        || cfgfile_strval (option, value, "collision_level", &p->collision_level, collmode, 0)
1.1       root      397:        || cfgfile_strval (option, value, "gfx_linemode", &p->gfx_linedbl, linemode1, 1)
                    398:        || cfgfile_strval (option, value, "gfx_linemode", &p->gfx_linedbl, linemode2, 0)
1.1.1.2   root      399:        || cfgfile_strval (option, value, "gfx_center_horizontal", &p->gfx_xcenter, centermode1, 1)
                    400:        || cfgfile_strval (option, value, "gfx_center_vertical", &p->gfx_ycenter, centermode1, 1)
                    401:        || cfgfile_strval (option, value, "gfx_center_horizontal", &p->gfx_xcenter, centermode2, 0)
                    402:        || cfgfile_strval (option, value, "gfx_center_vertical", &p->gfx_ycenter, centermode2, 0)
1.1       root      403:        || cfgfile_strval (option, value, "gfx_colour_mode", &p->color_mode, colormode1, 1)
                    404:        || cfgfile_strval (option, value, "gfx_colour_mode", &p->color_mode, colormode2, 0)
                    405:        || cfgfile_strval (option, value, "gfx_color_mode", &p->color_mode, colormode1, 1)
                    406:        || cfgfile_strval (option, value, "gfx_color_mode", &p->color_mode, colormode2, 0))
                    407:        return 1;
                    408:     if (cfgfile_string (option, value, "floppy0", p->df[0], 256)
                    409:        || cfgfile_string (option, value, "floppy1", p->df[1], 256)
                    410:        || cfgfile_string (option, value, "floppy2", p->df[2], 256)
                    411:        || cfgfile_string (option, value, "floppy3", p->df[3], 256)
                    412:        || cfgfile_string (option, value, "kickstart_rom_file", p->romfile, 256)
                    413:        || cfgfile_string (option, value, "kickstart_key_file", p->keyfile, 256)
1.1.1.2   root      414:        || cfgfile_string (option, value, "config_description", p->description, 256))
1.1       root      415:        return 1;
                    416: 
                    417:     /* Tricky ones... */
1.1.1.3   root      418:     if (cfgfile_strval (option, value, "chipset", &tmpval, csmode, 0)) {
1.1.1.5   root      419:        set_chipset_mask (p, tmpval);
1.1.1.3   root      420:        return 1;
                    421:     }
1.1.1.7   root      422: 
1.1.1.8 ! root      423:     if (cfgfile_strval (option, value, "sound_channels", &p->stereo, stereomode1, 1)
        !           424:        || cfgfile_strval (option, value, "sound_channels", &p->stereo, stereomode2, 1)
        !           425:        || cfgfile_strval (option, value, "sound_channels", &p->stereo, stereomode3, 0))
        !           426:     {
        !           427:        p->mixed_stereo = 0;
        !           428:        if (p->stereo == 2) {
        !           429:            p->stereo = 1;
        !           430:            p->mixed_stereo = 1;
        !           431:        }
        !           432:     }
        !           433: 
1.1       root      434:     if (cfgfile_strval (option, value, "cpu_type", &p->cpu_level, cpumode, 0)) {
1.1.1.7   root      435:        p->address_space_24 = p->cpu_level < 8 && !(p->cpu_level & 1);
1.1       root      436:        p->cpu_level >>= 1;
                    437:        return 1;
                    438:     }
                    439:     if (cfgfile_strval (option, value, "cpu_speed", &p->m68k_speed, speedmode, 1)) {
                    440:        p->m68k_speed--;
                    441:        return 1;
                    442:     }
1.1.1.8 ! root      443:     if (cfgfile_intval (option, value, "cpu_speed", &p->m68k_speed, 1)) {
        !           444:         p->m68k_speed *= CYCLE_UNIT;
        !           445:        return 1;
        !           446:     }
        !           447:     if (cfgfile_intval (option, value, "finegrain_cpu_speed", &p->m68k_speed, 1))
1.1       root      448:        return 1;
                    449: 
                    450:     if (strcmp (option, "kbd_lang") == 0) {
                    451:        KbdLang l;
                    452:        if ((l = KBD_LANG_DE, strcasecmp (value, "de") == 0)
                    453:            || (l = KBD_LANG_SE, strcasecmp (value, "se") == 0)
                    454:            || (l = KBD_LANG_US, strcasecmp (value, "us") == 0)
                    455:            || (l = KBD_LANG_FR, strcasecmp (value, "fr") == 0)
                    456:            || (l = KBD_LANG_IT, strcasecmp (value, "it") == 0)
                    457:            || (l = KBD_LANG_ES, strcasecmp (value, "es") == 0))
                    458:            p->keyboard_lang = l;
                    459:        else
                    460:            write_log ("Unknown keyboard language\n");
                    461:        return 1;
                    462:     }
                    463: 
                    464:     if (strcmp (option, "filesystem") == 0
                    465:        || strcmp (option, "hardfile") == 0)
                    466:     {
1.1.1.2   root      467:        int secs, heads, reserved, bs, ro;
                    468:        char *aname, *root;
1.1       root      469:        char *tmpp = strchr (value, ',');
1.1.1.2   root      470:        char *str;
1.1       root      471:        if (tmpp == 0)
                    472:            goto invalid_fs;
                    473: 
                    474:        *tmpp++ = '\0';
                    475:        if (strcmp (value, "0") == 0 || strcasecmp (value, "ro") == 0
                    476:            || strcasecmp (value, "readonly") == 0
                    477:            || strcasecmp (value, "read-only") == 0)
1.1.1.2   root      478:            ro = 1;
1.1       root      479:        else if (strcmp (value, "1") == 0 || strcasecmp (value, "rw") == 0
                    480:                 || strcasecmp (value, "readwrite") == 0
                    481:                 || strcasecmp (value, "read-write") == 0)
1.1.1.2   root      482:            ro = 0;
1.1       root      483:        else
                    484:            goto invalid_fs;
1.1.1.2   root      485:        secs = 0; heads = 0; reserved = 0; bs = 0;
1.1       root      486: 
                    487:        value = tmpp;
                    488:        if (strcmp (option, "filesystem") == 0) {
                    489:            tmpp = strchr (value, ':');
                    490:            if (tmpp == 0)
                    491:                goto invalid_fs;
                    492:            *tmpp++ = '\0';
1.1.1.2   root      493:            aname = value;
                    494:            root = tmpp;
1.1       root      495:        } else {
1.1.1.2   root      496:            if (! getintval (&value, &secs, ',')
                    497:                || ! getintval (&value, &heads, ',')
                    498:                || ! getintval (&value, &reserved, ',')
                    499:                || ! getintval (&value, &bs, ','))
1.1       root      500:                goto invalid_fs;
1.1.1.2   root      501:            root = value;
                    502:            aname = 0;
1.1       root      503:        }
1.1.1.2   root      504:        str = cfgfile_subst_path (UNEXPANDED, p->path_hardfile, root);
                    505:        tmpp = add_filesys_unit (p->mountinfo, aname, str, ro, secs,
                    506:                                 heads, reserved, bs);
                    507:        free (str);
                    508:        if (tmpp)
                    509:            write_log ("Error: %s\n", tmpp);
1.1       root      510:        return 1;
                    511: 
                    512:       invalid_fs:
                    513:        write_log ("Invalid filesystem/hardfile specification.\n");
                    514:        return 1;
                    515:     }
                    516: 
                    517:     return 0;
                    518: }
                    519: 
1.1.1.2   root      520: void cfgfile_parse_line (struct uae_prefs *p, char *line)
1.1       root      521: {
                    522:     int i;
                    523:     char *orig_line = my_strdup (line);
                    524:     char *line1, *line2;
                    525: 
                    526:     line1 = line;
                    527:     line2 = strchr (line, '=');
                    528:     if (! line2) {
                    529:        write_log ("CFGFILE: line was incomplete with only %s\n", line1);
                    530:        return;
                    531:     }
                    532: 
                    533:     *line2++ = '\0';
                    534: 
                    535:     /* Get rid of whitespace.  */
1.1.1.2   root      536:     i = strlen (line2);
                    537:     while (i > 0 && (line2[i - 1] == '\t' || line2[i - 1] == ' '
                    538:                     || line2[i - 1] == '\r' || line2[i - 1] == '\n'))
                    539:        line2[--i] = '\0';
1.1       root      540:     line2 += strspn (line2, "\t \r\n");
1.1.1.2   root      541:     i = strlen (line);
                    542:     while (i > 0 && (line[i - 1] == '\t' || line[i - 1] == ' '
                    543:                     || line[i - 1] == '\r' || line[i - 1] == '\n'))
                    544:        line[--i] = '\0';
1.1       root      545:     line += strspn (line, "\t \r\n");
                    546: 
1.1.1.2   root      547:     if (! cfgfile_parse_option (p, line, line2)) {
1.1       root      548:        struct strlist *u = xmalloc (sizeof (struct strlist));
                    549:        u->str = orig_line;
                    550:        u->next = p->unknown_lines;
                    551:        p->unknown_lines = u;
                    552:     } else
                    553:        free (orig_line);
                    554: }
                    555: 
                    556: static void subst (char *p, char *f, int n)
                    557: {
                    558:     char *str = cfgfile_subst_path (UNEXPANDED, p, f);
                    559:     strncpy (f, str, n - 1);
                    560:     f[n - 1] = '\0';
                    561:     free (str);
                    562: }
                    563: 
                    564: int cfgfile_load (struct uae_prefs *p, const char *filename)
                    565: {
                    566:     char *str;
                    567:     int i;
                    568: 
                    569:     FILE *fh;
                    570:     char line[256];
                    571: 
1.1.1.4   root      572:     fh = fopen (filename, "r");
1.1       root      573:     if (! fh)
                    574:        return 0;
                    575: 
                    576:     while (fgets (line, 256, fh) != 0) {
                    577:        line[strcspn (line, "\t \r\n")] = '\0';
                    578:        if (strlen (line) > 0)
1.1.1.2   root      579:            cfgfile_parse_line (p, line);
1.1       root      580:     }
                    581:     fclose (fh);
                    582: 
                    583:     for (i = 0; i < 4; i++)
                    584:        subst (p->path_floppy, p->df[i], sizeof p->df[i]);
                    585:     subst (p->path_rom, p->romfile, sizeof p->romfile);
                    586:     subst (p->path_rom, p->keyfile, sizeof p->keyfile);
                    587: 
                    588:     return 1;
                    589: }
                    590: 
                    591: int cfgfile_save (struct uae_prefs *p, const char *filename)
                    592: {
                    593:     FILE *fh = fopen (filename, "w");
                    594:     if (! fh)
                    595:        return 0;
                    596: 
                    597:     save_options (fh, p);
                    598:     fclose (fh);
                    599:     return 1;
                    600: }
                    601: 
                    602: int cfgfile_get_description (const char *filename, char *description)
                    603: {
                    604:     int result = 0;
                    605:     struct uae_prefs p;
                    606:     default_prefs (&p);
                    607:     strcpy (p.description, "");
                    608:     if (cfgfile_load (&p, filename) && strlen (p.description) != 0) {
                    609:        result = 1;
                    610:        strcpy (description, p.description);
                    611:     }
                    612:     discard_prefs (&p);
                    613:     return result;
                    614: }
                    615: 
                    616: void cfgfile_show_usage (void)
                    617: {
                    618:     int i;
                    619:     fprintf (stderr, "UAE Configuration Help:\n" \
                    620:               "=======================\n");
                    621:     for (i = 0; i < sizeof opttable / sizeof *opttable; i++)
                    622:        fprintf (stderr, "%s: %s\n", opttable[i].config_label, opttable[i].config_help);
                    623: }
1.1.1.4   root      624: 
                    625: /* This implements the old commandline option parsing.  I've re-added this
                    626:    because the new way of doing things is painful for me (it requires me
                    627:    to type a couple hundred characters when invoking UAE).  The following
                    628:    is far less annoying to use.  */
                    629: static void parse_gfx_specs (char *spec)
                    630: {
                    631:     char *x0 = my_strdup (spec);
                    632:     char *x1, *x2;
                    633: 
                    634:     x1 = strchr (x0, ':');
                    635:     if (x1 == 0)
                    636:        goto argh;
                    637:     x2 = strchr (x1+1, ':');
                    638:     if (x2 == 0)
                    639:        goto argh;
                    640:     *x1++ = 0; *x2++ = 0;
                    641: 
                    642:     currprefs.gfx_width = atoi (x0);
                    643:     currprefs.gfx_height = atoi (x1);
                    644:     currprefs.gfx_lores = strchr (x2, 'l') != 0;
                    645:     currprefs.gfx_xcenter = strchr (x2, 'x') != 0 ? 1 : strchr (x2, 'X') != 0 ? 2 : 0;
                    646:     currprefs.gfx_ycenter = strchr (x2, 'y') != 0 ? 1 : strchr (x2, 'Y') != 0 ? 2 : 0;
                    647:     currprefs.gfx_linedbl = strchr (x2, 'd') != 0;
                    648:     currprefs.gfx_linedbl += 2 * (strchr (x2, 'D') != 0);
                    649:     currprefs.gfx_afullscreen = strchr (x2, 'a') != 0;
                    650:     currprefs.gfx_pfullscreen = strchr (x2, 'p') != 0;
                    651:     currprefs.gfx_correct_aspect = strchr (x2, 'c') != 0;
                    652: 
                    653:     if (currprefs.gfx_linedbl == 3) {
                    654:        fprintf (stderr, "You can't use both 'd' and 'D' modifiers in the display mode specification.\n");
                    655:     }
                    656:     
                    657:     free (x0);
                    658:     return;
                    659: 
                    660:     argh:
                    661:     fprintf (stderr, "Bad display mode specification.\n");
                    662:     fprintf (stderr, "The format to use is: \"width:height:modifiers\"\n");
                    663:     fprintf (stderr, "Type \"uae -h\" for detailed help.\n");
                    664:     free (x0);
                    665: }
                    666: 
                    667: static void parse_sound_spec (char *spec)
                    668: {
                    669:     char *x0 = my_strdup (spec);
                    670:     char *x1, *x2 = NULL, *x3 = NULL, *x4 = NULL, *x5 = NULL;
                    671: 
                    672:     x1 = strchr (x0, ':');
                    673:     if (x1 != NULL) {
                    674:        *x1++ = '\0';
                    675:        x2 = strchr (x1 + 1, ':');
                    676:        if (x2 != NULL) {
                    677:            *x2++ = '\0';
                    678:            x3 = strchr (x2 + 1, ':');
                    679:            if (x3 != NULL) {
                    680:                *x3++ = '\0';
                    681:                x4 = strchr (x3 + 1, ':');
                    682:                if (x4 != NULL) {
                    683:                    *x4++ = '\0';
                    684:                    x5 = strchr (x4 + 1, ':');
                    685:                }
                    686:            }
                    687:        }
                    688:     }
                    689:     currprefs.produce_sound = atoi (x0);
                    690:     if (x1) {
1.1.1.8 ! root      691:        currprefs.mixed_stereo = 0;
        !           692:        if (*x1 == 'S')
        !           693:            currprefs.stereo = currprefs.mixed_stereo = 1;
        !           694:        else if (*x1 == 's')
1.1.1.4   root      695:            currprefs.stereo = 1;
                    696:        else
                    697:            currprefs.stereo = 0;
                    698:     }
                    699:     if (x2)
                    700:        currprefs.sound_bits = atoi (x2);
                    701:     if (x3)
                    702:        currprefs.sound_freq = atoi (x3);
                    703:     if (x4)
                    704:        currprefs.sound_maxbsiz = currprefs.sound_minbsiz = atoi (x4);
                    705:     if (x5)
                    706:        currprefs.sound_minbsiz = atoi (x5);
                    707:     free (x0);
                    708:     return;
                    709: }
                    710: 
                    711: 
                    712: static void parse_joy_spec (char *spec)
                    713: {
                    714:     int v0 = 2, v1 = 0;
                    715:     if (strlen(spec) != 2)
                    716:        goto bad;
                    717: 
                    718:     switch (spec[0]) {
                    719:      case '0': v0 = 0; break;
                    720:      case '1': v0 = 1; break;
                    721:      case 'M': case 'm': v0 = 2; break;
                    722:      case 'A': case 'a': v0 = 3; break;
                    723:      case 'B': case 'b': v0 = 4; break;
                    724:      case 'C': case 'c': v0 = 5; break;
                    725:      default: goto bad;
                    726:     }
                    727: 
                    728:     switch (spec[1]) {
                    729:      case '0': v1 = 0; break;
                    730:      case '1': v1 = 1; break;
                    731:      case 'M': case 'm': v1 = 2; break;
                    732:      case 'A': case 'a': v1 = 3; break;
                    733:      case 'B': case 'b': v1 = 4; break;
                    734:      case 'C': case 'c': v1 = 5; break;
                    735:      default: goto bad;
                    736:     }
                    737:     if (v0 == v1)
                    738:        goto bad;
                    739:     /* Let's scare Pascal programmers */
                    740:     if (0)
                    741: bad:
                    742:     fprintf (stderr, "Bad joystick mode specification. Use -J xy, where x and y\n"
                    743:             "can be 0 for joystick 0, 1 for joystick 1, M for mouse, and\n"
                    744:             "a, b or c for different keyboard settings.\n");
                    745: 
                    746:     currprefs.jport0 = v0;
                    747:     currprefs.jport1 = v1;
                    748: }
                    749: 
                    750: static void parse_filesys_spec (int readonly, char *spec)
                    751: {
                    752:     char buf[256];
                    753:     char *s2;
                    754: 
                    755:     strncpy (buf, spec, 255); buf[255] = 0;
                    756:     s2 = strchr (buf, ':');
                    757:     if (s2) {
                    758:        *s2++ = '\0';
                    759: #ifdef __DOS__
                    760:        {
                    761:            char *tmp;
                    762:  
                    763:            while ((tmp = strchr (s2, '\\')))
                    764:                *tmp = '/';
                    765:        }
                    766: #endif
                    767:        s2 = add_filesys_unit (currprefs.mountinfo, buf, s2, readonly, 0, 0, 0, 0);
                    768:        if (s2)
                    769:            fprintf (stderr, "%s\n", s2);
                    770:     } else {
                    771:        fprintf (stderr, "Usage: [-m | -M] VOLNAME:mount_point\n");
                    772:     }
                    773: }
                    774:  
                    775: static void parse_hardfile_spec (char *spec)
                    776: {
                    777:     char *x0 = my_strdup (spec);
                    778:     char *x1, *x2, *x3, *x4;
                    779: 
                    780:     x1 = strchr (x0, ':');
                    781:     if (x1 == NULL)
                    782:        goto argh;
                    783:     *x1++ = '\0';
                    784:     x2 = strchr (x1 + 1, ':');
                    785:     if (x2 == NULL)
                    786:        goto argh;
                    787:     *x2++ = '\0';
                    788:     x3 = strchr (x2 + 1, ':');
                    789:     if (x3 == NULL)
                    790:        goto argh;
                    791:     *x3++ = '\0';
                    792:     x4 = strchr (x3 + 1, ':');
                    793:     if (x4 == NULL)
                    794:        goto argh;
                    795:     *x4++ = '\0';
                    796:     x4 = add_filesys_unit (currprefs.mountinfo, 0, x4, 0, atoi (x0), atoi (x1), atoi (x2), atoi (x3));
                    797:     if (x4)
                    798:        fprintf (stderr, "%s\n", x4);
                    799: 
                    800:     free (x0);
                    801:     return;
                    802: 
                    803:  argh:
                    804:     free (x0);
                    805:     fprintf (stderr, "Bad hardfile parameter specified - type \"uae -h\" for help.\n");
                    806:     return;
                    807: }
                    808: 
                    809: static void parse_cpu_specs (char *spec)
                    810: {
1.1.1.7   root      811:     if (*spec < '0' || *spec > '4') {
                    812:        fprintf (stderr, "CPU parameter string must begin with '0', '1', '2', '3' or '4'.\n");
1.1.1.4   root      813:        return;
                    814:     }
                    815:        
                    816:     currprefs.cpu_level = *spec++ - '0';
                    817:     currprefs.address_space_24 = currprefs.cpu_level < 2;
                    818:     currprefs.cpu_compatible = 0;
                    819:     while (*spec != '\0') {
                    820:        switch (*spec) {
                    821:         case 'a':
                    822:            if (currprefs.cpu_level < 2)
                    823:                fprintf (stderr, "In 68000/68010 emulation, the address space is always 24 bit.\n");
1.1.1.7   root      824:            else if (currprefs.cpu_level >= 4)
                    825:                fprintf (stderr, "In 68040 emulation, the address space is always 32 bit.\n");
1.1.1.4   root      826:            else
                    827:                currprefs.address_space_24 = 1;
                    828:            break;
                    829:         case 'c':
                    830:            if (currprefs.cpu_level != 0)
                    831:                fprintf (stderr, "The more compatible CPU emulation is only available for 68000\n"
                    832:                         "emulation, not for 68010 upwards.\n");
                    833:            else
                    834:                currprefs.cpu_compatible = 1;
                    835:            break;
                    836:         default:
                    837:            fprintf (stderr, "Bad CPU parameter specified - type \"uae -h\" for help.\n");
                    838:            break;
                    839:        }
                    840:        spec++;
                    841:     }
                    842: }
                    843: 
                    844: /* Returns the number of args used up (0 or 1).  */
                    845: int parse_cmdline_option (char c, char *arg)
                    846: {
1.1.1.5   root      847:     const char arg_required[] = "0123rKpImWSAJwNCZUFcblOdHRv";
1.1.1.4   root      848: 
                    849:     if (strchr (arg_required, c) && ! arg) {
                    850:        fprintf (stderr, "Missing argument for option `-%c'!\n", c);
                    851:        return 0;
                    852:     }
                    853: 
                    854:     switch (c) {
1.1.1.5   root      855:     case 'h': usage (); exit (0);
1.1.1.4   root      856: 
1.1.1.5   root      857:     case '0': strncpy (currprefs.df[0], arg, 255); currprefs.df[0][255] = 0; break;
                    858:     case '1': strncpy (currprefs.df[1], arg, 255); currprefs.df[1][255] = 0; break;
                    859:     case '2': strncpy (currprefs.df[2], arg, 255); currprefs.df[2][255] = 0; break;
                    860:     case '3': strncpy (currprefs.df[3], arg, 255); currprefs.df[3][255] = 0; break;
                    861:     case 'r': strncpy (currprefs.romfile, arg, 255); currprefs.romfile[255] = 0; break;
                    862:     case 'K': strncpy (currprefs.keyfile, arg, 255); currprefs.keyfile[255] = 0; break;
                    863:     case 'p': strncpy (currprefs.prtname, arg, 255); currprefs.prtname[255] = 0; break;
1.1.1.4   root      864:        /*     case 'I': strncpy (currprefs.sername, arg, 255); currprefs.sername[255] = 0; currprefs.use_serial = 1; break; */
1.1.1.5   root      865:     case 'm': case 'M': parse_filesys_spec (c == 'M', arg); break;
                    866:     case 'W': parse_hardfile_spec (arg); break;
                    867:     case 'S': parse_sound_spec (arg); break;
                    868:     case 'R': currprefs.gfx_framerate = atoi (arg); break;
                    869:     case 'A': currprefs.emul_accuracy = atoi (arg); break;
                    870:     case 'x': currprefs.no_xhair = 1; break;
                    871:     case 'i': currprefs.illegal_mem = 1; break;
                    872:     case 'J': parse_joy_spec (arg); break;
                    873:     case 'a': currprefs.automount_uaedev = 0; break;
                    874: 
                    875:     case 't': currprefs.test_drawing_speed = 1; break;
                    876:     case 'L': currprefs.x11_use_low_bandwidth = 1; break;
                    877:     case 'T': currprefs.x11_use_mitshm = 1; break;
                    878:     case 'w': currprefs.m68k_speed = atoi (arg); break;
1.1.1.4   root      879: 
                    880:        /* case 'g': currprefs.use_gfxlib = 1; break; */
1.1.1.5   root      881:     case 'G': currprefs.start_gui = 0; break;
                    882:     case 'D': currprefs.start_debugger = 1; break;
1.1.1.4   root      883: 
1.1.1.5   root      884:     case 'n':
1.1.1.4   root      885:        if (strchr (arg, '3') != 0)
                    886:            currprefs.blits_32bit_enabled = 1;
                    887:        if (strchr (arg, 'i') != 0)
                    888:            currprefs.immediate_blits = 1;
                    889:        break;
                    890: 
1.1.1.5   root      891:     case 'v':
                    892:        set_chipset_mask (&currprefs, atoi (arg));
                    893:        break;
                    894: 
                    895:     case 'C':
1.1.1.4   root      896:        parse_cpu_specs (arg);
                    897:        break;
                    898: 
1.1.1.5   root      899:     case 'Z':
1.1.1.4   root      900:        currprefs.z3fastmem_size = atoi (arg) * 0x100000;
                    901:        break;
                    902: 
1.1.1.5   root      903:     case 'U':
1.1.1.4   root      904:        currprefs.gfxmem_size = atoi (arg) * 0x100000;
                    905:        break;
                    906: 
1.1.1.5   root      907:     case 'F':
1.1.1.4   root      908:        currprefs.fastmem_size = atoi (arg) * 0x100000;
                    909:        break;
                    910: 
1.1.1.5   root      911:     case 'b':
1.1.1.4   root      912:        currprefs.bogomem_size = atoi (arg) * 0x40000;
                    913:        break;
                    914: 
1.1.1.5   root      915:     case 'c':
1.1.1.4   root      916:        currprefs.chipmem_size = atoi (arg) * 0x80000;
                    917:        break;
                    918: 
1.1.1.5   root      919:     case 'l':
1.1.1.4   root      920:        if (0 == strcasecmp(arg, "de"))
                    921:            currprefs.keyboard_lang = KBD_LANG_DE;
                    922:        else if (0 == strcasecmp(arg, "us"))
                    923:            currprefs.keyboard_lang = KBD_LANG_US;
                    924:        else if (0 == strcasecmp(arg, "se"))
                    925:            currprefs.keyboard_lang = KBD_LANG_SE;
                    926:        else if (0 == strcasecmp(arg, "fr"))
                    927:            currprefs.keyboard_lang = KBD_LANG_FR;
                    928:        else if (0 == strcasecmp(arg, "it"))
                    929:            currprefs.keyboard_lang = KBD_LANG_IT;
                    930:        else if (0 == strcasecmp(arg, "es"))
                    931:            currprefs.keyboard_lang = KBD_LANG_ES;
                    932:        break;
                    933: 
1.1.1.5   root      934:     case 'O': parse_gfx_specs (arg); break;
                    935:     case 'd':
1.1.1.4   root      936:        if (strchr (arg, 'S') != NULL || strchr (arg, 's')) {
                    937:            write_log ("  Serial on demand.\n");
                    938:            currprefs.serial_demand = 1;
                    939:        }
                    940:        if (strchr (arg, 'P') != NULL || strchr (arg, 'p')) {
                    941:            write_log ("  Parallel on demand.\n");
                    942:            currprefs.parallel_demand = 1;
                    943:        }
                    944: 
                    945:        break;
                    946: 
1.1.1.5   root      947:     case 'H':
1.1.1.4   root      948:        currprefs.color_mode = atoi (arg);
                    949:        if (currprefs.color_mode < 0) {
                    950:            fprintf (stderr, "Bad color mode selected. Using default.\n");
                    951:            currprefs.color_mode = 0;
                    952:        }
                    953:        break;
1.1.1.5   root      954:     default:
1.1.1.4   root      955:        fprintf (stderr, "Unknown option `-%c'!\n", c);
                    956:        break;
                    957:     }
                    958:     return !! strchr (arg_required, c);
                    959: }

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.