Font in OpenGL

Whether you're a newbie or an experienced programmer, any questions, help, or just talk of any language will be welcomed here.

Moderator: Coders of Rage

Post Reply
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Font in OpenGL

Post by dandymcgee »

I'm curious how others who have more experience with OpenGL are drawing strings of text to the screen. I've googled a bit and there appears to be quite a few libraries people have made to make it "easier", but after trying a few and not being able to get them working I figured I'd ask the professionals. ;)

What (if any) libraries would you recommend, and how would I go about using them to draw 2D text to the screen. I don't need anything fancy like rotation, just plain old text.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
Falco Girgis
Elysian Shadows Team
Elysian Shadows Team
Posts: 10294
Joined: Thu May 20, 2004 2:04 pm
Current Project: Elysian Shadows
Favorite Gaming Platforms: Dreamcast, SNES, NES
Programming Language of Choice: C/++
Location: Studio Vorbis, AL
Contact:

Re: Font in OpenGL

Post by Falco Girgis »

I'm really not sure, but we use an image font. It's basically a spritesheet, and we manually load the width/sizes of each character.

Why the fuck would you do that, you ask?

Performance. TTF and actual font "rendering" libraries are slower than shit. They're also not going to be cross-platform. We're rendering letters at the (cheap) price of rendering little images. It isn't that big of a deal on PC, but it is on Dreamcast.
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Font in OpenGL

Post by MarauderIIC »

In more detail, it's probably something like moving character by character through the string and subtracting 'A' from it to figure out where in the font tilesheet it is, and then rendering that square. Easy when you think of it but you have to, first :)

In our system, '\n' is ignored, instead we manually set the y-coordinate that every string is drawn. But surely we could just add the height of a letter to it.
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
Innerscope
Chaos Rift Junior
Chaos Rift Junior
Posts: 200
Joined: Mon May 04, 2009 5:15 pm
Current Project: Gridbug
Favorite Gaming Platforms: NES, SNES
Programming Language of Choice: Obj-C, C++
Location: Emeryville, CA
Contact:

Re: Font in OpenGL

Post by Innerscope »

I'm not sure what OS you're running, but here's a nice app for MacOSX:
http://www.tinrocket.com/software/super ... eta/00260/

It makes it easy to generate good looking fonts for OpenGL. In addition it creates a text file containing data for each of the character's widths and heights for easier loading. Of course, you'll have to write your own function to actually load and display the font. (using Falco's method as mentioned)
Current Project: Gridbug
Website (under construction) : http://www.timcool.me
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Font in OpenGL

Post by dandymcgee »

Do you happen to have a link, or could you write up a quick example program of how I would load an image and clip the letters and store them in a map or an array? All the ones I've found are either pure C (which is difficult for me to understand sometimes) or just have way too much stuff crammed into their functions. I haven't done anything with textures, I'm too used to SDL_image and SDL_ttf.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
MarauderIIC
Respected Programmer
Respected Programmer
Posts: 3406
Joined: Sat Jul 10, 2004 3:05 pm
Location: Maryland, USA

Re: Font in OpenGL

Post by MarauderIIC »

Can't roll you an example, but look up opengl and [tilesheets or spritesheets] and gltexcoord
I realized the moment I fell into the fissure that the book would not be destroyed as I had planned.
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: Font in OpenGL

Post by Ginto8 »

Dandy, this isn't OGL, but it is the same concept: http://lazyfoo.net/SDL_tutorials/lesson30/index.php ;)
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Font in OpenGL

Post by dandymcgee »

Ginto8 wrote:Dandy, this isn't OGL, but it is the same concept: http://lazyfoo.net/SDL_tutorials/lesson30/index.php ;)
Yeah, I just didn't know how to clip in OpenGL, and still don't really know. But I'm gonna look up gltexcoord and see what I can find.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
Post Reply