annotate font/font_peer.h @ 2:422f3cb3614b

Enabled voice playing with "%04d/%04d%05d.ogg" format. Don't use a cache for this
author thib
date Fri, 01 Aug 2008 19:17:15 +0000
parents 223b71206888
children 15a18fbe6f21
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
223b71206888 Initial import
thib
parents:
diff changeset
1 /*
223b71206888 Initial import
thib
parents:
diff changeset
2 * Copyright (c) 2004 Kazunori "jagarl" Ueno
223b71206888 Initial import
thib
parents:
diff changeset
3 * All rights reserved.
223b71206888 Initial import
thib
parents:
diff changeset
4 *
223b71206888 Initial import
thib
parents:
diff changeset
5 * Redistribution and use in source and binary forms, with or without
223b71206888 Initial import
thib
parents:
diff changeset
6 * modification, are permitted provided that the following conditions
223b71206888 Initial import
thib
parents:
diff changeset
7 * are met:
223b71206888 Initial import
thib
parents:
diff changeset
8 * 1. Redistributions of source code must retain the above copyright
223b71206888 Initial import
thib
parents:
diff changeset
9 * notice, this list of conditions and the following disclaimer.
223b71206888 Initial import
thib
parents:
diff changeset
10 * 2. Redistributions in binary form must reproduce the above copyright
223b71206888 Initial import
thib
parents:
diff changeset
11 * notice, this list of conditions and the following disclaimer in the
223b71206888 Initial import
thib
parents:
diff changeset
12 * documentation and/or other materials provided with the distribution.
223b71206888 Initial import
thib
parents:
diff changeset
13 * 3. The name of the author may not be used to endorse or promote products
223b71206888 Initial import
thib
parents:
diff changeset
14 * derived from this software without specific prior written permission.
223b71206888 Initial import
thib
parents:
diff changeset
15 *
223b71206888 Initial import
thib
parents:
diff changeset
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
223b71206888 Initial import
thib
parents:
diff changeset
17 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
223b71206888 Initial import
thib
parents:
diff changeset
18 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
223b71206888 Initial import
thib
parents:
diff changeset
19 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
223b71206888 Initial import
thib
parents:
diff changeset
20 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
223b71206888 Initial import
thib
parents:
diff changeset
21 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
223b71206888 Initial import
thib
parents:
diff changeset
22 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
223b71206888 Initial import
thib
parents:
diff changeset
23 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
223b71206888 Initial import
thib
parents:
diff changeset
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
223b71206888 Initial import
thib
parents:
diff changeset
25 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
223b71206888 Initial import
thib
parents:
diff changeset
26 */
223b71206888 Initial import
thib
parents:
diff changeset
27
223b71206888 Initial import
thib
parents:
diff changeset
28 #ifndef __FONT_PEER_H__
223b71206888 Initial import
thib
parents:
diff changeset
29 #define __FONT_PEER_H__
223b71206888 Initial import
thib
parents:
diff changeset
30
223b71206888 Initial import
thib
parents:
diff changeset
31 #include "font.h"
223b71206888 Initial import
thib
parents:
diff changeset
32
223b71206888 Initial import
thib
parents:
diff changeset
33 namespace XKFont {
223b71206888 Initial import
thib
parents:
diff changeset
34
223b71206888 Initial import
thib
parents:
diff changeset
35 class PeerFn : public Peer {
223b71206888 Initial import
thib
parents:
diff changeset
36 public:
223b71206888 Initial import
thib
parents:
diff changeset
37 PeerFn(const char* name, int index, int hsize, int vsize);
223b71206888 Initial import
thib
parents:
diff changeset
38 ~PeerFn();
223b71206888 Initial import
thib
parents:
diff changeset
39 bool GlyphCreate(unsigned int code, Glyph* g);
223b71206888 Initial import
thib
parents:
diff changeset
40 private:
223b71206888 Initial import
thib
parents:
diff changeset
41 unsigned char *buffer;
223b71206888 Initial import
thib
parents:
diff changeset
42 };
223b71206888 Initial import
thib
parents:
diff changeset
43
223b71206888 Initial import
thib
parents:
diff changeset
44 }
223b71206888 Initial import
thib
parents:
diff changeset
45
223b71206888 Initial import
thib
parents:
diff changeset
46 #include <ft2build.h>
223b71206888 Initial import
thib
parents:
diff changeset
47 #include FT_FREETYPE_H
223b71206888 Initial import
thib
parents:
diff changeset
48
223b71206888 Initial import
thib
parents:
diff changeset
49 namespace XKFont {
223b71206888 Initial import
thib
parents:
diff changeset
50 typedef unsigned int (*FontCodeConverter)(unsigned int);
223b71206888 Initial import
thib
parents:
diff changeset
51 class PeerFt2 : public Peer {
223b71206888 Initial import
thib
parents:
diff changeset
52 public:
223b71206888 Initial import
thib
parents:
diff changeset
53 PeerFt2(const char *name, int index, int hsize, int vsize);
223b71206888 Initial import
thib
parents:
diff changeset
54 ~PeerFt2();
223b71206888 Initial import
thib
parents:
diff changeset
55 bool GlyphCreate(unsigned int code, Glyph* glyph);
223b71206888 Initial import
thib
parents:
diff changeset
56 private:
223b71206888 Initial import
thib
parents:
diff changeset
57 FT_Face face;
223b71206888 Initial import
thib
parents:
diff changeset
58 FontCodeConverter conv_func;
223b71206888 Initial import
thib
parents:
diff changeset
59 };
223b71206888 Initial import
thib
parents:
diff changeset
60
223b71206888 Initial import
thib
parents:
diff changeset
61 }
223b71206888 Initial import
thib
parents:
diff changeset
62
223b71206888 Initial import
thib
parents:
diff changeset
63 #if USE_X11
223b71206888 Initial import
thib
parents:
diff changeset
64 #include <X11/Xlib.h>
223b71206888 Initial import
thib
parents:
diff changeset
65 #include <X11/extensions/XShm.h>
223b71206888 Initial import
thib
parents:
diff changeset
66
223b71206888 Initial import
thib
parents:
diff changeset
67 namespace XKFont {
223b71206888 Initial import
thib
parents:
diff changeset
68 class PeerX11 : public Peer {
223b71206888 Initial import
thib
parents:
diff changeset
69 public:
223b71206888 Initial import
thib
parents:
diff changeset
70 PeerX11(const char *name, int index, int hsize, int vsize);
223b71206888 Initial import
thib
parents:
diff changeset
71 ~PeerX11();
223b71206888 Initial import
thib
parents:
diff changeset
72 bool GlyphCreate(unsigned int code, Glyph* g);
223b71206888 Initial import
thib
parents:
diff changeset
73 static void InitDisplay(Display*);
223b71206888 Initial import
thib
parents:
diff changeset
74 static void OpenDisplay(void);
223b71206888 Initial import
thib
parents:
diff changeset
75 private:
223b71206888 Initial import
thib
parents:
diff changeset
76 static Display* display;
223b71206888 Initial import
thib
parents:
diff changeset
77
223b71206888 Initial import
thib
parents:
diff changeset
78 XFontSet fontset;
223b71206888 Initial import
thib
parents:
diff changeset
79 GC gc;
223b71206888 Initial import
thib
parents:
diff changeset
80 Visual* visual;
223b71206888 Initial import
thib
parents:
diff changeset
81 unsigned long white, black;
223b71206888 Initial import
thib
parents:
diff changeset
82 Pixmap canvas;
223b71206888 Initial import
thib
parents:
diff changeset
83 XShmSegmentInfo x_shm_info;
223b71206888 Initial import
thib
parents:
diff changeset
84 bool use_shm;
223b71206888 Initial import
thib
parents:
diff changeset
85 XImage* image;
223b71206888 Initial import
thib
parents:
diff changeset
86 int width, height, ascent;
223b71206888 Initial import
thib
parents:
diff changeset
87 int mask, shift;
223b71206888 Initial import
thib
parents:
diff changeset
88 int* colortable;
223b71206888 Initial import
thib
parents:
diff changeset
89 };
223b71206888 Initial import
thib
parents:
diff changeset
90
223b71206888 Initial import
thib
parents:
diff changeset
91 }; /* namespace XKFont */
223b71206888 Initial import
thib
parents:
diff changeset
92 #endif /* USE_X11 */
223b71206888 Initial import
thib
parents:
diff changeset
93
223b71206888 Initial import
thib
parents:
diff changeset
94 #endif /* __FONT_PEER_H__ */