104 lines
3.6 KiB
C++
104 lines
3.6 KiB
C++
/*
|
|
* Copyright (C) 2002 The DOSBox Team
|
|
*
|
|
* 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 Library 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*/
|
|
|
|
#ifndef _DRIVES_H__
|
|
#define _DRIVES_H__
|
|
|
|
#include <sys/types.h>
|
|
#include "dos_system.h"
|
|
|
|
bool WildFileCmp(const char * file, const char * wild);
|
|
|
|
class localDrive : public DOS_Drive {
|
|
public:
|
|
localDrive(const char * startdir,Bit16u _bytes_sector,Bit8u _sectors_cluster,Bit16u _total_clusters,Bit16u _free_clusters,Bit8u _mediaid);
|
|
virtual bool FileOpen(DOS_File * * file,char * name,Bit32u flags);
|
|
virtual bool FileCreate(DOS_File * * file,char * name,Bit16u attributes);
|
|
virtual bool FileUnlink(char * name);
|
|
virtual bool RemoveDir(char * dir);
|
|
virtual bool MakeDir(char * dir);
|
|
virtual bool TestDir(char * dir);
|
|
virtual bool FindFirst(char * _dir,DOS_DTA & dta);
|
|
virtual bool FindNext(DOS_DTA & dta);
|
|
virtual bool GetFileAttr(char * name,Bit16u * attr);
|
|
virtual bool Rename(char * oldname,char * newname);
|
|
virtual bool AllocationInfo(Bit16u * _bytes_sector,Bit8u * _sectors_cluster,Bit16u * _total_clusters,Bit16u * _free_clusters);
|
|
virtual bool FileExists(const char* name);
|
|
virtual bool FileStat(const char* name, FileStat_Block * const stat_block);
|
|
virtual Bit8u GetMediaByte(void);
|
|
|
|
private:
|
|
char basedir[CROSS_LEN];
|
|
|
|
struct {
|
|
char srch_dir[CROSS_LEN];
|
|
} srchInfo[MAX_OPENDIRS];
|
|
|
|
struct {
|
|
Bit16u bytes_sector;
|
|
Bit8u sectors_cluster;
|
|
Bit16u total_clusters;
|
|
Bit16u free_clusters;
|
|
Bit8u mediaid;
|
|
} allocation;
|
|
};
|
|
|
|
class cdromDrive : public localDrive
|
|
{
|
|
public:
|
|
cdromDrive(const char driveLetter, const char * startdir,Bit16u _bytes_sector,Bit8u _sectors_cluster,Bit16u _total_clusters,Bit16u _free_clusters,Bit8u _mediaid, int& error);
|
|
virtual bool FileOpen(DOS_File * * file,char * name,Bit32u flags);
|
|
virtual bool FileCreate(DOS_File * * file,char * name,Bit16u attributes);
|
|
virtual bool FileUnlink(char * name);
|
|
virtual bool RemoveDir(char * dir);
|
|
virtual bool MakeDir(char * dir);
|
|
virtual bool Rename(char * oldname,char * newname);
|
|
virtual bool GetFileAttr(char * name,Bit16u * attr);
|
|
virtual bool FindFirst(char * _dir,DOS_DTA & dta);
|
|
virtual void SetDir(const char* path);
|
|
private:
|
|
Bit8u subUnit;
|
|
};
|
|
|
|
struct VFILE_Block;
|
|
|
|
class Virtual_Drive: public DOS_Drive {
|
|
public:
|
|
Virtual_Drive();
|
|
bool FileOpen(DOS_File * * file,char * name,Bit32u flags);
|
|
bool FileCreate(DOS_File * * file,char * name,Bit16u attributes);
|
|
bool FileUnlink(char * name);
|
|
bool RemoveDir(char * dir);
|
|
bool MakeDir(char * dir);
|
|
bool TestDir(char * dir);
|
|
bool FindFirst(char * _dir,DOS_DTA & dta);
|
|
bool FindNext(DOS_DTA & dta);
|
|
bool GetFileAttr(char * name,Bit16u * attr);
|
|
bool Rename(char * oldname,char * newname);
|
|
bool AllocationInfo(Bit16u * _bytes_sector,Bit8u * _sectors_cluster,Bit16u * _total_clusters,Bit16u * _free_clusters);
|
|
bool FileExists(const char* name);
|
|
bool FileStat(const char* name, FileStat_Block* const stat_block);
|
|
Bit8u GetMediaByte(void);
|
|
void EmptyCache(void){}
|
|
private:
|
|
VFILE_Block * search_file;
|
|
};
|
|
|
|
|
|
|
|
#endif
|