2 Copyright © 1995-2012, The AROS Development Team. All rights reserved.
5 Desc: Calculate the size a text needs in a specific rastport.
8 #include "graphics_intern.h"
9 #include <graphics/rastport.h>
11 /*****************************************************************************
14 #include <graphics/rastport.h>
15 #include <graphics/text.h>
16 #include <proto/graphics.h>
18 AROS_LH4(void, TextExtent
,
21 AROS_LHA(struct RastPort
*, rp
, A1
),
22 AROS_LHA(CONST_STRPTR
, string
, A0
),
23 AROS_LHA(ULONG
, count
, D0
),
24 AROS_LHA(struct TextExtent
*, textExtent
, A2
),
27 struct GfxBase
*, GfxBase
, 115, Graphics
)
30 This function determines the metric of the space that a text string
35 string - address of string
36 count - number of characters
37 textExtent - storing place for the result
38 te_Width - same as TextLength() result: the rp_cp_x
39 advance that rendering this text would cause.
40 te_Height - same as tf_YSize. The height of the
42 te_Extent.MinX - the offset to the left side of the
43 rectangle this would render into.
45 te_Extent.MinY - same as -tf_Baseline. The offset
46 from the baseline to the top of the
47 rectangle this would render into.
48 te_Extent.MaxX - the offset of the left side of the
49 rectangle this would render into.
50 Often the same as te_Width-1.
51 te_Extent.MaxY - same as tf_YSize-tf_Baseline-1.
52 The offset from the baseline to the
53 bottom of the rectangle this would
68 *****************************************************************************/
72 struct TextFont
*tf
= rp
->Font
;
74 textExtent
->te_Width
= TextLength(rp
, string
, count
);
75 textExtent
->te_Height
= tf
->tf_YSize
;
76 textExtent
->te_Extent
.MinY
= -tf
->tf_Baseline
;
77 textExtent
->te_Extent
.MaxY
= textExtent
->te_Height
- 1 - tf
->tf_Baseline
;
79 /* MinX/MaxX can be a bit more complicated if there are kerning/space
82 if ((tf
->tf_Flags
& FPF_PROPORTIONAL
) || tf
->tf_CharKern
86 WORD defaultidx
= NUMCHARS(tf
) - 1; /* Last glyph is default glyph */
90 textExtent
->te_Extent
.MinX
= 0;
91 textExtent
->te_Extent
.MaxX
= 0;
100 if ( c
< tf
->tf_LoChar
|| c
> tf
->tf_HiChar
)
106 idx
= c
- tf
->tf_LoChar
;
109 #define CHECK_MINMAX(x) \
110 if ((x) < textExtent->te_Extent.MinX) \
111 textExtent->te_Extent.MinX = (x); \
112 if ((x) > textExtent->te_Extent.MaxX) \
113 textExtent->te_Extent.MaxX = (x);
115 x
+= ((WORD
*)tf
->tf_CharKern
)[idx
];
118 x2
= x
+ ( ( ((ULONG
*)tf
->tf_CharLoc
)[idx
] ) & 0xFFFF);
121 x
+= ((WORD
*)tf
->tf_CharSpace
)[idx
];
127 } /* while(count--) */
129 textExtent
->te_Extent
.MaxX
--;
133 } /* if ((tf->tf_Flags & FPF_PROPORTIONAL) || tf->tf_CharKern
134 * || tf->tf_CharSpace) */
137 /* Normal non-proportional Font */
138 textExtent
->te_Extent
.MinX
= 0;
139 textExtent
->te_Extent
.MaxX
= textExtent
->te_Width
- 1;
142 if (rp
->AlgoStyle
& FSF_BOLD
)
144 textExtent
->te_Extent
.MaxX
+= tf
->tf_BoldSmear
;
147 if (rp
->AlgoStyle
& FSF_ITALIC
)
154 **..##..##.. ..##..##..
159 textExtent
->te_Extent
.MaxX
+= tf
->tf_Baseline
/ 2;
160 textExtent
->te_Extent
.MinX
-= (tf
->tf_YSize
- tf
->tf_Baseline
) / 2;