Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 1 | /* |
Michiharu Ariza | 0dfa584 | 2018-11-12 08:47:07 -0800 | [diff] [blame] | 2 | * Copyright © 2018 Adobe Inc. |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 3 | * |
| 4 | * This is part of HarfBuzz, a text shaping library. |
| 5 | * |
| 6 | * Permission is hereby granted, without written agreement and without |
| 7 | * license or royalty fees, to use, copy, modify, and distribute this |
| 8 | * software and its documentation for any purpose, provided that the |
| 9 | * above copyright notice and the following two paragraphs appear in |
| 10 | * all copies of this software. |
| 11 | * |
| 12 | * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR |
| 13 | * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES |
| 14 | * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN |
| 15 | * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH |
| 16 | * DAMAGE. |
| 17 | * |
| 18 | * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING, |
| 19 | * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND |
| 20 | * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS |
| 21 | * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO |
| 22 | * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS. |
| 23 | * |
| 24 | * Adobe Author(s): Michiharu Ariza |
| 25 | */ |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 26 | #ifndef HB_CFF1_INTERP_CS_HH |
| 27 | #define HB_CFF1_INTERP_CS_HH |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 28 | |
Michiharu Ariza | 8af9690 | 2018-08-29 13:26:17 -0700 | [diff] [blame] | 29 | #include "hb.hh" |
| 30 | #include "hb-cff-interp-cs-common.hh" |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 31 | |
| 32 | namespace CFF { |
| 33 | |
| 34 | using namespace OT; |
| 35 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 36 | typedef biased_subrs_t<CFF1Subrs> cff1_biased_subrs_t; |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 37 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 38 | struct cff1_cs_interp_env_t : cs_interp_env_t<number_t, CFF1Subrs> |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 39 | { |
Michiharu Ariza | f2d299b | 2018-09-04 10:25:21 -0700 | [diff] [blame] | 40 | template <typename ACC> |
Behdad Esfahbod | c632a16 | 2023-01-06 11:01:25 -0700 | [diff] [blame] | 41 | cff1_cs_interp_env_t (const hb_ubytes_t &str, ACC &acc, unsigned int fd, |
| 42 | const int *coords_=nullptr, unsigned int num_coords_=0) |
Behdad Esfahbod | bff78e6 | 2022-05-10 16:33:37 -0600 | [diff] [blame] | 43 | : SUPER (str, acc.globalSubrs, acc.privateDicts[fd].localSubrs) |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 44 | { |
Michiharu Ariza | a11420b | 2018-08-29 12:14:30 -0700 | [diff] [blame] | 45 | processed_width = false; |
| 46 | has_width = false; |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 47 | arg_start = 0; |
Michiharu Ariza | 1373557 | 2018-11-15 12:10:23 -0800 | [diff] [blame] | 48 | in_seac = false; |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 49 | } |
| 50 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 51 | void set_width (bool has_width_) |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 52 | { |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 53 | if (likely (!processed_width && (SUPER::argStack.get_count () > 0))) |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 54 | { |
Michiharu Ariza | 049ce07 | 2018-11-01 08:46:21 -0700 | [diff] [blame] | 55 | if (has_width_) |
| 56 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 57 | width = SUPER::argStack[0]; |
| 58 | has_width = true; |
| 59 | arg_start = 1; |
Michiharu Ariza | 049ce07 | 2018-11-01 08:46:21 -0700 | [diff] [blame] | 60 | } |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 61 | } |
Michiharu Ariza | 049ce07 | 2018-11-01 08:46:21 -0700 | [diff] [blame] | 62 | processed_width = true; |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 63 | } |
| 64 | |
Ebrahim Byagowi | e412008 | 2018-12-17 21:31:01 +0330 | [diff] [blame] | 65 | void clear_args () |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 66 | { |
| 67 | arg_start = 0; |
| 68 | SUPER::clear_args (); |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 69 | } |
| 70 | |
Ebrahim Byagowi | b2ebaa9 | 2018-12-16 22:38:10 +0330 | [diff] [blame] | 71 | void set_in_seac (bool _in_seac) { in_seac = _in_seac; } |
Michiharu Ariza | 1373557 | 2018-11-15 12:10:23 -0800 | [diff] [blame] | 72 | |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 73 | bool processed_width; |
| 74 | bool has_width; |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 75 | unsigned int arg_start; |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 76 | number_t width; |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 77 | bool in_seac; |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 78 | |
Michiharu Ariza | fcf1778 | 2018-08-31 16:28:47 -0700 | [diff] [blame] | 79 | private: |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 80 | typedef cs_interp_env_t<number_t, CFF1Subrs> SUPER; |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 81 | }; |
| 82 | |
Ebrahim Byagowi | 9258878 | 2019-04-30 13:05:10 -0700 | [diff] [blame] | 83 | template <typename OPSET, typename PARAM, typename PATH=path_procs_null_t<cff1_cs_interp_env_t, PARAM>> |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 84 | struct cff1_cs_opset_t : cs_opset_t<number_t, OPSET, cff1_cs_interp_env_t, PARAM, PATH> |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 85 | { |
Michiharu Ariza | be74600 | 2018-10-25 13:40:40 -0700 | [diff] [blame] | 86 | /* PostScript-originated legacy opcodes (OpCode_add etc) are unsupported */ |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 87 | /* Type 1-originated deprecated opcodes, seac behavior of endchar and dotsection are supported */ |
| 88 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 89 | static void process_op (op_code_t op, cff1_cs_interp_env_t &env, PARAM& param) |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 90 | { |
| 91 | switch (op) { |
| 92 | case OpCode_dotsection: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 93 | SUPER::flush_args_and_op (op, env, param); |
| 94 | break; |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 95 | |
| 96 | case OpCode_endchar: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 97 | OPSET::check_width (op, env, param); |
| 98 | if (env.argStack.get_count () >= 4) |
| 99 | { |
| 100 | OPSET::process_seac (env, param); |
| 101 | } |
| 102 | OPSET::flush_args_and_op (op, env, param); |
| 103 | env.set_endchar (true); |
| 104 | break; |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 105 | |
| 106 | default: |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 107 | SUPER::process_op (op, env, param); |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 108 | } |
| 109 | } |
Michiharu Ariza | a11420b | 2018-08-29 12:14:30 -0700 | [diff] [blame] | 110 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 111 | static void check_width (op_code_t op, cff1_cs_interp_env_t &env, PARAM& param) |
Michiharu Ariza | a11420b | 2018-08-29 12:14:30 -0700 | [diff] [blame] | 112 | { |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 113 | if (!env.processed_width) |
| 114 | { |
| 115 | bool has_width = false; |
| 116 | switch (op) |
| 117 | { |
Behdad Esfahbod | 825df6d | 2018-11-30 23:04:59 -0500 | [diff] [blame] | 118 | case OpCode_endchar: |
| 119 | case OpCode_hstem: |
| 120 | case OpCode_hstemhm: |
| 121 | case OpCode_vstem: |
| 122 | case OpCode_vstemhm: |
| 123 | case OpCode_hintmask: |
| 124 | case OpCode_cntrmask: |
| 125 | has_width = ((env.argStack.get_count () & 1) != 0); |
| 126 | break; |
| 127 | case OpCode_hmoveto: |
| 128 | case OpCode_vmoveto: |
| 129 | has_width = (env.argStack.get_count () > 1); |
| 130 | break; |
| 131 | case OpCode_rmoveto: |
| 132 | has_width = (env.argStack.get_count () > 2); |
| 133 | break; |
| 134 | default: |
| 135 | return; |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 136 | } |
Michiharu Ariza | 049ce07 | 2018-11-01 08:46:21 -0700 | [diff] [blame] | 137 | env.set_width (has_width); |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 138 | } |
| 139 | } |
| 140 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 141 | static void process_seac (cff1_cs_interp_env_t &env, PARAM& param) |
Michiharu Ariza | 3787c07 | 2018-11-14 13:38:03 -0800 | [diff] [blame] | 142 | { |
| 143 | } |
| 144 | |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 145 | static void flush_args (cff1_cs_interp_env_t &env, PARAM& param) |
Michiharu Ariza | d56e338 | 2018-10-31 22:30:34 -0700 | [diff] [blame] | 146 | { |
| 147 | SUPER::flush_args (env, param); |
Michiharu Ariza | 8679d02 | 2018-10-18 13:04:21 -0700 | [diff] [blame] | 148 | env.clear_args (); /* pop off width */ |
Michiharu Ariza | a11420b | 2018-08-29 12:14:30 -0700 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | private: |
Michiharu Ariza | 29f0b6b | 2018-12-22 07:47:04 -0800 | [diff] [blame] | 152 | typedef cs_opset_t<number_t, OPSET, cff1_cs_interp_env_t, PARAM, PATH> SUPER; |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 153 | }; |
| 154 | |
| 155 | template <typename OPSET, typename PARAM> |
Behdad Esfahbod | bff78e6 | 2022-05-10 16:33:37 -0600 | [diff] [blame] | 156 | using cff1_cs_interpreter_t = cs_interpreter_t<cff1_cs_interp_env_t, OPSET, PARAM>; |
Michiharu Ariza | 633ce88 | 2018-08-15 12:00:19 -0700 | [diff] [blame] | 157 | |
| 158 | } /* namespace CFF */ |
| 159 | |
Michiharu Ariza | fdbfa18 | 2018-08-16 00:13:09 -0700 | [diff] [blame] | 160 | #endif /* HB_CFF1_INTERP_CS_HH */ |