]> gitweb.factorcode.org Git - factor.git/blob - basis/core-text/core-text.factor
math.vectors: changes so that some vocabs that can use math.vector words does it
[factor.git] / basis / core-text / core-text.factor
1 ! Copyright (C) 2009 Slava Pestov.
2 ! See http://factorcode.org/license.txt for BSD license.
3 USING: arrays alien alien.c-types alien.data alien.syntax kernel
4 destructors accessors fry words hashtables strings sequences
5 memoize assocs make math math.order math.vectors math.rectangles
6 math.functions locals init namespaces combinators fonts colors
7 cache core-foundation core-foundation.strings
8 core-foundation.attributed-strings core-foundation.utilities
9 core-graphics core-graphics.types core-text.fonts ;
10 IN: core-text
11
12 TYPEDEF: void* CTLineRef
13
14 C-GLOBAL: CFStringRef kCTFontAttributeName
15 C-GLOBAL: CFStringRef kCTKernAttributeName
16 C-GLOBAL: CFStringRef kCTLigatureAttributeName
17 C-GLOBAL: CFStringRef kCTForegroundColorAttributeName
18 C-GLOBAL: CFStringRef kCTParagraphStyleAttributeName
19 C-GLOBAL: CFStringRef kCTUnderlineStyleAttributeName
20 C-GLOBAL: CFStringRef kCTVerticalFormsAttributeName
21 C-GLOBAL: CFStringRef kCTGlyphInfoAttributeName
22
23 FUNCTION: CTLineRef CTLineCreateWithAttributedString ( CFAttributedStringRef string ) ;
24
25 FUNCTION: void CTLineDraw ( CTLineRef line, CGContextRef context ) ;
26
27 FUNCTION: CGFloat CTLineGetOffsetForStringIndex ( CTLineRef line, CFIndex charIndex, CGFloat* secondaryOffset ) ;
28
29 FUNCTION: CFIndex CTLineGetStringIndexForPosition ( CTLineRef line, CGPoint position ) ;
30
31 FUNCTION: double CTLineGetTypographicBounds ( CTLineRef line, CGFloat* ascent, CGFloat* descent, CGFloat* leading ) ;
32
33 FUNCTION: CGRect CTLineGetImageBounds ( CTLineRef line, CGContextRef context ) ;
34
35 SYMBOL: retina?
36
37 ERROR: not-a-string object ;
38
39 MEMO: make-attributes ( open-font color -- hashtable )
40     [
41         kCTForegroundColorAttributeName ,,
42         kCTFontAttributeName ,,
43     ] H{ } make ;
44
45 : <CTLine> ( string open-font color -- line )
46     [
47         [
48             dup selection? [ string>> ] when
49             dup string? [ not-a-string ] unless
50         ] 2dip
51         make-attributes <CFAttributedString> &CFRelease
52         CTLineCreateWithAttributedString
53     ] with-destructors ;
54
55 TUPLE: line < disposable font string line metrics image loc dim
56 render-loc render-dim ;
57
58 : typographic-bounds ( line -- width ascent descent leading )
59     { CGFloat CGFloat CGFloat }
60     [ CTLineGetTypographicBounds ] with-out-parameters ; inline
61
62 : store-typographic-bounds ( metrics width ascent descent leading -- metrics )
63     {
64         [ >>width ]
65         [ >>ascent ]
66         [ >>descent ]
67         [ >>leading ]
68     } spread ; inline
69
70 : compute-font-metrics ( metrics font -- metrics )
71     [ CTFontGetCapHeight >>cap-height ]
72     [ CTFontGetXHeight >>x-height ]
73     bi ; inline
74
75 : compute-line-metrics ( open-font line -- line-metrics )
76     [ metrics new ] 2dip
77     [ compute-font-metrics ]
78     [ typographic-bounds store-typographic-bounds ] bi*
79     compute-height ;
80
81 : metrics>dim ( bounds -- dim )
82     [ width>> ] [ [ ascent>> ] [ descent>> ] bi + ] bi
83     [ ceiling >integer ]
84     bi@ 2array ;
85
86 : fill-background ( context font dim -- )
87     [ background>> >rgba-components CGContextSetRGBFillColor ]
88     [ [ 0 0 ] dip first2 <CGRect> CGContextFillRect ]
89     bi-curry* bi ;
90
91 : selection-rect ( dim line selection -- rect )
92     [ start>> ] [ end>> ] bi
93     [ f CTLineGetOffsetForStringIndex round ] bi-curry@ bi
94     [ drop nip 0 ] [ swap - swap second ] 3bi <CGRect> ;
95
96 : CGRect-translate-x ( CGRect x -- CGRect' )
97     [ dup CGRect-x ] dip - over set-CGRect-x ;
98
99 :: fill-selection-background ( context loc dim line string -- )
100     string selection? [
101         context string color>> >rgba-components CGContextSetRGBFillColor
102         context dim line string selection-rect
103         loc first CGRect-translate-x
104         CGContextFillRect
105     ] when ;
106
107 : line-rect ( line -- rect )
108     dummy-context CTLineGetImageBounds ;
109
110 : set-text-position ( context loc -- )
111     first2 [ neg ] bi@ CGContextSetTextPosition ;
112
113 :: line-loc ( metrics loc dim -- loc )
114     loc first
115     metrics ascent>> ceiling dim second loc second + - 2array ;
116
117 :: <line> ( font string -- line )
118     [
119         line new-disposable
120         font retina? get-global [ cache-font@2x ] [ cache-font ] if :> open-font
121         string open-font font foreground>> <CTLine> |CFRelease :> line
122         open-font line compute-line-metrics
123         [ >>metrics ] [ metrics>dim >>dim ] bi
124         font >>font
125         string >>string
126         line >>line
127     ] with-destructors ;
128
129 :: render ( line -- line image )
130     line line>> :> ctline
131     line string>> :> string
132     line font>> :> font
133
134     line render-loc>> [
135
136         ctline line-rect :> rect
137         rect origin>> CGPoint>loc :> (loc)
138         rect size>> CGSize>dim :> (dim)
139         (loc) vfloor :> loc
140         (loc) (dim) v+ vceiling :> ext
141         ext loc [ - >integer 1 max ] 2map :> dim
142
143         loc line render-loc<<
144         dim line render-dim<<
145
146         line metrics>> loc dim line-loc line loc<<
147
148     ] unless
149
150     line render-loc>> :> loc
151     line render-dim>> :> dim
152
153     line dim [
154         {
155             [ font dim fill-background ]
156             [ loc dim ctline string fill-selection-background ]
157             [ loc set-text-position ]
158             [ [ ctline ] dip CTLineDraw ]
159         } cleave
160     ] make-bitmap-image retina? get-global >>2x? ;
161
162 : line>image ( line -- image )
163     dup image>> [ render >>image ] unless image>> ;
164
165 M: line dispose* line>> CFRelease ;
166
167 SYMBOL: cached-lines
168
169 : cached-line ( font string -- line )
170     cached-lines get-global [ <line> ] 2cache ;
171
172 [ <cache-assoc> cached-lines set-global f retina? set-global ] "core-text" add-startup-hook