fontisan 0.4.29 → 0.4.30

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 80a76c3d84f5bbd6f7750df7505b1d7c5c3e6f4396ebefe3238705cef8dece02
4
- data.tar.gz: 96fa6ad2df65fd9e1c4ecaa1b15f1948b05537d63b708e4fde8ce9b72809cc0b
3
+ metadata.gz: 5dd9aa72ac0517bcfbfed3d6eb3528af3e0b65a52bc721d14ba5fb545198e48f
4
+ data.tar.gz: be1d6d7379a3bd0cda435d02b91e5d7fc213736483e3aac66b93280d63261669
5
5
  SHA512:
6
- metadata.gz: 8718892c5630fb4e3371e42d5cf942a1080d1dc7f54213d55ef778d897c6a46ae276739045c353e7ea76a1241709b27564b5983458ae21557d1192b86b004abc
7
- data.tar.gz: 1831e3bdc8f2715559a41f036b2e6f20a54d5e941192fa1620fad0b3331c2fa0acc7495e61c1eebfa0e3c939d22fcbd852eddbf86a22b5b12604fed378bb0b06
6
+ metadata.gz: b889fec5459a0d420ffe21d3ec792f107c69060eeddba8cf357e1a83b1e37669c3b6d017b41921b6d5be28519d51ef13ef2ab4da2d00e9ccfb9a31c204310150
7
+ data.tar.gz: 69952d13b5c18685c8b22d92b5f56c8ed2cfc89da8a5324080a9f206823d1999baf947718fbf56e77e239de422dcbf21033e9a7d060a30e5e5e5df6482727ce0
@@ -12,8 +12,8 @@ Each file is `NN-short-name.md` where `NN` is the priority order.
12
12
 
13
13
  ### P1 — High-value features
14
14
  - [03 — `fontisan audit` command (identity+style+features lens)](03-fontisan-audit-command.md)
