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"
|
|
|
|
|
|
|
|
.import _strlen, _toascii
|
2011-07-10 14:59:29 +00:00
|
|
|
.import umul8x16r16
|
2009-11-12 18:00:17 +00:00
|
|
|
|
|
|
|
;-----------------------------------------------------------------------------
|
|
|
|
; Aliases for zero page locations
|
|
|
|
|
|
|
|
Width := ptr1
|
|
|
|
WTab := ptr2
|
|
|
|
Text := ptr3
|
|
|
|
|
2009-10-30 21:26:35 +00:00
|
|
|
|
|
|
|
|
|
|
|
;-----------------------------------------------------------------------------
|
2011-07-17 18:36:12 +00:00
|
|
|
; unsigned __fastcall__ tgi_gettextwidth (const char* s);
|
2009-10-30 21:26:35 +00:00
|
|
|
; /* Calculate the width of the text in pixels according to the current text
|
2014-06-30 09:10:35 +00:00
|
|
|
; ** style.
|
|
|
|
; */
|
2009-10-30 21:26:35 +00:00
|
|
|
;
|
|
|
|
; Result is strlen (s) * tgi_textmagw * tgi_fontsizex
|
|
|
|
;
|
|
|
|
|
2009-11-12 18:00:17 +00:00
|
|
|
.code
|
2011-08-01 20:59:33 +00:00
|
|
|
.proc _tgi_gettextwidth
|
2009-10-30 21:26:35 +00:00
|
|
|
|
2009-11-12 18:00:17 +00:00
|
|
|
ldy _tgi_font
|
|
|
|
bne @L1 ; Jump if vector font
|
|
|
|
|
|
|
|
; Return the width of the string for the bitmap font
|
|
|
|
|
2009-10-30 21:26:35 +00:00
|
|
|
jsr _strlen
|
2012-09-20 21:14:46 +00:00
|
|
|
ldy _tgi_charwidth+1
|
2011-07-10 15:00:37 +00:00
|
|
|
sty ptr1
|
2011-07-10 14:59:29 +00:00
|
|
|
jmp umul8x16r16
|
2009-11-12 18:00:17 +00:00
|
|
|
|
|
|
|
; Return the width of the string for the vector font. To save some code, we
|
|
|
|
; will add up all the character widths and then multiply by the scale factor.
|
|
|
|
; Since the output routine will scale each single character, the result may
|
|
|
|
; be slightly different.
|
|
|
|
|
|
|
|
@L1: sta Text
|
|
|
|
stx Text+1 ; Save pointer to string
|
|
|
|
|
|
|
|
lda _tgi_vectorfont+1
|
|
|
|
tax
|
|
|
|
ora _tgi_vectorfont
|
|
|
|
beq @L9 ; Return zero if no font
|
|
|
|
|
|
|
|
lda _tgi_vectorfont
|
|
|
|
clc
|
|
|
|
adc #<(TGI_VECTORFONT::WIDTHS - TGI_VF_FIRSTCHAR)
|
|
|
|
sta WTab
|
|
|
|
txa
|
|
|
|
adc #>(TGI_VECTORFONT::WIDTHS - TGI_VF_FIRSTCHAR)
|
|
|
|
sta WTab+1
|
|
|
|
|
|
|
|
ldy #0
|
|
|
|
sty Width
|
|
|
|
sty Width+1 ; Zero the total width
|
|
|
|
|
|
|
|
; Sum up the widths of the single characters
|
|
|
|
|
|
|
|
@L2: ldy #0
|
|
|
|
lda (Text),y ; Get next char
|
|
|
|
beq @L4 ; Bail out if end of text reached
|
|
|
|
jsr _toascii ; Convert to ascii
|
|
|
|
tay
|
|
|
|
lda (WTab),y ; Get width of this char
|
|
|
|
clc
|
2011-07-10 14:59:29 +00:00
|
|
|
adc Width
|
2009-11-12 18:00:17 +00:00
|
|
|
sta Width
|
|
|
|
bcc @L3
|
|
|
|
inc Width+1
|
|
|
|
@L3: inc Text
|
|
|
|
bne @L2
|
|
|
|
inc Text+1
|
|
|
|
bne @L2
|
|
|
|
|
|
|
|
; We have the total width now, scale and return it
|
|
|
|
|
|
|
|
@L4: lda _tgi_textscalew
|
|
|
|
ldx _tgi_textscalew+1
|
|
|
|
jmp tgi_imulround
|
|
|
|
|
|
|
|
; Exit point if no font installed
|
|
|
|
|
|
|
|
@L9: rts
|
2009-10-30 21:26:35 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
2009-11-12 18:00:17 +00:00
|
|
|
|
|
|
|
|