mh-two-thousand-and-two
2024-04-12 3d2ec2fd0578d3ba0a414b0cc4e4a2ae60878596
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
var xml2js = require('xml2js')
var parseAttributes = require('./parse-attribs')
 
module.exports = function parseBMFontXML(data) {
  data = data.toString().trim()
 
  var output = {
    pages: [],
    chars: [],
    kernings: []
  }
 
  xml2js.parseString(data, function(err, result) {
    if (err)
      throw err
    if (!result.font)
      throw "XML bitmap font doesn't have <font> root"
    result = result.font
 
    output.common = parseAttributes(result.common[0].$)
    output.info = parseAttributes(result.info[0].$)
 
    for (var i = 0; i < result.pages.length; i++) {
      var p = result.pages[i].page[0].$
 
      if (typeof p.id === "undefined")
        throw new Error("malformed file -- needs page id=N")
      if (typeof p.file !== "string")
        throw new Error("malformed file -- needs page file=\"path\"")
 
      output.pages[parseInt(p.id, 10)] = p.file
    }
 
    if (result.chars) {
      var chrArray = result.chars[0]['char'] || []
      for (var i = 0; i < chrArray.length; i++) {
        output.chars.push(parseAttributes(chrArray[i].$))
      }
    }
 
    if (result.kernings) {
      var kernArray = result.kernings[0]['kerning'] || []
      for (var i = 0; i < kernArray.length; i++) {
        output.kernings.push(parseAttributes(kernArray[i].$))
      }
    }
  })
  return output
}