15
- - [04 — UFO composite glyph encoding](04-ufo-composite-glyph-encoding.md)
16
- - [05 — OTF compiler real CFF charstrings](05-otf-compiler-real-cff.md) blocks TODO #15
15
+ - [x] ~~[04 — UFO composite glyph encoding](04-ufo-composite-glyph-encoding.md)~~ ✓ Done
16
+ - [x] ~~[05 — OTF compiler real CFF charstrings](05-otf-compiler-real-cff.md)~~ Already working (discovered in PR #117 — Cff.build produces real Type 2 charstrings; stale TODO marker removed)
17
17
 
18
18
  ### P2 — Specialist feature parity
19
19
  - [x] ~~[07 — CPAL v1 header fields](07-cpal-v1-header-fields.md)~~ ✓ Done (v0.4.25)
@@ -21,7 +21,7 @@ Each file is `NN-short-name.md` where `NN` is the priority order.
21
21
  - [06 — CFF2 blend/vsindex operators](06-cff2-blend-vsindex-operators.md)
22
22
  - [09 — Type 1 seac expansion](09-type1-seac-expansion.md)
23
23
  - [10 — UFO image set + feature writers](10-ufo-image-set-feature-writers.md)
24
- - [11 — kern groups.plist support](11-kern-groups-plist.md)
24
+ - [x] ~~[11 — kern groups.plist support](11-kern-groups-plist.md)~~ ✓ Done (Groups model in PR #116 + GPOS group resolution in this PR)
25
25
 
26
26
  ### P3 — Code-quality cleanup
27
27
  - [x] ~~[13 — Split `OctokitFetcher` out of `fixture_downloader.rb`](13-split-octokit-fetcher.md)~~ ✓ Done (v0.4.24)
@@ -13,9 +13,8 @@ module Fontisan
13
13
  # omits the GPOS table entirely.
14
14
  #
15
15
  # Group-based kerning keys (e.g. +"@MMK_L_A @MMK_R_B"+) are
16
- # emitted verbatim with +group: true+; the GPOS builder is
17
- # responsible for resolving group references via the UFO's
18
- # groups.plist data (TODO: groups.plist support is partial).
16
+ # resolved to individual glyph pairs by the GPOS builder via
17
+ # the UFO's groups.plist data (font.groups).
19
18
  class Kern < Base
20
19
  # GPOS lookup type 2 — PairPos (pair-positioning).
21
20
  LOOKUP_TYPE = 2
@@ -23,11 +23,14 @@ module Fontisan
23
23
  # @param glyphs [Array<Fontisan::Ufo::Glyph>] in gid order
24
24
  # @return [Hash<String, String>] {"glyf" => bytes, "loca" => bytes}
25
25
  def self.build(_font, glyphs:)
26
+ name_to_gid = {}
27
+ glyphs.each_with_index { |g, i| name_to_gid[g.name] = i }
28
+
26
29
  glyf_bytes = +""
27
30
  offsets = [0]
28
31
 
29
32
  glyphs.each do |glyph|
30
- glyf_bytes << encode_glyph(glyph)
33
+ glyf_bytes << encode_glyph(glyph, name_to_gid)
31
34
  glyf_bytes << "\x00" while glyf_bytes.bytesize.odd? # 2-byte align
32
35
  offsets << glyf_bytes.bytesize
33
36
  end
@@ -47,9 +50,9 @@ module Fontisan
47
50
 
48
51
  # Encode a single glyph into glyf bytes. Empty glyphs (no
49
52
  # contours, no components) produce zero bytes per spec.
50
- def self.encode_glyph(glyph)
53
+ def self.encode_glyph(glyph, name_to_gid = {})
51
54
  return "" if glyph.contours.empty? && glyph.components.empty?
52
- return encode_composite(glyph) if glyph.composite?
55
+ return encode_composite(glyph, name_to_gid) if glyph.composite?
53
56
 
54
57
  encode_simple(glyph)
55
58
  end
@@ -131,16 +134,72 @@ module Fontisan
131
134
  [flags, x_bytes, y_bytes]
132
135
  end
133
136
 
134
- # Composite glyph encoding (component references with optional
135
- # transformations). Out of scope for MVP emits empty bytes.
136
- def self.encode_composite(_glyph)
137
- # TODO.full/07: implement composite glyph encoding when the
138
- # spec needs it. For now, return empty (the glyph renders as
139
- # nothing).
140
- ""
137
+ # Composite glyph encoding per OpenType spec section 5.6.
138
+ # Emits a compound glyph record with one component entry per
139
+ # UFO component reference. Each component's base glyph name is
140
+ # resolved to a compiled GID via the name_to_gid map.
141
+ #
142
+ # Transform encoding:
143
+ # - identity transform → no transform flags
144
+ # - uniform scale (a=d, b=c=0) → WE_HAVE_A_SCALE (1 F2Dot14)
145
+ # - non-uniform scale (b=c=0, a≠d) → WE_HAVE_AN_X_AND_Y_SCALE (2 F2Dot14)
146
+ # - full 2×2 → WE_HAVE_A_TWO_BY_TWO (4 F2Dot14)
147
+ def self.encode_composite(glyph, name_to_gid)
148
+ header = [-1, 0, 0, 0, 0].pack("s>n4")
149
+
150
+ body = +""
151
+ components = glyph.components
152
+ components.each_with_index do |comp, idx|
153
+ gid = name_to_gid[comp.base_glyph]
154
+ next unless gid
155
+
156
+ flags = 0x0002 # ARGS_ARE_XY_VALUES (always for UFO)
157
+
158
+ dx = comp.transformation ? comp.transformation.e.to_i : 0
159
+ dy = comp.transformation ? comp.transformation.f.to_i : 0
160
+
161
+ flags |= 0x0001 if dx < -128 || dx > 127 || dy < -128 || dy > 127
162
+
163
+ t = comp.transformation
164
+ if t && !t.identity?
165
+ flags |= if t.b.zero? && t.c.zero? && (t.a - t.d).abs < 1e-6
166
+ 0x0008 # WE_HAVE_A_SCALE
167
+ elsif t.b.zero? && t.c.zero?
168
+ 0x0040 # WE_HAVE_AN_X_AND_Y_SCALE
169
+ else
170
+ 0x0080 # WE_HAVE_A_TWO_BY_TWO
171
+ end
172
+ end
173
+
174
+ flags |= 0x0020 if idx < components.size - 1 # MORE_COMPONENTS
175
+
176
+ body << [flags, gid].pack("n*")
177
+
178
+ body << if (flags & 0x0001).zero?
179
+ [dx, dy].pack("cc")
180
+ else
181
+ [dx, dy].pack("s>s>")
182
+ end
183
+
184
+ if flags & 0x0008 != 0
185
+ body << [to_f2dot14(t.a)].pack("s>")
186
+ elsif flags & 0x0040 != 0
187
+ body << [to_f2dot14(t.a), to_f2dot14(t.d)].pack("s>s>")
188
+ elsif flags & 0x0080 != 0
189
+ body << [to_f2dot14(t.a), to_f2dot14(t.b),
190
+ to_f2dot14(t.c), to_f2dot14(t.d)].pack("s>4")
191
+ end
192
+ end
193
+
194
+ header + body
195
+ end
196
+
197
+ # Encode a float as F2Dot14 (2 integer + 14 fractional bits).
198
+ def self.to_f2dot14(value)
199
+ (value * 16_384).round
141
200
  end
142
201
  private_class_method :encode_glyph, :encode_simple, :encode_points,
143
- :encode_composite
202
+ :encode_composite, :to_f2dot14
144
203
  end
145
204
  end
146
205
  end
@@ -40,7 +40,9 @@ module Fontisan
40
40
  # ---------- pair collection ----------
41
41
 
42
42
  # Collect kerning pairs from the UFO model. Each pair is
43
- # (gid1, gid2, x_advance_delta).
43
+ # (gid1, gid2, x_advance_delta). Resolves class-based kerning
44
+ # keys (e.g. "@MMK_L_A @MMK_R_T") by expanding group members
45
+ # into individual glyph pairs via font.groups.
44
46
  # @return [Array<[Integer, Integer, Integer]>]
45
47
  def self.collect_kerning_pairs(font, glyphs)
46
48
  name_to_gid = {}
@@ -48,21 +50,40 @@ module Fontisan
48
50
 
49
51
  pairs = []
50
52
  font.kerning.each_pair do |key, value|
51
- # UFO kerning key is "glyph1 glyph2" or a class name.
52
- # We only handle individual glyph pairs (not classes).
53
53
  names = key.split
54
54
  next unless names.size == 2
55
55
 
56
- gid1 = name_to_gid[names[0]]
57
- gid2 = name_to_gid[names[1]]
58
- next unless gid1 && gid2
56
+ left_names = resolve_kerning_side(names[0], font)
57
+ right_names = resolve_kerning_side(names[1], font)
59
58
 
60
- pairs << [gid1, gid2, value.to_i]
59
+ left_names.each do |ln|
60
+ right_names.each do |rn|
61
+ gid1 = name_to_gid[ln]
62
+ gid2 = name_to_gid[rn]
63
+ next unless gid1 && gid2
64
+
65
+ pairs << [gid1, gid2, value.to_i]
66
+ end
67
+ end
61
68
  end
62
69
 
63
70
  pairs.sort_by { |a| [a[0], a[1]] }
64
71
  end
65
72
 
73
+ # Resolve a kerning key side to individual glyph names. If
74
+ # +name+ is a group reference (starts with "@"), returns all
75
+ # group members. Otherwise returns +[name]+ for an individual
76
+ # glyph.
77
+ # @param name [String] glyph name or group reference
78
+ # @param font [Fontisan::Ufo::Font]
79
+ # @return [Array<String>] glyph names
80
+ def self.resolve_kerning_side(name, font)
81
+ return [name] unless name.start_with?("@")
82
+
83
+ members = font.groups.glyphs(name)
84
+ members.empty? ? [] : members
85
+ end
86
+
66
87
  # ---------- GPOS binary assembly ----------
67
88
 
68
89
  def self.build_gpos_table(pairs)
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Fontisan
4
- VERSION = "0.4.29"
4
+ VERSION = "0.4.30"
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: fontisan
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.4.29
4
+ version: 0.4.30
5
5
  platform: ruby
6
6
  authors:
7
7
  - Ribose Inc.