| """Generates the code for a sorted unicode range array as used in hb-ot-os2-unicode-ranges.hh |
| Input is a tab separated list of unicode ranges from the otspec |
| (https://docs.microsoft.com/en-us/typography/opentype/spec/os2#ur). |
| print ("""static OS2Range _hb_os2_unicode_ranges[] = |
| with open (input_file, mode="r", encoding="utf-8") as f: |
| line = f.readline().strip() |
| fields = re.split(r'\t+', line) |
| raise Exception("bad input :(.") |
| ranges = re.split("-", fields[1]) |
| raise Exception("bad input :(.") |
| v = tuple((int(ranges[0], 16), int(ranges[1], 16), int(current_bit), name)) |
| all_ranges = sorted(all_ranges, key=lambda t: t[0]) |
| for ranges in all_ranges: |
| start = ("0x%X" % ranges[0]).rjust(8) |
| end = ("0x%X" % ranges[1]).rjust(8) |
| bit = ("%s" % ranges[2]).rjust(3) |
| print (" {%s, %s, %s}, // %s" % (start, end, bit, ranges[3])) |