123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250 |
- package main
- import (
- "encoding/binary"
- "fmt"
- "os"
- "red-green/door"
- "strings"
- )
- func ListFonts(filename string) {
- f, err := os.Open(filename)
- if err != nil {
- fmt.Printf("Open(%s): %s\n", filename, err)
- panic(err)
- }
- defer f.Close()
- fmt.Println(filename, ":")
- tdfonts := make([]byte, 20)
- f.Read(tdfonts)
- for {
- fontdef := make([]byte, 4)
- read, _ := f.Read(fontdef)
- if read != 4 {
- break
- }
- fontname := make([]byte, 13)
- f.Read(fontname)
- Name := strings.Trim(string(fontname[1:]), "\x00")
-
- f.Read(fontdef)
- single := make([]byte, 1)
- var FontType int8
- binary.Read(f, binary.LittleEndian, &FontType)
-
-
- fmt.Printf("Font: %s (type %d)\n", Name, FontType)
- f.Read(single)
-
-
- var BlockSize int16
- binary.Read(f, binary.LittleEndian, &BlockSize)
-
- letterOffsets := make([]int16, 94)
- binary.Read(f, binary.LittleEndian, &letterOffsets)
- if false {
- for idx, i := range letterOffsets {
- fmt.Printf(" %04X", i)
- if (idx+1)%10 == 0 {
- fmt.Println("")
- }
- }
- fmt.Println("")
- }
- data := make([]byte, BlockSize)
- binary.Read(f, binary.LittleEndian, &data)
- }
- }
- func byte_to_text(line []byte) string {
- var output string
- for _, ch := range line {
- output += fmt.Sprintf("0x%02x, ", ch)
- }
- if len(output) > 0 {
- output = output[:len(output)-2]
- }
- return output
- }
- func ExtractColor(name string, offsets []uint16, data []byte) (Font door.ColorFont) {
- defer func() {
- if r := recover(); r != nil {
-
- Font = door.ColorFont{}
- }
- }()
- var indexes []int
- var blocks [][][]byte
- var current [][]byte
- var line []byte
- pos := 0
- for pos < len(data) {
- indexes = append(indexes, pos)
- current = make([][]byte, 0)
- line = make([]byte, 0)
-
-
-
- pos += 2
-
- for pos < len(data) {
- ch := data[pos]
- pos++
- if ch == 0x00 {
-
- current = append(current, line)
- blocks = append(blocks, current)
-
-
- break
- }
- if ch == 0x0d {
-
- current = append(current, line)
- line = make([]byte, 0)
- continue
- }
- if ch == 0x26 {
-
- continue
- }
- line = append(line, ch)
- color := data[pos]
- pos++
- line = append(line, color)
- }
- }
-
- var single []int
- for _, o := range offsets {
- if o == 65535 {
- single = append(single, -1)
- continue
- }
- found := false
- for idx, i := range indexes {
- if o == uint16(i) {
- single = append(single, idx)
- found = true
- break
- }
- }
- if !found {
- panic(fmt.Sprintf("Unable to locate index %d / %x (font appears corrupted)", o, o))
- }
- }
- return door.ColorFont{Characters: single, Data: blocks}
- }
- func ExtractBlock(name string, offsets []uint16, data []byte) (Font door.BlockFont) {
- defer func() {
- if r := recover(); r != nil {
-
- Font = door.BlockFont{}
- }
- }()
-
- var indexes []int
- var blocks [][][]byte
- var current [][]byte
- var line []byte
- pos := 0
- for pos < len(data) {
- indexes = append(indexes, pos)
- current = make([][]byte, 0)
- line = make([]byte, 0)
-
-
-
- pos += 2
-
- for pos < len(data) {
- ch := data[pos]
- pos++
- if ch == 0x00 {
-
- current = append(current, line)
- blocks = append(blocks, current)
-
-
- break
- }
- if ch == 0x0d {
-
- current = append(current, line)
- line = make([]byte, 0)
- continue
- }
- if ch == 0x26 {
-
- continue
- }
- line = append(line, ch)
- }
- }
-
- var single []int
- for _, o := range offsets {
- if o == 65535 {
- single = append(single, -1)
- continue
- }
- found := false
- for idx, i := range indexes {
- if o == uint16(i) {
- single = append(single, idx)
- found = true
- break
- }
- }
- if !found {
- panic(fmt.Sprintf("Unable to locate index %d / %x (font appears corrupted)", o, o))
- }
- }
- return door.BlockFont{Characters: single, Data: blocks}
- }
|