2009-10-30 21:26:35 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 2009-10-30
|
|
|
|
;
|
|
|
|
|
|
|
|
|
|
|
|
.include "tgi-kernel.inc"
|
2009-11-12 18:00:17 +00:00
|
|
|
.include "tgi-vectorfont.inc"
|
|
|
|
.include "zeropage.inc"
|
2009-10-30 21:26:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
;-----------------------------------------------------------------------------
|
|
|
|
; unsigned __fastcall__ tgi_textheight (const char* s);
|
2009-11-12 18:00:17 +00:00
|
|
|
; /* Calculate the height of the text in pixels according to the current text
|
2009-10-30 21:26:35 +00:00
|
|
|
; * style.
|
|
|
|
; */
|
|
|
|
;
|
|
|
|
|
|
|
|
.proc _tgi_textheight
|
|
|
|
|
2009-11-12 18:00:17 +00:00
|
|
|
ldy _tgi_font
|
|
|
|
bne @L2 ; Jump if vector font
|
|
|
|
|
|
|
|
; Return the height for the bitmap font
|
|
|
|
|
2009-10-30 21:26:35 +00:00
|
|
|
lda _tgi_charheight
|
|
|
|
ldx #0
|
2009-11-12 18:00:17 +00:00
|
|
|
@L1: rts
|
|
|
|
|
|
|
|
; Return the height for the vector font
|
|
|
|
|
|
|
|
@L2: lda _tgi_vectorfont
|
|
|
|
tax
|
|
|
|
ora _tgi_vectorfont+1
|
|
|
|
beq @L1 ; Return zero if no font
|
|
|
|
|
|
|
|
stx ptr1
|
|
|
|
lda _tgi_vectorfont+1
|
|
|
|
sta ptr1+1
|
|
|
|
ldy #TGI_VECTORFONT::TOP
|
|
|
|
lda (ptr1),y
|
|
|
|
ldy #TGI_VECTORFONT::BOTTOM
|
|
|
|
clc
|
|
|
|
adc (ptr1),y ; Total font height is top + bottom
|
|
|
|
|
|
|
|
sta ptr1
|
|
|
|
lda #0
|
|
|
|
sta ptr1+1 ; Save base height in ptr1
|
|
|
|
|
|
|
|
lda _tgi_textscaleh
|
|
|
|
ldx _tgi_textscaleh+1 ; Get scale factor ...
|
|
|
|
jmp tgi_imulround ; ... and return scaled result
|
2009-10-30 21:26:35 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|