ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/Frodo4/Src/1541fs.h
Revision: 1.4
Committed: 2004-01-11T14:03:29Z (20 years, 3 months ago) by cebix
Content type: text/plain
Branch: MAIN
Changes since 1.3: +1 -1 lines
Log Message:
added D64 write support

File Contents

# Content
1 /*
2 * 1541fs.h - 1541 emulation in host file system
3 *
4 * Frodo (C) 1994-1997,2002-2003 Christian Bauer
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20
21 #ifndef _1541FS_H
22 #define _1541FS_H
23
24 #include "IEC.h"
25
26
27 class FSDrive : public Drive {
28 public:
29 FSDrive(IEC *iec, char *path);
30 virtual ~FSDrive();
31 virtual uint8 Open(int channel, const uint8 *name, int name_len);
32 virtual uint8 Close(int channel);
33 virtual uint8 Read(int channel, uint8 &byte);
34 virtual uint8 Write(int channel, uint8 byte, bool eoi);
35 virtual void Reset(void);
36
37 private:
38 bool change_dir(char *dirpath);
39
40 uint8 open_file(int channel, const uint8 *name, int name_len);
41 uint8 open_directory(int channel, const uint8 *pattern, int pattern_len);
42 void find_first_file(char *pattern);
43 void close_all_channels(void);
44
45 virtual void initialize_cmd(void);
46 virtual void validate_cmd(void);
47
48 char dir_path[256]; // Path to directory
49 char orig_dir_path[256]; // Original directory path
50 char dir_title[16]; // Directory title
51 FILE *file[16]; // File pointers for each of the 16 channels
52
53 uint8 read_char[16]; // Buffers for one-byte read-ahead
54 };
55
56 #endif