Mercurial > parpg-source
comparison font.py @ 0:7a89ea5404b1
Initial commit of parpg-core.
author | M. George Hansen <technopolitica@gmail.com> |
---|---|
date | Sat, 14 May 2011 01:12:35 -0700 |
parents | |
children | 06145a6ee387 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:7a89ea5404b1 |
---|---|
1 import os | |
2 | |
3 from fife.extensions.pychan.fonts import Font | |
4 from fife.extensions.pychan.internal import get_manager | |
5 | |
6 class PARPGFont(Font): | |
7 """ Font class for PARPG | |
8 This class behaves identical to PyChan's Font class except in | |
9 initialization. Ratherthan take a name and a get object, this class | |
10 takes a fontdef and settings object as explained below. This class is | |
11 necessary because the original Font class was too restrictive on how it | |
12 accepted objects | |
13 | |
14 @param fontdef: defines the font's name, size, type, and optionally | |
15 row spacing as well as glyph spacing. | |
16 @type fontdef: dictionary | |
17 | |
18 @param settings: settings object used to dynamically determine the | |
19 font's source location | |
20 @type settings: parpg.settings.Settings object | |
21 """ | |
22 def __init__(self, fontdef, settings): | |
23 self.font = None | |
24 self.name = fontdef['name'] | |
25 self.typename = fontdef['typename'] | |
26 | |
27 if self.typename == 'truetype': | |
28 self.filename = '{0}.ttf'.format(self.name.lower().split('_')[0]) | |
29 | |
30 self.source = os.path.join(settings.system_path, | |
31 settings.fife.FontsPath, | |
32 self.filename) | |
33 self.row_spacing = fontdef.get('row_spacing', 0) | |
34 self.glyph_spacing = fontdef.get('glyph_spacing', 0) | |
35 | |
36 if self.typename == 'truetype': | |
37 self.size = fontdef['size'] | |
38 self.antialias = fontdef['antialias'] | |
39 self.color = fontdef.get('color', [255, 255, 255]) | |
40 manager = get_manager().hook.engine.getGuiManager() | |
41 self.font = manager.createFont(self.source, self.size, '') | |
42 | |
43 if not self.font: | |
44 raise InitializationError('Could not load font ' | |
45 '{0}'.format(self.name)) | |
46 | |
47 self.font.setAntiAlias(self.antialias) | |
48 self.font.setColor(*self.color) | |
49 else: | |
50 raise InitializationError('Unsupported font type ' | |
51 '{0}'.format(self.typename)) | |
52 | |
53 self.font.setRowSpacing(self.row_spacing) | |
54 self.font.setGlyphSpacing(self.glyph_spacing) |