1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
|
/* Copyright (c) Mark J. Kilgard, 1994. */
/**
(c) Copyright 1993, Silicon Graphics, Inc.
ALL RIGHTS RESERVED
Permission to use, copy, modify, and distribute this software
for any purpose and without fee is hereby granted, provided
that the above copyright notice appear in all copies and that
both the copyright notice and this permission notice appear in
supporting documentation, and that the name of Silicon
Graphics, Inc. not be used in adverti(float)Math.sing or publicity
pertaining to distribution of the software without specific,
written prior permission.
THE MATERIAL EMBODIED ON THIS SOFTWARE IS PROVIDED TO YOU
"AS-IS" AND WITHOUT WARRANTY OF ANY KIND, EXPRESS, IMPLIED OR
OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF
MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. IN NO
EVENT SHALL SILICON GRAPHICS, INC. BE LIABLE TO YOU OR ANYONE
ELSE FOR ANY DIRECT, SPECIAL, INCIDENTAL, INDIRECT OR
CONSEQUENTIAL DAMAGES OF ANY KIND, OR ANY DAMAGES WHATSOEVER,
INCLUDING WITHOUT LIMITATION, LOSS OF PROFIT, LOSS OF USE,
SAVINGS OR REVENUE, OR THE CLAIMS OF THIRD PARTIES, WHETHER OR
NOT SILICON GRAPHICS, INC. HAS BEEN ADVISED OF THE POSSIBILITY
OF SUCH LOSS, HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
ARISING OUT OF OR IN CONNECTION WITH THE POSSESSION, USE OR
PERFORMANCE OF THIS SOFTWARE.
US Government Users Restricted Rights
Use, duplication, or disclosure by the Government is subject to
restrictions set forth in FAR 52.227f.19(c)(2) or subparagraph
(c)(1)(ii) of the Rights in Technical Data and Computer
Software clause at DFARS 252.227f-7013 and/or in similar or
successor clauses in the FAR or the DOD or NASA FAR
Supplement. Unpublished-- rights reserved under the copyright
laws of the United States. Contractor/manufacturer is Silicon
Graphics, Inc., 2011 N. Shoreline Blvd., Mountain View, CA
94039-7311.
OpenGL(TM) is a trademark of Silicon Graphics, Inc.
*/
package gl4java.utils.glut.fonts;
import gl4java.utils.glut.*;
import gl4java.utils.glut.fonts.data.*;
import gl4java.GLFunc;
import gl4java.GLEnum;
import gl4java.GLUFunc;
import gl4java.GLUEnum;
import java.lang.*;
public class GLUTFuncLightImplWithFonts extends GLUTFuncLightImpl
implements GLEnum, GLUEnum
{
public GLUTFuncLightImplWithFonts(GLFunc gl, GLUFunc glu)
{
super(gl, glu);
}
public final String glutGetFontDescription(int font)
{
switch(font) {
case GLUT_STROKE_ROMAN:
return "stroke roman";
case GLUT_STROKE_MONO_ROMAN:
return "stroke roman mono";
case GLUT_BITMAP_9_BY_15:
return "bitmap 9x15";
case GLUT_BITMAP_8_BY_13:
return "bitmap 8x13";
case GLUT_BITMAP_TIMES_ROMAN_10:
return "bitmap roman 10";
case GLUT_BITMAP_TIMES_ROMAN_24:
return "bitmap roman 24";
case GLUT_BITMAP_HELVETICA_10:
return "bitmap helvetica 10";
case GLUT_BITMAP_HELVETICA_12:
return "bitmap helvetica 12";
case GLUT_BITMAP_HELVETICA_18:
return "bitmap helvetica 18";
}
return "unknown font enumeration: "+font;
}
private final BitmapFontRec getFontInfo(int font) {
try {
switch(font) {
case GLUT_BITMAP_HELVETICA_10:
return glutBitmapHelvetica10.getBitmapFontRec();
case GLUT_BITMAP_HELVETICA_12:
return glutBitmapHelvetica12.getBitmapFontRec();
case GLUT_BITMAP_HELVETICA_18:
return glutBitmapHelvetica12.getBitmapFontRec();
case GLUT_BITMAP_8_BY_13:
return glutBitmap8By13.getBitmapFontRec();
case GLUT_BITMAP_9_BY_15:
return glutBitmap9By15.getBitmapFontRec();
case GLUT_BITMAP_TIMES_ROMAN_10:
return glutBitmapTimesRoman10.getBitmapFontRec();
case GLUT_BITMAP_TIMES_ROMAN_24:
return glutBitmapTimesRoman24.getBitmapFontRec();
}
} catch (Exception ex) {
System.out.println("Font not supported: "+ glutGetFontDescription(font));
}
return null;
}
private final StrokeFontRec getStrokeFontInfo(int font) {
try {
switch(font) {
case GLUT_STROKE_MONO_ROMAN:
return glutStrokeMonoRoman.getStrokeFontRec();
case GLUT_STROKE_ROMAN:
return glutStrokeRoman.getStrokeFontRec();
}
} catch (Exception ex) {
System.out.println("Font not supported: "+ glutGetFontDescription(font));
}
return null;
}
public final void glutBitmapString(int font, String s)
{
BitmapCharRec ch;
BitmapFontRec fontinfo;
int[] swapbytes=new int[1];
int[] lsbfirst=new int[1];
int[] rowlength=new int[1];
int[] skiprows=new int[1];
int[] skippixels=new int[1];
int[] alignment=new int[1];
fontinfo=getFontInfo(font);
byte[] bytes=s.getBytes();
int character;
/* Save current modes. */
gl.glGetIntegerv(GL_UNPACK_SWAP_BYTES, swapbytes);
gl.glGetIntegerv(GL_UNPACK_LSB_FIRST, lsbfirst);
gl.glGetIntegerv(GL_UNPACK_ROW_LENGTH, rowlength);
gl.glGetIntegerv(GL_UNPACK_SKIP_ROWS, skiprows);
gl.glGetIntegerv(GL_UNPACK_SKIP_PIXELS, skippixels);
gl.glGetIntegerv(GL_UNPACK_ALIGNMENT, alignment);
/* Little endian machines (DEC Alpha for example) could
benefit from setting GL_UNPACK_LSB_FIRST to GL_TRUE
instead of GL_FALSE, but this would require changing the
generated bitmaps too. */
gl.glPixelStorei(GL_UNPACK_SWAP_BYTES, 0); // GL_FALSE
gl.glPixelStorei(GL_UNPACK_LSB_FIRST, 0); // GL_FALSE
gl.glPixelStorei(GL_UNPACK_ROW_LENGTH, 0);
gl.glPixelStorei(GL_UNPACK_SKIP_ROWS, 0);
gl.glPixelStorei(GL_UNPACK_SKIP_PIXELS, 0);
gl.glPixelStorei(GL_UNPACK_ALIGNMENT, 1);
for (int i=0; i<s.length(); i++)
{
character = bytes[i];
if (character < fontinfo.first ||
character >= fontinfo.first + fontinfo.num_chars)
continue;
ch = fontinfo.ch[character - fontinfo.first];
if (ch == null) continue;
gl.glBitmap(ch.width, ch.height, ch.xorig, ch.yorig,
ch.advance, 0, ch.bitmap);
}
/* Restore saved modes. */
gl.glPixelStorei(GL_UNPACK_SWAP_BYTES, swapbytes[0]);
gl.glPixelStorei(GL_UNPACK_LSB_FIRST, lsbfirst[0]);
gl.glPixelStorei(GL_UNPACK_ROW_LENGTH, rowlength[0]);
gl.glPixelStorei(GL_UNPACK_SKIP_ROWS, skiprows[0]);
gl.glPixelStorei(GL_UNPACK_SKIP_PIXELS, skippixels[0]);
gl.glPixelStorei(GL_UNPACK_ALIGNMENT, alignment[0]);
}
public final int glutBitmapWidth(int font, int character)
{
BitmapFontRec fontinfo;
BitmapCharRec ch;
fontinfo = getFontInfo(font);
if ((character < fontinfo.first) || (character >= fontinfo.first + fontinfo.num_chars))
return 0;
ch = fontinfo.ch[character - fontinfo.first];
if (ch != null)
return (int) ch.advance;
else
return 0;
}
public final void glutStrokeString(int font, String s)
{
StrokeCharRec ch;
StrokeRec stroke;
CoordRec coord;
StrokeFontRec fontinfo;
int i, j, k, c;
byte[] bytes=s.getBytes();
fontinfo = getStrokeFontInfo(font);
for (i=0; i<s.length(); i++)
{
c = bytes[i];
if (c < 0 || c >= fontinfo.num_chars)
continue;
ch = fontinfo.ch[c];
if (ch == null) continue;
for (j=0; j< ch.num_strokes; j++) {
stroke=ch.stroke[j];
gl.glBegin(GL_LINE_STRIP);
for (k = 0; k< stroke.num_coords; k++) {
coord = stroke.coord[k];
gl.glVertex2f(coord.x, coord.y);
}
gl.glEnd();
}
gl.glTranslatef(ch.right, (float) 0.0, (float) 0.0);
}
}
public final int glutStrokeWidth(int font, int character)
{
StrokeFontRec fontinfo;
StrokeCharRec ch;
fontinfo = getStrokeFontInfo(font);
if (character < 0 || character >= fontinfo.num_chars)
return 0;
ch = fontinfo.ch[character];
if (ch != null)
return (int) ch.right;
else
return 0;
}
public final int glutBitmapLength(int font, String string)
{
int c;
int length;
int i;
BitmapFontRec fontinfo;
BitmapCharRec ch;
byte[] bytestring=string.getBytes();
fontinfo = getFontInfo(font);
length = 0;
for (i=0; i<string.length(); i++) {
c = bytestring[i];
if ((c >= fontinfo.first) && (c < fontinfo.first + fontinfo.num_chars)) {
ch = fontinfo.ch[c - fontinfo.first];
if (ch != null)
length += ch.advance;
}
}
return length;
}
public final int glutStrokeLength(int font, String string)
{
int c, length;
StrokeFontRec fontinfo;
StrokeCharRec ch;
byte[] bytestring=string.getBytes();
fontinfo=getStrokeFontInfo(font);
length = 0;
for (int i=0; i<string.length(); i++) {
c = bytestring[i];
if (c >= 0 && c < fontinfo.num_chars) {
ch = fontinfo.ch[c];
if (ch != null)
length += ch.right;
}
}
return length;
}
}
|