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
  
     | 
    
      
#include <Vlib.h>
#include <VFont.h>
#include <VRoman.h>
/*ARGSUSED */
int
VFontWidthPixels(Viewport * v, int scale)
{
	return VRomanGlyph['A'].glyph_width * scale / 25600;
}
void
VDrawStrokeString(Viewport * v, int x, int y,
				  unsigned char *str, int len, int scale, ZInfo * zinfo)
{
	register int c, i, k, m;
	register VGlyphVertex *p;
	register int x1, y1, x2, y2;
	for (; len > 0; --len) {
		if ((c = *str++) < 128) {
			k = VRomanGlyph[c].path_start;
			for (i = 0; i < VRomanGlyph[c].path_count; ++i, ++k) {
				p = &VRomanVertex[VRomanPath[k].vertex_start];
				x1 = p->x * scale / 25600 + x;
				y1 = y - p->y * scale / 25600;
				++p;
				for (m = 1; m < VRomanPath[k].vertex_count; ++m, ++p) {
					x2 = p->x * scale / 25600 + x;
					y2 = y - p->y * scale / 25600;
					v->DrawLine(v, x1, y1, x2, y2, zinfo->color);
					x1 = x2;
					y1 = y2;
				}
			}
			x += VRomanGlyph[c].glyph_width * scale / 25600;
		}
	}
}
void
VGetStrokeString(Viewport * v, int x, int y, Segment * seg, int *nseg,
				 unsigned char *str, int len, int scale)
{
	register int c, i, k, m, count;
	register VGlyphVertex *p;
	register int x1, y1, x2, y2;
	Segment  *pseg;
	count = *nseg;
	for (; len > 0; --len) {
		if ((c = *str++) < 128) {
			k = VRomanGlyph[c].path_start;
			for (i = 0; i < VRomanGlyph[c].path_count; ++i, ++k) {
				p = &VRomanVertex[VRomanPath[k].vertex_start];
				x1 = p->x * scale / 25600 + x;
				y1 = y - p->y * scale / 25600;
				++p;
				for (m = 1; m < VRomanPath[k].vertex_count; ++m, ++p) {
					x2 = p->x * scale / 25600 + x;
					y2 = y - p->y * scale / 25600;
					pseg = &seg[count++];
					pseg->x1 = x1;
					pseg->x2 = x2;
					pseg->y1 = y1;
					pseg->y2 = y2;
					x1 = x2;
					y1 = y2;
				}
			}
			x += VRomanGlyph[c].glyph_width * scale / 25600;
		}
	}
	*nseg = count;
}
 
     |