154 lines
3.4 KiB
C
154 lines
3.4 KiB
C
/*
|
|
* Copyright © 2023 Behdad Esfahbod
|
|
*
|
|
* This is part of HarfBuzz, a text shaping library.
|
|
*
|
|
* Permission is hereby granted, without written agreement and without
|
|
* license or royalty fees, to use, copy, modify, and distribute this
|
|
* software and its documentation for any purpose, provided that the
|
|
* above copyright notice and the following two paragraphs appear in
|
|
* all copies of this software.
|
|
*
|
|
* IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
|
|
* DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
|
|
* ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
|
|
* IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
|
|
* DAMAGE.
|
|
*
|
|
* THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
|
|
* BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
|
|
* FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
|
|
* ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
|
|
* PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
|
|
*/
|
|
|
|
#ifndef HB_WASM_API_H
|
|
#define HB_WASM_API_H
|
|
|
|
/*
|
|
#include "hb.h"
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
#ifndef HB_WASM_BEGIN_DECLS
|
|
# ifdef __cplusplus
|
|
# define HB_WASM_BEGIN_DECLS extern "C" {
|
|
# define HB_WASM_END_DECLS }
|
|
# else /* !__cplusplus */
|
|
# define HB_WASM_BEGIN_DECLS
|
|
# define HB_WASM_END_DECLS
|
|
# endif /* !__cplusplus */
|
|
#endif
|
|
|
|
|
|
HB_WASM_BEGIN_DECLS
|
|
|
|
#ifndef HB_WASM_API
|
|
#define HB_WASM_API(ret_t, name) ret_t name
|
|
#endif
|
|
#ifndef HB_WASM_API_COMPOUND /* compound return type */
|
|
#define HB_WASM_API_COMPOUND(ret_t, name) HB_WASM_API(ret_t, name)
|
|
#endif
|
|
#ifndef HB_WASM_INTERFACE
|
|
#define HB_WASM_INTERFACE(ret_t, name) ret_t name
|
|
#endif
|
|
#ifndef HB_WASM_EXEC_ENV
|
|
#define HB_WASM_EXEC_ENV
|
|
#endif
|
|
#ifndef HB_WASM_EXEC_ENV_COMPOUND
|
|
#define HB_WASM_EXEC_ENV_COMPOUND HB_WASM_EXEC_ENV
|
|
#endif
|
|
|
|
|
|
#ifndef bool_t
|
|
#define bool_t uint32_t
|
|
#endif
|
|
#ifndef ref_t
|
|
#define ref_t uint32_t
|
|
#endif
|
|
#ifndef ptr_t
|
|
#define ptr_t(type_t) type_t *
|
|
#endif
|
|
|
|
typedef uint32_t hb_codepoint_t;
|
|
typedef int32_t hb_position_t;
|
|
typedef uint32_t hb_mask_t;
|
|
typedef uint32_t tag_t;
|
|
#define TAG(c1,c2,c3,c4) ((tag_t)((((uint32_t)(c1)&0xFF)<<24)|(((uint32_t)(c2)&0xFF)<<16)|(((uint32_t)(c3)&0xFF)<<8)|((uint32_t)(c4)&0xFF)))
|
|
|
|
typedef ref_t face_t;
|
|
typedef ref_t font_t;
|
|
typedef ref_t buffer_t;
|
|
|
|
|
|
/* blob */
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t length;
|
|
ptr_t(char) data;
|
|
} blob_t;
|
|
|
|
HB_WASM_API (void, blob_free) (HB_WASM_EXEC_ENV
|
|
ptr_t(blob_t) blob);
|
|
|
|
|
|
/* buffer */
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t codepoint;
|
|
uint32_t mask;
|
|
uint32_t cluster;
|
|
uint32_t var1;
|
|
uint32_t var2;
|
|
} glyph_info_t;
|
|
|
|
typedef struct
|
|
{
|
|
hb_position_t x_advance;
|
|
hb_position_t y_advance;
|
|
hb_position_t x_offset;
|
|
hb_position_t y_offset;
|
|
uint32_t var;
|
|
} glyph_position_t;
|
|
|
|
typedef struct
|
|
{
|
|
uint32_t length;
|
|
ptr_t(glyph_info_t) info;
|
|
ptr_t(glyph_position_t) pos;
|
|
} buffer_contents_t;
|
|
|
|
/* TODO buffer_contents_free */
|
|
|
|
HB_WASM_API_COMPOUND (buffer_contents_t, buffer_copy_contents) (HB_WASM_EXEC_ENV_COMPOUND
|
|
buffer_t bufferref);
|
|
|
|
|
|
/* face */
|
|
|
|
HB_WASM_API_COMPOUND (blob_t, face_reference_table) (HB_WASM_EXEC_ENV_COMPOUND
|
|
face_t faceref,
|
|
tag_t table_tag);
|
|
|
|
|
|
/* font */
|
|
|
|
HB_WASM_API (face_t, font_get_face) (HB_WASM_EXEC_ENV
|
|
font_t fontref);
|
|
|
|
|
|
/* shape interface */
|
|
|
|
HB_WASM_INTERFACE (bool_t, shape) (HB_WASM_EXEC_ENV
|
|
font_t fontref,
|
|
buffer_t bufferref);
|
|
|
|
|
|
HB_WASM_END_DECLS
|
|
|
|
#endif /* HB_WASM_API_H */
|