@LyleCox Darn. I guess the GC might be the culprit then. (Today)

SFML C#'s framerate seems a little.. jittery? Like it's hitching every so often... or I'm just going insane. (Today)

@DiscordGames Oh snap I might do that sometime! <3 (Today)

@infinite_ammo Oh bo :( (Today)

@infinite_ammo 64 GIGS OF RAM DO IT (Today)

One time I put "10" instead of "10f" for a float and I almost died. (Today)

RT @infinite_ammo: Check out some music I'm working on for Crypt of the NecroDancer :) t.co/Gn7G9HbQSE (Today)

RT @MattThorson: Streamin' some TowerFall level design once again t.co/x0cSmmrKOX (Today)

My website gets a lot of traffic from Russian sites saying that Offspring Fling is a pikachu adventure game. (Today)

@TommyRefenes @JasonBrouwers @ChevyRay Yeah I would use a shader. (Today)

@JasonBrouwers @TommyRefenes @ChevyRay Hahah yeah it's pretty insane. I just want some of the ancient features like animated palettes... (Today)

@aeiowu NICE Cosmic dream cocoa is probably the best you can get. (Today)

@TommyRefenes @ChevyRay I want to make SNES games, Tommy. You know what I did when I got into wario world? Tried to order an SNES kit. (Today)

@BenKuchera You could disguise yourself and attend as Ken Buchera. (Today)

@EvanBalster @ChevyRay Shaders are pretty hard to do though. :( I wish I could just assign a palette to a bitmap and have it work haha (Today)

@aeiowu Hey I had a dream you were shoveling all the snow in front of my Aunt's house, so thanks for doing that. (Today)

@ADAMATOMIC Yo that guy will eat your sweater in one bite, be careful. (Today)

@ChevyRay Oh right and I think there are many more things that Ogmo Editor could do to make it way better. (Today)

@ChevyRay I wish palette shifting for 2d pixel art was easier to do, like those old school waterfalls that just cycled colors... <3 (Today)

RT @ChevyRay: For those of you interested in a "unity2d", keep your eye on @Polycode! (Today)

follow
search

2013 - 2 - 4 / 8:02 am / games

Dev Log: Some Bitmap Text

I guess I'll start calling these posts Dev Logs now? Yeah, that sounds good.

Image
The latest thing I've been chipping away at is handling bitmap text in my Flashpunk extended framework thing. There have been a couple of people that have posted Bitmap Font classes but they didn't do what I wanted, and I'm way better at coding my own thing from scratch vs. trying to modify someone else's code to do what I want.

Right now my bitmap text secret technology can do some cool stuff, like three different align modes (left, center, and right) which sounds pretty simple but it actually took me awhile to think of the proper solution for lining up text in a certain way. I also have some colored text as you can see in that awesome screenshot, and the way I do that is pretty cool (I think.) My code for coloring text ends up looking something like this:

//make da bitmap text
var bmpText:BitmapText = new BitmapText("This text will be #1GREEN!!#0 Yeah.", Global.bitmapFont);
//define the color "1" as green
bmpText.defineColor("1", 0x00FF00);


You can see a little bit how it works. I can define colors, which are assigned to certain characters (any Ascii character can be used) and then I can mark colors with a special character like '#'. Text after that character will then be drawn with a tint of that color. It's super easy to do colored words with this system, but it makes some other stuff pretty difficult.

One thing I still haven't figured out is how to escape the special character. Like if I wanted to actually display a '#' in my string, I don't have a way of doing that right now. I wanted to have '##' just escape out to a '#', and I was trying some fancy stuff with regular expressions for awhile but... yeah, things have not worked out yet. This is something I can probably just tackle later though.

Bitmap text comes in handy for a few reasons, and I think I'll make a more detailed blog post about that at some point down the road!

4 Comments
Avatar

2013 - 2 - 4 10:52 AM

Jake Albano

I assume you're looping through the string a character at a time at some point. Can't you just do something like this?

if (charAt(position) == "#")
{
if (charAt(position + 1) != "#"))
{
changeColor();
}
else
{
result += "#";
}
}

Obviously pseudocode, but that's how I generally handle escaping in situations like this.

Avatar

2013 - 2 - 4 11:59 AM

NounVerber

@jake
In your code the second # would still change the color. ;)

Avatar

2013 - 2 - 4 7:04 PM

Jake Albano

Well, yeah; obviously you would increment the position in the string so it would skip over the next '#'. I should have put that in there. :)

Avatar

2013 - 2 - 5 6:51 AM

Kyle

Yeah, I've tried a number of different ways but they all come with their own complications later. Like right now I'm having problems with typing out bitmap text character by character because of the color code escape stuff.

I was trying a simple technique of doing a string replace on "##" and replacing it with a random ascii character, and then when I hit that ascii character in the string I render the "#" instead. The problem then becomes that the internal length of the string is now one less than the given string because ## is translated into one character, and I use the string length to determine which character to type out next... maybe if I replace ## with two characters it will work... hm!

Avatar

Post your comment!

POST COMMENT

about

About

Hi there, my name is Kyle, and I'm a 27 year old kid with adult powers. I'm making video games and living the indie game developer life in Tempe, Arizona. Here you will find my thoughts, games, websites, doodles, and other stuff like that. I worked on Snapshot, Offspring Fling, and a whole bunch of other games. If you want to get a hold of me use the form on the bottom of the page, leave a comment, or just tweet at me. I try to post three times a week. Thanks for stoppin' by!

facebook

old sites

xerus kylepulver

contact

Your message has been sent! Thanks :)
SEND MESSAGE