bitmap_font.cpp
上传用户:kjfoods
上传日期:2020-07-06
资源大小:29949k
文件大小:4k
源码类别:

midi

开发平台:

Unix_Linux

  1. /*****************************************************************************
  2.  * bitmap_font.cpp
  3.  *****************************************************************************
  4.  * Copyright (C) 2004 the VideoLAN team
  5.  * $Id: 3a9bd295f28390fab73ce93bba64b1a9dbcf9f61 $
  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., 51 Franklin Street, Fifth Floor, Boston MA 02110-1301, 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.     int i;
  31.     // Build the character table
  32.     if( rType == "digits" )
  33.     {
  34.         m_width = 9;
  35.         m_height = 13;
  36.         m_advance = 12;
  37.         m_skip = 6;
  38.         for( i = 0; i <= 9; i++ )
  39.         {
  40.             m_table['0'+i].m_xPos = i * m_width;
  41.         }
  42.         m_table[(size_t)' '].m_xPos = 10 * m_width;
  43.         m_table[(size_t)'-'].m_xPos = 11 * m_width;
  44.     }
  45.     else if( rType == "text" )
  46.     {
  47.         m_width = 5;
  48.         m_height = 6;
  49.         m_advance = 5;
  50.         m_skip = 5;
  51.         for( i = 0; i < 26; i++ )
  52.         {
  53.             m_table['A'+i].m_xPos = m_table['a'+i].m_xPos = i * m_width;
  54.         }
  55.         m_table[(size_t)'"'].m_xPos = 26 * m_width;
  56.         m_table[(size_t)'@'].m_xPos = 27 * m_width;
  57.         m_table[(size_t)' '].m_xPos = 29 * m_width;
  58.         for( i = 0; i <= 9; i++ )
  59.         {
  60.             m_table['0'+i].m_xPos = i * m_width;
  61.             m_table['0'+i].m_yPos = m_height;
  62.         }
  63.         static const char specialChars[] = {'.', ':', '(', ')', '-', ''',
  64.             '!', '_', '+', '\', '/', '[', ']', '^', '&', '%', ',', '=', '$',
  65.             '#'};
  66.         for( i = 0; i < 19; i++ )
  67.         {
  68.             m_table[(size_t)specialChars[i]].m_xPos = (11 + i) * m_width;
  69.             m_table[(size_t)specialChars[i]].m_yPos = m_height;
  70.         }
  71.         m_table[(size_t)'?'].m_xPos = 4 * m_width;
  72.         m_table[(size_t)'*'].m_xPos = 5 * m_width;
  73.         m_table[(size_t)'?'].m_yPos = m_table[(size_t)'*'].m_yPos = 2 * m_height;
  74.     }
  75. }
  76. GenericBitmap *BitmapFont::drawString( const UString &rString,
  77.                                        uint32_t color, int maxWidth ) const
  78. {
  79.     uint32_t *pString = (uint32_t*)rString.u_str();
  80.     // Compute the text width
  81.     int width = 0;
  82.     for( uint32_t *ptr = pString; *ptr; ptr++ )
  83.     {
  84.         uint32_t c = *ptr;
  85.         if( c < 256 && m_table[c].m_xPos != -1 )
  86.         {
  87.             width += m_advance;
  88.         }
  89.         else
  90.         {
  91.             width += m_skip;
  92.         }
  93.     }
  94.     // Create a bitmap
  95.     BitmapImpl *pBmp = new BitmapImpl( getIntf(), width, m_height );
  96.     int xDest = 0;
  97.     while( *pString )
  98.     {
  99.         uint32_t c = *(pString++);
  100.         if( c < 256 && m_table[c].m_xPos != -1 )
  101.         {
  102.             bool res = pBmp->drawBitmap( m_rBitmap, m_table[c].m_xPos,
  103.                                          m_table[c].m_yPos, xDest, 0,
  104.                                          m_width, m_height );
  105.             if ( !res )
  106.                 msg_Warn( getIntf(), "BitmapFont::drawString: ignoring char" );
  107.             xDest += m_advance;
  108.         }
  109.         else
  110.         {
  111.             xDest += m_skip;
  112.         }
  113.     }
  114.     return pBmp;
  115. }