2005-03-03 18:09:08 +01:00
|
|
|
/***************************************************************************/
|
|
|
|
/* */
|
|
|
|
/* afmodule.c */
|
|
|
|
/* */
|
|
|
|
/* Auto-fitter module implementation (body). */
|
|
|
|
/* */
|
2013-03-14 10:27:35 +01:00
|
|
|
/* Copyright 2003-2006, 2009, 2011-2013 by */
|
2005-03-03 18:09:08 +01:00
|
|
|
/* David Turner, Robert Wilhelm, and Werner Lemberg. */
|
|
|
|
/* */
|
|
|
|
/* This file is part of the FreeType project, and may only be used, */
|
|
|
|
/* modified, and distributed under the terms of the FreeType project */
|
|
|
|
/* license, LICENSE.TXT. By continuing to use, modify, or distribute */
|
|
|
|
/* this file you indicate that you have read the license and */
|
|
|
|
/* understand and accept it fully. */
|
|
|
|
/* */
|
|
|
|
/***************************************************************************/
|
|
|
|
|
|
|
|
|
2012-10-20 08:34:57 +02:00
|
|
|
#include "afglobal.h"
|
2004-01-16 10:51:00 +01:00
|
|
|
#include "afmodule.h"
|
2004-02-01 17:59:06 +01:00
|
|
|
#include "afloader.h"
|
2012-10-20 08:34:57 +02:00
|
|
|
#include "aferrors.h"
|
2009-04-05 17:23:38 +02:00
|
|
|
#include "afpic.h"
|
2005-03-03 18:09:08 +01:00
|
|
|
|
2011-04-18 19:05:28 +02:00
|
|
|
#ifdef FT_DEBUG_AUTOFIT
|
2006-11-03 10:40:12 +01:00
|
|
|
int _af_debug_disable_horz_hints;
|
|
|
|
int _af_debug_disable_vert_hints;
|
|
|
|
int _af_debug_disable_blue_hints;
|
2006-11-02 17:37:35 +01:00
|
|
|
void* _af_debug_hints;
|
2006-09-26 17:42:44 +02:00
|
|
|
#endif
|
|
|
|
|
2004-02-01 17:59:06 +01:00
|
|
|
#include FT_INTERNAL_OBJECTS_H
|
2012-09-14 11:57:36 +02:00
|
|
|
#include FT_INTERNAL_DEBUG_H
|
2012-09-01 22:31:43 +02:00
|
|
|
#include FT_AUTOHINTER_H
|
2012-08-31 00:20:29 +02:00
|
|
|
#include FT_SERVICE_PROPERTIES_H
|
|
|
|
|
|
|
|
|
2012-09-14 11:57:36 +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. */
|
|
|
|
/* */
|
|
|
|
#undef FT_COMPONENT
|
|
|
|
#define FT_COMPONENT trace_afmodule
|
|
|
|
|
|
|
|
|
2012-09-18 23:31:05 +02:00
|
|
|
FT_Error
|
|
|
|
af_property_get_face_globals( FT_Face face,
|
|
|
|
AF_FaceGlobals* aglobals,
|
|
|
|
AF_Module module )
|
|
|
|
{
|
|
|
|
FT_Error error = AF_Err_Ok;
|
|
|
|
AF_FaceGlobals globals;
|
|
|
|
|
|
|
|
|
|
|
|
if ( !face )
|
2013-03-14 10:27:35 +01:00
|
|
|
return FT_THROW( Invalid_Argument );
|
2012-09-18 23:31:05 +02:00
|
|
|
|
|
|
|
globals = (AF_FaceGlobals)face->autohint.data;
|
|
|
|
if ( !globals )
|
|
|
|
{
|
|
|
|
/* trigger computation of the global script data */
|
|
|
|
/* in case it hasn't been done yet */
|
|
|
|
error = af_face_globals_new( face, &globals, module );
|
|
|
|
if ( !error )
|
|
|
|
{
|
|
|
|
face->autohint.data =
|
|
|
|
(FT_Pointer)globals;
|
|
|
|
face->autohint.finalizer =
|
|
|
|
(FT_Generic_Finalizer)af_face_globals_free;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( !error )
|
|
|
|
*aglobals = globals;
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2012-08-31 00:20:29 +02:00
|
|
|
FT_Error
|
2012-09-18 15:23:41 +02:00
|
|
|
af_property_set( FT_Module ft_module,
|
2012-08-31 00:20:29 +02:00
|
|
|
const char* property_name,
|
|
|
|
const void* value )
|
|
|
|
{
|
2012-09-18 15:23:41 +02:00
|
|
|
FT_Error error = AF_Err_Ok;
|
|
|
|
AF_Module module = (AF_Module)ft_module;
|
2012-09-15 18:26:28 +02:00
|
|
|
|
|
|
|
|
|
|
|
if ( !ft_strcmp( property_name, "fallback-script" ) )
|
|
|
|
{
|
|
|
|
FT_UInt* fallback_script = (FT_UInt*)value;
|
|
|
|
|
|
|
|
|
2012-09-18 15:23:41 +02:00
|
|
|
module->fallback_script = *fallback_script;
|
2012-09-15 18:26:28 +02:00
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
2012-09-18 23:31:05 +02:00
|
|
|
else if ( !ft_strcmp( property_name, "increase-x-height" ) )
|
|
|
|
{
|
|
|
|
FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value;
|
|
|
|
AF_FaceGlobals globals;
|
|
|
|
|
|
|
|
|
|
|
|
error = af_property_get_face_globals( prop->face, &globals, module );
|
|
|
|
if ( !error )
|
|
|
|
globals->increase_x_height = prop->limit;
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
2012-08-31 00:20:29 +02:00
|
|
|
|
|
|
|
FT_TRACE0(( "af_property_get: missing property `%s'\n",
|
|
|
|
property_name ));
|
2013-03-14 10:27:35 +01:00
|
|
|
return FT_THROW( Missing_Property );
|
2012-08-31 00:20:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_Error
|
2012-09-18 15:23:41 +02:00
|
|
|
af_property_get( FT_Module ft_module,
|
2012-08-31 00:20:29 +02:00
|
|
|
const char* property_name,
|
|
|
|
void* value )
|
|
|
|
{
|
2012-09-18 15:23:41 +02:00
|
|
|
FT_Error error = AF_Err_Ok;
|
|
|
|
AF_Module module = (AF_Module)ft_module;
|
|
|
|
FT_UInt fallback_script = module->fallback_script;
|
2012-09-01 22:31:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
if ( !ft_strcmp( property_name, "glyph-to-script-map" ) )
|
|
|
|
{
|
|
|
|
FT_Prop_GlyphToScriptMap* prop = (FT_Prop_GlyphToScriptMap*)value;
|
|
|
|
AF_FaceGlobals globals;
|
|
|
|
|
|
|
|
|
2012-09-18 23:31:05 +02:00
|
|
|
error = af_property_get_face_globals( prop->face, &globals, module );
|
2012-09-01 22:31:43 +02:00
|
|
|
if ( !error )
|
|
|
|
prop->map = globals->glyph_scripts;
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
2012-09-15 18:26:28 +02:00
|
|
|
else if ( !ft_strcmp( property_name, "fallback-script" ) )
|
|
|
|
{
|
|
|
|
FT_UInt* val = (FT_UInt*)value;
|
|
|
|
|
|
|
|
|
|
|
|
*val = fallback_script;
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
2012-09-18 23:31:05 +02:00
|
|
|
else if ( !ft_strcmp( property_name, "increase-x-height" ) )
|
|
|
|
{
|
|
|
|
FT_Prop_IncreaseXHeight* prop = (FT_Prop_IncreaseXHeight*)value;
|
|
|
|
AF_FaceGlobals globals;
|
|
|
|
|
|
|
|
|
|
|
|
error = af_property_get_face_globals( prop->face, &globals, module );
|
|
|
|
if ( !error )
|
|
|
|
prop->limit = globals->increase_x_height;
|
|
|
|
|
|
|
|
return error;
|
|
|
|
}
|
|
|
|
|
2012-08-31 00:20:29 +02:00
|
|
|
|
|
|
|
FT_TRACE0(( "af_property_get: missing property `%s'\n",
|
|
|
|
property_name ));
|
2013-03-14 10:27:35 +01:00
|
|
|
return FT_THROW( Missing_Property );
|
2012-08-31 00:20:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
FT_DEFINE_SERVICE_PROPERTIESREC(
|
|
|
|
af_service_properties,
|
|
|
|
(FT_Properties_SetFunc)af_property_set,
|
|
|
|
(FT_Properties_GetFunc)af_property_get )
|
|
|
|
|
|
|
|
|
|
|
|
FT_DEFINE_SERVICEDESCREC1(
|
|
|
|
af_services,
|
|
|
|
FT_SERVICE_ID_PROPERTIES, &AF_SERVICE_PROPERTIES_GET )
|
|
|
|
|
|
|
|
|
|
|
|
FT_CALLBACK_DEF( FT_Module_Interface )
|
|
|
|
af_get_interface( FT_Module module,
|
|
|
|
const char* module_interface )
|
|
|
|
{
|
|
|
|
/* AF_SERVICES_GET derefers `library' in PIC mode */
|
|
|
|
#ifdef FT_CONFIG_OPTION_PIC
|
|
|
|
FT_Library library;
|
|
|
|
|
|
|
|
|
|
|
|
if ( !module )
|
|
|
|
return NULL;
|
|
|
|
library = module->library;
|
|
|
|
if ( !library )
|
|
|
|
return NULL;
|
|
|
|
#else
|
|
|
|
FT_UNUSED( module );
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return ft_service_list_lookup( AF_SERVICES_GET, module_interface );
|
|
|
|
}
|
2004-01-16 10:51:00 +01:00
|
|
|
|
2005-03-03 18:09:08 +01:00
|
|
|
|
2004-02-01 17:59:06 +01:00
|
|
|
FT_CALLBACK_DEF( FT_Error )
|
2012-09-14 07:55:15 +02:00
|
|
|
af_autofitter_init( AF_Module module )
|
2004-02-01 17:59:06 +01:00
|
|
|
{
|
2012-09-15 18:26:28 +02:00
|
|
|
module->fallback_script = AF_SCRIPT_FALLBACK;
|
2012-09-15 10:33:43 +02:00
|
|
|
|
2012-09-14 12:26:57 +02:00
|
|
|
return af_loader_init( module );
|
2004-01-16 10:51:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2004-02-01 17:59:06 +01:00
|
|
|
FT_CALLBACK_DEF( void )
|
2012-09-14 07:55:15 +02:00
|
|
|
af_autofitter_done( AF_Module module )
|
2004-01-16 10:51:00 +01:00
|
|
|
{
|
2012-09-14 12:26:57 +02:00
|
|
|
af_loader_done( module );
|
2004-02-01 17:59:06 +01:00
|
|
|
}
|
2004-01-16 10:51:00 +01:00
|
|
|
|
|
|
|
|
2004-02-01 17:59:06 +01:00
|
|
|
FT_CALLBACK_DEF( FT_Error )
|
2012-09-14 07:55:15 +02:00
|
|
|
af_autofitter_load_glyph( AF_Module module,
|
|
|
|
FT_GlyphSlot slot,
|
|
|
|
FT_Size size,
|
|
|
|
FT_UInt glyph_index,
|
|
|
|
FT_Int32 load_flags )
|
2004-02-01 17:59:06 +01:00
|
|
|
{
|
2004-04-22 00:27:11 +02:00
|
|
|
FT_UNUSED( size );
|
2004-04-21 16:30:37 +02:00
|
|
|
|
2012-09-14 12:26:57 +02:00
|
|
|
return af_loader_load_glyph( module, slot->face,
|
2004-02-01 17:59:06 +01:00
|
|
|
glyph_index, load_flags );
|
|
|
|
}
|
2004-01-16 10:51:00 +01:00
|
|
|
|
|
|
|
|
2012-08-27 06:57:05 +02:00
|
|
|
FT_DEFINE_AUTOHINTER_INTERFACE(
|
|
|
|
af_autofitter_interface,
|
2012-08-23 13:34:26 +02:00
|
|
|
NULL, /* reset_face */
|
|
|
|
NULL, /* get_global_hints */
|
|
|
|
NULL, /* done_global_hints */
|
|
|
|
(FT_AutoHinter_GlyphLoadFunc)af_autofitter_load_glyph ) /* load_glyph */
|
2004-01-16 10:51:00 +01:00
|
|
|
|
2012-08-27 06:57:05 +02:00
|
|
|
|
2011-02-26 17:32:38 +01:00
|
|
|
FT_DEFINE_MODULE(
|
|
|
|
autofit_module_class,
|
2004-01-16 10:51:00 +01:00
|
|
|
|
2004-02-01 17:59:06 +01:00
|
|
|
FT_MODULE_HINTER,
|
2012-09-14 07:55:15 +02:00
|
|
|
sizeof ( AF_ModuleRec ),
|
2004-01-16 10:51:00 +01:00
|
|
|
|
2004-02-01 17:59:06 +01:00
|
|
|
"autofitter",
|
|
|
|
0x10000L, /* version 1.0 of the autofitter */
|
|
|
|
0x20000L, /* requires FreeType 2.0 or above */
|
2004-01-16 10:51:00 +01:00
|
|
|
|
2012-08-27 08:41:43 +02:00
|
|
|
(const void*)&AF_INTERFACE_GET,
|
2004-01-16 10:51:00 +01:00
|
|
|
|
2005-03-03 18:09:08 +01:00
|
|
|
(FT_Module_Constructor)af_autofitter_init,
|
|
|
|
(FT_Module_Destructor) af_autofitter_done,
|
2012-08-31 00:20:29 +02:00
|
|
|
(FT_Module_Requester) af_get_interface )
|
2004-01-16 10:51:00 +01:00
|
|
|
|
|
|
|
|
2004-02-01 17:59:06 +01:00
|
|
|
/* END */
|