forked from pete-gordon/oricutron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilereq_amiga.c
140 lines (116 loc) · 3.31 KB
/
filereq_amiga.c
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
/*
** Oricutron
** Copyright (C) 2009-2015 Peter Gordon
**
** 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, version 2
** of the License.
**
** 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.
**
** Amiga file dialog
*/
#define __USE_INLINE__
#include <stdlib.h>
#include <unistd.h>
#include <proto/exec.h>
#include <proto/dos.h>
#include <proto/asl.h>
#include "system.h"
#include "6502.h"
#include "via.h"
#include "8912.h"
#include "disk.h"
#include "gui.h"
#include "monitor.h"
#include "6551.h"
#include "machine.h"
#include "filereq.h"
struct Library *AslBase = NULL;
static struct FileRequester *req = NULL;
#ifdef __amigaos4__
struct AslIFace *IAsl = NULL;
#endif
SDL_bool init_filerequester( struct machine *oric )
{
AslBase = OpenLibrary( (CONST_STRPTR)AslName, 39 );
if( !AslBase ) return SDL_FALSE;
#ifdef __amigaos4__
IAsl = (struct AslIFace *)GetInterface( AslBase, "main", 1, NULL );
if( !IAsl ) return SDL_FALSE;
#endif
req = (struct FileRequester *)AllocAslRequestTags( ASL_FileRequest, TAG_DONE );
if( !req ) return SDL_FALSE;
return SDL_TRUE;
}
void shut_filerequester( struct machine *oric )
{
if( req ) FreeAslRequest( req );
#ifdef __amigaos4__
if( IAsl ) DropInterface( (struct Interface *)IAsl );
#endif
if( AslBase ) CloseLibrary( AslBase );
}
SDL_bool filerequester( struct machine *oric, char *title, char *path, char *fname, int type )
{
char *pat, ppat[16*2+2];
BOOL dosavemode = FALSE;
switch( type )
{
case FR_DISKSAVE:
dosavemode = TRUE;
case FR_DISKLOAD:
pat = "#?.dsk";
break;
case FR_TAPESAVETAP:
dosavemode = TRUE;
pat = "#?.tap";
break;
case FR_TAPESAVEORT:
dosavemode = TRUE;
pat = "#?.ort";
break;
case FR_TAPELOAD:
pat = "#?.(tap|ort|wav)";
break;
case FR_ROMS:
pat = "#?.rom";
break;
case FR_SNAPSHOTSAVE:
dosavemode = TRUE;
case FR_SNAPSHOTLOAD:
pat = "#?.sna";
break;
case FR_KEYMAPPINGSAVE:
dosavemode = TRUE;
case FR_KEYMAPPINGLOAD:
pat = "#?.kma";
break;
default:
pat = NULL;
break;
}
if( pat ) ParsePatternNoCase( (CONST_STRPTR)pat, (UBYTE *)ppat, 16*2+2 );
if( !AslRequestTags( req,
ASLFR_TitleText, title,
ASLFR_InitialDrawer, path,
ASLFR_InitialFile, fname,
ASLFR_DoPatterns, pat != NULL,
ASLFR_RejectIcons, TRUE,
ASLFR_DoSaveMode, dosavemode,
pat ? ASLFR_AcceptPattern : TAG_IGNORE, ppat,
pat ? ASLFR_InitialPattern : TAG_IGNORE, pat,
TAG_DONE ) )
return SDL_FALSE;
strncpy( path, (const char *)req->fr_Drawer, 4096 ); path[4095] = 0;
strncpy( fname, (const char *)req->fr_File, 512 ); fname[511] = 0;
return SDL_TRUE;
}