home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / vc98 / mfc / src / winstr.cpp < prev    next >
C/C++ Source or Header  |  1998-06-16  |  3KB  |  102 lines

  1. // This is a part of the Microsoft Foundation Classes C++ library.
  2. // Copyright (C) 1992-1998 Microsoft Corporation
  3. // All rights reserved.
  4. //
  5. // This source code is only intended as a supplement to the
  6. // Microsoft Foundation Classes Reference and related
  7. // electronic documentation provided with the library.
  8. // See these sources for detailed information regarding the
  9. // Microsoft Foundation Classes product.
  10.  
  11. #include "stdafx.h"
  12.  
  13. #ifdef AFX_CORE1_SEG
  14. #pragma code_seg(AFX_CORE1_SEG)
  15. #endif
  16.  
  17. #ifdef _DEBUG
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // Windows extensions to strings
  24.  
  25. #ifdef _UNICODE
  26. #define CHAR_FUDGE 1    // one TCHAR unused is good enough
  27. #else
  28. #define CHAR_FUDGE 2    // two BYTES unused for case of DBC last char
  29. #endif
  30.  
  31. BOOL CString::LoadString(UINT nID)
  32. {
  33.     // try fixed buffer first (to avoid wasting space in the heap)
  34.     TCHAR szTemp[256];
  35.     int nLen = AfxLoadString(nID, szTemp, _countof(szTemp));
  36.     if (_countof(szTemp) - nLen > CHAR_FUDGE)
  37.     {
  38.         *this = szTemp;
  39.         return nLen > 0;
  40.     }
  41.  
  42.     // try buffer size of 512, then larger size until entire string is retrieved
  43.     int nSize = 256;
  44.     do
  45.     {
  46.         nSize += 256;
  47.         nLen = AfxLoadString(nID, GetBuffer(nSize-1), nSize);
  48.     } while (nSize - nLen <= CHAR_FUDGE);
  49.     ReleaseBuffer();
  50.  
  51.     return nLen > 0;
  52. }
  53.  
  54. #ifndef _AFXDLL
  55. int AFXAPI AfxLoadString(UINT nID, LPTSTR lpszBuf, UINT nMaxBuf)
  56. {
  57.     ASSERT(AfxIsValidAddress(lpszBuf, nMaxBuf*sizeof(TCHAR)));
  58. #ifdef _DEBUG
  59.     // LoadString without annoying warning from the Debug kernel if the
  60.     //  segment containing the string is not present
  61.     if (::FindResource(AfxGetResourceHandle(),
  62.        MAKEINTRESOURCE((nID>>4)+1), RT_STRING) == NULL)
  63.     {
  64.         lpszBuf[0] = '\0';
  65.         return 0; // not found
  66.     }
  67. #endif //_DEBUG
  68.     int nLen = ::LoadString(AfxGetResourceHandle(), nID, lpszBuf, nMaxBuf);
  69.     if (nLen == 0)
  70.         lpszBuf[0] = '\0';
  71.     return nLen;
  72. }
  73. #endif
  74.  
  75. /////////////////////////////////////////////////////////////////////////////
  76.  
  77. BOOL AFXAPI AfxExtractSubString(CString& rString, LPCTSTR lpszFullString,
  78.     int iSubString, TCHAR chSep)
  79. {
  80.     if (lpszFullString == NULL)
  81.         return FALSE;
  82.  
  83.     while (iSubString--)
  84.     {
  85.         lpszFullString = _tcschr(lpszFullString, chSep);
  86.         if (lpszFullString == NULL)
  87.         {
  88.             rString.Empty();        // return empty string as well
  89.             return FALSE;
  90.         }
  91.         lpszFullString++;       // point past the separator
  92.     }
  93.     LPCTSTR lpchEnd = _tcschr(lpszFullString, chSep);
  94.     int nLen = (lpchEnd == NULL) ?
  95.         lstrlen(lpszFullString) : (int)(lpchEnd - lpszFullString);
  96.     ASSERT(nLen >= 0);
  97.     memcpy(rString.GetBufferSetLength(nLen), lpszFullString, nLen*sizeof(TCHAR));
  98.     return TRUE;
  99. }
  100.  
  101. /////////////////////////////////////////////////////////////////////////////
  102.