1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
|
/*
* Copyright (C) 1996-1998 Szeredi Miklos
* Email: mszeredi@inf.bme.hu
*
* 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. See the file COPYING.
*
* 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., 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#include "misc.h"
#include "spconf_p.h"
#include "spver.h"
#include "interf.h"
#include "spscr_p.h"
#include "spkey.h"
#include "snapshot.h" /* for SN_Z80 and SN_SNA */
#include "tapefile.h" /* for TAP_TAP and TAP_TZX */
#include "zxconfig.h"
#include "stdio.h"
#include "string.h"
/*#include <errno.h>*/
#include "sys/types.h"
#include "helpers.h"
#include "ctype.h"
extern const char *spcf_keynames_ascii[];
extern const char *spcf_keynames_misc[];
char *spcf_init_snapshot = NULL;
int spcf_init_snapshot_type;
char *spcf_init_tapefile = NULL;
int spcf_init_tapefile_type;
#ifndef USE_GRAY
#define exit(i) rb->splash(HZ*1,true,"Exit: %d",i)
#else
#define exit(i) i=i
#endif
#define MAXLINELEN 512
/*static int linectr;
static FILE *conffp;
static int conffd;
static const char *conffile;
*/
static int file_type = -1;
static int file_subtype;
struct ext_type {
const char *ext;
int type;
int subtype;
};
static struct ext_type extensions[] = {
{"z80", FT_SNAPSHOT, SN_Z80},
{"sna", FT_SNAPSHOT, SN_SNA},
{"tzx", FT_TAPEFILE, TAP_TZX},
{"tap", FT_TAPEFILE, TAP_TAP},
{NULL, 0, 0}
};
int spcf_find_file_type(char *filename, int *ftp, int *ftsubp)
{
int i;
int found;
if(*ftp >= 0 && *ftsubp >= 0) return 1;
found = 0;
for(i = 0; extensions[i].ext != NULL; i++)
if((*ftp < 0 || *ftp == extensions[i].type) &&
(*ftsubp < 0 || *ftsubp == extensions[i].subtype) &&
check_ext(filename, extensions[i].ext)) {
found = 1;
*ftp = extensions[i].type;
*ftsubp = extensions[i].subtype;
break;
}
if(!found) for(i = 0; extensions[i].ext != NULL; i++)
if((*ftp < 0 || *ftp == extensions[i].type) &&
(*ftsubp < 0 || *ftsubp == extensions[i].subtype) &&
try_extension(filename, extensions[i].ext)) {
found = 1;
*ftp = extensions[i].type;
*ftsubp = extensions[i].subtype;
break;
}
return found;
}
static int find_extension(const char *ext)
{
int i;
for(i = 0; extensions[i].ext != NULL; i++)
if(rb->strcasecmp(extensions[i].ext, ext) == 0) return i;
return -1;
}
/* now actually a snapshot/tape loader*/
void spcf_read_command_line(void* parameter)
{
int ix;
ix = find_extension( parameter - 3 + rb->strlen (parameter) );
file_type = extensions[ix].type;
file_subtype = extensions[ix].subtype;
rb->strncpy(filenamebuf, parameter, MAXFILENAME - 10);
filenamebuf[MAXFILENAME-10] = '\0';
if(file_type < 0) file_subtype = -1;
if(!spcf_find_file_type(filenamebuf, &file_type, &file_subtype))
return;
if(file_type == FT_SNAPSHOT) {
spcf_init_snapshot = make_string(spcf_init_snapshot, filenamebuf);
spcf_init_snapshot_type = file_subtype;
}
else if(file_type == FT_TAPEFILE) {
spcf_init_tapefile = make_string(spcf_init_tapefile, filenamebuf);
spcf_init_tapefile_type = file_subtype;
}
}
|