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.

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!
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!
spotlight
blog stuff
categories
tags
- actionscript
- air
- alec holowka
- art
- artxgame
- as3
- bill pullman
- blog
- csharp
- depict1
- design
- dev log
- devlog
- diet
- doodles
- flash
- flashdevelop
- flashpunk
- food
- game jam
- gamedev
- gdc
- good times
- haxe
- haxepunk
- id4
- igh
- internet
- ios
- jottobots
- namiko
- ninja slash
- nme
- offspring fling
- paleo
- pax
- pax10
- php
- pipa
- podcast
- programming
- promotion
- python
- sfml
- snapshot
- sopa
- space sushi
- speedrun
- steam
- sushi
- tools
- uat
- verge
- webdev
- winnitron
- yay!
archives
- may 2013 (10)
- april 2013 (15)
- march 2013 (13)
- february 2013 (15)
- january 2013 (3)
- december 2012 (1)
- november 2012 (2)
- october 2012 (1)
- september 2012 (4)
- august 2012 (1)
- july 2012 (1)
- may 2012 (1)
- april 2012 (1)
- march 2012 (1)
- february 2012 (1)
- january 2012 (1)
- november 2011 (2)
- september 2011 (1)
- july 2011 (1)
- june 2011 (1)
- may 2011 (1)
- april 2011 (2)
- march 2011 (4)
- february 2011 (4)
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.
2013 - 2 - 4 11:59 AM
NounVerber
@jake
In your code the second # would still change the color. ;)
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. :)
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!
Post your comment!