Tonight I hope to code a routine that will let me draw a letter anywhere in the screen, which is simple but I want to be able to add a zoom factor, the ultimate aim tonight will be to have a zooming textwriter, this means that the letters must be scaled.
Traditionally it would have been pre-calculated but this time it is going to be done in real time.
I want to be able to provide the text routine with some interpolation value and the routine to automatically center the letter ie. if the letter is scaled to 16 * 16 from an original 32 * 32 image, the letter should be drawn with an offset of;
(32 - 16) / 2 = 8
This is quite important as it will give a better feel to the typer and make the letters easier to center.
Letters will be generated from a "floating source", some invisible point that moves around the screen and they will drift into place, zooming as they go.
The final impression will be of text that zooms into the screen from the distance.
So, probably a few hours work there for me, I will get into my IDE now and post back later

Hopefully with a working zoom text routine and typer.
Also I will tidy things up a little tonight if there is time.