mirror of
https://git.code.sf.net/p/fuse-emulator/fuse
synced 2026-01-27 01:41:34 +03:00
119 lines
2.8 KiB
Perl
Executable File
119 lines
2.8 KiB
Perl
Executable File
#!/usr/bin/perl -w
|
|
|
|
# settings-header.pl: generate settings.h from settings.dat
|
|
# Copyright (c) 2002-2003 Philip Kendall
|
|
# Copyright (c) 2015 Stuart Brady
|
|
|
|
# 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.,
|
|
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
|
|
|
# Author contact information:
|
|
|
|
# E-mail: philip-fuse@shadowmagic.org.uk
|
|
|
|
use strict;
|
|
|
|
use lib 'perl';
|
|
|
|
use Fuse;
|
|
|
|
my %options;
|
|
|
|
while(<>) {
|
|
|
|
next if /^\s*$/;
|
|
next if /^\s*#/;
|
|
|
|
chomp;
|
|
|
|
my( $name, $type, $default, $short, $commandline, $configfile ) =
|
|
split /\s*,\s*/;
|
|
|
|
if( not defined $commandline ) {
|
|
$commandline = $name;
|
|
$commandline =~ s/_/-/g;
|
|
}
|
|
|
|
if( not defined $configfile ) {
|
|
$configfile = $commandline;
|
|
$configfile =~ s/-//g;
|
|
}
|
|
|
|
$options{$name} = { type => $type, default => $default, short => $short,
|
|
commandline => $commandline,
|
|
configfile => $configfile };
|
|
}
|
|
|
|
print Fuse::GPL( 'settings.h: Handling configuration settings',
|
|
'2001-2003 Philip Kendall' );
|
|
|
|
print << 'CODE';
|
|
|
|
/* This file is autogenerated from settings.dat by settings-header.pl.
|
|
Do not edit unless you know what will happen! */
|
|
|
|
#ifndef FUSE_SETTINGS_H
|
|
#define FUSE_SETTINGS_H
|
|
|
|
#include <sys/types.h>
|
|
|
|
typedef struct settings_info {
|
|
|
|
CODE
|
|
|
|
foreach my $name ( sort keys %options ) {
|
|
|
|
my $type = $options{$name}->{type};
|
|
|
|
if( $type eq 'boolean' or $type eq 'numeric' ) {
|
|
print " int $name;\n";
|
|
} elsif( $type eq 'string' ) {
|
|
print " char *$name;\n";
|
|
} elsif( $type eq 'null' ) {
|
|
# Do nothing
|
|
} else {
|
|
die "Unknown setting type `$type'";
|
|
}
|
|
|
|
}
|
|
|
|
print << 'CODE';
|
|
|
|
int show_help;
|
|
int show_version;
|
|
|
|
} settings_info;
|
|
|
|
extern settings_info settings_current;
|
|
extern settings_info settings_default;
|
|
|
|
int settings_init( int *first_arg, int argc, char **argv );
|
|
void settings_defaults( settings_info *settings );
|
|
void settings_copy( settings_info *dest, settings_info *src );
|
|
|
|
#define SETTINGS_ROM_COUNT 30
|
|
char **settings_get_rom_setting( settings_info *settings, size_t which,
|
|
int is_peripheral );
|
|
|
|
void settings_set_string( char **string_setting, const char *value );
|
|
|
|
int settings_free( settings_info *settings );
|
|
|
|
int settings_write_config( settings_info *settings );
|
|
|
|
void settings_register_startup( void );
|
|
|
|
#endif /* #ifndef FUSE_SETTINGS_H */
|
|
CODE
|