2009-05-02 23:03:37 +02:00
|
|
|
/*
|
2009-05-03 00:28:34 +02:00
|
|
|
* Copyright (C) 2002-2007 The DOSBox Team
|
2009-05-02 23:03:37 +02:00
|
|
|
*
|
|
|
|
* 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
|
2009-05-03 00:02:15 +02:00
|
|
|
* GNU General Public License for more details.
|
2009-05-02 23:03:37 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-05-03 00:28:34 +02:00
|
|
|
/* $Id: dos_classes.cpp,v 1.49 2007/01/08 19:45:39 qbix79 Exp $ */
|
2009-05-02 23:43:00 +02:00
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include "dosbox.h"
|
|
|
|
#include "mem.h"
|
|
|
|
#include "dos_inc.h"
|
2009-05-02 23:12:18 +02:00
|
|
|
#include "support.h"
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
Work in progress, making classes for handling certain internal memory structures in dos
|
|
|
|
This should make it somewhat easier for porting to other endian machines and make
|
|
|
|
dos work a bit easier.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_ParamBlock::Clear(void) {
|
|
|
|
memset(&exec,0,sizeof(exec));
|
|
|
|
memset(&overlay,0,sizeof(overlay));
|
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_ParamBlock::LoadData(void) {
|
|
|
|
exec.envseg=sGet(sExec,envseg);
|
|
|
|
exec.cmdtail=sGet(sExec,cmdtail);
|
|
|
|
exec.fcb1=sGet(sExec,fcb1);
|
|
|
|
exec.fcb2=sGet(sExec,fcb2);
|
|
|
|
exec.initsssp=sGet(sExec,initsssp);
|
|
|
|
exec.initcsip=sGet(sExec,initcsip);
|
|
|
|
overlay.loadseg=sGet(sOverlay,loadseg);
|
|
|
|
overlay.relocation=sGet(sOverlay,relocation);
|
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_ParamBlock::SaveData(void) {
|
|
|
|
sSave(sExec,envseg,exec.envseg);
|
|
|
|
sSave(sExec,cmdtail,exec.cmdtail);
|
|
|
|
sSave(sExec,fcb1,exec.fcb1);
|
|
|
|
sSave(sExec,fcb2,exec.fcb2);
|
|
|
|
sSave(sExec,initsssp,exec.initsssp);
|
|
|
|
sSave(sExec,initcsip,exec.initcsip);
|
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
|
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
void DOS_InfoBlock::SetLocation(Bit16u segment) {
|
2009-05-02 23:20:05 +02:00
|
|
|
seg = segment;
|
|
|
|
pt=PhysMake(seg,0);
|
2009-05-03 00:18:08 +02:00
|
|
|
/* Clear the initial Block */
|
2009-05-02 23:20:05 +02:00
|
|
|
for(Bitu i=0;i<sizeof(sDIB);i++) mem_writeb(pt+i,0xff);
|
2009-05-03 00:18:08 +02:00
|
|
|
for(Bitu i=0;i<14;i++) mem_writeb(pt+i,0);
|
2009-05-03 00:02:15 +02:00
|
|
|
|
|
|
|
sSave(sDIB,regCXfrom5e,(Bit16u)0);
|
|
|
|
sSave(sDIB,countLRUcache,(Bit16u)0);
|
|
|
|
sSave(sDIB,countLRUopens,(Bit16u)0);
|
|
|
|
|
|
|
|
sSave(sDIB,protFCBs,(Bit16u)0);
|
|
|
|
sSave(sDIB,specialCodeSeg,(Bit16u)0);
|
|
|
|
sSave(sDIB,joindedDrives,(Bit8u)0);
|
|
|
|
sSave(sDIB,lastdrive,(Bit8u)0x01);//increase this if you add drives to cds-chain
|
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
sSave(sDIB,diskInfoBuffer,RealMake(segment,offsetof(sDIB,diskBufferHeadPt)));
|
2009-05-03 00:02:15 +02:00
|
|
|
sSave(sDIB,setverPtr,(Bit32u)0);
|
|
|
|
|
|
|
|
sSave(sDIB,a20FixOfs,(Bit16u)0);
|
|
|
|
sSave(sDIB,pspLastIfHMA,(Bit16u)0);
|
|
|
|
sSave(sDIB,blockDevices,(Bit8u)0);
|
|
|
|
|
|
|
|
sSave(sDIB,bootDrive,(Bit8u)0);
|
|
|
|
sSave(sDIB,useDwordMov,(Bit8u)1);
|
2009-05-03 00:18:08 +02:00
|
|
|
sSave(sDIB,extendedSize,(Bit16u)(MEM_TotalPages()*4-1024));
|
|
|
|
sSave(sDIB,magicWord,(Bit16u)0x0001); // dos5+
|
2009-05-03 00:02:15 +02:00
|
|
|
|
|
|
|
sSave(sDIB,sharingCount,(Bit16u)0);
|
|
|
|
sSave(sDIB,sharingDelay,(Bit16u)0);
|
2009-05-03 00:18:08 +02:00
|
|
|
sSave(sDIB,ptrCONinput,(Bit16u)0); // no unread input available
|
|
|
|
sSave(sDIB,maxSectorLength,(Bit16u)0x200);
|
|
|
|
|
|
|
|
sSave(sDIB,dirtyDiskBuffers,(Bit16u)0);
|
|
|
|
sSave(sDIB,lookaheadBufPt,(Bit32u)0);
|
|
|
|
sSave(sDIB,lookaheadBufNumber,(Bit16u)0);
|
|
|
|
sSave(sDIB,bufferLocation,(Bit8u)0); // buffer in base memory, no workspace
|
|
|
|
sSave(sDIB,workspaceBuffer,(Bit32u)0);
|
|
|
|
|
|
|
|
sSave(sDIB,minMemForExec,(Bit16u)0);
|
|
|
|
sSave(sDIB,memAllocScanStart,(Bit16u)DOS_MEM_START);
|
|
|
|
sSave(sDIB,startOfUMBChain,(Bit16u)0xffff);
|
|
|
|
sSave(sDIB,chainingUMB,(Bit8u)0);
|
2009-05-03 00:02:15 +02:00
|
|
|
|
|
|
|
sSave(sDIB,nulNextDriver,(Bit32u)0xffffffff);
|
|
|
|
sSave(sDIB,nulAttributes,(Bit16u)0x8004);
|
|
|
|
sSave(sDIB,nulStrategy,(Bit32u)0x00000000);
|
|
|
|
sSave(sDIB,nulString[0],(Bit8u)0x4e);
|
|
|
|
sSave(sDIB,nulString[1],(Bit8u)0x55);
|
|
|
|
sSave(sDIB,nulString[2],(Bit8u)0x4c);
|
|
|
|
sSave(sDIB,nulString[3],(Bit8u)0x20);
|
|
|
|
sSave(sDIB,nulString[4],(Bit8u)0x20);
|
|
|
|
sSave(sDIB,nulString[5],(Bit8u)0x20);
|
|
|
|
sSave(sDIB,nulString[6],(Bit8u)0x20);
|
|
|
|
sSave(sDIB,nulString[7],(Bit8u)0x20);
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
/* Create a fake SFT, so programs think there are 100 file handles */
|
|
|
|
Bit16u sftOffset=offsetof(sDIB,firstFileTable)+0xa2;
|
|
|
|
sSave(sDIB,firstFileTable,RealMake(segment,sftOffset));
|
|
|
|
real_writed(segment,sftOffset+0x00,RealMake(segment+0x11,0)); //Next File Table
|
|
|
|
real_writew(segment,sftOffset+0x04,100); //File Table supports 100 files
|
|
|
|
real_writed(segment+0x11,0x00,0xffffffff); //Last File Table
|
|
|
|
real_writew(segment+0x11,0x04,100); //File Table supports 100 files
|
2009-05-02 23:20:05 +02:00
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
void DOS_InfoBlock::SetFirstMCB(Bit16u _firstmcb) {
|
|
|
|
sSave(sDIB,firstMCB,_firstmcb); //c2woody
|
2009-05-02 23:20:05 +02:00
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:43:00 +02:00
|
|
|
void DOS_InfoBlock::SetBuffers(Bit16u x,Bit16u y) {
|
|
|
|
sSave(sDIB,buffers_x,x);
|
|
|
|
sSave(sDIB,buffers_y,y);
|
|
|
|
}
|
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
void DOS_InfoBlock::SetCurDirStruct(Bit32u _curdirstruct) {
|
2009-05-03 00:02:15 +02:00
|
|
|
sSave(sDIB,curDirStructure,_curdirstruct);
|
|
|
|
}
|
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
void DOS_InfoBlock::SetFCBTable(Bit32u _fcbtable) {
|
2009-05-03 00:02:15 +02:00
|
|
|
sSave(sDIB,fcbTable,_fcbtable);
|
|
|
|
}
|
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
void DOS_InfoBlock::SetDeviceChainStart(Bit32u _devchain) {
|
2009-05-03 00:02:15 +02:00
|
|
|
sSave(sDIB,nulNextDriver,_devchain);
|
|
|
|
}
|
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
void DOS_InfoBlock::SetDiskBufferHeadPt(Bit32u _dbheadpt) {
|
|
|
|
sSave(sDIB,diskBufferHeadPt,_dbheadpt);
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit16u DOS_InfoBlock::GetStartOfUMBChain(void) {
|
|
|
|
return sGet(sDIB,startOfUMBChain);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DOS_InfoBlock::SetStartOfUMBChain(Bit16u _umbstartseg) {
|
|
|
|
sSave(sDIB,startOfUMBChain,_umbstartseg);
|
|
|
|
}
|
|
|
|
|
|
|
|
Bit8u DOS_InfoBlock::GetUMBChainState(void) {
|
|
|
|
return sGet(sDIB,chainingUMB);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DOS_InfoBlock::SetUMBChainState(Bit8u _umbchaining) {
|
|
|
|
sSave(sDIB,chainingUMB,_umbchaining);
|
2009-05-03 00:02:15 +02:00
|
|
|
}
|
|
|
|
|
2009-05-03 00:18:08 +02:00
|
|
|
RealPt DOS_InfoBlock::GetPointer(void) {
|
2009-05-02 23:20:05 +02:00
|
|
|
return RealMake(seg,offsetof(sDIB,firstDPB));
|
|
|
|
}
|
|
|
|
|
2009-05-03 00:28:34 +02:00
|
|
|
Bit32u DOS_InfoBlock::GetDeviceChain(void) {
|
|
|
|
return sGet(sDIB,nulNextDriver);
|
|
|
|
}
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
/* program Segment prefix */
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
Bit16u DOS_PSP::rootpsp = 0;
|
|
|
|
|
2009-05-03 00:28:34 +02:00
|
|
|
void DOS_PSP::MakeNew(Bit16u mem_size) {
|
2009-05-02 23:20:05 +02:00
|
|
|
/* get previous */
|
2009-05-03 00:02:15 +02:00
|
|
|
DOS_PSP prevpsp(dos.psp());
|
2009-05-02 23:20:05 +02:00
|
|
|
/* Clear it first */
|
2009-05-02 23:12:18 +02:00
|
|
|
Bitu i;
|
2009-05-02 23:20:05 +02:00
|
|
|
for (i=0;i<sizeof(sPSP);i++) mem_writeb(pt+i,0);
|
|
|
|
// Set size
|
|
|
|
sSave(sPSP,next_seg,seg+mem_size);
|
|
|
|
/* far call opcode */
|
|
|
|
sSave(sPSP,far_call,0xea);
|
2009-05-02 23:43:00 +02:00
|
|
|
// far call to interrupt 0x21 - faked for bill & ted
|
|
|
|
// lets hope nobody really uses this address
|
|
|
|
sSave(sPSP,cpm_entry,RealMake(0xDEAD,0xFFFF));
|
2009-05-02 23:12:18 +02:00
|
|
|
/* Standard blocks,int 20 and int21 retf */
|
|
|
|
sSave(sPSP,exit[0],0xcd);
|
|
|
|
sSave(sPSP,exit[1],0x20);
|
|
|
|
sSave(sPSP,service[0],0xcd);
|
|
|
|
sSave(sPSP,service[1],0x21);
|
|
|
|
sSave(sPSP,service[2],0xcb);
|
|
|
|
/* psp and psp-parent */
|
2009-05-03 00:02:15 +02:00
|
|
|
sSave(sPSP,psp_parent,dos.psp());
|
|
|
|
sSave(sPSP,prev_psp,0xffffffff);
|
|
|
|
sSave(sPSP,dos_version,0x0005);
|
2009-05-02 23:12:18 +02:00
|
|
|
/* terminate 22,break 23,crititcal error 24 address stored */
|
2009-05-02 23:20:05 +02:00
|
|
|
SaveVectors();
|
2009-05-03 00:02:15 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
/* FCBs are filled with 0 */
|
|
|
|
// ....
|
2009-05-02 23:12:18 +02:00
|
|
|
/* Init file pointer and max_files */
|
2009-05-03 00:02:15 +02:00
|
|
|
sSave(sPSP,file_table,RealMake(seg,offsetof(sPSP,files)));
|
2009-05-02 23:12:18 +02:00
|
|
|
sSave(sPSP,max_files,20);
|
2009-05-02 23:20:05 +02:00
|
|
|
for (i=0;i<20;i++) SetFileHandle(i,0xff);
|
|
|
|
|
|
|
|
/* User Stack pointer */
|
|
|
|
// if (prevpsp.GetSegment()!=0) sSave(sPSP,stack,prevpsp.GetStack());
|
|
|
|
|
|
|
|
if (rootpsp==0) rootpsp = seg;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
Bit8u DOS_PSP::GetFileHandle(Bit16u index)
|
|
|
|
{
|
2009-05-02 23:12:18 +02:00
|
|
|
if (index>=sGet(sPSP,max_files)) return 0xff;
|
|
|
|
PhysPt files=Real2Phys(sGet(sPSP,file_table));
|
|
|
|
return mem_readb(files+index);
|
|
|
|
};
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_PSP::SetFileHandle(Bit16u index, Bit8u handle)
|
|
|
|
{
|
|
|
|
if (index<sGet(sPSP,max_files)) {
|
|
|
|
PhysPt files=Real2Phys(sGet(sPSP,file_table));
|
|
|
|
mem_writeb(files+index,handle);
|
|
|
|
}
|
|
|
|
};
|
2009-05-02 23:03:37 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
Bit16u DOS_PSP::FindFreeFileEntry(void)
|
|
|
|
{
|
|
|
|
PhysPt files=Real2Phys(sGet(sPSP,file_table));
|
|
|
|
for (Bit16u i=0;i<sGet(sPSP,max_files);i++) {
|
|
|
|
if (mem_readb(files+i)==0xff) return i;
|
|
|
|
}
|
|
|
|
return 0xff;
|
|
|
|
};
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
Bit16u DOS_PSP::FindEntryByHandle(Bit8u handle)
|
|
|
|
{
|
|
|
|
PhysPt files=Real2Phys(sGet(sPSP,file_table));
|
|
|
|
for (Bit16u i=0;i<sGet(sPSP,max_files);i++) {
|
|
|
|
if (mem_readb(files+i)==handle) return i;
|
|
|
|
}
|
|
|
|
return 0xFF;
|
|
|
|
};
|
|
|
|
|
2009-05-02 23:43:00 +02:00
|
|
|
void DOS_PSP::CopyFileTable(DOS_PSP* srcpsp,bool createchildpsp)
|
2009-05-02 23:20:05 +02:00
|
|
|
{
|
|
|
|
/* Copy file table from calling process */
|
|
|
|
for (Bit16u i=0;i<20;i++) {
|
|
|
|
Bit8u handle = srcpsp->GetFileHandle(i);
|
2009-05-02 23:43:00 +02:00
|
|
|
if(createchildpsp)
|
|
|
|
{ //copy obeying not inherit flag.(but dont duplicate them)
|
2009-05-03 00:08:43 +02:00
|
|
|
bool allowCopy = true;//(handle==0) || ((handle>0) && (FindEntryByHandle(handle)==0xff));
|
2009-05-02 23:43:00 +02:00
|
|
|
if((handle<DOS_FILES) && Files[handle] && !(Files[handle]->flags & DOS_NOT_INHERIT) && allowCopy)
|
|
|
|
{
|
|
|
|
Files[handle]->AddRef();
|
|
|
|
SetFileHandle(i,handle);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetFileHandle(i,0xff);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{ //normal copy so don't mind the inheritance
|
|
|
|
SetFileHandle(i,handle);
|
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
void DOS_PSP::CloseFiles(void)
|
|
|
|
{
|
|
|
|
for (Bit16u i=0;i<sGet(sPSP,max_files);i++) {
|
|
|
|
DOS_CloseFile(i);
|
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_PSP::SaveVectors(void)
|
|
|
|
{
|
|
|
|
/* Save interrupt 22,23,24 */
|
|
|
|
sSave(sPSP,int_22,RealGetVec(0x22));
|
|
|
|
sSave(sPSP,int_23,RealGetVec(0x23));
|
|
|
|
sSave(sPSP,int_24,RealGetVec(0x24));
|
|
|
|
};
|
|
|
|
|
|
|
|
void DOS_PSP::RestoreVectors(void)
|
|
|
|
{
|
|
|
|
/* Restore interrupt 22,23,24 */
|
|
|
|
RealSetVec(0x22,sGet(sPSP,int_22));
|
|
|
|
RealSetVec(0x23,sGet(sPSP,int_23));
|
|
|
|
RealSetVec(0x24,sGet(sPSP,int_24));
|
|
|
|
};
|
|
|
|
|
|
|
|
void DOS_PSP::SetCommandTail(RealPt src)
|
|
|
|
{
|
|
|
|
if (src) { // valid source
|
|
|
|
MEM_BlockCopy(pt+offsetof(sPSP,cmdtail),Real2Phys(src),128);
|
|
|
|
} else { // empty
|
|
|
|
sSave(sPSP,cmdtail.count,0x00);
|
2009-05-03 00:02:15 +02:00
|
|
|
mem_writeb(pt+offsetof(sPSP,cmdtail.buffer),0x0d);
|
2009-05-02 23:20:05 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
void DOS_PSP::SetFCB1(RealPt src)
|
|
|
|
{
|
|
|
|
if (src) MEM_BlockCopy(PhysMake(seg,offsetof(sPSP,fcb1)),Real2Phys(src),16);
|
|
|
|
};
|
|
|
|
|
|
|
|
void DOS_PSP::SetFCB2(RealPt src)
|
|
|
|
{
|
|
|
|
if (src) MEM_BlockCopy(PhysMake(seg,offsetof(sPSP,fcb2)),Real2Phys(src),16);
|
|
|
|
};
|
|
|
|
|
2009-05-02 23:35:44 +02:00
|
|
|
bool DOS_PSP::SetNumFiles(Bit16u fileNum)
|
|
|
|
{
|
|
|
|
if (fileNum>20) {
|
|
|
|
// Allocate needed paragraphs
|
2009-05-02 23:43:00 +02:00
|
|
|
fileNum+=2; // Add a few more files for safety
|
2009-05-02 23:35:44 +02:00
|
|
|
Bit16u para = (fileNum/16)+((fileNum%16)>0);
|
|
|
|
RealPt data = RealMake(DOS_GetMemory(para),0);
|
|
|
|
sSave(sPSP,file_table,data);
|
|
|
|
sSave(sPSP,max_files,fileNum);
|
|
|
|
Bit16u i;
|
|
|
|
for (i=0; i<20; i++) SetFileHandle(i,sGet(sPSP,files[i]));
|
|
|
|
for (i=20; i<fileNum; i++) SetFileHandle(i,0xFF);
|
|
|
|
} else {
|
|
|
|
sSave(sPSP,max_files,fileNum);
|
|
|
|
};
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_DTA::SetupSearch(Bit8u _sdrive,Bit8u _sattr,char * pattern) {
|
|
|
|
sSave(sDTA,sdrive,_sdrive);
|
|
|
|
sSave(sDTA,sattr,_sattr);
|
|
|
|
/* Fill with spaces */
|
|
|
|
Bitu i;
|
2009-05-02 23:43:00 +02:00
|
|
|
for (i=0;i<11;i++) mem_writeb(pt+offsetof(sDTA,sname)+i,' ');
|
2009-05-02 23:20:05 +02:00
|
|
|
char * find_ext;
|
|
|
|
find_ext=strchr(pattern,'.');
|
|
|
|
if (find_ext) {
|
|
|
|
Bitu size=find_ext-pattern;if (size>8) size=8;
|
|
|
|
MEM_BlockWrite(pt+offsetof(sDTA,sname),pattern,size);
|
|
|
|
find_ext++;
|
|
|
|
MEM_BlockWrite(pt+offsetof(sDTA,sext),find_ext,(strlen(find_ext)>3) ? 3 : strlen(find_ext));
|
|
|
|
} else {
|
|
|
|
MEM_BlockWrite(pt+offsetof(sDTA,sname),pattern,(strlen(pattern) > 8) ? 8 : strlen(pattern));
|
|
|
|
}
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_DTA::SetResult(const char * _name,Bit32u _size,Bit16u _date,Bit16u _time,Bit8u _attr) {
|
|
|
|
MEM_BlockWrite(pt+offsetof(sDTA,name),(void *)_name,DOS_NAMELENGTH_ASCII);
|
|
|
|
sSave(sDTA,size,_size);
|
|
|
|
sSave(sDTA,date,_date);
|
|
|
|
sSave(sDTA,time,_time);
|
|
|
|
sSave(sDTA,attr,_attr);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
void DOS_DTA::GetResult(char * _name,Bit32u & _size,Bit16u & _date,Bit16u & _time,Bit8u & _attr) {
|
|
|
|
MEM_BlockRead(pt+offsetof(sDTA,name),_name,DOS_NAMELENGTH_ASCII);
|
|
|
|
_size=sGet(sDTA,size);
|
|
|
|
_date=sGet(sDTA,date);
|
|
|
|
_time=sGet(sDTA,time);
|
|
|
|
_attr=sGet(sDTA,attr);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
Bit8u DOS_DTA::GetSearchDrive(void) {
|
|
|
|
return sGet(sDTA,sdrive);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_DTA::GetSearchParams(Bit8u & attr,char * pattern) {
|
|
|
|
attr=sGet(sDTA,sattr);
|
|
|
|
char temp[11];
|
|
|
|
MEM_BlockRead(pt+offsetof(sDTA,sname),temp,11);
|
|
|
|
memcpy(pattern,temp,8);
|
|
|
|
pattern[8]='.';
|
|
|
|
memcpy(&pattern[9],&temp[8],3);
|
|
|
|
pattern[12]=0;
|
|
|
|
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
DOS_FCB::DOS_FCB(Bit16u seg,Bit16u off) {
|
|
|
|
SetPt(seg,off);
|
|
|
|
real_pt=pt;
|
|
|
|
if (sGet(sFCB,drive)==0xff) {
|
|
|
|
pt+=7;
|
|
|
|
extended=true;
|
|
|
|
} else extended=false;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
bool DOS_FCB::Extended(void) {
|
|
|
|
return extended;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_FCB::Create(bool _extended) {
|
|
|
|
Bitu fill;
|
|
|
|
if (_extended) fill=36+7;
|
|
|
|
else fill=36;
|
|
|
|
Bitu i;
|
|
|
|
for (i=0;i<fill;i++) mem_writeb(real_pt+i,0);
|
|
|
|
pt=real_pt;
|
|
|
|
if (_extended) {
|
|
|
|
mem_writeb(real_pt,0xff);
|
|
|
|
pt+=7;
|
|
|
|
extended=true;
|
|
|
|
} else extended=false;
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_FCB::SetName(Bit8u _drive,char * _fname,char * _ext) {
|
|
|
|
sSave(sFCB,drive,_drive);
|
|
|
|
MEM_BlockWrite(pt+offsetof(sFCB,filename),_fname,8);
|
|
|
|
MEM_BlockWrite(pt+offsetof(sFCB,ext),_ext,3);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_FCB::SetSizeDateTime(Bit32u _size,Bit16u _date,Bit16u _time) {
|
|
|
|
sSave(sFCB,filesize,_size);
|
|
|
|
sSave(sFCB,date,_date);
|
|
|
|
sSave(sFCB,time,_time);
|
2009-05-02 23:12:18 +02:00
|
|
|
}
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_FCB::GetSizeDateTime(Bit32u & _size,Bit16u & _date,Bit16u & _time) {
|
|
|
|
_size=sGet(sFCB,filesize);
|
2009-05-02 23:35:44 +02:00
|
|
|
_date=sGet(sFCB,date);
|
|
|
|
_time=sGet(sFCB,time);
|
2009-05-02 23:12:18 +02:00
|
|
|
}
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_FCB::GetRecord(Bit16u & _cur_block,Bit8u & _cur_rec) {
|
|
|
|
_cur_block=sGet(sFCB,cur_block);
|
|
|
|
_cur_rec=sGet(sFCB,cur_rec);
|
|
|
|
|
2009-05-02 23:12:18 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_FCB::SetRecord(Bit16u _cur_block,Bit8u _cur_rec) {
|
|
|
|
sSave(sFCB,cur_block,_cur_block);
|
|
|
|
sSave(sFCB,cur_rec,_cur_rec);
|
2009-05-02 23:12:18 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_FCB::GetSeqData(Bit8u & _fhandle,Bit16u & _rec_size) {
|
|
|
|
_fhandle=sGet(sFCB,file_handle);
|
|
|
|
_rec_size=sGet(sFCB,rec_size);
|
2009-05-02 23:03:37 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
|
|
|
|
void DOS_FCB::GetRandom(Bit32u & _random) {
|
|
|
|
_random=sGet(sFCB,rndm);
|
2009-05-02 23:12:18 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_FCB::SetRandom(Bit32u _random) {
|
|
|
|
sSave(sFCB,rndm,_random);
|
2009-05-02 23:12:18 +02:00
|
|
|
}
|
2009-05-02 23:20:05 +02:00
|
|
|
|
|
|
|
void DOS_FCB::FileOpen(Bit8u _fhandle) {
|
2009-05-02 23:27:47 +02:00
|
|
|
sSave(sFCB,drive,GetDrive()+1);
|
2009-05-02 23:20:05 +02:00
|
|
|
sSave(sFCB,file_handle,_fhandle);
|
|
|
|
sSave(sFCB,cur_block,0);
|
|
|
|
sSave(sFCB,rec_size,128);
|
|
|
|
sSave(sFCB,rndm,0);
|
|
|
|
Bit8u temp=RealHandle(_fhandle);
|
|
|
|
sSave(sFCB,filesize,Files[temp]->size);
|
|
|
|
sSave(sFCB,time,Files[temp]->time);
|
|
|
|
sSave(sFCB,date,Files[temp]->date);
|
2009-05-02 23:12:18 +02:00
|
|
|
}
|
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_FCB::FileClose(Bit8u & _fhandle) {
|
|
|
|
_fhandle=sGet(sFCB,file_handle);
|
|
|
|
sSave(sFCB,file_handle,0xff);
|
|
|
|
}
|
2009-05-02 23:12:18 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
Bit8u DOS_FCB::GetDrive(void) {
|
|
|
|
Bit8u drive=sGet(sFCB,drive);
|
|
|
|
if (!drive) return dos.current_drive;
|
|
|
|
else return drive-1;
|
|
|
|
}
|
2009-05-02 23:12:18 +02:00
|
|
|
|
2009-05-02 23:20:05 +02:00
|
|
|
void DOS_FCB::GetName(char * fillname) {
|
|
|
|
fillname[0]=GetDrive()+'A';
|
|
|
|
fillname[1]=':';
|
|
|
|
MEM_BlockRead(pt+offsetof(sFCB,filename),&fillname[2],8);
|
|
|
|
fillname[10]='.';
|
|
|
|
MEM_BlockRead(pt+offsetof(sFCB,ext),&fillname[11],3);
|
|
|
|
fillname[14]=0;
|
|
|
|
}
|
2009-05-02 23:12:18 +02:00
|
|
|
|
2009-05-03 00:02:15 +02:00
|
|
|
void DOS_FCB::GetAttr(Bit8u& attr) {
|
|
|
|
if(extended) attr=mem_readb(pt - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DOS_FCB::SetAttr(Bit8u attr) {
|
|
|
|
if(extended) mem_writeb(pt - 1,attr);
|
|
|
|
}
|
|
|
|
|
|
|
|
void DOS_SDA::Init() {
|
|
|
|
/* Clear */
|
|
|
|
for(Bitu i=0;i<sizeof(sSDA);i++) mem_writeb(pt+i,0x00);
|
|
|
|
sSave(sSDA,drive_crit_error,0xff);
|
|
|
|
}
|