mirror of
https://github.com/AppleWin/AppleWin.git
synced 2024-11-18 12:06:47 +00:00
f24971f582
Added Speech API support: . Capture char output to COUT . Enable speech via -speech cmd-line . Ctrl+Reset and FullSpeed mode purge the speech buffers Removed #pragma hdrstop from all .cpp files except AppleWin.cpp (which is the PCH create file)
123 lines
2.4 KiB
C++
123 lines
2.4 KiB
C++
#include "StdAfx.h"
|
|
|
|
|
|
// MemoryTextFile _________________________________________________________________________________
|
|
|
|
const int EOL_NULL = 0;
|
|
|
|
//===========================================================================
|
|
bool MemoryTextFile_t::Read( char *pFileName )
|
|
{
|
|
bool bStatus = false;
|
|
FILE *hFile = fopen( pFileName, "rt" );
|
|
|
|
if (hFile)
|
|
{
|
|
fseek( hFile, 0, SEEK_END );
|
|
long nSize = ftell( hFile );
|
|
fseek( hFile, 0, SEEK_SET );
|
|
|
|
m_vBuffer.reserve( nSize + 1 );
|
|
m_vBuffer.insert( m_vBuffer.begin(), nSize+1, 0 );
|
|
|
|
char *pBuffer = & m_vBuffer.at(0);
|
|
fread( (void*)pBuffer, nSize, 1, hFile );
|
|
|
|
m_vBuffer.push_back( EOL_NULL );
|
|
|
|
fclose(hFile);
|
|
|
|
m_bDirty = true;
|
|
GetLinePointers();
|
|
|
|
bStatus = true;
|
|
}
|
|
|
|
return bStatus;
|
|
}
|
|
|
|
|
|
//===========================================================================
|
|
void MemoryTextFile_t::GetLine( const int iLine, char *pLine, const int nMaxLineChars )
|
|
{
|
|
if (m_bDirty)
|
|
{
|
|
GetLinePointers();
|
|
}
|
|
|
|
ZeroMemory( pLine, nMaxLineChars );
|
|
strncpy( pLine, m_vLines[ iLine ], nMaxLineChars-1 );
|
|
}
|
|
|
|
|
|
// cr/new lines are converted into null, string terminators
|
|
//===========================================================================
|
|
void MemoryTextFile_t::GetLinePointers()
|
|
{
|
|
if (! m_bDirty)
|
|
return;
|
|
|
|
m_vLines.erase( m_vLines.begin(), m_vLines.end() );
|
|
char *pBegin = & m_vBuffer[ 0 ];
|
|
char *pLast = & m_vBuffer[ m_vBuffer.size()-1 ];
|
|
|
|
char *pEnd = NULL;
|
|
char *pStartNextLine;
|
|
|
|
while (pBegin <= pLast)
|
|
{
|
|
if ( *pBegin ) // Only keep non-empty lines
|
|
m_vLines.push_back( pBegin );
|
|
|
|
pEnd = const_cast<char*>( SkipUntilEOL( pBegin ));
|
|
|
|
if (*pEnd == EOL_NULL)
|
|
{
|
|
// Found EOL via null
|
|
pStartNextLine = pEnd + 1;
|
|
}
|
|
else
|
|
{
|
|
pStartNextLine = const_cast<char*>( EatEOL( pEnd ));
|
|
|
|
// DOS/Win "Text" mode converts LF CR (0D 0A) to CR (0D)
|
|
// but just in case, the file is read in binary.
|
|
int nEOL = pStartNextLine - pEnd;
|
|
while (nEOL-- > 1)
|
|
{
|
|
*pEnd++ = ' ';
|
|
}
|
|
|
|
// assert( pEnd != NULL );
|
|
*pEnd = EOL_NULL;
|
|
}
|
|
pBegin = pStartNextLine;
|
|
}
|
|
|
|
m_bDirty = false;
|
|
}
|
|
|
|
|
|
//===========================================================================
|
|
void MemoryTextFile_t::PushLine( char *pLine )
|
|
{
|
|
char *pSrc = pLine;
|
|
while (pSrc && *pSrc)
|
|
{
|
|
if (*pSrc == CHAR_CR)
|
|
m_vBuffer.push_back( EOL_NULL );
|
|
else
|
|
if (*pSrc == CHAR_LF)
|
|
m_vBuffer.push_back( EOL_NULL );
|
|
else
|
|
m_vBuffer.push_back( *pSrc );
|
|
|
|
pSrc++;
|
|
}
|
|
m_vBuffer.push_back( EOL_NULL );
|
|
|
|
m_bDirty = true;
|
|
}
|
|
|
|
|