123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829 |
- /*************************************************************
- *
- * Copyright (c) 2017-2022 The MathJax Consortium
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- /**
- * @fileoverview Implements the FontData class for character bbox data
- * and stretchy delimiters.
- *
- * @author dpvc@mathjax.org (Davide Cervone)
- */
- import {OptionList, defaultOptions, userOptions} from '../../util/Options.js';
- import {StyleList} from '../../util/StyleList.js';
- /****************************************************************************/
- /**
- * The extra options allowed in a CharData array
- */
- export interface CharOptions {
- ic?: number; // italic correction value
- sk?: number; // skew value
- dx?: number; // offset for combining characters
- unknown?: boolean; // true if not found in the given variant
- smp?: number; // Math Alphanumeric codepoint this char is mapped to
- }
- /****************************************************************************/
- /**
- * Data about a character
- * [height, depth, width, {italic-correction, skew, options}]
- *
- * @template C The CharOptions type
- */
- export type CharData<C extends CharOptions> =
- [number, number, number] |
- [number, number, number, C];
- /**
- * An object making character positions to character data
- *
- * @template C The CharOptions type
- */
- export type CharMap<C extends CharOptions> = {
- [n: number]: CharData<C>;
- };
- /**
- * An object making variants to character maps
- *
- * @template C The CharOptions type
- */
- export type CharMapMap<C extends CharOptions> = {
- [name: string]: CharMap<C>;
- };
- /****************************************************************************/
- /**
- * Data for a variant
- *
- * @template C The CharOptions type
- */
- export interface VariantData<C extends CharOptions> {
- /**
- * A list of CharMaps that must be updated when characters are
- * added to this variant
- */
- linked: CharMap<C>[];
- /**
- * The character data for this variant
- */
- chars: CharMap<C>;
- }
- /**
- * An object making variants names to variant data
- *
- * @template C The CharOptions type
- * @template V The VariantData type
- */
- export type VariantMap<C extends CharOptions, V extends VariantData<C>> = {
- [name: string]: V;
- };
- /**
- * Data to use to map unknown characters in a variant to a
- * generic CSS font:
- *
- * [fontname, italic, bold]
- */
- export type CssFontData = [string, boolean, boolean];
- /**
- * An object mapping a variant name to the CSS data needed for it
- */
- export type CssFontMap = {
- [name: string]: CssFontData;
- };
- /****************************************************************************/
- /**
- * Stretchy delimiter data
- */
- export const enum DIRECTION {None, Vertical, Horizontal}
- export const V = DIRECTION.Vertical;
- export const H = DIRECTION.Horizontal;
- /****************************************************************************/
- /**
- * Data needed for stretchy vertical and horizontal characters
- */
- export type DelimiterData = {
- dir: DIRECTION; // vertical or horizontal direction
- sizes?: number[]; // Array of fixed sizes for this character
- variants?: number[]; // The variants in which the different sizes can be found (if not the default)
- schar?: number[]; // The character number to use for each size (if different from the default)
- stretch?: number[]; // The unicode code points for the parts of multi-character versions [beg, ext, end, mid?]
- stretchv?: number[]; // the variants to use for the stretchy characters (index into variant name array)
- HDW?: number[]; // [h, d, w] (for vertical, h and d are the normal size, w is the multi-character width,
- // for horizontal, h and d are the multi-character ones, w is for the normal size).
- min?: number; // The minimum size a multi-character version can be
- c?: number; // The character number (for aliased delimiters)
- fullExt?: [number, number] // When present, extenders must be full sized, and the first number is
- // the size of the extender, while the second is the total size of the ends
- };
- /**
- * An object mapping character numbers to delimiter data
- *
- * @template D The DelimiterData type
- */
- export type DelimiterMap<D extends DelimiterData> = {
- [n: number]: D;
- };
- /**
- * Delimiter data for a non-stretchy character
- */
- export const NOSTRETCH: DelimiterData = {dir: DIRECTION.None};
- /****************************************************************************/
- /**
- * Data for remapping characters
- */
- export type RemapData = string;
- export type RemapMap = {
- [key: number]: RemapData;
- };
- export type RemapMapMap = {
- [key: string]: RemapMap;
- };
- /**
- * Character remapping data for Math Alphanumerics
- */
- export type SmpMap = {
- [c: number]: number;
- };
- /**
- * Data for Math Alphanumeric conversion: starting positions for
- * [Alpha, alpha, Greek, greek, Numbers]
- */
- export type SmpData = [number, number, number?, number?, number?];
- /****************************************************************************/
- /**
- * Font parameters (for TeX typesetting rules)
- */
- export type FontParameters = {
- x_height: number,
- quad: number,
- num1: number,
- num2: number,
- num3: number,
- denom1: number,
- denom2: number,
- sup1: number,
- sup2: number,
- sup3: number,
- sub1: number,
- sub2: number,
- sup_drop: number,
- sub_drop: number,
- delim1: number,
- delim2: number,
- axis_height: number,
- rule_thickness: number,
- big_op_spacing1: number,
- big_op_spacing2: number,
- big_op_spacing3: number,
- big_op_spacing4: number,
- big_op_spacing5: number,
- surd_height: number,
- scriptspace: number,
- nulldelimiterspace: number,
- delimiterfactor: number,
- delimitershortfall: number,
- min_rule_thickness: number,
- separation_factor: number,
- extra_ic: number
- };
- /****************************************************************************/
- /**
- * The FontData class (for storing character bounding box data by variant,
- * and the stretchy delimiter data).
- *
- * @template C The CharOptions type
- * @template V The VariantData type
- * @template D The DelimiterData type
- */
- export class FontData<C extends CharOptions, V extends VariantData<C>, D extends DelimiterData> {
- /**
- * Options for the font
- */
- public static OPTIONS: OptionList = {
- unknownFamily: 'serif' // Should use 'monospace' with LiteAdaptor
- };
- /**
- * The name of the output jax this font data is for (used by extensions)
- */
- public static JAX: string = 'common';
- /**
- * The name of the font that is being defined (used by extensions)
- */
- public static NAME: string = '';
- /**
- * The standard variants to define
- */
- public static defaultVariants = [
- ['normal'],
- ['bold', 'normal'],
- ['italic', 'normal'],
- ['bold-italic', 'italic', 'bold'],
- ['double-struck', 'bold'],
- ['fraktur', 'normal'],
- ['bold-fraktur', 'bold', 'fraktur'],
- ['script', 'italic'],
- ['bold-script', 'bold-italic', 'script'],
- ['sans-serif', 'normal'],
- ['bold-sans-serif', 'bold', 'sans-serif'],
- ['sans-serif-italic', 'italic', 'sans-serif'],
- ['sans-serif-bold-italic', 'bold-italic', 'bold-sans-serif'],
- ['monospace', 'normal']
- ];
- /**
- * The family, style, and weight to use for each variant (for unknown characters)
- * The 'unknown' family is replaced by options.unknownFamily
- */
- public static defaultCssFonts: CssFontMap = {
- normal: ['unknown', false, false],
- bold: ['unknown', false, true],
- italic: ['unknown', true, false],
- 'bold-italic': ['unknown', true, true],
- 'double-struck': ['unknown', false, true],
- fraktur: ['unknown', false, false],
- 'bold-fraktur': ['unknown', false, true],
- script: ['cursive', false, false],
- 'bold-script': ['cursive', false, true],
- 'sans-serif': ['sans-serif', false, false],
- 'bold-sans-serif': ['sans-serif', false, true],
- 'sans-serif-italic': ['sans-serif', true, false],
- 'sans-serif-bold-italic': ['sans-serif', true, true],
- monospace: ['monospace', false, false]
- };
- /**
- * The default prefix for explicit font-family settings
- */
- protected static defaultCssFamilyPrefix = '';
- /**
- * Variant locations in the Math Alphabnumerics block:
- * [upper-alpha, lower-alpha, upper-Greek, lower-Greek, numbers]
- */
- public static VariantSmp: {[name: string]: SmpData} = {
- bold: [0x1D400, 0x1D41A, 0x1D6A8, 0x1D6C2, 0x1D7CE],
- italic: [0x1D434, 0x1D44E, 0x1D6E2, 0x1D6FC],
- 'bold-italic': [0x1D468, 0x1D482, 0x1D71C, 0x1D736],
- script: [0x1D49C, 0x1D4B6],
- 'bold-script': [0x1D4D0, 0x1D4EA],
- fraktur: [0x1D504, 0x1D51E],
- 'double-struck': [0x1D538, 0x1D552, , , 0x1D7D8],
- 'bold-fraktur': [0x1D56C, 0x1D586],
- 'sans-serif': [0x1D5A0, 0x1D5BA, , , 0x1D7E2],
- 'bold-sans-serif': [0x1D5D4, 0x1D5EE, 0x1D756, 0x1D770, 0x1D7EC],
- 'sans-serif-italic': [0x1D608, 0x1D622],
- 'sans-serif-bold-italic': [0x1D63C, 0x1D656, 0x1D790, 0x1D7AA],
- 'monospace': [0x1D670, 0x1D68A, , , 0x1D7F6]
- };
- /**
- * Character ranges to remap into Math Alphanumerics
- */
- public static SmpRanges = [
- [0, 0x41, 0x5A], // Upper-case alpha
- [1, 0x61, 0x7A], // Lower-case alpha
- [2, 0x391, 0x3A9], // Upper-case Greek
- [3, 0x3B1, 0x3C9], // Lower-case Greek
- [4, 0x30, 0x39] // Numbers
- ];
- /**
- * Characters to map back top other Unicode positions
- * (holes in the Math Alphanumeric ranges)
- */
- public static SmpRemap: SmpMap = {
- 0x1D455: 0x210E, // PLANCK CONSTANT
- 0x1D49D: 0x212C, // SCRIPT CAPITAL B
- 0x1D4A0: 0x2130, // SCRIPT CAPITAL E
- 0x1D4A1: 0x2131, // SCRIPT CAPITAL F
- 0x1D4A3: 0x210B, // SCRIPT CAPITAL H
- 0x1D4A4: 0x2110, // SCRIPT CAPITAL I
- 0x1D4A7: 0x2112, // SCRIPT CAPITAL L
- 0x1D4A8: 0x2133, // SCRIPT CAPITAL M
- 0x1D4AD: 0x211B, // SCRIPT CAPITAL R
- 0x1D4BA: 0x212F, // SCRIPT SMALL E
- 0x1D4BC: 0x210A, // SCRIPT SMALL G
- 0x1D4C4: 0x2134, // SCRIPT SMALL O
- 0x1D506: 0x212D, // BLACK-LETTER CAPITAL C
- 0x1D50B: 0x210C, // BLACK-LETTER CAPITAL H
- 0x1D50C: 0x2111, // BLACK-LETTER CAPITAL I
- 0x1D515: 0x211C, // BLACK-LETTER CAPITAL R
- 0x1D51D: 0x2128, // BLACK-LETTER CAPITAL Z
- 0x1D53A: 0x2102, // DOUBLE-STRUCK CAPITAL C
- 0x1D53F: 0x210D, // DOUBLE-STRUCK CAPITAL H
- 0x1D545: 0x2115, // DOUBLE-STRUCK CAPITAL N
- 0x1D547: 0x2119, // DOUBLE-STRUCK CAPITAL P
- 0x1D548: 0x211A, // DOUBLE-STRUCK CAPITAL Q
- 0x1D549: 0x211D, // DOUBLE-STRUCK CAPITAL R
- 0x1D551: 0x2124, // DOUBLE-STRUCK CAPITAL Z
- };
- /**
- * Greek upper-case variants
- */
- public static SmpRemapGreekU: SmpMap = {
- 0x2207: 0x19, // nabla
- 0x03F4: 0x11 // theta symbol
- };
- /**
- * Greek lower-case variants
- */
- public static SmpRemapGreekL: SmpMap = {
- 0x3D1: 0x1B, // theta symbol
- 0x3D5: 0x1D, // phi symbol
- 0x3D6: 0x1F, // omega symbol
- 0x3F0: 0x1C, // kappa symbol
- 0x3F1: 0x1E, // rho symbol
- 0x3F5: 0x1A, // lunate epsilon symbol
- 0x2202: 0x19 // partial differential
- };
- /**
- * The default remappings
- */
- protected static defaultAccentMap: RemapMap = {
- 0x0300: '\u02CB', // grave accent
- 0x0301: '\u02CA', // acute accent
- 0x0302: '\u02C6', // curcumflex
- 0x0303: '\u02DC', // tilde accent
- 0x0304: '\u02C9', // macron
- 0x0306: '\u02D8', // breve
- 0x0307: '\u02D9', // dot
- 0x0308: '\u00A8', // diaresis
- 0x030A: '\u02DA', // ring above
- 0x030C: '\u02C7', // caron
- 0x2192: '\u20D7',
- 0x2032: '\'',
- 0x2033: '\'\'',
- 0x2034: '\'\'\'',
- 0x2035: '`',
- 0x2036: '``',
- 0x2037: '```',
- 0x2057: '\'\'\'\'',
- 0x20D0: '\u21BC', // combining left harpoon
- 0x20D1: '\u21C0', // combining right harpoon
- 0x20D6: '\u2190', // combining left arrow
- 0x20E1: '\u2194', // combining left-right arrow
- 0x20F0: '*', // combining asterisk
- 0x20DB: '...', // combining three dots above
- 0x20DC: '....', // combining four dots above
- 0x20EC: '\u21C1', // combining low left harpoon
- 0x20ED: '\u21BD', // combining low right harpoon
- 0x20EE: '\u2190', // combining low left arrows
- 0x20EF: '\u2192' // combining low right arrows
- };
- /**
- * Default map for characters inside <mo>
- */
- protected static defaultMoMap: RemapMap = {
- 0x002D: '\u2212' // hyphen
- };
- /**
- * Default map for characters inside <mn>
- */
- protected static defaultMnMap: RemapMap = {
- 0x002D: '\u2212' // hyphen
- };
- /**
- * The default font parameters for the font
- */
- public static defaultParams: FontParameters = {
- x_height: .442,
- quad: 1,
- num1: .676,
- num2: .394,
- num3: .444,
- denom1: .686,
- denom2: .345,
- sup1: .413,
- sup2: .363,
- sup3: .289,
- sub1: .15,
- sub2: .247,
- sup_drop: .386,
- sub_drop: .05,
- delim1: 2.39,
- delim2: 1.0,
- axis_height: .25,
- rule_thickness: .06,
- big_op_spacing1: .111,
- big_op_spacing2: .167,
- big_op_spacing3: .2,
- big_op_spacing4: .6,
- big_op_spacing5: .1,
- surd_height: .075,
- scriptspace: .05,
- nulldelimiterspace: .12,
- delimiterfactor: 901,
- delimitershortfall: .3,
- min_rule_thickness: 1.25, // in pixels
- separation_factor: 1.75, // expansion factor for spacing e.g. between accents and base
- extra_ic: .033 // extra spacing for scripts (compensate for not having actual ic values)
- };
- /**
- * The default delimiter data
- */
- protected static defaultDelimiters: DelimiterMap<any> = {};
- /**
- * The default character data
- */
- protected static defaultChars: CharMapMap<any> = {};
- /**
- * The default variants for the fixed size stretchy delimiters
- */
- protected static defaultSizeVariants: string[] = [];
- /**
- * The default variants for the assembly parts for stretchy delimiters
- */
- protected static defaultStretchVariants: string[] = [];
- /**
- * The font options
- */
- protected options: OptionList;
- /**
- * The actual variant information for this font
- */
- protected variant: VariantMap<C, V> = {};
- /**
- * The actual delimiter information for this font
- */
- protected delimiters: DelimiterMap<D> = {};
- /**
- * The actual size variants to use for this font
- */
- protected sizeVariants: string[];
- /**
- * The actual stretchy variants to use for this font
- */
- protected stretchVariants: string[];
- /**
- * The data to use to make variants to default fonts and css for unknown characters
- */
- protected cssFontMap: CssFontMap = {};
- /**
- * A prefix to use for explicit font-family CSS settings
- */
- public cssFamilyPrefix: string;
- /**
- * The character maps
- */
- protected remapChars: RemapMapMap = {};
- /**
- * The actual font parameters for this font
- */
- public params: FontParameters;
- /**
- * Factor by which to multiply italic correction for computation of delta in munderover
- */
- public skewIcFactor: number = .75;
- /**
- * Any styles needed for the font
- */
- protected _styles: StyleList;
- /**
- * @param {CharMap} font The font to check
- * @param {number} n The character to get options for
- * @return {CharOptions} The options for the character
- */
- public static charOptions(font: CharMap<CharOptions>, n: number): CharOptions {
- const char = font[n];
- if (char.length === 3) {
- (char as any)[3] = {};
- }
- return char[3];
- }
- /**
- * Copies the data from the defaults to the instance
- *
- * @param {OptionList} options The options for this font
- *
- * @constructor
- */
- constructor(options: OptionList = null) {
- let CLASS = (this.constructor as typeof FontData);
- this.options = userOptions(defaultOptions({}, CLASS.OPTIONS), options);
- this.params = {...CLASS.defaultParams};
- this.sizeVariants = [...CLASS.defaultSizeVariants];
- this.stretchVariants = [...CLASS.defaultStretchVariants];
- this.cssFontMap = {...CLASS.defaultCssFonts};
- for (const name of Object.keys(this.cssFontMap)) {
- if (this.cssFontMap[name][0] === 'unknown') {
- this.cssFontMap[name][0] = this.options.unknownFamily;
- }
- }
- this.cssFamilyPrefix = CLASS.defaultCssFamilyPrefix;
- this.createVariants(CLASS.defaultVariants);
- this.defineDelimiters(CLASS.defaultDelimiters);
- for (const name of Object.keys(CLASS.defaultChars)) {
- this.defineChars(name, CLASS.defaultChars[name]);
- }
- this.defineRemap('accent', CLASS.defaultAccentMap);
- this.defineRemap('mo', CLASS.defaultMoMap);
- this.defineRemap('mn', CLASS.defaultMnMap);
- }
- /**
- * Returns list of styles needed for the font
- */
- get styles(): StyleList {
- return this._styles;
- }
- /**
- * Sets styles needed for that font.
- */
- set styles(style: StyleList) {
- this._styles = style;
- }
- /**
- * Creates the data structure for a variant -- an object with
- * prototype chain that includes a copy of the linked variant,
- * and then the inherited variant chain.
- *
- * The reason for this extra link is that for a mathvariant like
- * bold-italic, you want to inherit from both the bold and
- * italic variants, but the prototype chain can only inherit
- * from one. So for bold-italic, we make an object that has a
- * prototype consisting of a copy of the bold data, and add the
- * italic data as the prototype chain. (Since this is a copy, we
- * keep a record of this link so that if bold is changed later,
- * we can update this copy. That is not needed for the prototype
- * chain, since the prototypes are the actual objects, not
- * copies.) We then use this bold-plus-italic object as the
- * prototype chain for the bold-italic object
- *
- * That means that bold-italic will first look in its own object
- * for specifically bold-italic glyphs that are defined there,
- * then in the copy of the bold glyphs (only its top level is
- * copied, not its prototype chain), and then the specifically
- * italic glyphs, and then the prototype chain for italics,
- * which is the normal glyphs. Effectively, this means
- * bold-italic looks for bold-italic, then bold, then italic,
- * then normal glyphs in order to find the given character.
- *
- * @param {string} name The new variant to create
- * @param {string} inherit The variant to use if a character is not in this one
- * @param {string} link A variant to search before the inherit one (but only
- * its top-level object).
- */
- public createVariant(name: string, inherit: string = null, link: string = null) {
- let variant = {
- linked: [] as CharMap<C>[],
- chars: (inherit ? Object.create(this.variant[inherit].chars) : {}) as CharMap<C>
- } as V;
- if (link && this.variant[link]) {
- Object.assign(variant.chars, this.variant[link].chars);
- this.variant[link].linked.push(variant.chars);
- variant.chars = Object.create(variant.chars);
- }
- this.remapSmpChars(variant.chars, name);
- this.variant[name] = variant;
- }
- /**
- * Create the mapping from Basic Latin and Greek blocks to
- * the Math Alphanumeric block for a given variant.
- */
- protected remapSmpChars(chars: CharMap<C>, name: string) {
- const CLASS = (this.constructor as typeof FontData);
- if (CLASS.VariantSmp[name]) {
- const SmpRemap = CLASS.SmpRemap;
- const SmpGreek = [null, null, CLASS.SmpRemapGreekU, CLASS.SmpRemapGreekL];
- for (const [i, lo, hi] of CLASS.SmpRanges) {
- const base = CLASS.VariantSmp[name][i];
- if (!base) continue;
- for (let n = lo; n <= hi; n++) {
- if (n === 0x3A2) continue;
- const smp = base + n - lo;
- chars[n] = this.smpChar(SmpRemap[smp] || smp);
- }
- if (SmpGreek[i]) {
- for (const n of Object.keys(SmpGreek[i]).map((x) => parseInt(x))) {
- chars[n] = this.smpChar(base + SmpGreek[i][n]);
- }
- }
- }
- }
- if (name === 'bold') {
- chars[0x3DC] = this.smpChar(0x1D7CA);
- chars[0x3DD] = this.smpChar(0x1D7CB);
- }
- }
- /**
- * @param {number} n Math Alphanumerics position for this remapping
- * @return {CharData<C>} The character data for the remapping
- */
- protected smpChar(n: number): CharData<C> {
- return [ , , , {smp: n} as C];
- }
- /**
- * Create a collection of variants
- *
- * @param {string[][]} variants Array of [name, inherit?, link?] values for
- * the variants to define
- */
- public createVariants(variants: string[][]) {
- for (const variant of variants) {
- this.createVariant(variant[0], variant[1], variant[2]);
- }
- }
- /**
- * Defines new character data in a given variant
- * (We use Object.assign() here rather than the spread operator since
- * the character maps are objeccts with prototypes, and we don't
- * want to loose those by doing {...chars} or something similar.)
- *
- * @param {string} name The variant for these characters
- * @param {CharMap} chars The characters to define
- */
- public defineChars(name: string, chars: CharMap<C>) {
- let variant = this.variant[name];
- Object.assign(variant.chars, chars);
- for (const link of variant.linked) {
- Object.assign(link, chars);
- }
- }
- /**
- * Defines stretchy delimiters
- *
- * @param {DelimiterMap} delims The delimiters to define
- */
- public defineDelimiters(delims: DelimiterMap<D>) {
- Object.assign(this.delimiters, delims);
- }
- /**
- * Defines a character remapping map
- *
- * @param {string} name The name of the map to define or augment
- * @param {RemapMap} remap The characters to remap
- */
- public defineRemap(name: string, remap: RemapMap) {
- if (!this.remapChars.hasOwnProperty(name)) {
- this.remapChars[name] = {};
- }
- Object.assign(this.remapChars[name], remap);
- }
- /**
- * @param {number} n The delimiter character number whose data is desired
- * @return {DelimiterData} The data for that delimiter (or undefined)
- */
- public getDelimiter(n: number): DelimiterData {
- return this.delimiters[n];
- }
- /**
- * @param {number} n The delimiter character number whose variant is needed
- * @param {number} i The index in the size array of the size whose variant is needed
- * @return {string} The variant of the i-th size for delimiter n
- */
- public getSizeVariant(n: number, i: number): string {
- if (this.delimiters[n].variants) {
- i = this.delimiters[n].variants[i];
- }
- return this.sizeVariants[i];
- }
- /**
- * @param {number} n The delimiter character number whose variant is needed
- * @param {number} i The index in the stretch array of the part whose variant is needed
- * @return {string} The variant of the i-th part for delimiter n
- */
- public getStretchVariant(n: number, i: number): string {
- return this.stretchVariants[this.delimiters[n].stretchv ? this.delimiters[n].stretchv[i] : 0];
- }
- /**
- * @param {string} name The variant whose character data is being querried
- * @param {number} n The unicode number for the character to be found
- * @return {CharData} The data for the given character (or undefined)
- */
- public getChar(name: string, n: number): CharData<C> {
- return this.variant[name].chars[n];
- }
- /**
- * @param {string} name The name of the variant whose data is to be obtained
- * @return {V} The data for the requested variant (or undefined)
- */
- public getVariant(name: string): V {
- return this.variant[name];
- }
- /**
- * @param {string} variant The name of the variant whose data is to be obtained
- * @return {CssFontData} The CSS data for the requested variant
- */
- public getCssFont(variant: string): CssFontData {
- return this.cssFontMap[variant] || ['serif', false, false];
- }
- /**
- * @param {string} family The font camily to use
- * @return {string} The family with the css prefix
- */
- public getFamily(family: string): string {
- return (this.cssFamilyPrefix ? this.cssFamilyPrefix + ', ' + family : family);
- }
- /**
- * @param {string} name The name of the map to query
- * @param {number} c The character to remap
- * @return {string} The remapped character (or the original)
- */
- public getRemappedChar(name: string, c: number): string {
- const map = this.remapChars[name] || {} as RemapMap;
- return map[c];
- }
- }
- /**
- * The class interface for the FontData class
- *
- * @template C The CharOptions type
- * @template V The VariantData type
- * @template D The DelimiterData type
- */
- export interface FontDataClass<C extends CharOptions, V extends VariantData<C>, D extends DelimiterData> {
- OPTIONS: OptionList;
- defaultCssFonts: CssFontMap;
- defaultVariants: string[][];
- defaultParams: FontParameters;
- /* tslint:disable-next-line:jsdoc-require */
- charOptions(font: CharMap<C>, n: number): C;
- new(...args: any[]): FontData<C, V, D>;
- }
|