mirror of
https://github.com/bloeys/nterm.git
synced 2025-12-29 06:28:20 +00:00
Todos
This commit is contained in:
@ -41,12 +41,12 @@ type FontAtlasGlyph struct {
|
||||
Advance float32
|
||||
}
|
||||
|
||||
//NewFontAtlasFromFile reads a TTF or TTC file and produces a font texture atlas containing
|
||||
//all its characters using the specified options. The atlas uses equally sized tiles
|
||||
//such that all characters use an equal horizontal/vertical on the atlas.
|
||||
//If the character is smaller than the tile then the rest of the tile is empty.
|
||||
// NewFontAtlasFromFile reads a TTF or TTC file and produces a font texture atlas containing
|
||||
// all its characters using the specified options. The atlas uses equally sized tiles
|
||||
// such that all characters use an equal horizontal/vertical on the atlas.
|
||||
// If the character is smaller than the tile then the rest of the tile is empty.
|
||||
//
|
||||
//Only monospaced fonts are supported
|
||||
// Only monospaced fonts are supported
|
||||
func NewFontAtlasFromFile(fontFile string, fontOptions *truetype.Options) (*FontAtlas, error) {
|
||||
|
||||
fBytes, err := os.ReadFile(fontFile)
|
||||
@ -129,12 +129,12 @@ func calcNeededAtlasSize(glyphs []rune, face font.Face, charPaddingXFixed, charP
|
||||
return atlasSizeX, atlasSizeY
|
||||
}
|
||||
|
||||
//NewFontAtlasFromFile uses the passed font to produce a font texture atlas containing
|
||||
//all its characters using the specified options. The atlas uses equally sized tiles
|
||||
//such that all characters use an equal horizontal/vertical on the atlas.
|
||||
//If the character is smaller than the tile then the rest of the tile is empty.
|
||||
// NewFontAtlasFromFile uses the passed font to produce a font texture atlas containing
|
||||
// all its characters using the specified options. The atlas uses equally sized tiles
|
||||
// such that all characters use an equal horizontal/vertical on the atlas.
|
||||
// If the character is smaller than the tile then the rest of the tile is empty.
|
||||
//
|
||||
//Only monospaced fonts are supported.
|
||||
// Only monospaced fonts are supported.
|
||||
func NewFontAtlasFromFont(f *truetype.Font, face font.Face, pointSize uint) (*FontAtlas, error) {
|
||||
|
||||
const maxAtlasSize = 8192
|
||||
@ -379,7 +379,7 @@ func SaveImgToPNG(img image.Image, file string) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
//getGlyphRangesFromFont returns a list of ranges, each range is: [i][0]<=range<[i][1]
|
||||
// getGlyphRangesFromFont returns a list of ranges, each range is: [i][0]<=range<[i][1]
|
||||
func getGlyphRangesFromFont(f *truetype.Font) (ret [][2]rune) {
|
||||
|
||||
isRuneInPrivateUseArea := func(r rune) bool {
|
||||
@ -411,7 +411,7 @@ func getGlyphRangesFromFont(f *truetype.Font) (ret [][2]rune) {
|
||||
return ret
|
||||
}
|
||||
|
||||
//getGlyphsFromRuneRanges takes ranges of runes and produces an array of all the runes in these ranges
|
||||
// getGlyphsFromRuneRanges takes ranges of runes and produces an array of all the runes in these ranges
|
||||
func getGlyphsFromRuneRanges(ranges [][2]rune) []rune {
|
||||
|
||||
out := make([]rune, 0)
|
||||
|
||||
3
main.go
3
main.go
@ -131,7 +131,8 @@ var (
|
||||
yOff float32 = 0
|
||||
)
|
||||
|
||||
// @TODO: We should 'draw' and apply ansi operations on an in-mem grid and send the final grid for rendering
|
||||
// @TODO: Convert most operations to use glyphGrid instead of drawing directly to glyphRend
|
||||
// @TODO: Implement SDF glyph rendering
|
||||
|
||||
func main() {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user