summaryrefslogtreecommitdiff
path: root/base/gschar.c
diff options
context:
space:
mode:
authorChris Liddell <chris.liddell@artifex.com>2013-07-23 16:24:19 +0100
committerChris Liddell <chris.liddell@artifex.com>2015-07-20 18:21:17 +0100
commit6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a (patch)
tree5c2a1c671c1d4521f8a770d1e69e3d4342718030 /base/gschar.c
parent7fd9e0be26e67c36f87733bc89ea07dc26d9f839 (diff)
downloadghostpdl-6948650efd3fb9e2a70b8cf16aca57e9d0b7eb0a.tar.gz
Commit of build_consolidation branch
Squashed into one commit (see branch for details of the evolution of the branch). This brings gpcl6 and gxps into the Ghostscript build system, and a shared set of graphics library object files for all the interpreters. Also, brings the same configuration options to the pcl and xps products as we have for Ghostscript.
Diffstat (limited to 'base/gschar.c')
-rw-r--r--base/gschar.c203
1 files changed, 203 insertions, 0 deletions
diff --git a/base/gschar.c b/base/gschar.c
new file mode 100644
index 000000000..409f24754
--- /dev/null
+++ b/base/gschar.c
@@ -0,0 +1,203 @@
+/* Copyright (C) 2001-2012 Artifex Software, Inc.
+ All Rights Reserved.
+
+ This software is provided AS-IS with no warranty, either express or
+ implied.
+
+ This software is distributed under license and may not be copied,
+ modified or distributed except as expressly authorized under the terms
+ of the license contained in the file LICENSE in this distribution.
+
+ Refer to licensing information at http://www.artifex.com or contact
+ Artifex Software, Inc., 7 Mt. Lassen Drive - Suite A-134, San Rafael,
+ CA 94903, U.S.A., +1(415)492-9861, for further information.
+*/
+
+
+/* Character writing "operators" for Ghostscript library */
+#include "gx.h"
+#include "gserrors.h"
+#include "gsstruct.h"
+#include "gsmatrix.h" /* for gscoord.h */
+#include "gscoord.h" /* for gs_idtransform */
+#include "gzstate.h"
+#include "gxdevice.h"
+#include "gxdevmem.h"
+#include "gxchar.h"
+#include "gxfont.h"
+
+/* Structure descriptors */
+extern_st(st_gs_show_enum);
+
+/* ------ String writing operators ------ */
+
+/* Free the contents of a show enumerator. */
+void
+gs_show_enum_release(gs_show_enum * penum, gs_memory_t * emem)
+{
+ if (penum->text.operation) /* otherwise, never initialized */
+ penum->procs->release((gs_text_enum_t *)penum, "gs_show_enum_release");
+ if (emem != 0)
+ gs_free_object(emem, penum, "gs_show_enum_release");
+}
+
+/* ------ Width/cache operators ------ */
+
+/* setcachedevice */
+/* The elements of pw are: wx, wy, llx, lly, urx, ury. */
+/* Note that this returns 1 if we just set up the cache device. */
+int
+gs_setcachedevice_double(gs_show_enum *penum, gs_state *pgs, const double *pw)
+{
+ if (penum->pgs != pgs)
+ return_error(gs_error_rangecheck);
+ return gs_text_setcachedevice((gs_text_enum_t *)penum, pw);
+}
+/* The _float procedure is strictly for backward compatibility. */
+int
+gs_setcachedevice_float(gs_show_enum * penum, gs_state * pgs, const float *pw)
+{
+ double w[6];
+ int i;
+
+ for (i = 0; i < 6; ++i)
+ w[i] = pw[i];
+ return gs_setcachedevice_double(penum, pgs, w);
+}
+
+/* setcachedevice2 */
+/* The elements of pw2 are: w0x, w0y, llx, lly, urx, ury, w1x, w1y, vx, vy. */
+/* Note that this returns 1 if we just set up the cache device. */
+int
+gs_setcachedevice2_double(gs_show_enum * penum, gs_state * pgs,
+ const double *pw2)
+{
+ if (penum->pgs != pgs)
+ return_error(gs_error_rangecheck);
+ return gs_text_setcachedevice2((gs_text_enum_t *)penum, pw2);
+}
+/* The _float procedure is strictly for backward compatibility. */
+int
+gs_setcachedevice2_float(gs_show_enum * penum, gs_state * pgs, const float *pw2)
+{
+ double w2[10];
+ int i;
+
+ for (i = 0; i < 10; ++i)
+ w2[i] = pw2[i];
+ return gs_setcachedevice2_double(penum, pgs, w2);
+}
+
+/* setcharwidth */
+/* Note that this returns 1 if the current show operation is */
+/* non-displaying (stringwidth or cshow). */
+int
+gs_setcharwidth(gs_show_enum * penum, gs_state * pgs,
+ double wx, double wy)
+{
+ double w[2];
+
+ if (penum->pgs != pgs)
+ return_error(gs_error_rangecheck);
+ w[0] = wx, w[1] = wy;
+ return gs_text_setcharwidth((gs_text_enum_t *)penum, w);
+}
+
+/* ------ Enumerator ------ */
+
+/* Do the next step of a show (or stringwidth) operation */
+int
+gs_show_next(gs_show_enum * penum)
+{
+ return gs_text_process((gs_text_enum_t *)penum);
+}
+
+/*
+ * Return true if we only need the width from the rasterizer
+ * and can short-circuit the full rendering of the character,
+ * false if we need the actual character bits.
+ */
+bool
+gs_show_width_only(const gs_show_enum * penum)
+{
+ return gs_text_is_width_only((const gs_text_enum_t *)penum);
+}
+
+/* ------ Accessors ------ */
+
+/* Return the current character for rendering. */
+gs_char
+gs_show_current_char(const gs_show_enum * penum)
+{
+ return gs_text_current_char((const gs_text_enum_t *)penum);
+}
+
+/* Return the current glyph for rendering. */
+gs_glyph
+gs_show_current_glyph(const gs_show_enum * penum)
+{
+ return gs_text_current_glyph((const gs_text_enum_t *)penum);
+}
+
+/* Return the width of the just-enumerated character (for cshow). */
+int
+gs_show_current_width(const gs_show_enum * penum, gs_point * ppt)
+{
+ return gs_text_current_width((const gs_text_enum_t *)penum, ppt);
+}
+
+/* Return the just-displayed character for kerning. */
+gs_char
+gs_kshow_previous_char(const gs_show_enum * penum)
+{
+ return gs_text_current_char((const gs_text_enum_t *)penum);
+}
+
+/* Return the about-to-be-displayed character for kerning. */
+gs_char
+gs_kshow_next_char(const gs_show_enum * penum)
+{
+ return penum->text.data.bytes[penum->index];
+}
+
+/* Return the accumulated width for stringwidth. */
+void
+gs_show_width(const gs_show_enum * penum, gs_point * ppt)
+{
+ gs_text_total_width((const gs_text_enum_t *)penum, ppt);
+}
+
+/* ------ Internal routines ------ */
+
+#if 0
+/*
+ * Force the enumerator to be a gs_show_enum *, which the current
+ * implementation code requires.
+ */
+static int
+show_n_begin(gs_show_enum *penum, gs_state *pgs, int code, gs_text_enum_t *pte)
+{
+ if (code < 0)
+ return code;
+ if (gs_object_type(pgs->memory, pte) != &st_gs_show_enum) {
+ /* Use the default implementation. */
+ gx_device *dev = pgs->device;
+ gs_text_params_t text;
+ gs_memory_t *mem = pte->memory;
+ dev_proc_text_begin((*text_begin)) = dev_proc(dev, text_begin);
+
+ text = pte->text;
+ gs_text_release(pte, "show_n_begin");
+ /* Temporarily reset the text_begin procedure to the default. */
+ set_dev_proc(dev, text_begin, gx_default_text_begin);
+ code = gs_text_begin(pgs, &text, mem, &pte);
+ set_dev_proc(dev, text_begin, text_begin);
+ if (code < 0)
+ return code;
+ }
+ /* Now we know pte points to a gs_show_enum. */
+ *penum = *(gs_show_enum *)pte;
+ gs_free_object(pgs->memory, pte, "show_n_begin");
+ return code;
+}
+#endif