2002-05-18 14:03:43 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2000 Computing Research Labs, New Mexico State University
|
2018-08-16 05:49:07 +02:00
|
|
|
* Copyright 2001-2014
|
2007-02-12 22:44:10 +01:00
|
|
|
* Francesco Zappa Nardelli
|
2002-05-18 14:03:43 +02:00
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COMPUTING RESEARCH LAB OR NEW MEXICO STATE UNIVERSITY BE LIABLE FOR ANY
|
|
|
|
* CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT
|
|
|
|
* OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR
|
|
|
|
* THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* This file is based on bdf.c,v 1.22 2000/03/16 20:08:50
|
|
|
|
*
|
|
|
|
* taken from Mark Leisher's xmbdfed package
|
|
|
|
*
|
|
|
|
*/
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2020-06-08 13:31:55 +02:00
|
|
|
#include <freetype/freetype.h>
|
|
|
|
#include <freetype/internal/ftdebug.h>
|
|
|
|
#include <freetype/internal/ftstream.h>
|
|
|
|
#include <freetype/internal/ftobjs.h>
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
#include "bdf.h"
|
|
|
|
#include "bdferror.h"
|
|
|
|
|
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* The macro FT_COMPONENT is used in trace mode. It is an implicit
|
|
|
|
* parameter of the FT_TRACE() and FT_ERROR() macros, used to print/log
|
|
|
|
* messages during execution.
|
|
|
|
*/
|
2002-05-21 16:13:01 +02:00
|
|
|
#undef FT_COMPONENT
|
2018-08-15 18:13:17 +02:00
|
|
|
#define FT_COMPONENT bdflib
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2023-05-23 13:13:56 +02:00
|
|
|
#define BUFSIZE 128
|
|
|
|
|
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Default BDF font options.
|
|
|
|
*
|
|
|
|
*/
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
static const bdf_options_t bdf_opts_ =
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2002-05-18 14:03:43 +02:00
|
|
|
1, /* Correct metrics. */
|
|
|
|
1, /* Preserve unencoded glyphs. */
|
2002-05-21 16:13:01 +02:00
|
|
|
0, /* Preserve comments. */
|
|
|
|
BDF_PROPORTIONAL /* Default spacing. */
|
|
|
|
};
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Builtin BDF font properties.
|
|
|
|
*
|
|
|
|
*/
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* List of most properties that might appear in a font. Doesn't include */
|
|
|
|
/* the RAW_* and AXIS_* properties in X11R6 polymorphic fonts. */
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
static const bdf_property_t bdf_properties_[] =
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2019-06-11 04:27:39 +02:00
|
|
|
{ "ADD_STYLE_NAME", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "AVERAGE_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "AVG_CAPITAL_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "AVG_LOWERCASE_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "CAP_HEIGHT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "CHARSET_COLLECTIONS", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "CHARSET_ENCODING", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "CHARSET_REGISTRY", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "COMMENT", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "COPYRIGHT", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "DEFAULT_CHAR", BDF_CARDINAL, 1, { 0 } },
|
|
|
|
{ "DESTINATION", BDF_CARDINAL, 1, { 0 } },
|
|
|
|
{ "DEVICE_FONT_NAME", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "END_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "FACE_NAME", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "FAMILY_NAME", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "FIGURE_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "FONT", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "FONTNAME_REGISTRY", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "FONT_ASCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "FONT_DESCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "FOUNDRY", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "FULL_NAME", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "ITALIC_ANGLE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "MAX_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "MIN_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "NORM_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "NOTICE", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "PIXEL_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "POINT_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "QUAD_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_ASCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_AVERAGE_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_AVG_CAPITAL_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_AVG_LOWERCASE_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_CAP_HEIGHT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_DESCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_END_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_FIGURE_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_MAX_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_MIN_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_NORM_SPACE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_PIXEL_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_POINT_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_PIXELSIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_POINTSIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_QUAD_WIDTH", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_SMALL_CAP_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_STRIKEOUT_ASCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_STRIKEOUT_DESCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_SUBSCRIPT_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_SUBSCRIPT_X", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_SUBSCRIPT_Y", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_SUPERSCRIPT_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_SUPERSCRIPT_X", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_SUPERSCRIPT_Y", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_UNDERLINE_POSITION", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_UNDERLINE_THICKNESS", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RAW_X_HEIGHT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RELATIVE_SETWIDTH", BDF_CARDINAL, 1, { 0 } },
|
|
|
|
{ "RELATIVE_WEIGHT", BDF_CARDINAL, 1, { 0 } },
|
|
|
|
{ "RESOLUTION", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "RESOLUTION_X", BDF_CARDINAL, 1, { 0 } },
|
|
|
|
{ "RESOLUTION_Y", BDF_CARDINAL, 1, { 0 } },
|
|
|
|
{ "SETWIDTH_NAME", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "SLANT", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "SMALL_CAP_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "SPACING", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "STRIKEOUT_ASCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "STRIKEOUT_DESCENT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "SUBSCRIPT_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "SUBSCRIPT_X", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "SUBSCRIPT_Y", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "SUPERSCRIPT_SIZE", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "SUPERSCRIPT_X", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "SUPERSCRIPT_Y", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "UNDERLINE_POSITION", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "UNDERLINE_THICKNESS", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "WEIGHT", BDF_CARDINAL, 1, { 0 } },
|
|
|
|
{ "WEIGHT_NAME", BDF_ATOM, 1, { 0 } },
|
|
|
|
{ "X_HEIGHT", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "_MULE_BASELINE_OFFSET", BDF_INTEGER, 1, { 0 } },
|
|
|
|
{ "_MULE_RELATIVE_COMPOSE", BDF_INTEGER, 1, { 0 } },
|
2002-05-21 16:13:01 +02:00
|
|
|
};
|
|
|
|
|
* src/autohint/ahglobal.c (blue_chars), src/winfonts/winfnt.c
(fnt_cmap_class_rec, fnt_cmap_class), src/bdf/bdflib.c (empty,
_num_bdf_properties), src/gzip/infutil.c (inflate_mask),
src/gzip/inffixed.h (fixed_bl, fixed_bd, fixed_tl, fixed_td),
src/gzip/inftrees.h (inflate_trees_fixed), srf/gzip/inftrees.c
(inflate_trees_fixed): Decorate with more `const' to avoid
writable global variables which are disallowed on ARM.
2003-10-16 00:20:56 +02:00
|
|
|
static const unsigned long
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
num_bdf_properties_ = sizeof ( bdf_properties_ ) /
|
|
|
|
sizeof ( bdf_properties_[0] );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
2014-11-07 07:42:33 +01:00
|
|
|
/* An auxiliary macro to parse properties, to be used in conditionals. */
|
|
|
|
/* It behaves like `strncmp' but also tests the following character */
|
2021-09-24 05:10:26 +02:00
|
|
|
/* whether it is a whitespace or null. */
|
2014-11-07 07:42:33 +01:00
|
|
|
/* `property' is a constant string of length `n' to compare with. */
|
|
|
|
#define _bdf_strncmp( name, property, n ) \
|
|
|
|
( ft_strncmp( name, property, n ) || \
|
|
|
|
!( name[n] == ' ' || \
|
|
|
|
name[n] == '\0' || \
|
|
|
|
name[n] == '\n' || \
|
|
|
|
name[n] == '\r' || \
|
|
|
|
name[n] == '\t' ) )
|
|
|
|
|
2011-11-25 09:44:28 +01:00
|
|
|
/* Auto correction messages. */
|
|
|
|
#define ACMSG1 "FONT_ASCENT property missing. " \
|
|
|
|
"Added `FONT_ASCENT %hd'.\n"
|
|
|
|
#define ACMSG2 "FONT_DESCENT property missing. " \
|
|
|
|
"Added `FONT_DESCENT %hd'.\n"
|
2020-08-28 06:26:38 +02:00
|
|
|
#define ACMSG3 "Font width != actual width. Old: %d New: %d.\n"
|
2011-11-25 09:44:28 +01:00
|
|
|
#define ACMSG4 "Font left bearing != actual left bearing. " \
|
|
|
|
"Old: %hd New: %hd.\n"
|
|
|
|
#define ACMSG5 "Font ascent != actual ascent. Old: %hd New: %hd.\n"
|
2020-08-28 06:26:38 +02:00
|
|
|
#define ACMSG6 "Font descent != actual descent. Old: %d New: %d.\n"
|
2020-12-02 07:54:21 +01:00
|
|
|
#define ACMSG7 "Font height != actual height. Old: %d New: %d.\n"
|
2011-11-25 09:44:28 +01:00
|
|
|
#define ACMSG8 "Glyph scalable width (SWIDTH) adjustments made.\n"
|
|
|
|
#define ACMSG9 "SWIDTH field missing at line %ld. Set automatically.\n"
|
|
|
|
#define ACMSG10 "DWIDTH field missing at line %ld. Set to glyph width.\n"
|
|
|
|
#define ACMSG11 "SIZE bits per pixel field adjusted to %hd.\n"
|
2018-08-13 15:01:53 +02:00
|
|
|
#define ACMSG13 "Glyph %lu extra rows removed.\n"
|
|
|
|
#define ACMSG14 "Glyph %lu extra columns removed.\n"
|
2011-11-25 09:44:28 +01:00
|
|
|
#define ACMSG15 "Incorrect glyph count: %ld indicated but %ld found.\n"
|
2018-08-13 15:01:53 +02:00
|
|
|
#define ACMSG16 "Glyph %lu missing columns padded with zero bits.\n"
|
2015-10-17 11:51:27 +02:00
|
|
|
#define ACMSG17 "Adjusting number of glyphs to %ld.\n"
|
2011-11-25 09:44:28 +01:00
|
|
|
|
|
|
|
/* Error messages. */
|
|
|
|
#define ERRMSG1 "[line %ld] Missing `%s' line.\n"
|
|
|
|
#define ERRMSG2 "[line %ld] Font header corrupted or missing fields.\n"
|
|
|
|
#define ERRMSG3 "[line %ld] Font glyphs corrupted or missing fields.\n"
|
|
|
|
#define ERRMSG4 "[line %ld] BBX too big.\n"
|
2018-08-16 04:58:11 +02:00
|
|
|
#define ERRMSG5 "[line %ld] `%s' value too big.\n"
|
2011-11-25 09:44:28 +01:00
|
|
|
#define ERRMSG6 "[line %ld] Input line too long.\n"
|
|
|
|
#define ERRMSG7 "[line %ld] Font name too long.\n"
|
|
|
|
#define ERRMSG8 "[line %ld] Invalid `%s' value.\n"
|
|
|
|
#define ERRMSG9 "[line %ld] Invalid keyword.\n"
|
|
|
|
|
2011-11-27 09:21:03 +01:00
|
|
|
/* Debug messages. */
|
|
|
|
#define DBGMSG1 " [%6ld] %s" /* no \n */
|
|
|
|
#define DBGMSG2 " (0x%lX)\n"
|
|
|
|
|
2011-11-25 09:44:28 +01:00
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* Utility types and functions.
|
|
|
|
*
|
|
|
|
*/
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Function type for parsing lines of a BDF font. */
|
|
|
|
|
|
|
|
typedef FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
(*bdf_line_func_t_)( char* line,
|
2002-05-21 16:13:01 +02:00
|
|
|
unsigned long linelen,
|
|
|
|
unsigned long lineno,
|
|
|
|
void* call_data,
|
|
|
|
void* client_data );
|
|
|
|
|
|
|
|
|
|
|
|
/* List structure for splitting lines into fields. */
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
typedef struct bdf_list_t__
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2002-05-21 16:13:01 +02:00
|
|
|
char** field;
|
|
|
|
unsigned long size;
|
|
|
|
unsigned long used;
|
2005-03-15 19:18:57 +01:00
|
|
|
FT_Memory memory;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
} bdf_list_t_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Structure used while loading BDF fonts. */
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
typedef struct bdf_parse_t__
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
unsigned long flags;
|
|
|
|
unsigned long cnt;
|
|
|
|
unsigned long row;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
short minlb;
|
|
|
|
short maxlb;
|
|
|
|
short maxrb;
|
|
|
|
short maxas;
|
|
|
|
short maxds;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
short rbearing;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
char* glyph_name;
|
|
|
|
long glyph_enc;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_font_t* font;
|
|
|
|
bdf_options_t* opts;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_t_ list;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_Memory memory;
|
2015-10-17 11:51:27 +02:00
|
|
|
unsigned long size; /* the stream size */
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
} bdf_parse_t_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2007-03-28 09:17:17 +02:00
|
|
|
#define setsbit( m, cc ) \
|
|
|
|
( m[(FT_Byte)(cc) >> 3] |= (FT_Byte)( 1 << ( (cc) & 7 ) ) )
|
|
|
|
#define sbitset( m, cc ) \
|
|
|
|
( m[(FT_Byte)(cc) >> 3] & ( 1 << ( (cc) & 7 ) ) )
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
static void
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_init_( bdf_list_t_* list,
|
2005-03-15 19:18:57 +01:00
|
|
|
FT_Memory memory )
|
|
|
|
{
|
2005-03-16 02:49:54 +01:00
|
|
|
FT_ZERO( list );
|
2005-03-15 19:18:57 +01:00
|
|
|
list->memory = memory;
|
|
|
|
}
|
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
static void
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_done_( bdf_list_t_* list )
|
2005-03-15 19:18:57 +01:00
|
|
|
{
|
|
|
|
FT_Memory memory = list->memory;
|
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( memory )
|
|
|
|
{
|
|
|
|
FT_FREE( list->field );
|
2005-03-16 02:49:54 +01:00
|
|
|
FT_ZERO( list );
|
2005-03-15 19:18:57 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_ensure_( bdf_list_t_* list,
|
|
|
|
unsigned long num_items ) /* same as bdf_list_t_.used */
|
2005-03-15 19:18:57 +01:00
|
|
|
{
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2005-03-16 02:49:54 +01:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2009-07-31 17:30:15 +02:00
|
|
|
if ( num_items > list->size )
|
2005-03-15 19:18:57 +01:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
unsigned long oldsize = list->size; /* same as bdf_list_t_.size */
|
2012-03-01 09:26:03 +01:00
|
|
|
unsigned long newsize = oldsize + ( oldsize >> 1 ) + 5;
|
2009-07-31 17:30:15 +02:00
|
|
|
unsigned long bigsize = (unsigned long)( FT_INT_MAX / sizeof ( char* ) );
|
|
|
|
FT_Memory memory = list->memory;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( oldsize == bigsize )
|
|
|
|
{
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Out_Of_Memory );
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
else if ( newsize < oldsize || newsize > bigsize )
|
|
|
|
newsize = bigsize;
|
|
|
|
|
2021-05-07 15:33:41 +02:00
|
|
|
if ( FT_QRENEW_ARRAY( list->field, oldsize, newsize ) )
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
list->size = newsize;
|
|
|
|
}
|
2005-03-16 02:49:54 +01:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_shift_( bdf_list_t_* list,
|
2005-03-15 19:18:57 +01:00
|
|
|
unsigned long n )
|
|
|
|
{
|
|
|
|
unsigned long i, u;
|
|
|
|
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( list == NULL || list->used == 0 || n == 0 )
|
2005-03-15 19:18:57 +01:00
|
|
|
return;
|
|
|
|
|
|
|
|
if ( n >= list->used )
|
|
|
|
{
|
|
|
|
list->used = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( u = n, i = 0; u < list->used; i++, u++ )
|
|
|
|
list->field[i] = list->field[u];
|
|
|
|
list->used -= n;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2010-06-19 16:08:31 +02:00
|
|
|
/* An empty string for empty fields. */
|
|
|
|
|
2019-06-11 04:27:39 +02:00
|
|
|
static const char empty[] = ""; /* XXX eliminate this */
|
2010-06-19 16:08:31 +02:00
|
|
|
|
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
static char *
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_join_( bdf_list_t_* list,
|
2005-03-15 19:18:57 +01:00
|
|
|
int c,
|
|
|
|
unsigned long *alen )
|
|
|
|
{
|
|
|
|
unsigned long i, j;
|
2013-06-04 10:30:48 +02:00
|
|
|
char* dp;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
|
|
|
|
|
|
|
*alen = 0;
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( list == NULL || list->used == 0 )
|
2023-04-27 05:15:24 +02:00
|
|
|
return NULL;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
|
|
|
dp = list->field[0];
|
|
|
|
for ( i = j = 0; i < list->used; i++ )
|
|
|
|
{
|
2013-06-04 10:30:48 +02:00
|
|
|
char* fp = list->field[i];
|
|
|
|
|
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
while ( *fp )
|
|
|
|
dp[j++] = *fp++;
|
|
|
|
|
|
|
|
if ( i + 1 < list->used )
|
|
|
|
dp[j++] = (char)c;
|
|
|
|
}
|
2010-06-19 16:08:31 +02:00
|
|
|
if ( dp != empty )
|
|
|
|
dp[j] = 0;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
|
|
|
*alen = j;
|
|
|
|
return dp;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-02-26 06:52:56 +01:00
|
|
|
/* The code below ensures that we have at least 4 + 1 `field' */
|
|
|
|
/* elements in `list' (which are possibly NULL) so that we */
|
|
|
|
/* don't have to check the number of fields in most cases. */
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_split_( bdf_list_t_* list,
|
2019-06-11 04:27:39 +02:00
|
|
|
const char* separators,
|
2005-03-15 19:18:57 +01:00
|
|
|
char* line,
|
|
|
|
unsigned long linelen )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2015-02-22 09:16:53 +01:00
|
|
|
unsigned long final_empty;
|
|
|
|
int mult;
|
2019-06-11 04:27:39 +02:00
|
|
|
const char *sp, *end;
|
|
|
|
char *ep;
|
2015-02-22 09:16:53 +01:00
|
|
|
char seps[32];
|
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Initialize the list. */
|
|
|
|
list->used = 0;
|
2012-03-01 15:15:00 +01:00
|
|
|
if ( list->size )
|
|
|
|
{
|
|
|
|
list->field[0] = (char*)empty;
|
|
|
|
list->field[1] = (char*)empty;
|
|
|
|
list->field[2] = (char*)empty;
|
|
|
|
list->field[3] = (char*)empty;
|
2012-03-16 21:12:41 +01:00
|
|
|
list->field[4] = (char*)empty;
|
2012-03-01 15:15:00 +01:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* If the line is empty, then simply return. */
|
|
|
|
if ( linelen == 0 || line[0] == 0 )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
/* In the original code, if the `separators' parameter is NULL or */
|
|
|
|
/* empty, the list is split into individual bytes. We don't need */
|
|
|
|
/* this, so an error is signaled. */
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( separators == NULL || *separators == 0 )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_Argument );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Prepare the separator bitmap. */
|
2002-07-28 07:05:24 +02:00
|
|
|
FT_MEM_ZERO( seps, 32 );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* If the very last character of the separator string is a plus, then */
|
|
|
|
/* set the `mult' flag to indicate that multiple separators should be */
|
|
|
|
/* collapsed into one. */
|
|
|
|
for ( mult = 0, sp = separators; sp && *sp; sp++ )
|
|
|
|
{
|
|
|
|
if ( *sp == '+' && *( sp + 1 ) == 0 )
|
|
|
|
mult = 1;
|
|
|
|
else
|
|
|
|
setsbit( seps, *sp );
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Break the line up into fields. */
|
|
|
|
for ( final_empty = 0, sp = ep = line, end = sp + linelen;
|
|
|
|
sp < end && *sp; )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Collect everything that is not a separator. */
|
|
|
|
for ( ; *ep && !sbitset( seps, *ep ); ep++ )
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Resize the list if necessary. */
|
|
|
|
if ( list->used == list->size )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_ensure_( list, list->used + 1 );
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* Assign the field appropriately. */
|
2019-06-11 04:27:39 +02:00
|
|
|
list->field[list->used++] = ( ep > sp ) ? (char*)sp : (char*)empty;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
sp = ep;
|
|
|
|
|
|
|
|
if ( mult )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2002-05-21 16:13:01 +02:00
|
|
|
/* If multiple separators should be collapsed, do it now by */
|
|
|
|
/* setting all the separator characters to 0. */
|
|
|
|
for ( ; *ep && sbitset( seps, *ep ); ep++ )
|
|
|
|
*ep = 0;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
else if ( *ep != 0 )
|
|
|
|
/* Don't collapse multiple separators by making them 0, so just */
|
|
|
|
/* make the one encountered 0. */
|
|
|
|
*ep++ = 0;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
final_empty = ( ep > sp && *ep == 0 );
|
|
|
|
sp = ep;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Finally, NULL-terminate the list. */
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( list->used + final_empty >= list->size )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_ensure_( list, list->used + final_empty + 1 );
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( final_empty )
|
* src/autohint/ahglobal.c (blue_chars), src/winfonts/winfnt.c
(fnt_cmap_class_rec, fnt_cmap_class), src/bdf/bdflib.c (empty,
_num_bdf_properties), src/gzip/infutil.c (inflate_mask),
src/gzip/inffixed.h (fixed_bl, fixed_bd, fixed_tl, fixed_td),
src/gzip/inftrees.h (inflate_trees_fixed), srf/gzip/inftrees.c
(inflate_trees_fixed): Decorate with more `const' to avoid
writable global variables which are disallowed on ARM.
2003-10-16 00:20:56 +02:00
|
|
|
list->field[list->used++] = (char*)empty;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
list->field[list->used] = NULL;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
#define NO_SKIP 256 /* this value cannot be stored in a 'char' */
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_readstream_( FT_Stream stream,
|
|
|
|
bdf_line_func_t_ callback,
|
2002-05-21 16:13:01 +02:00
|
|
|
void* client_data,
|
|
|
|
unsigned long *lno )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_line_func_t_ cb;
|
2005-03-15 19:18:57 +01:00
|
|
|
unsigned long lineno, buf_size;
|
2009-07-31 17:30:15 +02:00
|
|
|
int refill, hold, to_skip;
|
|
|
|
ptrdiff_t bytes, start, end, cursor, avail;
|
2015-04-12 05:54:19 +02:00
|
|
|
char* buf = NULL;
|
2002-05-30 21:29:41 +02:00
|
|
|
FT_Memory memory = stream->memory;
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( callback == NULL )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_Argument );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
/* initial size and allocation of the input buffer */
|
2005-03-15 19:18:57 +01:00
|
|
|
buf_size = 1024;
|
2002-05-30 21:29:41 +02:00
|
|
|
|
2021-04-26 05:33:15 +02:00
|
|
|
if ( FT_QALLOC( buf, buf_size ) )
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Exit;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
cb = callback;
|
|
|
|
lineno = 1;
|
|
|
|
buf[0] = 0;
|
|
|
|
start = 0;
|
|
|
|
avail = 0;
|
|
|
|
cursor = 0;
|
|
|
|
refill = 1;
|
|
|
|
to_skip = NO_SKIP;
|
|
|
|
bytes = 0; /* make compiler happy */
|
2005-03-15 19:18:57 +01:00
|
|
|
|
|
|
|
for (;;)
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( refill )
|
|
|
|
{
|
2010-06-24 07:36:21 +02:00
|
|
|
bytes = (ptrdiff_t)FT_Stream_TryRead(
|
|
|
|
stream, (FT_Byte*)buf + cursor,
|
2015-02-22 09:16:53 +01:00
|
|
|
buf_size - (unsigned long)cursor );
|
2005-03-15 19:18:57 +01:00
|
|
|
avail = cursor + bytes;
|
|
|
|
cursor = 0;
|
|
|
|
refill = 0;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
end = start;
|
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
/* should we skip an optional character like \n or \r? */
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( start < avail && buf[start] == to_skip )
|
|
|
|
{
|
|
|
|
start += 1;
|
|
|
|
to_skip = NO_SKIP;
|
|
|
|
continue;
|
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
/* try to find the end of the line */
|
|
|
|
while ( end < avail && buf[end] != '\n' && buf[end] != '\r' )
|
|
|
|
end++;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
/* if we hit the end of the buffer, try shifting its content */
|
|
|
|
/* or even resizing it */
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( end >= avail )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2021-10-19 22:59:46 +02:00
|
|
|
if ( bytes == 0 )
|
|
|
|
{
|
|
|
|
/* last line in file doesn't end in \r or \n; */
|
|
|
|
/* ignore it then exit */
|
|
|
|
if ( lineno == 1 )
|
|
|
|
error = FT_THROW( Missing_Startfont_Field );
|
|
|
|
break;
|
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( start == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2005-03-16 02:49:54 +01:00
|
|
|
/* this line is definitely too long; try resizing the input */
|
|
|
|
/* buffer a bit to handle it. */
|
2005-03-15 19:18:57 +01:00
|
|
|
FT_ULong new_size;
|
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
|
|
|
|
if ( buf_size >= 65536UL ) /* limit ourselves to 64KByte */
|
2005-03-15 19:18:57 +01:00
|
|
|
{
|
2021-10-19 22:59:46 +02:00
|
|
|
if ( lineno == 1 )
|
|
|
|
error = FT_THROW( Missing_Startfont_Field );
|
|
|
|
else
|
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_readstream_: " ERRMSG6, lineno ));
|
2021-10-19 22:59:46 +02:00
|
|
|
error = FT_THROW( Invalid_Argument );
|
|
|
|
}
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2005-03-16 02:49:54 +01:00
|
|
|
new_size = buf_size * 2;
|
2021-04-26 05:33:15 +02:00
|
|
|
if ( FT_QREALLOC( buf, buf_size, new_size ) )
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Exit;
|
|
|
|
|
2021-12-09 23:06:28 +01:00
|
|
|
cursor = avail;
|
2005-03-15 19:18:57 +01:00
|
|
|
buf_size = new_size;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2005-03-15 19:18:57 +01:00
|
|
|
bytes = avail - start;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2013-04-03 07:37:56 +02:00
|
|
|
FT_MEM_MOVE( buf, buf + start, bytes );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
cursor = bytes;
|
|
|
|
start = 0;
|
2002-05-29 01:40:37 +02:00
|
|
|
}
|
2005-03-15 19:18:57 +01:00
|
|
|
refill = 1;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Temporarily NUL-terminate the line. */
|
|
|
|
hold = buf[end];
|
|
|
|
buf[end] = 0;
|
|
|
|
|
2014-12-07 11:03:57 +01:00
|
|
|
/* XXX: Use encoding independent value for 0x1A */
|
|
|
|
if ( buf[start] != '#' && buf[start] != 0x1A && end > start )
|
2005-03-15 19:18:57 +01:00
|
|
|
{
|
2012-12-17 09:08:09 +01:00
|
|
|
error = (*cb)( buf + start, (unsigned long)( end - start ), lineno,
|
2005-03-16 02:49:54 +01:00
|
|
|
(void*)&cb, client_data );
|
2010-06-24 07:40:49 +02:00
|
|
|
/* Redo if we have encountered CHARS without properties. */
|
|
|
|
if ( error == -1 )
|
2012-12-17 09:08:09 +01:00
|
|
|
error = (*cb)( buf + start, (unsigned long)( end - start ), lineno,
|
2010-06-24 07:40:49 +02:00
|
|
|
(void*)&cb, client_data );
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( error )
|
|
|
|
break;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2005-03-15 19:18:57 +01:00
|
|
|
|
|
|
|
lineno += 1;
|
|
|
|
buf[end] = (char)hold;
|
2005-03-16 02:49:54 +01:00
|
|
|
start = end + 1;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
|
|
|
if ( hold == '\n' )
|
|
|
|
to_skip = '\r';
|
|
|
|
else if ( hold == '\r' )
|
|
|
|
to_skip = '\n';
|
|
|
|
else
|
|
|
|
to_skip = NO_SKIP;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
*lno = lineno;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
Exit:
|
2002-05-30 21:29:41 +02:00
|
|
|
FT_FREE( buf );
|
2002-05-21 16:13:01 +02:00
|
|
|
return error;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* XXX: make this work with EBCDIC also */
|
|
|
|
|
2002-05-21 23:17:43 +02:00
|
|
|
static const unsigned char a2i[128] =
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2002-05-18 14:03:43 +02:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x00, 0x00,
|
2014-12-07 11:03:57 +01:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x00,
|
2002-05-18 14:03:43 +02:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2014-12-07 11:03:57 +01:00
|
|
|
0x00, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2002-05-18 14:03:43 +02:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00
|
2002-05-21 16:13:01 +02:00
|
|
|
};
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 23:17:43 +02:00
|
|
|
static const unsigned char ddigits[32] =
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2014-12-07 11:03:57 +01:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x03,
|
2002-05-18 14:03:43 +02:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2002-05-21 16:13:01 +02:00
|
|
|
};
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 23:17:43 +02:00
|
|
|
static const unsigned char hdigits[32] =
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2014-12-07 11:03:57 +01:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xFF, 0x03,
|
|
|
|
0x7E, 0x00, 0x00, 0x00, 0x7E, 0x00, 0x00, 0x00,
|
2002-05-18 14:03:43 +02:00
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
|
|
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
2002-05-21 16:13:01 +02:00
|
|
|
};
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
/* Routine to convert a decimal ASCII string to an unsigned long integer. */
|
2002-05-21 16:13:01 +02:00
|
|
|
static unsigned long
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_atoul_( const char* s )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2015-12-14 09:19:52 +01:00
|
|
|
unsigned long v;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( s == NULL || *s == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
return 0;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
for ( v = 0; sbitset( ddigits, *s ); s++ )
|
2017-06-02 09:06:36 +02:00
|
|
|
{
|
2017-12-18 20:34:05 +01:00
|
|
|
if ( v < ( FT_ULONG_MAX - 9 ) / 10 )
|
2017-06-02 09:06:36 +02:00
|
|
|
v = v * 10 + a2i[(int)*s];
|
|
|
|
else
|
|
|
|
{
|
2017-12-18 20:34:05 +01:00
|
|
|
v = FT_ULONG_MAX;
|
2017-06-02 09:06:36 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
return v;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
/* Routine to convert a decimal ASCII string to a signed long integer. */
|
2002-05-21 16:13:01 +02:00
|
|
|
static long
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_atol_( const char* s )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2015-12-14 09:19:52 +01:00
|
|
|
long v, neg;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( s == NULL || *s == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
return 0;
|
|
|
|
|
|
|
|
/* Check for a minus sign. */
|
|
|
|
neg = 0;
|
|
|
|
if ( *s == '-' )
|
|
|
|
{
|
2002-05-18 14:03:43 +02:00
|
|
|
s++;
|
|
|
|
neg = 1;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
for ( v = 0; sbitset( ddigits, *s ); s++ )
|
2017-06-02 09:06:36 +02:00
|
|
|
{
|
2017-12-18 20:34:05 +01:00
|
|
|
if ( v < ( FT_LONG_MAX - 9 ) / 10 )
|
2017-06-02 09:06:36 +02:00
|
|
|
v = v * 10 + a2i[(int)*s];
|
|
|
|
else
|
|
|
|
{
|
2017-12-18 20:34:05 +01:00
|
|
|
v = FT_LONG_MAX;
|
2017-06-02 09:06:36 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
return ( !neg ) ? v : -v;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
/* Routine to convert a decimal ASCII string to an unsigned short integer. */
|
2015-02-22 09:15:47 +01:00
|
|
|
static unsigned short
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_atous_( const char* s )
|
2015-02-22 09:15:47 +01:00
|
|
|
{
|
2015-12-14 09:19:52 +01:00
|
|
|
unsigned short v;
|
2015-02-22 09:15:47 +01:00
|
|
|
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( s == NULL || *s == 0 )
|
2015-02-22 09:15:47 +01:00
|
|
|
return 0;
|
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
for ( v = 0; sbitset( ddigits, *s ); s++ )
|
2017-06-02 09:06:36 +02:00
|
|
|
{
|
2017-12-18 20:34:05 +01:00
|
|
|
if ( v < ( FT_USHORT_MAX - 9 ) / 10 )
|
2017-06-02 09:06:36 +02:00
|
|
|
v = (unsigned short)( v * 10 + a2i[(int)*s] );
|
|
|
|
else
|
|
|
|
{
|
2017-12-18 20:34:05 +01:00
|
|
|
v = FT_USHORT_MAX;
|
2017-06-02 09:06:36 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-02-22 09:15:47 +01:00
|
|
|
|
|
|
|
return v;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
/* Routine to convert a decimal ASCII string to a signed short integer. */
|
2002-05-21 16:13:01 +02:00
|
|
|
static short
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_atos_( const char* s )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2015-12-14 09:19:52 +01:00
|
|
|
short v, neg;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( s == NULL || *s == 0 )
|
2002-05-18 14:03:43 +02:00
|
|
|
return 0;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Check for a minus. */
|
2002-05-18 14:03:43 +02:00
|
|
|
neg = 0;
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( *s == '-' )
|
|
|
|
{
|
|
|
|
s++;
|
|
|
|
neg = 1;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2015-12-14 09:19:52 +01:00
|
|
|
for ( v = 0; sbitset( ddigits, *s ); s++ )
|
2017-06-02 09:06:36 +02:00
|
|
|
{
|
|
|
|
if ( v < ( SHRT_MAX - 9 ) / 10 )
|
|
|
|
v = (short)( v * 10 + a2i[(int)*s] );
|
|
|
|
else
|
|
|
|
{
|
|
|
|
v = SHRT_MAX;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-22 07:41:06 +02:00
|
|
|
return (short)( ( !neg ) ? v : -v );
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Routine to compare two glyphs by encoding so they can be sorted. */
|
2021-02-13 01:28:05 +01:00
|
|
|
FT_COMPARE_DEF( int )
|
2002-05-21 16:13:01 +02:00
|
|
|
by_encoding( const void* a,
|
|
|
|
const void* b )
|
|
|
|
{
|
|
|
|
bdf_glyph_t *c1, *c2;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
c1 = (bdf_glyph_t *)a;
|
|
|
|
c2 = (bdf_glyph_t *)b;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( c1->encoding < c2->encoding )
|
|
|
|
return -1;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
|
|
|
if ( c1->encoding > c2->encoding )
|
2002-05-21 16:13:01 +02:00
|
|
|
return 1;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
return 0;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
static FT_Error
|
2019-06-11 04:27:39 +02:00
|
|
|
bdf_create_property( const char* name,
|
2002-05-21 16:13:01 +02:00
|
|
|
int format,
|
|
|
|
bdf_font_t* font )
|
|
|
|
{
|
2009-09-12 17:50:14 +02:00
|
|
|
size_t n;
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_property_t* p;
|
|
|
|
FT_Memory memory = font->memory;
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2011-06-29 09:15:54 +02:00
|
|
|
/* First check whether the property has */
|
2002-05-21 16:13:01 +02:00
|
|
|
/* already been added or not. If it has, then */
|
|
|
|
/* simply ignore it. */
|
2015-12-20 07:17:29 +01:00
|
|
|
if ( ft_hash_str_lookup( name, &(font->proptbl) ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2021-05-03 00:30:22 +02:00
|
|
|
if ( FT_QRENEW_ARRAY( font->user_props,
|
|
|
|
font->nuser_props,
|
|
|
|
font->nuser_props + 1 ) )
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
p = font->user_props + font->nuser_props;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2009-09-12 17:50:14 +02:00
|
|
|
n = ft_strlen( name ) + 1;
|
2021-10-17 05:02:47 +02:00
|
|
|
if ( n > FT_LONG_MAX )
|
2013-03-14 10:27:35 +01:00
|
|
|
return FT_THROW( Invalid_Argument );
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2021-04-26 05:33:15 +02:00
|
|
|
if ( FT_QALLOC( p->name, n ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_MEM_COPY( (char *)p->name, name, n );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2021-10-17 05:02:47 +02:00
|
|
|
p->format = format;
|
|
|
|
p->builtin = 0;
|
|
|
|
p->value.atom = NULL; /* nothing is ever stored here */
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
n = num_bdf_properties_ + font->nuser_props;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2015-12-20 07:17:29 +01:00
|
|
|
error = ft_hash_str_insert( p->name, n, &(font->proptbl), memory );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
font->nuser_props++;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2023-04-27 05:15:24 +02:00
|
|
|
static bdf_property_t*
|
|
|
|
bdf_get_property( const char* name,
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_font_t* font )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2015-12-20 09:03:15 +01:00
|
|
|
size_t* propid;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( name == NULL || *name == 0 )
|
2023-04-27 05:15:24 +02:00
|
|
|
return NULL;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2015-12-20 09:03:15 +01:00
|
|
|
if ( ( propid = ft_hash_str_lookup( name, &(font->proptbl) ) ) == NULL )
|
2023-04-27 05:15:24 +02:00
|
|
|
return NULL;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
if ( *propid >= num_bdf_properties_ )
|
|
|
|
return font->user_props + ( *propid - num_bdf_properties_ );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
return (bdf_property_t*)bdf_properties_ + *propid;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* BDF font file parsing flags and functions.
|
|
|
|
*
|
|
|
|
*/
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
/* Parse flags. */
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
#define BDF_START_ 0x0001U
|
|
|
|
#define BDF_FONT_NAME_ 0x0002U
|
|
|
|
#define BDF_SIZE_ 0x0004U
|
|
|
|
#define BDF_FONT_BBX_ 0x0008U
|
|
|
|
#define BDF_PROPS_ 0x0010U
|
|
|
|
#define BDF_GLYPHS_ 0x0020U
|
|
|
|
#define BDF_GLYPH_ 0x0040U
|
|
|
|
#define BDF_ENCODING_ 0x0080U
|
|
|
|
#define BDF_SWIDTH_ 0x0100U
|
|
|
|
#define BDF_DWIDTH_ 0x0200U
|
|
|
|
#define BDF_BBX_ 0x0400U
|
|
|
|
#define BDF_BITMAP_ 0x0800U
|
|
|
|
|
|
|
|
#define BDF_SWIDTH_ADJ_ 0x1000U
|
|
|
|
|
|
|
|
#define BDF_GLYPH_BITS_ ( BDF_GLYPH_ | \
|
|
|
|
BDF_ENCODING_ | \
|
|
|
|
BDF_SWIDTH_ | \
|
|
|
|
BDF_DWIDTH_ | \
|
|
|
|
BDF_BBX_ | \
|
|
|
|
BDF_BITMAP_ )
|
|
|
|
|
|
|
|
#define BDF_GLYPH_WIDTH_CHECK_ 0x40000000UL
|
|
|
|
#define BDF_GLYPH_HEIGHT_CHECK_ 0x80000000UL
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_add_comment_( bdf_font_t* font,
|
2023-04-27 05:15:24 +02:00
|
|
|
const char* comment,
|
2002-05-21 16:13:01 +02:00
|
|
|
unsigned long len )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2002-05-21 16:13:01 +02:00
|
|
|
char* cp;
|
|
|
|
FT_Memory memory = font->memory;
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
2021-05-03 00:30:22 +02:00
|
|
|
if ( FT_QRENEW_ARRAY( font->comments,
|
|
|
|
font->comments_len,
|
|
|
|
font->comments_len + len + 1 ) )
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Exit;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
cp = font->comments + font->comments_len;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_MEM_COPY( cp, comment, len );
|
2021-09-25 04:06:44 +02:00
|
|
|
cp[len] = '\0';
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
font->comments_len += len + 1;
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Set the spacing from the font name if it exists, or set it to the */
|
|
|
|
/* default specified in the options. */
|
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_set_default_spacing_( bdf_font_t* font,
|
2011-11-25 09:44:28 +01:00
|
|
|
bdf_options_t* opts,
|
|
|
|
unsigned long lineno )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2009-09-12 17:50:14 +02:00
|
|
|
size_t len;
|
|
|
|
char name[256];
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_t_ list;
|
2009-09-12 17:50:14 +02:00
|
|
|
FT_Memory memory;
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2013-06-05 19:57:55 +02:00
|
|
|
FT_UNUSED( lineno ); /* only used in debug mode */
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( font == NULL || font->name == NULL || font->name[0] == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_Argument );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
memory = font->memory;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_init_( &list, memory );
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
font->spacing = opts->font_spacing;
|
|
|
|
|
2009-09-12 17:50:14 +02:00
|
|
|
len = ft_strlen( font->name ) + 1;
|
2007-03-28 09:17:17 +02:00
|
|
|
/* Limit ourselves to 256 characters in the font name. */
|
|
|
|
if ( len >= 256 )
|
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_set_default_spacing_: " ERRMSG7, lineno ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_Argument );
|
2007-03-28 09:17:17 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_MEM_COPY( name, font->name, len );
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &list, "-", name, (unsigned long)len );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
2005-03-15 19:18:57 +01:00
|
|
|
goto Fail;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
if ( list.used == 15 )
|
|
|
|
{
|
|
|
|
switch ( list.field[11][0] )
|
|
|
|
{
|
|
|
|
case 'C':
|
|
|
|
case 'c':
|
|
|
|
font->spacing = BDF_CHARCELL;
|
|
|
|
break;
|
|
|
|
case 'M':
|
|
|
|
case 'm':
|
|
|
|
font->spacing = BDF_MONOWIDTH;
|
|
|
|
break;
|
|
|
|
case 'P':
|
|
|
|
case 'p':
|
|
|
|
font->spacing = BDF_PROPORTIONAL;
|
|
|
|
break;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
Fail:
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_done_( &list );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Determine whether the property is an atom or not. If it is, then */
|
|
|
|
/* clean it up so the double quotes are removed if they exist. */
|
|
|
|
static int
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_is_atom_( char* line,
|
2002-05-21 16:13:01 +02:00
|
|
|
unsigned long linelen,
|
|
|
|
char** name,
|
|
|
|
char** value,
|
|
|
|
bdf_font_t* font )
|
|
|
|
{
|
|
|
|
int hold;
|
|
|
|
char *sp, *ep;
|
|
|
|
bdf_property_t* p;
|
|
|
|
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2023-04-27 05:15:24 +02:00
|
|
|
sp = ep = line;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
while ( *ep && *ep != ' ' && *ep != '\t' )
|
2002-05-18 14:03:43 +02:00
|
|
|
ep++;
|
|
|
|
|
2023-04-27 05:15:24 +02:00
|
|
|
hold = *ep;
|
|
|
|
*ep = '\0';
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
p = bdf_get_property( sp, font );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* If the property exists and is not an atom, just return here. */
|
|
|
|
if ( p && p->format != BDF_ATOM )
|
2023-04-27 05:15:24 +02:00
|
|
|
{
|
|
|
|
*ep = (char)hold; /* Undo NUL-termination. */
|
2002-05-18 14:03:43 +02:00
|
|
|
return 0;
|
2023-04-27 05:15:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
*name = sp;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* The property is an atom. Trim all leading and trailing whitespace */
|
|
|
|
/* and double quotes for the atom value. */
|
2002-05-18 14:03:43 +02:00
|
|
|
sp = ep;
|
|
|
|
ep = line + linelen;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Trim the leading whitespace if it exists. */
|
2023-04-27 05:15:24 +02:00
|
|
|
if ( sp < ep )
|
|
|
|
do
|
|
|
|
sp++;
|
|
|
|
while ( *sp == ' ' || *sp == '\t' );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Trim the leading double quote if it exists. */
|
|
|
|
if ( *sp == '"' )
|
2002-05-18 14:03:43 +02:00
|
|
|
sp++;
|
2023-04-27 05:15:24 +02:00
|
|
|
|
2002-05-18 14:03:43 +02:00
|
|
|
*value = sp;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Trim the trailing whitespace if it exists. */
|
2023-04-27 05:15:24 +02:00
|
|
|
if ( sp < ep )
|
|
|
|
do
|
|
|
|
*ep-- = '\0';
|
|
|
|
while ( *ep == ' ' || *ep == '\t' );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Trim the trailing double quote if it exists. */
|
2023-04-27 05:15:24 +02:00
|
|
|
if ( *ep == '"' )
|
|
|
|
*ep = '\0';
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
return 1;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_add_property_( bdf_font_t* font,
|
2019-06-11 04:27:39 +02:00
|
|
|
const char* name,
|
2011-11-25 09:44:28 +01:00
|
|
|
char* value,
|
|
|
|
unsigned long lineno )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2015-12-20 09:03:15 +01:00
|
|
|
size_t* propid;
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_property_t *prop, *fp;
|
|
|
|
FT_Memory memory = font->memory;
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2013-06-05 19:57:55 +02:00
|
|
|
FT_UNUSED( lineno ); /* only used in debug mode */
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2011-06-29 09:15:54 +02:00
|
|
|
/* First, check whether the property already exists in the font. */
|
2015-12-20 09:03:15 +01:00
|
|
|
if ( ( propid = ft_hash_str_lookup( name,
|
|
|
|
(FT_Hash)font->internal ) ) != NULL )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* The property already exists in the font, so simply replace */
|
|
|
|
/* the value of the property with the current value. */
|
2015-12-20 09:03:15 +01:00
|
|
|
fp = font->props + *propid;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-21 23:17:43 +02:00
|
|
|
switch ( fp->format )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
case BDF_ATOM:
|
|
|
|
/* Delete the current atom if it exists. */
|
|
|
|
FT_FREE( fp->value.atom );
|
|
|
|
|
2007-02-12 15:55:03 +01:00
|
|
|
if ( value && value[0] != 0 )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2007-02-12 15:55:03 +01:00
|
|
|
if ( FT_STRDUP( fp->value.atom, value ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BDF_INTEGER:
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
fp->value.l = bdf_atol_( value );
|
2002-05-21 16:13:01 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BDF_CARDINAL:
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
fp->value.ul = bdf_atoul_( value );
|
2002-05-21 16:13:01 +02:00
|
|
|
break;
|
2002-05-29 01:40:37 +02:00
|
|
|
|
2002-05-21 23:17:43 +02:00
|
|
|
default:
|
|
|
|
;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
2002-05-29 01:40:37 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* See whether this property type exists yet or not. */
|
|
|
|
/* If not, create it. */
|
2015-12-20 09:03:15 +01:00
|
|
|
propid = ft_hash_str_lookup( name, &(font->proptbl) );
|
2016-12-26 17:08:17 +01:00
|
|
|
if ( !propid )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
error = bdf_create_property( name, BDF_ATOM, font );
|
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2015-12-20 09:03:15 +01:00
|
|
|
propid = ft_hash_str_lookup( name, &(font->proptbl) );
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2016-06-09 06:53:48 +02:00
|
|
|
/* Allocate another property if this is overflowing. */
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( font->props_used == font->props_size )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2021-05-03 00:30:22 +02:00
|
|
|
if ( FT_QRENEW_ARRAY( font->props,
|
|
|
|
font->props_size,
|
|
|
|
font->props_size + 1 ) )
|
2021-04-26 05:33:15 +02:00
|
|
|
goto Exit;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-18 14:03:43 +02:00
|
|
|
font->props_size++;
|
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
if ( *propid >= num_bdf_properties_ )
|
|
|
|
prop = font->user_props + ( *propid - num_bdf_properties_ );
|
2002-05-18 14:03:43 +02:00
|
|
|
else
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
prop = (bdf_property_t*)bdf_properties_ + *propid;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
fp = font->props + font->props_used;
|
|
|
|
|
|
|
|
fp->name = prop->name;
|
|
|
|
fp->format = prop->format;
|
|
|
|
fp->builtin = prop->builtin;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
switch ( prop->format )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2002-05-21 16:13:01 +02:00
|
|
|
case BDF_ATOM:
|
2021-10-17 05:02:47 +02:00
|
|
|
fp->value.atom = NULL;
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( value && value[0] )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2007-02-12 15:55:03 +01:00
|
|
|
if ( FT_STRDUP( fp->value.atom, value ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
break;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
case BDF_INTEGER:
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
fp->value.l = bdf_atol_( value );
|
2002-05-18 14:03:43 +02:00
|
|
|
break;
|
|
|
|
|
|
|
|
case BDF_CARDINAL:
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
fp->value.ul = bdf_atoul_( value );
|
2002-05-18 14:03:43 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* If the property happens to be a comment, then it doesn't need */
|
|
|
|
/* to be added to the internal hash table. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( name, "COMMENT", 7 ) != 0 )
|
2010-06-08 08:37:11 +02:00
|
|
|
{
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Add the property to the font property table. */
|
2015-12-20 07:17:29 +01:00
|
|
|
error = ft_hash_str_insert( fp->name,
|
|
|
|
font->props_used,
|
|
|
|
(FT_Hash)font->internal,
|
|
|
|
memory );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
font->props_used++;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Some special cases need to be handled here. The DEFAULT_CHAR */
|
|
|
|
/* property needs to be located if it exists in the property list, the */
|
|
|
|
/* FONT_ASCENT and FONT_DESCENT need to be assigned if they are */
|
|
|
|
/* present, and the SPACING property should override the default */
|
|
|
|
/* spacing. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( name, "DEFAULT_CHAR", 12 ) == 0 )
|
2018-08-13 15:01:53 +02:00
|
|
|
font->default_char = fp->value.ul;
|
2014-11-07 07:42:33 +01:00
|
|
|
else if ( _bdf_strncmp( name, "FONT_ASCENT", 11 ) == 0 )
|
2009-07-31 17:30:22 +02:00
|
|
|
font->font_ascent = fp->value.l;
|
2014-11-07 07:42:33 +01:00
|
|
|
else if ( _bdf_strncmp( name, "FONT_DESCENT", 12 ) == 0 )
|
2009-07-31 17:30:22 +02:00
|
|
|
font->font_descent = fp->value.l;
|
2014-11-07 07:42:33 +01:00
|
|
|
else if ( _bdf_strncmp( name, "SPACING", 7 ) == 0 )
|
2002-05-18 14:03:43 +02:00
|
|
|
{
|
2009-03-12 09:07:49 +01:00
|
|
|
if ( !fp->value.atom )
|
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_add_property_: " ERRMSG8, lineno, "SPACING" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_File_Format );
|
2009-03-12 09:07:49 +01:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( fp->value.atom[0] == 'p' || fp->value.atom[0] == 'P' )
|
2002-05-18 14:03:43 +02:00
|
|
|
font->spacing = BDF_PROPORTIONAL;
|
2002-05-21 16:13:01 +02:00
|
|
|
else if ( fp->value.atom[0] == 'm' || fp->value.atom[0] == 'M' )
|
2002-05-18 14:03:43 +02:00
|
|
|
font->spacing = BDF_MONOWIDTH;
|
2002-05-21 16:13:01 +02:00
|
|
|
else if ( fp->value.atom[0] == 'c' || fp->value.atom[0] == 'C' )
|
2002-05-18 14:03:43 +02:00
|
|
|
font->spacing = BDF_CHARCELL;
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-21 23:17:43 +02:00
|
|
|
static const unsigned char nibble_mask[8] =
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
0xFF, 0x80, 0xC0, 0xE0, 0xF0, 0xF8, 0xFC, 0xFE
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2018-12-04 11:51:15 +01:00
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_parse_end_( char* line,
|
2018-12-04 11:51:15 +01:00
|
|
|
unsigned long linelen,
|
|
|
|
unsigned long lineno,
|
|
|
|
void* call_data,
|
|
|
|
void* client_data )
|
|
|
|
{
|
|
|
|
/* a no-op; we ignore everything after `ENDFONT' */
|
|
|
|
|
|
|
|
FT_UNUSED( line );
|
|
|
|
FT_UNUSED( linelen );
|
|
|
|
FT_UNUSED( lineno );
|
|
|
|
FT_UNUSED( call_data );
|
|
|
|
FT_UNUSED( client_data );
|
|
|
|
|
|
|
|
return FT_Err_Ok;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Actually parse the glyph info and bitmaps. */
|
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_parse_glyphs_( char* line,
|
2002-05-21 16:13:01 +02:00
|
|
|
unsigned long linelen,
|
|
|
|
unsigned long lineno,
|
|
|
|
void* call_data,
|
|
|
|
void* client_data )
|
|
|
|
{
|
|
|
|
int c, mask_index;
|
|
|
|
char* s;
|
|
|
|
unsigned char* bp;
|
|
|
|
unsigned long i, slen, nibbles;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_line_func_t_* next;
|
|
|
|
bdf_parse_t_* p;
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_glyph_t* glyph;
|
|
|
|
bdf_font_t* font;
|
|
|
|
|
|
|
|
FT_Memory memory;
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
FT_UNUSED( lineno ); /* only used in debug mode */
|
|
|
|
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
next = (bdf_line_func_t_ *)call_data;
|
|
|
|
p = (bdf_parse_t_ *) client_data;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
font = p->font;
|
|
|
|
memory = font->memory;
|
|
|
|
|
|
|
|
/* Check for a comment. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "COMMENT", 7 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2021-09-25 04:06:44 +02:00
|
|
|
if ( p->opts->keep_comments )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2021-09-25 04:06:44 +02:00
|
|
|
linelen -= 7;
|
|
|
|
|
|
|
|
s = line + 7;
|
|
|
|
if ( *s != 0 )
|
|
|
|
{
|
|
|
|
s++;
|
|
|
|
linelen--;
|
|
|
|
}
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_comment_( p->font, s, linelen );
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* The very first thing expected is the number of glyphs. */
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_GLYPHS_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "CHARS", 5 ) != 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG1, lineno, "CHARS" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Chars_Field );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->cnt = font->glyphs_size = bdf_atoul_( p->list.field[1] );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2015-10-17 11:51:27 +02:00
|
|
|
/* We need at least 20 bytes per glyph. */
|
|
|
|
if ( p->cnt > p->size / 20 )
|
|
|
|
{
|
2015-10-17 11:57:16 +02:00
|
|
|
p->cnt = font->glyphs_size = p->size / 20;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_glyphs_: " ACMSG17, p->cnt ));
|
2015-10-17 11:51:27 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Make sure the number of glyphs is non-zero. */
|
|
|
|
if ( p->cnt == 0 )
|
2002-05-18 14:03:43 +02:00
|
|
|
font->glyphs_size = 64;
|
|
|
|
|
2007-03-28 09:17:17 +02:00
|
|
|
/* Limit ourselves to 1,114,112 glyphs in the font (this is the */
|
|
|
|
/* number of code points available in Unicode). */
|
2011-11-25 09:44:28 +01:00
|
|
|
if ( p->cnt >= 0x110000UL )
|
2007-03-28 09:17:17 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG5, lineno, "CHARS" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_Argument );
|
2007-03-28 09:17:17 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( FT_NEW_ARRAY( font->glyphs, font->glyphs_size ) )
|
|
|
|
goto Exit;
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_GLYPHS_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for the ENDFONT field. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "ENDFONT", 7 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( p->flags & BDF_GLYPH_BITS_ )
|
2014-11-22 13:29:10 +01:00
|
|
|
{
|
|
|
|
/* Missing ENDCHAR field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG1, lineno, "ENDCHAR" ));
|
2014-11-22 13:29:10 +01:00
|
|
|
error = FT_THROW( Corrupted_Font_Glyphs );
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Sort the glyphs by encoding. */
|
|
|
|
ft_qsort( (char *)font->glyphs,
|
|
|
|
font->glyphs_used,
|
|
|
|
sizeof ( bdf_glyph_t ),
|
|
|
|
by_encoding );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags &= ~BDF_START_;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
*next = bdf_parse_end_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Check for the ENDCHAR field. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "ENDCHAR", 7 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
p->glyph_enc = 0;
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags &= ~BDF_GLYPH_BITS_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2011-06-29 09:15:54 +02:00
|
|
|
/* Check whether a glyph is being scanned but should be */
|
|
|
|
/* ignored because it is an unencoded glyph. */
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( ( p->flags & BDF_GLYPH_ ) &&
|
2002-05-21 16:13:01 +02:00
|
|
|
p->glyph_enc == -1 &&
|
|
|
|
p->opts->keep_unencoded == 0 )
|
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
/* Check for the STARTCHAR field. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "STARTCHAR", 9 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( p->flags & BDF_GLYPH_BITS_ )
|
2015-10-17 14:21:41 +02:00
|
|
|
{
|
|
|
|
/* Missing ENDCHAR field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG1, lineno, "ENDCHAR" ));
|
2015-10-17 14:21:41 +02:00
|
|
|
error = FT_THROW( Missing_Startchar_Field );
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Set the character name in the parse info first until the */
|
|
|
|
/* encoding can be checked for an unencoded character. */
|
|
|
|
FT_FREE( p->glyph_name );
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_shift_( &p->list, 1 );
|
2005-03-15 19:18:57 +01:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
s = bdf_list_join_( &p->list, ' ', &slen );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2007-05-30 15:57:02 +02:00
|
|
|
if ( !s )
|
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG8, lineno, "STARTCHAR" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_File_Format );
|
2007-05-30 15:57:02 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2021-04-26 05:33:15 +02:00
|
|
|
if ( FT_QALLOC( p->glyph_name, slen + 1 ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_MEM_COPY( p->glyph_name, s, slen + 1 );
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_GLYPH_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2011-11-27 09:21:03 +01:00
|
|
|
FT_TRACE4(( DBGMSG1, lineno, s ));
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for the ENCODING field. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "ENCODING", 8 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_GLYPH_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Missing STARTCHAR field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG1, lineno, "STARTCHAR" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Startchar_Field );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->glyph_enc = bdf_atol_( p->list.field[1] );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2012-02-26 06:18:58 +01:00
|
|
|
/* Normalize negative encoding values. The specification only */
|
|
|
|
/* allows -1, but we can be more generous here. */
|
|
|
|
if ( p->glyph_enc < -1 )
|
|
|
|
p->glyph_enc = -1;
|
|
|
|
|
2012-02-26 06:52:56 +01:00
|
|
|
/* Check for alternative encoding format. */
|
|
|
|
if ( p->glyph_enc == -1 && p->list.used > 2 )
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->glyph_enc = bdf_atol_( p->list.field[2] );
|
2012-02-26 06:52:56 +01:00
|
|
|
|
2018-08-16 04:50:06 +02:00
|
|
|
if ( p->glyph_enc < -1 || p->glyph_enc >= 0x110000L )
|
2012-12-15 09:39:41 +01:00
|
|
|
p->glyph_enc = -1;
|
|
|
|
|
2011-11-27 09:21:03 +01:00
|
|
|
FT_TRACE4(( DBGMSG2, p->glyph_enc ));
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( p->glyph_enc >= 0 )
|
|
|
|
{
|
|
|
|
/* Make sure there are enough glyphs allocated in case the */
|
|
|
|
/* number of characters happen to be wrong. */
|
|
|
|
if ( font->glyphs_used == font->glyphs_size )
|
|
|
|
{
|
|
|
|
if ( FT_RENEW_ARRAY( font->glyphs,
|
|
|
|
font->glyphs_size,
|
|
|
|
font->glyphs_size + 64 ) )
|
|
|
|
goto Exit;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
font->glyphs_size += 64;
|
|
|
|
}
|
|
|
|
|
|
|
|
glyph = font->glyphs + font->glyphs_used++;
|
|
|
|
glyph->name = p->glyph_name;
|
2018-08-13 15:01:53 +02:00
|
|
|
glyph->encoding = (unsigned long)p->glyph_enc;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* Reset the initial glyph info. */
|
2015-04-12 05:54:19 +02:00
|
|
|
p->glyph_name = NULL;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-06-29 09:15:54 +02:00
|
|
|
/* Unencoded glyph. Check whether it should */
|
|
|
|
/* be added or not. */
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( p->opts->keep_unencoded )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Allocate the next unencoded glyph. */
|
|
|
|
if ( font->unencoded_used == font->unencoded_size )
|
|
|
|
{
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( FT_RENEW_ARRAY( font->unencoded ,
|
|
|
|
font->unencoded_size,
|
|
|
|
font->unencoded_size + 4 ) )
|
|
|
|
goto Exit;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
font->unencoded_size += 4;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
glyph = font->unencoded + font->unencoded_used;
|
|
|
|
glyph->name = p->glyph_name;
|
2018-08-13 15:01:53 +02:00
|
|
|
glyph->encoding = font->unencoded_used++;
|
2015-11-25 07:53:49 +01:00
|
|
|
|
|
|
|
/* Reset the initial glyph info. */
|
|
|
|
p->glyph_name = NULL;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
else
|
2015-11-15 04:45:42 +01:00
|
|
|
{
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Free up the glyph name if the unencoded shouldn't be */
|
|
|
|
/* kept. */
|
|
|
|
FT_FREE( p->glyph_name );
|
2015-11-15 04:45:42 +01:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Clear the flags that might be added when width and height are */
|
|
|
|
/* checked for consistency. */
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags &= ~( BDF_GLYPH_WIDTH_CHECK_ | BDF_GLYPH_HEIGHT_CHECK_ );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_ENCODING_;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2018-06-17 20:27:42 +02:00
|
|
|
if ( !( p->flags & BDF_ENCODING_ ) )
|
|
|
|
goto Missing_Encoding;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Point at the glyph being constructed. */
|
|
|
|
if ( p->glyph_enc == -1 )
|
|
|
|
glyph = font->unencoded + ( font->unencoded_used - 1 );
|
|
|
|
else
|
|
|
|
glyph = font->glyphs + ( font->glyphs_used - 1 );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2011-06-29 09:15:54 +02:00
|
|
|
/* Check whether a bitmap is being constructed. */
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( p->flags & BDF_BITMAP_ )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* If there are more rows than are specified in the glyph metrics, */
|
|
|
|
/* ignore the remaining lines. */
|
2002-05-21 23:17:43 +02:00
|
|
|
if ( p->row >= (unsigned long)glyph->bbx.height )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_GLYPH_HEIGHT_CHECK_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_glyphs_: " ACMSG13, glyph->encoding ));
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_GLYPH_HEIGHT_CHECK_;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Only collect the number of nibbles indicated by the glyph */
|
|
|
|
/* metrics. If there are more columns, they are simply ignored. */
|
|
|
|
nibbles = glyph->bpr << 1;
|
|
|
|
bp = glyph->bitmap + p->row * glyph->bpr;
|
|
|
|
|
2006-02-23 15:50:13 +01:00
|
|
|
for ( i = 0; i < nibbles; i++ )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
c = line[i];
|
2012-03-22 07:05:40 +01:00
|
|
|
if ( !sbitset( hdigits, c ) )
|
2012-02-25 10:23:04 +01:00
|
|
|
break;
|
2002-05-22 07:41:06 +02:00
|
|
|
*bp = (FT_Byte)( ( *bp << 4 ) + a2i[c] );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( i + 1 < nibbles && ( i & 1 ) )
|
|
|
|
*++bp = 0;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2012-02-25 10:23:04 +01:00
|
|
|
/* If any line has not enough columns, */
|
|
|
|
/* indicate they have been padded with zero bits. */
|
|
|
|
if ( i < nibbles &&
|
2016-01-12 22:20:06 +01:00
|
|
|
!( p->flags & BDF_GLYPH_WIDTH_CHECK_ ) )
|
2012-02-25 10:23:04 +01:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_glyphs_: " ACMSG16, glyph->encoding ));
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_GLYPH_WIDTH_CHECK_;
|
2012-02-25 10:23:04 +01:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Remove possible garbage at the right. */
|
|
|
|
mask_index = ( glyph->bbx.width * p->font->bpp ) & 7;
|
2006-02-23 13:37:18 +01:00
|
|
|
if ( glyph->bbx.width )
|
|
|
|
*bp &= nibble_mask[mask_index];
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* If any line has extra columns, indicate they have been removed. */
|
2012-03-01 16:43:20 +01:00
|
|
|
if ( i == nibbles &&
|
2012-03-22 07:05:40 +01:00
|
|
|
sbitset( hdigits, line[nibbles] ) &&
|
2016-01-12 22:20:06 +01:00
|
|
|
!( p->flags & BDF_GLYPH_WIDTH_CHECK_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_glyphs_: " ACMSG14, glyph->encoding ));
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_GLYPH_WIDTH_CHECK_;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p->row++;
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Expect the SWIDTH (scalable width) field next. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "SWIDTH", 6 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
glyph->swidth = bdf_atous_( p->list.field[1] );
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_SWIDTH_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2021-09-23 02:20:04 +02:00
|
|
|
/* Expect the DWIDTH (device width) field next. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "DWIDTH", 6 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2005-03-15 19:18:57 +01:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
glyph->dwidth = bdf_atous_( p->list.field[1] );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_SWIDTH_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Missing SWIDTH field. Emit an auto correction message and set */
|
|
|
|
/* the scalable width from the device width. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_glyphs_: " ACMSG9, lineno ));
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-29 00:38:05 +02:00
|
|
|
glyph->swidth = (unsigned short)FT_MulDiv(
|
|
|
|
glyph->dwidth, 72000L,
|
|
|
|
(FT_Long)( font->point_size *
|
|
|
|
font->resolution_x ) );
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_DWIDTH_;
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Expect the BBX field next. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "BBX", 3 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
glyph->bbx.width = bdf_atous_( p->list.field[1] );
|
|
|
|
glyph->bbx.height = bdf_atous_( p->list.field[2] );
|
|
|
|
glyph->bbx.x_offset = bdf_atos_( p->list.field[3] );
|
|
|
|
glyph->bbx.y_offset = bdf_atos_( p->list.field[4] );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Generate the ascent and descent of the character. */
|
2002-05-22 07:41:06 +02:00
|
|
|
glyph->bbx.ascent = (short)( glyph->bbx.height + glyph->bbx.y_offset );
|
|
|
|
glyph->bbx.descent = (short)( -glyph->bbx.y_offset );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Determine the overall font bounding box as the characters are */
|
|
|
|
/* loaded so corrections can be done later if indicated. */
|
2004-03-05 10:26:24 +01:00
|
|
|
p->maxas = (short)FT_MAX( glyph->bbx.ascent, p->maxas );
|
|
|
|
p->maxds = (short)FT_MAX( glyph->bbx.descent, p->maxds );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-21 23:17:43 +02:00
|
|
|
p->rbearing = (short)( glyph->bbx.width + glyph->bbx.x_offset );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2004-03-05 10:26:24 +01:00
|
|
|
p->maxrb = (short)FT_MAX( p->rbearing, p->maxrb );
|
|
|
|
p->minlb = (short)FT_MIN( glyph->bbx.x_offset, p->minlb );
|
|
|
|
p->maxlb = (short)FT_MAX( glyph->bbx.x_offset, p->maxlb );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_DWIDTH_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Missing DWIDTH field. Emit an auto correction message and set */
|
|
|
|
/* the device width to the glyph width. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_glyphs_: " ACMSG10, lineno ));
|
2002-05-21 16:13:01 +02:00
|
|
|
glyph->dwidth = glyph->bbx.width;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* If the BDF_CORRECT_METRICS flag is set, then adjust the SWIDTH */
|
|
|
|
/* value if necessary. */
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( p->opts->correct_metrics )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Determine the point size of the glyph. */
|
2002-05-29 00:38:05 +02:00
|
|
|
unsigned short sw = (unsigned short)FT_MulDiv(
|
|
|
|
glyph->dwidth, 72000L,
|
|
|
|
(FT_Long)( font->point_size *
|
|
|
|
font->resolution_x ) );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
if ( sw != glyph->swidth )
|
|
|
|
{
|
|
|
|
glyph->swidth = sw;
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_SWIDTH_ADJ_;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_BBX_;
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* And finally, gather up the bitmap. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "BITMAP", 6 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2006-03-26 09:19:07 +02:00
|
|
|
unsigned long bitmap_size;
|
|
|
|
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_BBX_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Missing BBX field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG1, lineno, "BBX" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Bbx_Field );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* Allocate enough space for the bitmap. */
|
2011-11-25 09:44:28 +01:00
|
|
|
glyph->bpr = ( glyph->bbx.width * p->font->bpp + 7 ) >> 3;
|
2006-03-26 09:19:07 +02:00
|
|
|
|
|
|
|
bitmap_size = glyph->bpr * glyph->bbx.height;
|
2012-03-08 20:11:37 +01:00
|
|
|
if ( glyph->bpr > 0xFFFFU || bitmap_size > 0xFFFFU )
|
2006-03-26 09:19:07 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG4, lineno ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Bbx_Too_Big );
|
2006-03-26 09:19:07 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
glyph->bytes = (unsigned short)bitmap_size;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2021-04-26 05:33:15 +02:00
|
|
|
if ( FT_ALLOC( glyph->bitmap, glyph->bytes ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
p->row = 0;
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_BITMAP_;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG9, lineno ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_File_Format );
|
2012-03-01 08:55:40 +01:00
|
|
|
goto Exit;
|
|
|
|
|
|
|
|
Missing_Encoding:
|
|
|
|
/* Missing ENCODING field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG1, lineno, "ENCODING" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Encoding_Field );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
Exit:
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( error && ( p->flags & BDF_GLYPH_ ) )
|
2010-06-19 16:08:31 +02:00
|
|
|
FT_FREE( p->glyph_name );
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
return error;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Load the font properties. */
|
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_parse_properties_( char* line,
|
2002-05-21 16:13:01 +02:00
|
|
|
unsigned long linelen,
|
|
|
|
unsigned long lineno,
|
|
|
|
void* call_data,
|
|
|
|
void* client_data )
|
|
|
|
{
|
|
|
|
unsigned long vlen;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_line_func_t_* next;
|
|
|
|
bdf_parse_t_* p;
|
2002-05-21 16:13:01 +02:00
|
|
|
char* name;
|
|
|
|
char* value;
|
2023-05-23 13:13:56 +02:00
|
|
|
char nbuf[BUFSIZE];
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
FT_UNUSED( lineno );
|
|
|
|
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
next = (bdf_line_func_t_ *)call_data;
|
|
|
|
p = (bdf_parse_t_ *) client_data;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* Check for the end of the properties. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "ENDPROPERTIES", 13 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* If the FONT_ASCENT or FONT_DESCENT properties have not been */
|
|
|
|
/* encountered yet, then make sure they are added as properties and */
|
|
|
|
/* make sure they are set from the font bounding box info. */
|
|
|
|
/* */
|
|
|
|
/* This is *always* done regardless of the options, because X11 */
|
|
|
|
/* requires these two fields to compile fonts. */
|
2003-04-25 07:35:04 +02:00
|
|
|
if ( bdf_get_font_property( p->font, "FONT_ASCENT" ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
p->font->font_ascent = p->font->bbx.ascent;
|
2023-05-23 13:13:56 +02:00
|
|
|
ft_snprintf( nbuf, BUFSIZE, "%hd", p->font->bbx.ascent );
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_property_( p->font, "FONT_ASCENT",
|
2011-11-25 09:44:28 +01:00
|
|
|
nbuf, lineno );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_properties_: " ACMSG1, p->font->bbx.ascent ));
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2003-04-25 07:35:04 +02:00
|
|
|
if ( bdf_get_font_property( p->font, "FONT_DESCENT" ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
p->font->font_descent = p->font->bbx.descent;
|
2023-05-23 13:13:56 +02:00
|
|
|
ft_snprintf( nbuf, BUFSIZE, "%hd", p->font->bbx.descent );
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_property_( p->font, "FONT_DESCENT",
|
2011-11-25 09:44:28 +01:00
|
|
|
nbuf, lineno );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_properties_: " ACMSG2, p->font->bbx.descent ));
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags &= ~BDF_PROPS_;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
*next = bdf_parse_glyphs_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Ignore the _XFREE86_GLYPH_RANGES properties. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "_XFREE86_GLYPH_RANGES", 21 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Handle COMMENT fields and properties in a special way to preserve */
|
|
|
|
/* the spacing. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "COMMENT", 7 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2002-05-18 14:03:43 +02:00
|
|
|
name = value = line;
|
|
|
|
value += 7;
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( *value )
|
2002-05-18 14:03:43 +02:00
|
|
|
*value++ = 0;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_property_( p->font, name, value, lineno );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
}
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
else if ( bdf_is_atom_( line, linelen, &name, &value, p->font ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_property_( p->font, name, value, lineno );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
name = p->list.field[0];
|
2002-05-21 16:13:01 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_shift_( &p->list, 1 );
|
|
|
|
value = bdf_list_join_( &p->list, ' ', &vlen );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_property_( p->font, name, value, lineno );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
Exit:
|
|
|
|
return error;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Load the font header. */
|
|
|
|
static FT_Error
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_parse_start_( char* line,
|
2002-05-21 16:13:01 +02:00
|
|
|
unsigned long linelen,
|
|
|
|
unsigned long lineno,
|
|
|
|
void* call_data,
|
|
|
|
void* client_data )
|
|
|
|
{
|
|
|
|
unsigned long slen;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_line_func_t_* next;
|
|
|
|
bdf_parse_t_* p;
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_font_t* font;
|
|
|
|
char *s;
|
|
|
|
|
2002-05-29 01:40:37 +02:00
|
|
|
FT_Memory memory = NULL;
|
2013-03-14 11:21:17 +01:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
FT_UNUSED( lineno ); /* only used in debug mode */
|
|
|
|
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
next = (bdf_line_func_t_ *)call_data;
|
|
|
|
p = (bdf_parse_t_ *) client_data;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
if ( p->font )
|
2002-05-18 14:03:43 +02:00
|
|
|
memory = p->font->memory;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Check for a comment. This is done to handle those fonts that have */
|
|
|
|
/* comments before the STARTFONT line for some reason. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "COMMENT", 7 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( p->opts->keep_comments && p->font )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
linelen -= 7;
|
|
|
|
|
|
|
|
s = line + 7;
|
|
|
|
if ( *s != 0 )
|
|
|
|
{
|
|
|
|
s++;
|
|
|
|
linelen--;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_comment_( p->font, s, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_START_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
memory = p->memory;
|
|
|
|
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "STARTFONT", 9 ) != 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2011-12-08 11:22:07 +01:00
|
|
|
/* we don't emit an error message since this code gets */
|
|
|
|
/* explicitly caught one level higher */
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Startfont_Field );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags = BDF_START_;
|
2021-09-24 05:10:26 +02:00
|
|
|
font = p->font = NULL;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
if ( FT_NEW( font ) )
|
|
|
|
goto Exit;
|
|
|
|
p->font = font;
|
|
|
|
|
|
|
|
font->memory = p->memory;
|
|
|
|
|
|
|
|
{ /* setup */
|
2009-09-12 17:50:14 +02:00
|
|
|
size_t i;
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_property_t* prop;
|
|
|
|
|
|
|
|
|
2015-12-22 05:39:58 +01:00
|
|
|
error = ft_hash_str_init( &(font->proptbl), memory );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
for ( i = 0, prop = (bdf_property_t*)bdf_properties_;
|
|
|
|
i < num_bdf_properties_; i++, prop++ )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2015-12-20 07:17:29 +01:00
|
|
|
error = ft_hash_str_insert( prop->name, i,
|
|
|
|
&(font->proptbl), memory );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-16 05:09:53 +01:00
|
|
|
if ( FT_QALLOC( p->font->internal, sizeof ( FT_HashRec ) ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2015-12-22 05:39:58 +01:00
|
|
|
error = ft_hash_str_init( (FT_Hash)p->font->internal, memory );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2004-06-22 14:28:17 +02:00
|
|
|
p->font->spacing = p->opts->font_spacing;
|
2018-08-13 15:01:53 +02:00
|
|
|
p->font->default_char = ~0UL;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for the start of the properties. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "STARTPROPERTIES", 15 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_FONT_BBX_ ) )
|
2010-06-23 10:00:52 +02:00
|
|
|
{
|
|
|
|
/* Missing the FONTBOUNDINGBOX field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_start_: " ERRMSG1, lineno, "FONTBOUNDINGBOX" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Fontboundingbox_Field );
|
2010-06-23 10:00:52 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
2016-06-09 06:53:48 +02:00
|
|
|
|
2009-03-12 09:07:49 +01:00
|
|
|
/* at this point, `p->font' can't be NULL */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->cnt = p->font->props_size = bdf_atoul_( p->list.field[1] );
|
2016-06-09 06:53:48 +02:00
|
|
|
/* We need at least 4 bytes per property. */
|
|
|
|
if ( p->cnt > p->size / 4 )
|
|
|
|
{
|
|
|
|
p->font->props_size = 0;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_glyphs_: " ERRMSG5, lineno, "STARTPROPERTIES" ));
|
2016-06-09 06:53:48 +02:00
|
|
|
error = FT_THROW( Invalid_Argument );
|
|
|
|
goto Exit;
|
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
if ( FT_NEW_ARRAY( p->font->props, p->cnt ) )
|
2012-12-15 01:34:41 +01:00
|
|
|
{
|
|
|
|
p->font->props_size = 0;
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2012-12-15 01:34:41 +01:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_PROPS_;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
*next = bdf_parse_properties_;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for the FONTBOUNDINGBOX field. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "FONTBOUNDINGBOX", 15 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_SIZE_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Missing the SIZE field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_start_: " ERRMSG1, lineno, "SIZE" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Size_Field );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->font->bbx.width = bdf_atous_( p->list.field[1] );
|
|
|
|
p->font->bbx.height = bdf_atous_( p->list.field[2] );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->font->bbx.x_offset = bdf_atos_( p->list.field[3] );
|
|
|
|
p->font->bbx.y_offset = bdf_atos_( p->list.field[4] );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-29 01:40:37 +02:00
|
|
|
p->font->bbx.ascent = (short)( p->font->bbx.height +
|
2002-05-21 23:17:43 +02:00
|
|
|
p->font->bbx.y_offset );
|
|
|
|
|
|
|
|
p->font->bbx.descent = (short)( -p->font->bbx.y_offset );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_FONT_BBX_;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* The next thing to check for is the FONT field. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "FONT", 4 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_shift_( &p->list, 1 );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
s = bdf_list_join_( &p->list, ' ', &slen );
|
2007-06-02 00:16:43 +02:00
|
|
|
|
|
|
|
if ( !s )
|
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_start_: " ERRMSG8, lineno, "FONT" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_File_Format );
|
2007-06-02 00:16:43 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
2010-06-23 10:00:52 +02:00
|
|
|
/* Allowing multiple `FONT' lines (which is invalid) doesn't hurt... */
|
|
|
|
FT_FREE( p->font->name );
|
|
|
|
|
2021-04-26 05:33:15 +02:00
|
|
|
if ( FT_QALLOC( p->font->name, slen + 1 ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
FT_MEM_COPY( p->font->name, s, slen + 1 );
|
|
|
|
|
|
|
|
/* If the font name is an XLFD name, set the spacing to the one in */
|
|
|
|
/* the font name. If there is no spacing fall back on the default. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_set_default_spacing_( p->font, p->opts, lineno );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_FONT_NAME_;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check for the SIZE field. */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "SIZE", 4 ) == 0 )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_FONT_NAME_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* Missing the FONT field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_start_: " ERRMSG1, lineno, "FONT" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Font_Field );
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_list_split_( &p->list, " +", line, linelen );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->font->point_size = bdf_atoul_( p->list.field[1] );
|
|
|
|
p->font->resolution_x = bdf_atoul_( p->list.field[2] );
|
|
|
|
p->font->resolution_y = bdf_atoul_( p->list.field[3] );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
/* Check for the bits per pixel field. */
|
|
|
|
if ( p->list.used == 5 )
|
|
|
|
{
|
2015-06-25 05:31:17 +02:00
|
|
|
unsigned short bpp;
|
2002-06-03 22:01:23 +02:00
|
|
|
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bpp = bdf_atous_( p->list.field[4] );
|
2002-06-03 22:01:23 +02:00
|
|
|
|
2015-06-25 05:31:17 +02:00
|
|
|
/* Only values 1, 2, 4, 8 are allowed for greymap fonts. */
|
|
|
|
if ( bpp > 4 )
|
|
|
|
p->font->bpp = 8;
|
|
|
|
else if ( bpp > 2 )
|
|
|
|
p->font->bpp = 4;
|
2015-06-25 05:57:19 +02:00
|
|
|
else if ( bpp > 1 )
|
|
|
|
p->font->bpp = 2;
|
2015-06-25 05:31:17 +02:00
|
|
|
else
|
2015-06-25 05:57:19 +02:00
|
|
|
p->font->bpp = 1;
|
2002-06-03 22:01:23 +02:00
|
|
|
|
2015-06-25 05:31:17 +02:00
|
|
|
if ( p->font->bpp != bpp )
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_start_: " ACMSG11, p->font->bpp ));
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
p->font->bpp = 1;
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
p->flags |= BDF_SIZE_;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
goto Exit;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2010-06-24 07:40:49 +02:00
|
|
|
/* Check for the CHARS field -- font properties are optional */
|
2014-11-07 07:42:33 +01:00
|
|
|
if ( _bdf_strncmp( line, "CHARS", 5 ) == 0 )
|
2010-06-24 07:40:49 +02:00
|
|
|
{
|
2023-05-23 13:13:56 +02:00
|
|
|
char nbuf[BUFSIZE];
|
2010-06-24 07:40:49 +02:00
|
|
|
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_FONT_BBX_ ) )
|
2010-06-24 07:40:49 +02:00
|
|
|
{
|
|
|
|
/* Missing the FONTBOUNDINGBOX field. */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_start_: " ERRMSG1, lineno, "FONTBOUNDINGBOX" ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Missing_Fontboundingbox_Field );
|
2010-06-24 07:40:49 +02:00
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Add the two standard X11 properties which are required */
|
|
|
|
/* for compiling fonts. */
|
|
|
|
p->font->font_ascent = p->font->bbx.ascent;
|
2023-05-23 13:13:56 +02:00
|
|
|
ft_snprintf( nbuf, BUFSIZE, "%hd", p->font->bbx.ascent );
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_property_( p->font, "FONT_ASCENT",
|
2011-11-25 09:44:28 +01:00
|
|
|
nbuf, lineno );
|
2010-06-24 07:40:49 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_properties_: " ACMSG1, p->font->bbx.ascent ));
|
2010-06-24 07:40:49 +02:00
|
|
|
|
|
|
|
p->font->font_descent = p->font->bbx.descent;
|
2023-05-23 13:13:56 +02:00
|
|
|
ft_snprintf( nbuf, BUFSIZE, "%hd", p->font->bbx.descent );
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_add_property_( p->font, "FONT_DESCENT",
|
2011-11-25 09:44:28 +01:00
|
|
|
nbuf, lineno );
|
2010-06-24 07:40:49 +02:00
|
|
|
if ( error )
|
|
|
|
goto Exit;
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_TRACE2(( "bdf_parse_properties_: " ACMSG2, p->font->bbx.descent ));
|
2010-06-24 07:40:49 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
*next = bdf_parse_glyphs_;
|
2010-06-24 07:40:49 +02:00
|
|
|
|
|
|
|
/* A special return value. */
|
|
|
|
error = -1;
|
|
|
|
goto Exit;
|
|
|
|
}
|
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
FT_ERROR(( "bdf_parse_start_: " ERRMSG9, lineno ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_File_Format );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
Exit:
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2018-06-03 09:01:17 +02:00
|
|
|
/**************************************************************************
|
|
|
|
*
|
|
|
|
* API.
|
|
|
|
*
|
|
|
|
*/
|
2002-05-21 16:13:01 +02:00
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( FT_Error )
|
|
|
|
bdf_load_font( FT_Stream stream,
|
2021-09-03 04:52:21 +02:00
|
|
|
FT_Memory memory,
|
2002-05-21 16:13:01 +02:00
|
|
|
bdf_options_t* opts,
|
|
|
|
bdf_font_t* *font )
|
|
|
|
{
|
2006-08-27 13:26:18 +02:00
|
|
|
unsigned long lineno = 0; /* make compiler happy */
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_parse_t_ *p = NULL;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2021-10-19 22:59:46 +02:00
|
|
|
FT_Error error = FT_Err_Ok;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2005-03-15 19:18:57 +01:00
|
|
|
if ( FT_NEW( p ) )
|
2002-10-02 19:04:58 +02:00
|
|
|
goto Exit;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
p->opts = (bdf_options_t*)( opts ? opts : &bdf_opts_ );
|
2002-10-02 19:04:58 +02:00
|
|
|
p->minlb = 32767;
|
2015-10-17 11:51:27 +02:00
|
|
|
p->size = stream->size;
|
2021-09-03 04:52:21 +02:00
|
|
|
p->memory = memory; /* only during font creation */
|
2002-05-18 14:03:43 +02:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_init_( &p->list, memory );
|
2005-03-15 19:18:57 +01:00
|
|
|
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
error = bdf_readstream_( stream, bdf_parse_start_,
|
2002-10-02 19:04:58 +02:00
|
|
|
(void *)p, &lineno );
|
2002-05-21 16:13:01 +02:00
|
|
|
if ( error )
|
2006-06-08 09:32:56 +02:00
|
|
|
goto Fail;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( p->font )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
/* If the font is not proportional, set the font's monowidth */
|
|
|
|
/* field to the width of the font bounding box. */
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->font->spacing != BDF_PROPORTIONAL )
|
|
|
|
p->font->monowidth = p->font->bbx.width;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* If the number of glyphs loaded is not that of the original count, */
|
|
|
|
/* indicate the difference. */
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->cnt != p->font->glyphs_used + p->font->unencoded_used )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2002-10-02 19:04:58 +02:00
|
|
|
FT_TRACE2(( "bdf_load_font: " ACMSG15, p->cnt,
|
|
|
|
p->font->glyphs_used + p->font->unencoded_used ));
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Once the font has been loaded, adjust the overall font metrics if */
|
|
|
|
/* necessary. */
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->opts->correct_metrics != 0 &&
|
|
|
|
( p->font->glyphs_used > 0 || p->font->unencoded_used > 0 ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->maxrb - p->minlb != p->font->bbx.width )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
FT_TRACE2(( "bdf_load_font: " ACMSG3,
|
2002-10-02 19:04:58 +02:00
|
|
|
p->font->bbx.width, p->maxrb - p->minlb ));
|
|
|
|
p->font->bbx.width = (unsigned short)( p->maxrb - p->minlb );
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->font->bbx.x_offset != p->minlb )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
FT_TRACE2(( "bdf_load_font: " ACMSG4,
|
2002-10-02 19:04:58 +02:00
|
|
|
p->font->bbx.x_offset, p->minlb ));
|
|
|
|
p->font->bbx.x_offset = p->minlb;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->font->bbx.ascent != p->maxas )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
FT_TRACE2(( "bdf_load_font: " ACMSG5,
|
2002-10-02 19:04:58 +02:00
|
|
|
p->font->bbx.ascent, p->maxas ));
|
|
|
|
p->font->bbx.ascent = p->maxas;
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->font->bbx.descent != p->maxds )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
FT_TRACE2(( "bdf_load_font: " ACMSG6,
|
2002-10-02 19:04:58 +02:00
|
|
|
p->font->bbx.descent, p->maxds ));
|
|
|
|
p->font->bbx.descent = p->maxds;
|
|
|
|
p->font->bbx.y_offset = (short)( -p->maxds );
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
|
|
|
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p->maxas + p->maxds != p->font->bbx.height )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
|
|
|
FT_TRACE2(( "bdf_load_font: " ACMSG7,
|
2002-10-02 19:04:58 +02:00
|
|
|
p->font->bbx.height, p->maxas + p->maxds ));
|
|
|
|
p->font->bbx.height = (unsigned short)( p->maxas + p->maxds );
|
2002-05-18 14:03:43 +02:00
|
|
|
}
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( p->flags & BDF_SWIDTH_ADJ_ )
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_TRACE2(( "bdf_load_font: " ACMSG8 ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( p->flags & BDF_START_ )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2011-11-25 09:44:28 +01:00
|
|
|
/* The ENDFONT field was never reached or did not exist. */
|
2016-01-12 22:20:06 +01:00
|
|
|
if ( !( p->flags & BDF_GLYPHS_ ) )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2011-11-25 09:44:28 +01:00
|
|
|
/* Error happened while parsing header. */
|
|
|
|
FT_ERROR(( "bdf_load_font: " ERRMSG2, lineno ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Corrupted_Font_Header );
|
2015-10-15 23:50:16 +02:00
|
|
|
goto Fail;
|
2011-11-25 09:44:28 +01:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* Error happened when parsing glyphs. */
|
|
|
|
FT_ERROR(( "bdf_load_font: " ERRMSG3, lineno ));
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Corrupted_Font_Glyphs );
|
2015-10-15 23:50:16 +02:00
|
|
|
goto Fail;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-09-25 04:06:44 +02:00
|
|
|
if ( !p->font && !error )
|
2013-03-14 10:27:35 +01:00
|
|
|
error = FT_THROW( Invalid_File_Format );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-10-02 19:04:58 +02:00
|
|
|
*font = p->font;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
Exit:
|
2002-10-02 19:04:58 +02:00
|
|
|
if ( p )
|
|
|
|
{
|
Avoid reserved identifiers that are globally defined.
This is mandated by the C99 standard, and clang 15 produces zillions of
warnings otherwise.
* devel/ftoption.h, include/freetype/config/ftoption.h,
include/freetype/internal/ftmemory.h, src/autofit/afhints.h,
src/autofit/afmodule.c, src/autofit/aftypes.h, src/base/ftadvanc.c,
src/base/ftdbgmem.c, src/base/ftstream.c, src/bdf/bdflib.c,
src/truetype/ttinterp.c: Replace identifiers of the form `_foo` with `foo_`.
2023-02-07 07:37:07 +01:00
|
|
|
bdf_list_done_( &p->list );
|
2005-03-15 19:18:57 +01:00
|
|
|
|
2015-11-25 07:53:49 +01:00
|
|
|
FT_FREE( p->glyph_name );
|
2002-10-02 19:04:58 +02:00
|
|
|
FT_FREE( p );
|
|
|
|
}
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
return error;
|
2006-06-08 09:32:56 +02:00
|
|
|
|
|
|
|
Fail:
|
|
|
|
bdf_free_font( p->font );
|
|
|
|
|
|
|
|
FT_FREE( p->font );
|
|
|
|
|
|
|
|
goto Exit;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_LOCAL_DEF( void )
|
|
|
|
bdf_free_font( bdf_font_t* font )
|
|
|
|
{
|
|
|
|
bdf_property_t* prop;
|
|
|
|
unsigned long i;
|
|
|
|
bdf_glyph_t* glyphs;
|
|
|
|
FT_Memory memory;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( font == NULL )
|
2002-05-21 16:13:01 +02:00
|
|
|
return;
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
memory = font->memory;
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_FREE( font->name );
|
|
|
|
|
|
|
|
/* Free up the internal hash table of property names. */
|
|
|
|
if ( font->internal )
|
|
|
|
{
|
2015-12-22 05:39:58 +01:00
|
|
|
ft_hash_str_free( (FT_Hash)font->internal, memory );
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_FREE( font->internal );
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Free up the comment info. */
|
|
|
|
FT_FREE( font->comments );
|
|
|
|
|
|
|
|
/* Free up the properties. */
|
|
|
|
for ( i = 0; i < font->props_size; i++ )
|
|
|
|
{
|
|
|
|
if ( font->props[i].format == BDF_ATOM )
|
|
|
|
FT_FREE( font->props[i].value.atom );
|
|
|
|
}
|
|
|
|
|
|
|
|
FT_FREE( font->props );
|
|
|
|
|
|
|
|
/* Free up the character info. */
|
|
|
|
for ( i = 0, glyphs = font->glyphs;
|
|
|
|
i < font->glyphs_used; i++, glyphs++ )
|
|
|
|
{
|
|
|
|
FT_FREE( glyphs->name );
|
|
|
|
FT_FREE( glyphs->bitmap );
|
|
|
|
}
|
|
|
|
|
|
|
|
for ( i = 0, glyphs = font->unencoded; i < font->unencoded_used;
|
|
|
|
i++, glyphs++ )
|
|
|
|
{
|
|
|
|
FT_FREE( glyphs->name );
|
|
|
|
FT_FREE( glyphs->bitmap );
|
|
|
|
}
|
|
|
|
|
|
|
|
FT_FREE( font->glyphs );
|
|
|
|
FT_FREE( font->unencoded );
|
|
|
|
|
2002-05-18 14:03:43 +02:00
|
|
|
/* bdf_cleanup */
|
2015-12-22 05:39:58 +01:00
|
|
|
ft_hash_str_free( &(font->proptbl), memory );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* Free up the user defined properties. */
|
2010-06-24 07:36:21 +02:00
|
|
|
for ( prop = font->user_props, i = 0;
|
|
|
|
i < font->nuser_props; i++, prop++ )
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_FREE( prop->name );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_FREE( font->user_props );
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
/* FREE( font ); */ /* XXX Fixme */
|
|
|
|
}
|
2002-05-18 14:03:43 +02:00
|
|
|
|
|
|
|
|
2002-05-21 16:13:01 +02:00
|
|
|
FT_LOCAL_DEF( bdf_property_t * )
|
|
|
|
bdf_get_font_property( bdf_font_t* font,
|
2003-04-25 07:35:04 +02:00
|
|
|
const char* name )
|
2002-05-21 16:13:01 +02:00
|
|
|
{
|
2015-12-20 09:03:15 +01:00
|
|
|
size_t* propid;
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2002-05-18 14:03:43 +02:00
|
|
|
|
2021-09-24 05:10:26 +02:00
|
|
|
if ( font == NULL || font->props_size == 0 || name == NULL || *name == 0 )
|
2002-05-18 14:03:43 +02:00
|
|
|
return 0;
|
|
|
|
|
2015-12-20 09:03:15 +01:00
|
|
|
propid = ft_hash_str_lookup( name, (FT_Hash)font->internal );
|
2002-05-21 16:13:01 +02:00
|
|
|
|
2015-12-20 09:03:15 +01:00
|
|
|
return propid ? ( font->props + *propid ) : 0;
|
2002-05-21 16:13:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* END */
|