Page 1 of 2

Multiple lines w/ text.

PostPosted: Jan 23, 2004 @ 1:37am
by wyrd
Is there any way to display text with multiple lines? I tried the typical \n for newline, but it doesn't work.

Thanks in advance.

PostPosted: Jan 23, 2004 @ 2:08am
by ppcStudios

PostPosted: Jan 23, 2004 @ 2:32am
by Guest

PostPosted: Jan 23, 2004 @ 2:32am
by wyrd

PostPosted: Jan 24, 2004 @ 4:29pm
by mlepage

PostPosted: Jan 24, 2004 @ 9:37pm
by mlepage

PostPosted: Jan 24, 2004 @ 10:13pm
by wyrd

PostPosted: Feb 9, 2004 @ 7:13pm
by mlepage

PostPosted: Feb 20, 2004 @ 2:09pm
by Layre5150

PostPosted: Feb 20, 2004 @ 2:16pm
by Layre5150

PostPosted: Feb 20, 2004 @ 3:36pm
by ppcStudios

PostPosted: Feb 20, 2004 @ 3:38pm
by fzammetti

PostPosted: Feb 20, 2004 @ 4:37pm
by mlepage

PostPosted: Feb 20, 2004 @ 10:26pm
by Layre5150

PostPosted: Feb 23, 2004 @ 7:19pm
by mlepage
What you say is mostly true.

Your code still tokenizes every line for every drawing when it need not do so. It also relies on newlines embedded in the text.

Another way is to tokenize once (using newlines in the file, or a width, or whatever) and store those as character indices, not newline characters. Then, when drawing, you need not recompute the indices, but merely draw the substrings from one index to the next as separate lines.

This is not really more complicated than what you have. And that approach lends itself well to resizing, because you need not alter your text, just the indices of where new lines are.

The function I wrote above will not scroll, and it isn't efficient because it also does computation for every draw that it need only do once. But it's sufficient for drawing text into a rectangle without manually predetermining where all the newlines should be. That's ideal during development, even if for release you change it to a static layout by figuring out where to place new lines.

The nice thing about these forums is that readers have so many different solutions to choose from. It never hurts to see different approaches. Also, they are commented so they make a good starting point even if you want to alter them into something different.