Redone font converter wip

This commit is contained in:
Willem Cazander 2022-02-21 00:41:24 +01:00
parent 9008ea2f22
commit 9f727d318f
18 changed files with 376 additions and 376 deletions

View file

@ -1,40 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<root:module xmlns:root="http://eld.x4o.org/xml/ns/eld-root"
xmlns:eld="http://eld.x4o.org/xml/ns/eld-lang"
xmlns:conv="http://eld.x4o.org/xml/ns/eld-conv"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://eld.x4o.org/xml/ns/eld-root http://eld.x4o.org/xml/ns/eld-root-1.0.xsd"
providerHost="unicode-plane.x4o.distributedrebirth.love" providerName="UnicodePlane Encryption"
id="unicode-plane-module">
<eld:classBindingHandler id="UnicodePlane-UnicodePlaneBase"
parentClass="love.distributedrebirth.unicode4d.base.UnicodePlane"
childClass="love.distributedrebirth.unicode4d.base.UnicodePlaneBase"
addMethod="addPlane" getMethod="getPlanes" />
<eld:classBindingHandler id="UnicodePlaneBase-UnicodePlaneBaseGlyph"
parentClass="love.distributedrebirth.unicode4d.base.UnicodePlaneBase"
childClass="love.distributedrebirth.unicode4d.base.UnicodePlaneBaseGlyph"
addMethod="addBaseGlyph" getMethod="getBaseGlyphs" />
<eld:namespace
uri="http://unicode-plane.x4o.distributedrebirth.love/xml/ns/unicode-plane-root"
schemaUri="http://unicode-plane.x4o.distributedrebirth.love/xml/ns/unicode-plane-root-1.0.xsd"
schemaResource="unicode-plane-root-1.0.xsd" schemaPrefix="root"
description="Root namespace to have nice namespaceing."
name="UnicodePlane Root Namespace" languageRoot="true" id="root">
<eld:element tag="unicode"
objectClass="love.distributedrebirth.unicode4d.base.UnicodePlane"/>
</eld:namespace>
<eld:namespace
uri="http://unicode-plane.x4o.distributedrebirth.love/xml/ns/unicode-plane-lang"
schemaUri="http://unicode-plane.x4o.distributedrebirth.love/xml/ns/unicode-plane-lang-1.0.xsd"
schemaResource="unicode-plane-lang-1.0.xsd" schemaPrefix="l"
description="Language namespace to store unicode planes."
name="UnicodePlane Language Namespace" id="l">
<eld:element tag="plane"
objectClass="love.distributedrebirth.unicode4d.base.UnicodePlaneBase" />
<eld:element tag="glyph"
objectClass="love.distributedrebirth.unicode4d.base.UnicodePlaneBaseGlyph" />
</eld:namespace>
</root:module>

View file

@ -0,0 +1,40 @@
<?xml version="1.0" encoding="UTF-8"?>
<root:module xmlns:root="http://eld.x4o.org/xml/ns/eld-root"
xmlns:eld="http://eld.x4o.org/xml/ns/eld-lang"
xmlns:conv="http://eld.x4o.org/xml/ns/eld-conv"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://eld.x4o.org/xml/ns/eld-root http://eld.x4o.org/xml/ns/eld-root-1.0.xsd"
providerHost="unicode4d-atlas.x4o.distributedrebirth.love" providerName="FontAtlas Glyph Store"
id="unicode4d-atlas-module">
<eld:classBindingHandler id="FontAtlas-FontAtlasStore"
parentClass="love.distributedrebirth.unicode4d.atlas.FontAtlas"
childClass="love.distributedrebirth.unicode4d.atlas.FontAtlasStore"
addMethod="addStore" getMethod="getStores" />
<eld:classBindingHandler id="FontAtlasStore-FontAtlasStoreGlyph"
parentClass="love.distributedrebirth.unicode4d.atlas.FontAtlasStore"
childClass="love.distributedrebirth.unicode4d.atlas.FontAtlasStoreGlyph"
addMethod="addGlyph" getMethod="getGlyphs" />
<eld:namespace
uri="http://unicode4d-atlas.x4o.distributedrebirth.love/xml/ns/unicode4d-atlas-root"
schemaUri="http://unicode4d-atlas.x4o.distributedrebirth.love/xml/ns/unicode4d-atlas-root-1.0.xsd"
schemaResource="unicode4d-atlas-root-1.0.xsd" schemaPrefix="r"
description="Namespace to have single root."
name="UnicodePlane Root Namespace" languageRoot="true" id="r">
<eld:element tag="a"
objectClass="love.distributedrebirth.unicode4d.atlas.FontAtlas"/>
</eld:namespace>
<eld:namespace
uri="http://unicode4d-atlas.x4o.distributedrebirth.love/xml/ns/unicode4d-atlas-lang"
schemaUri="http://unicode4d-atlas.x4o.distributedrebirth.love/xml/ns/unicode4d-atlas-lang-1.0.xsd"
schemaResource="unicode4d-atlas-lang-1.0.xsd" schemaPrefix="l"
description="Namespace to store glyphs."
name="UnicodePlane Language Namespace" id="l">
<eld:element tag="s"
objectClass="love.distributedrebirth.unicode4d.atlas.FontAtlasStore" />
<eld:element tag="g"
objectClass="love.distributedrebirth.unicode4d.atlas.FontAtlasStoreGlyph" />
</eld:namespace>
</root:module>

View file

@ -5,6 +5,6 @@
xsi:schemaLocation="http://language.x4o.org/xml/ns/modules http://language.x4o.org/xml/ns/modules-1.0.xsd"
>
<language version="1.0">
<eld-resource>unicode-plane-lang.eld</eld-resource>
<eld-resource>unicode4d-atlas-lang.eld</eld-resource>
</language>
</modules>

View file

@ -4,5 +4,5 @@
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://language.x4o.org/xml/ns/drivers http://language.x4o.org/xml/ns/drivers-1.0.xsd"
>
<driver language="unicode-plane" className="love.distributedrebirth.unicode4d.base.UnicodePlaneDriver"/>
<driver language="unicode4d-atlas" className="love.distributedrebirth.unicode4d.atlas.FontAtlasDriver"/>
</drivers>