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
|
// 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
// 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 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 "cdsk.h"
CDisk::CDisk()
{
m_bHasData = FALSE;
m_pbtMemory = NULL;
m_iMaxSectorWritten = 0;
#ifdef _MEMORY_DUMP_
printf( "CDisk constructed: %p\n", this );
#endif
}
CDisk::~CDisk()
{
if ( m_pbtMemory )
{
delete [] m_pbtMemory;
m_pbtMemory = NULL;
}
#ifdef _MEMORY_DUMP_
printf( "CDisk destructed: %p\n", this );
#endif
}
BOOL CDisk::Duplicate( CDisk* pDisk, DISK_GEOMETRY* pGeoForced )
{
DISK_GEOMETRY* pGeo = pGeoForced;
if ( !pGeo )
pGeo = &( pDisk->m_geometry );
if ( !Format( pGeo ) )
return FALSE;
memcpy( m_pbtMemory, pDisk->m_pbtMemory, pDisk->m_iAllocated );
m_iMaxSectorWritten = pDisk->m_iMaxSectorWritten;
return TRUE;
}
BOOL CDisk::Format( DISK_GEOMETRY* pgeo )
{
m_iMaxSectorWritten = 0;
int iSectors = pgeo->iSides * pgeo->iTracks * pgeo->iSectorsPerTrack;
if ( m_pbtMemory )
delete [] m_pbtMemory;
m_iAllocated = iSectors * pgeo->iBytesPerSector;
m_pbtMemory = new BYTE [ m_iAllocated ];
if ( !m_pbtMemory )
{
sprintf( m_szLastError, "DISK: Can't format - Not enough memory!" );
return FALSE;
}
memset( m_pbtMemory, 0, m_iAllocated );
m_geometry.iSides = pgeo->iSides;
m_geometry.iTracks = pgeo->iTracks;
m_geometry.iSectorsPerTrack = pgeo->iSectorsPerTrack;
m_geometry.iBytesPerSector = pgeo->iBytesPerSector;
m_geometry.iSectors = iSectors;
return TRUE;
}
BOOL CDisk::ReadSector( void* pBuf, int iStartSec )
{
if ( iStartSec && ( iStartSec <= m_geometry.iSectors ) )
memcpy( pBuf, m_pbtMemory + ( iStartSec - 1 ) * m_geometry.iBytesPerSector, m_geometry.iBytesPerSector );
else
{
sprintf( m_szLastError, "DISK: Reading non-existent sector: %04X", iStartSec );
return FALSE;
}
return TRUE;
}
BOOL CDisk::WriteSector( int iStartSec, void* pBuf )
{
//printf( " ws: %d ", iStartSec );
if ( iStartSec && ( iStartSec <= m_geometry.iSectors ) )
memcpy( m_pbtMemory + ( iStartSec - 1 ) * m_geometry.iBytesPerSector, pBuf, m_geometry.iBytesPerSector );
else
{
sprintf( m_szLastError, "DISK: Writing non-existent sector: %04X", iStartSec );
return FALSE;
}
if ( iStartSec > m_iMaxSectorWritten )
m_iMaxSectorWritten = iStartSec;
return TRUE;
}
|