home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1996 February
/
PCWK0296.iso
/
sharewar
/
dos
/
program
/
gs300sr1
/
gs300sr1.exe
/
ZFONT.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-07-27
|
9KB
|
330 lines
/* Copyright (C) 1989, 1992, 1993 Aladdin Enterprises. All rights reserved.
This file is part of Aladdin Ghostscript.
Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND. No author
or distributor accepts any responsibility for the consequences of using it,
or for whether it serves any particular purpose or works at all, unless he
or she says so in writing. Refer to the Aladdin Ghostscript Free Public
License (the "License") for full details.
Every copy of Aladdin Ghostscript must include a copy of the License,
normally in a plain ASCII text file named PUBLIC. The License grants you
the right to copy, modify and redistribute Aladdin Ghostscript, but only
under certain conditions described in the License. Among other things, the
License requires that the copyright notice and this notice be preserved on
all copies.
*/
/* zfont.c */
/* Generic font operators */
#include "ghost.h"
#include "errors.h"
#include "oper.h"
#include "gsstruct.h" /* for registering root */
#include "gzstate.h" /* must precede gxdevice */
#include "gxdevice.h" /* must precede gxfont */
#include "gschar.h"
#include "gxfont.h"
#include "gxfcache.h"
#include "bfont.h"
#include "ialloc.h"
#include "idict.h"
#include "igstate.h"
#include "iname.h" /* for name_mark_index */
#include "isave.h"
#include "store.h"
#include "ivmspace.h"
/* Imported operators */
extern int zcleartomark(P1(os_ptr));
/* Forward references */
private int font_param(P2(os_ptr, gs_font **));
private int make_font(P2(os_ptr, const gs_matrix *));
private void make_uint_array(P3(os_ptr, const uint *, int));
/* The (global) font directory */
gs_font_dir *ifont_dir = 0; /* needed for buildfont */
private gs_gc_root_t font_dir_root;
/* Initialize the font operators */
private bool
cc_mark_glyph_name(gs_glyph glyph)
{ return name_mark_index((uint)glyph);
}
private void
zfont_init(void)
{ ifont_dir = gs_font_dir_alloc(imemory);
ifont_dir->ccache.mark_glyph = cc_mark_glyph_name;
gs_register_struct_root(imemory, &font_dir_root,
(void **)&ifont_dir, "ifont_dir");
}
/* <font> <scale> scalefont <new_font> */
int
zscalefont(register os_ptr op)
{ int code;
float scale;
gs_matrix mat;
if ( (code = num_params(op, 1, &scale)) < 0 ) return code;
if ( (code = gs_make_scaling(scale, scale, &mat)) < 0 ) return code;
return make_font(op, &mat);
}
/* <font> <matrix> makefont <new_font> */
int
zmakefont(register os_ptr op)
{ int code;
gs_matrix mat;
if ( (code = read_matrix(op, &mat)) < 0 ) return code;
return make_font(op, &mat);
}
/* <font> setfont - */
int
zsetfont(register os_ptr op)
{ gs_font *pfont;
int code = font_param(op, &pfont);
if ( code < 0 || (code = gs_setfont(igs, pfont)) < 0 )
return code;
pop(1);
return code;
}
/* - currentfont <font> */
int
zcurrentfont(register os_ptr op)
{ push(1);
*op = *pfont_dict(gs_currentfont(igs));
return 0;
}
/* - cachestatus <mark> <bsize> <bmax> <msize> <mmax> <csize> <cmax> <blimit> */
int
zcachestatus(register os_ptr op)
{ uint status[7];
gs_cachestatus(ifont_dir, status);
push(7);
make_uint_array(op - 6, status, 7);
return 0;
}
/* <blimit> setcachelimit - */
int
zsetcachelimit(register os_ptr op)
{ check_int_leu(*op, max_uint);
gs_setcachelimit(ifont_dir, (uint)op->value.intval);
pop(1);
return 0;
}
/* <mark> <size> <lower> <upper> setcacheparams - */
int
zsetcacheparams(register os_ptr op)
{ uint params[2];
int i, code;
os_ptr pp = op;
for ( i = 0; i < 2 && !r_has_type(pp, t_mark) ; i++, pp-- )
{ check_int_leu(*pp, max_uint);
params[i] = pp->value.intval;
}
switch ( i )
{
case 2:
if ( (code = gs_setcachelower(ifont_dir, params[1])) < 0 )
return code;
case 1:
if ( (code = gs_setcacheupper(ifont_dir, params[0])) < 0 )
return code;
case 0: ;
}
return zcleartomark(op);
}
/* - currentcacheparams <mark> <size> <lower> <upper> */
int
zcurrentcacheparams(register os_ptr op)
{ uint params[2];
params[0] = gs_currentcachelower(ifont_dir);
params[1] = gs_currentcacheupper(ifont_dir);
push(3);
make_mark(op - 2);
make_uint_array(op - 1, params, 2);
return 0;
}
/* ------ Initialization procedure ------ */
op_def zfont_op_defs[] = {
{"0currentfont", zcurrentfont},
{"2makefont", zmakefont},
{"2scalefont", zscalefont},
{"1setfont", zsetfont},
{"0cachestatus", zcachestatus},
{"1setcachelimit", zsetcachelimit},
{"1setcacheparams", zsetcacheparams},
{"0currentcacheparams", zcurrentcacheparams},
op_def_end(zfont_init)
};
/* ------ Subroutines ------ */
/* Validate a font parameter. */
private int
font_param(os_ptr fp, gs_font **pfont)
{ /* Check that fp is a read-only dictionary, */
/* and that it has a FID entry. */
ref *pid;
check_type(*fp, t_dictionary);
if ( dict_find_string(fp, "FID", &pid) <= 0 )
return_error(e_invalidfont);
*pfont = r_ptr(pid, gs_font);
if ( *pfont == 0 )
return_error(e_invalidfont); /* unregistered font */
return 0;
}
/* Add the FID entry to a font dictionary. */
int
add_FID(ref *fp /* t_dictionary */, gs_font *pfont)
{ ref fid;
make_tav_new(&fid, t_fontID, a_readonly | ilocal_attr,
pstruct, (void *)pfont);
return dict_put_string(fp, "FID", &fid);
}
/* Make a transformed font (common code for makefont/scalefont). */
private int
make_font(os_ptr op, const gs_matrix *pmat)
{ os_ptr fp = op - 1;
gs_font *oldfont, *newfont;
bool local = ialloc_is_local(idmemory);
int code;
ialloc_set_local(idmemory, r_is_local(fp));
code = font_param(fp, &oldfont);
if (code >= 0) code = gs_makefont(ifont_dir, oldfont, pmat, &newfont);
ialloc_set_local(idmemory, local);
if ( code < 0 )
return code;
*fp = *pfont_dict(newfont);
pop(1);
return 0;
}
/* Create the transformed font dictionary. */
/* This is the make_font completion procedure for all non-composite fonts */
/* created at the interpreter level (see build_gs_simple_font in zfont2.c.) */
int
zdefault_make_font(gs_font_dir *pdir, const gs_font *oldfont,
const gs_matrix *pmat, gs_font **ppfont)
{ gs_font *newfont = *ppfont;
ref *fp = pfont_dict(oldfont);
font_data *pdata;
ref newdict, newmat, scalemat;
uint dlen = dict_maxlength(fp);
uint mlen = dict_length(fp) + 3; /* FontID, OrigFont, ScaleMatrix */
int code;
if ( dlen < mlen )
dlen = mlen;
if ( (pdata = ialloc_struct(font_data, &st_font_data,
"make_font(font_data)")) == 0
)
return_error(e_VMerror);
if ( (code = dict_create(dlen, &newdict)) < 0 ||
(code = dict_copy(fp, &newdict)) < 0 ||
(code = ialloc_ref_array(&newmat, a_all, 12, "make_font(matrices)")) < 0
)
return code;
refset_null(newmat.value.refs, 12);
/* Create the scaling matrix. */
make_array_new(&scalemat, a_all, 6, newmat.value.refs + 6);
write_matrix(&scalemat, pmat);
r_clear_attrs(&scalemat, a_write);
r_set_size(&newmat, 6);
write_matrix(&newmat, &newfont->FontMatrix);
r_clear_attrs(&newmat, a_write);
if ( (code = dict_put_string(&newdict, "FontMatrix", &newmat)) < 0 ||
(code = dict_put_string(&newdict, "OrigFont", fp)) < 0 ||
(code = dict_put_string(&newdict, "ScaleMatrix", &scalemat)) < 0 ||
(code = add_FID(&newdict, newfont)) < 0
)
return code;
newfont->client_data = pdata;
*pdata = *pfont_data(oldfont);
pdata->dict = newdict;
r_clear_attrs(dict_access_ref(&newdict), a_write);
return 0;
}
/* Convert an array of (unsigned) integers to stack form. */
private void
make_uint_array(register os_ptr op, const uint *intp, int count)
{ int i;
for ( i = 0; i < count; i++, op++, intp++ )
make_int(op, *intp);
}
/* Remove scaled font and character cache entries that would be */
/* invalidated by a restore. */
private bool
purge_if_name_removed(cached_char *cc, void *vsave)
{ return alloc_name_index_is_since_save(cc->code, vsave);
}
void
font_restore(const alloc_save_t *save)
{ gs_font_dir *pdir = ifont_dir;
if ( pdir == 0 ) /* not initialized yet */
return;
/* Purge original (unscaled) fonts. */
{ gs_font *pfont;
otop: for ( pfont = pdir->orig_fonts; pfont != 0;
pfont = pfont->next
)
{ if ( alloc_is_since_save((char *)pfont, save) )
{ gs_purge_font(pfont); goto otop; }
}
}
/* Purge cached scaled fonts. */
{ gs_font *pfont;
top: for ( pfont = pdir->scaled_fonts; pfont != 0;
pfont = pfont->next
)
{ if ( alloc_is_since_save((char *)pfont, save) )
{ gs_purge_font(pfont); goto top; }
}
}
/* Purge xfonts and uncached scaled fonts. */
{ cached_fm_pair *pair;
uint n;
for ( pair = pdir->fmcache.mdata, n = pdir->fmcache.mmax;
n > 0; pair++, n--
)
if ( !fm_pair_is_free(pair) )
{ if ( (pair->font != 0 &&
alloc_is_since_save((char *)pair->font, save)) ||
(uid_is_XUID(&pair->UID) &&
alloc_is_since_save((char *)pair->UID.xvalues,
save))
)
gs_purge_fm_pair(pdir, pair, 0);
else
if ( pair->xfont != 0 &&
alloc_is_since_save((char *)pair->xfont, save)
)
gs_purge_fm_pair(pdir, pair, 1);
}
}
/* Purge characters with names about to be removed. */
gx_purge_selected_cached_chars(pdir, purge_if_name_removed,
(void *)save);
}