~ubuntu-branches/ubuntu/trusty/heroes/trusty

« back to all changes in this revision

Viewing changes to src/font.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Burrows
  • Date: 2002-03-31 20:42:30 UTC
  • Revision ID: james.westby@ubuntu.com-20020331204230-v7i07q3km2dzu0et
Tags: upstream-0.21
Import upstream version 0.21

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*------------------------------------------------------------------------.
 
2
| Copyright 1997, 1998, 2000  Alexandre Duret-Lutz <duret_g@epita.fr>     |
 
3
|                                                                         |
 
4
| This file is part of Heroes.                                            |
 
5
|                                                                         |
 
6
| Heroes is free software; you can redistribute it and/or modify it under |
 
7
| the terms of the GNU General Public License version 2 as published by   |
 
8
| the Free Software Foundation.                                           |
 
9
|                                                                         |
 
10
| Heroes is distributed in the hope that it will be useful, but WITHOUT   |
 
11
| ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or   |
 
12
| FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License   |
 
13
| for more details.                                                       |
 
14
|                                                                         |
 
15
| You should have received a copy of the GNU General Public License along |
 
16
| with this program; if not, write to the Free Software Foundation, Inc., |
 
17
| 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA                   |
 
18
`------------------------------------------------------------------------*/
 
19
 
 
20
 
 
21
#define font_pos          30    /* position du premier caract�re (n� pixel) */
 
22
#define font_first_ascii  32    /* number du premier caract�re (ASCII) */
 
23
#define font_transp_color 0     /* couleur transparante */
 
24
#define font_height       6     /* hauteur de chaque caract�re */
 
25
 
 
26
static char font_width[62] =    /* largeur de chaque caract�re */
 
27
{ 2, 1, 3, 3, 0, 0, 0, 0, 0, 0, 3, 3, 2, 3, 2, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3,
 
28
  3, 1, 2, 0, 3, 0,
 
29
/*      ! " � $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = >  */
 
30
 
 
31
  3, 0, 3, 3, 3, 3, 3, 3, 3, 3, 1, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3,
 
32
  3, 3, 3, 2, 4, 2
 
33
};
 
34
/*    ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ]  */