bitmap_font.cpp
上传用户:riyaled888
上传日期:2009-03-27
资源大小:7338k
文件大小:4k
源码类别:

多媒体

开发平台:

MultiPlatform

  1. /*****************************************************************************
  2.  * bitmap_font.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 VideoLAN
  5.  * $Id: bitmap_font.cpp 7261 2004-04-03 13:57:46Z asmax $
  6.  *
  7.  * Authors: Cyril Deguet     <asmax@via.ecp.fr>
  8.  *
  9.  * This program is free software; you can redistribute it and/or modify
  10.  * it under the terms of the GNU General Public License as published by
  11.  * the Free Software Foundation; either version 2 of the License, or
  12.  * (at your option) any later version.
  13.  *
  14.  * This program is distributed in the hope that it will be useful,
  15.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  17.  * GNU General Public License for more details.
  18.  *
  19.  * You should have received a copy of the GNU General Public License
  20.  * along with this program; if not, write to the Free Software
  21.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  22.  *****************************************************************************/
  23. #include "bitmap_font.hpp"
  24. #include "generic_bitmap.hpp"
  25. #include "../utils/ustring.hpp"
  26. BitmapFont::BitmapFont( intf_thread_t *pIntf, const GenericBitmap &rBitmap,
  27.                         const string &rType ):
  28.     GenericFont( pIntf ), m_rBitmap( rBitmap )
  29. {
  30.     // Build the character table
  31.     if( rType == "digits" )
  32.     {
  33.         m_width = 9;
  34.         m_height = 13;
  35.         m_advance = 12;
  36.         m_skip = 6;
  37.         for( int i = 0; i <= 9; i++ )
  38.         {
  39.             m_table['0'+i].m_xPos = i * m_width;
  40.         }
  41.         m_table[(size_t)'-'].m_xPos = 11 * m_width;
  42.     }
  43.     else if( rType == "text" )
  44.     {
  45.         m_width = 5;
  46.         m_height = 6;
  47.         m_advance = 5;
  48.         m_skip = 5;
  49.         for( int i = 0; i < 26; i++ )
  50.         {
  51.             m_table['A'+i].m_xPos = m_table['a'+i].m_xPos = i * m_width;
  52.         }
  53.         m_table[(size_t)'"'].m_xPos = 26 * m_width;
  54.         m_table[(size_t)'@'].m_xPos = 27 * m_width;
  55.         m_table[(size_t)' '].m_xPos = 29 * m_width;
  56.         for( int i = 0; i <= 9; i++ )
  57.         {
  58.             m_table['0'+i].m_xPos = i * m_width;
  59.             m_table['0'+i].m_yPos = m_height;
  60.         }
  61.         static const char specialChars[] = {'.', ':', '(', ')', '-', ''',
  62.             '!', '_', '+', '\', '/', '[', ']', '^', '&', '%', ',', '=', '$',
  63.             '#'};
  64.         for( int i = 0; i < 19; i++ )
  65.         {
  66.             m_table[(size_t)specialChars[i]].m_xPos = (11 + i) * m_width;
  67.             m_table[(size_t)specialChars[i]].m_yPos = m_height;
  68.         }
  69.         m_table[(size_t)'?'].m_xPos = 4 * m_width;
  70.         m_table[(size_t)'*'].m_xPos = 5 * m_width;
  71.         m_table[(size_t)'?'].m_yPos = m_table[(size_t)'*'].m_yPos = 2 * m_height;
  72.     }
  73. }
  74. GenericBitmap *BitmapFont::drawString( const UString &rString,
  75.                                        uint32_t color, int maxWidth ) const
  76. {
  77.     uint32_t *pString = (uint32_t*)rString.u_str();
  78.     // Compute the text width
  79.     int width = 0;
  80.     for( uint32_t *ptr = pString; *ptr; ptr++ )
  81.     {
  82.         uint32_t c = *ptr;
  83.         if( c < 256 && m_table[c].m_xPos != -1 )
  84.         {
  85.             width += m_advance;
  86.         }
  87.         else
  88.         {
  89.             width += m_skip;
  90.         }
  91.     }
  92.     // Create a bitmap
  93.     BitmapImpl *pBmp = new BitmapImpl( getIntf(), width, m_height );
  94.     int xDest = 0;
  95.     while( *pString )
  96.     {
  97.         uint32_t c = *(pString++);
  98.         if( c < 256 && m_table[c].m_xPos != -1 )
  99.         {
  100.             pBmp->drawBitmap( m_rBitmap, m_table[c].m_xPos, m_table[c].m_yPos,
  101.                               xDest, 0, m_width, m_height );
  102.             xDest += m_advance;
  103.         }
  104.         else
  105.         {
  106.             xDest += m_skip;
  107.         }
  108.     }
  109.     return pBmp;
  110. }