-
Notifications
You must be signed in to change notification settings - Fork 593
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Descriptions of stylistic sets are added to font files (#2664).
- Loading branch information
Showing
9 changed files
with
132 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
import fs from "fs"; | ||
import path from "path"; | ||
|
||
import * as Toml from "@iarna/toml"; | ||
import * as Parameters from "@iosevka/param"; | ||
import { applyLigationData } from "@iosevka/param/ligation"; | ||
import { applyMetricOverride } from "@iosevka/param/metric-override"; | ||
import * as VariantData from "@iosevka/param/variant"; | ||
|
||
import { createNamingDictFromArgv } from "../naming/index.mjs"; | ||
|
||
export async function getParametersT(argv) { | ||
const PARAMETERS_TOML = path.resolve(argv.paramsDir, "./parameters.toml"); | ||
const WEIGHTS_TOML = path.resolve(argv.paramsDir, "./shape-weight.toml"); | ||
const WIDTHS_TOML = path.resolve(argv.paramsDir, "./shape-width.toml"); | ||
const SLOPES_TOML = path.resolve(argv.paramsDir, "./shape-slope.toml"); | ||
const PRIVATE_TOML = path.resolve(argv.paramsDir, "./private-parameters.toml"); | ||
const VARIANTS_TOML = path.resolve(argv.paramsDir, "./variants.toml"); | ||
const LIGATIONS_TOML = path.resolve(argv.paramsDir, "./ligation-set.toml"); | ||
const parametersData = Object.assign( | ||
{}, | ||
await tryParseToml(PARAMETERS_TOML), | ||
await tryParseToml(WEIGHTS_TOML), | ||
await tryParseToml(WIDTHS_TOML), | ||
await tryParseToml(SLOPES_TOML), | ||
fs.existsSync(PRIVATE_TOML) ? await tryParseToml(PRIVATE_TOML) : {}, | ||
); | ||
const rawVariantsData = await tryParseToml(VARIANTS_TOML); | ||
const rawLigationData = await tryParseToml(LIGATIONS_TOML); | ||
function createParaImpl(argv) { | ||
let para = Parameters.init(deepClone(parametersData), argv); | ||
VariantData.apply(deepClone(rawVariantsData), para, argv); | ||
applyLigationData(deepClone(rawLigationData), para, argv); | ||
if (argv.excludedCharRanges) para.excludedCharRanges = argv.excludedCharRanges; | ||
if (argv.compatibilityLigatures) para.compatibilityLigatures = argv.compatibilityLigatures; | ||
if (argv.metricOverride) applyMetricOverride(para, argv.metricOverride, argv); | ||
para.naming = { ...para.naming, ...createNamingDictFromArgv(argv) }; | ||
return para; | ||
} | ||
function paraT(argv) { | ||
const para = createParaImpl(argv); | ||
para.createFork = function (tf) { | ||
const argv1 = deepClone(argv); | ||
tf(argv1, argv); | ||
return paraT(argv1); | ||
}; | ||
return para; | ||
} | ||
return paraT; | ||
} | ||
async function tryParseToml(str) { | ||
try { | ||
return Toml.parse(await fs.promises.readFile(str, "utf-8")); | ||
} catch (e) { | ||
throw new Error( | ||
`Failed to parse configuration file ${str}.\nPlease validate whether there's syntax error.\n${e}`, | ||
); | ||
} | ||
} | ||
function deepClone(pod) { | ||
return JSON.parse(JSON.stringify(pod)); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
import { Ot, Sigma } from "ot-builder"; | ||
|
||
import { nameFont } from "../naming/index.mjs"; | ||
|
||
export function postProcessingFeatureParams(para, font) { | ||
if (!para.variants.composites) return; | ||
if (!font.gsub) return; | ||
if (!font.name) return; | ||
|
||
const nm = new NameManager(); | ||
|
||
for (const [name, ss] of para.variants.composites) { | ||
if (!ss.description) continue; | ||
for (const feat of font.gsub.features) { | ||
if (feat.tag !== ss.tag) continue; | ||
const nameId = nm.getNameId(ss.description); | ||
feat.params = Sigma.DependentPair.create(Ot.GsubGpos.FeatureParams.TID_StylisticSet, { | ||
uiNameID: nameId, | ||
}); | ||
} | ||
} | ||
|
||
nm.apply(font); | ||
} | ||
|
||
class NameManager { | ||
constructor() { | ||
this.nameId = 257; | ||
this.nameMap = new Map(); | ||
} | ||
|
||
getNameId(name) { | ||
let nameId = this.nameMap.get(name); | ||
if (!nameId) { | ||
nameId = this.nameId++; | ||
this.nameMap.set(name, nameId); | ||
} | ||
return nameId; | ||
} | ||
|
||
apply(font) { | ||
for (const [name, id] of this.nameMap) { | ||
nameFont(font, id, name); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
import { postProcessingFeatureParams } from "./feature-params.mjs"; | ||
|
||
export function postProcessFont(para, font) { | ||
postProcessingFeatureParams(para, font); | ||
} |