As of late 2021, we are in the process of updating Stencylpedia and fixing up outdated & broken content. Thanks for your patience!

148,676

Views

Beginner

Level

24

Comments

Drawing Text & HUDs

by Jon (Updated on 2016-01-19)


Contents

  • Introduction
  • Fonts
  • Creating Fonts
  • Drawing Text
  • HUDs
  • Example: Drawing the Score
  • Dialog System

Introduction

Text is an essential element of most games. Text conveys information to the player in real-time. This article will teach you how to draw text to the screen and how to style it.

Fonts

Fonts are a term used to describe the styling of text. Stencyl uses bitmap fonts to display text. Bitmap fonts are a special kind of font in which the font is pre-rendered to pixels.

Pros

  • They look consistent regardless of device or hardware.
  • They draw quickly.
  • Because they're pixel based, they can take on many more shapes and forms than traditional vector-based fonts.

Cons

  • You can’t grow them at runtime without ruining quality. (You have to create a new font for them)
  • They sometimes take up more disk space.

Creating Fonts

To create a font, use our Font Editor. You can create a new font by heading to File > Create New > Font.

This will bring up the Font Editor. Our Font Editor lets you style fonts based on both TrueType (TTF) font faces as well as images / sprite sheets.

If you'd like to learn more about creating fonts, read our Font Editor article.

Drawing Text

Once your game has a font, the easiest way to draw text is to draw it directly via the “when drawing” event. All text drawing blocks are found under Drawing > Drawing and Drawing > Styles.

Step 1: Set a Font

Never attempt to draw text without first telling the engine what font to use. If you fail to do this, the game may crash.

Step 2: Draw the text

Now, draw the text. Pass in the text and the (x,y) coordinates where you want it to draw.

Extra Blocks

If you need to position the text more precisely or make calculations based on the text's size, we provide a few blocks to help you out under Drawing > Styles.

HUDs (Heads Up Displays)

A HUD (heads up display) is a transparent, graphical dashboard that displays on top of everything else.

HUDs usually display statistics. Think of the dashboard on your car, the one that displays how fast your car is going, how much gas you have left, your engine's temperature, etc.

HUDs do not follow the camera

One aspect of HUDs that’s unique is that they don’t follow the camera. They always draw at the same place on screen, regardless of where you are. Think of them as being this piece of glass that's on top of the game but not part of the game itself.

How to make an Actor "disobey" the camera

Have you seen this block? (under Actor > Drawing)

The ability to anchor an actor to the screen was made specifically for creating HUDs. As the name suggests, anchoring an actor makes the actor ignore the camera, so it always is drawn at the same place on screen.

HUDs aren’t a part of Stencyl or a specific feature. They’re just a common aspect of most games that they deserved special mention and to establish how to make them using the anchor block.

Example: Drawing a Timer

In this example, we’ll talk about how to do something common: drawing a timer.

Controls: Left/Right to move, Up to jump

Objectives

We want to draw the Timer shown in the demo.

  • The timer counts up once per second.
  • No matter where you are in the level, the timer stays at the same spot on screen.

Walkthrough (Part 1) - Adding a Timer

  1. Download this project. (Use File > Import... to import it)

  2. Open the demo project. This project is mostly built up (run it!). All you need to do is create the Timer feature.

  3. Open up the Timer actor and flip to its Events tab.

  4. Add a Number attribute called Time - and make it hidden.

  5. Add an Every N Seconds event. Make it increment the Time attribute by 1.


  6. Add a When Drawing event. Make it draw the time, like this.


  7. That’s it (or is it?). Run the game, and you should now notice it drawing the timer, just like in the demo above.

Walkthrough (Part 2) - Fix the Bug

Wait, something's wrong. If you walk to the right, as the screen scrolls, the timer gets left behind. That's not right. Given what you've learned about making a HUD (heads up display), what do you need to do?

Fix up the actor's behavior, so it "sticks" to the screen.

Stuck? Here's a hint.

Additional Exercises

  1. Tweak the timer to increment twice a second.
  2. Show the timer on the right side of the screen. Don't hardcode the value - use blocks to calculate this, so it works no matter what the screen size is.
  3. Show the timer in the center. Properly account for cases where the text may be shorter or longer.

Dialog System

One of Stencyl's developers has independently created a fully-fledged dialog system. While it's technically a separate effort, it's officially endorsed by us.

Visit their site to learn more.

Summary

  • Stencyl uses bitmap fonts to draw text to ensure good performance and consistent results.
  • HUDs are graphical displays of information that display on top of everything else and do not obey the camera.

Challenge: Dialog Box

While Stencyl is home to a powerful dialog system, for learning purposes, you may want to implement simple dialog system on your own to check your mastery of text drawing.

Create a simple system for displaying dialog, in which you pass in a list of text (1 sentence per entry) to display.

The dialog system should display 1 sentence at a time. The player has to hit a key to proceed.

Bonus: Bonus points for auto-wrapping text and displaying a little blinking arrow to indicate to the player that the sentence is “finished” and the system is waiting for the player’s go to continue.

Print Article Edit Article How to Edit an Article
Disclaimer: Use comments to provide feedback and point out issues with the article (typo, wrong info, etc.). If you're seeking help for your game, please ask a question on the forums. Thanks!

24 Comments

Marcusk
how come my score does not work

-1 10 years, 7 months ago
Jon
A very robust and fully-featured dialog system is now available. Check the bottom of the article for a link.
1 10 years, 7 months ago
Corerupted
Dialogue box tutorial would be nice seeing that some pre-shipped behaviours that made it is broken
0 10 years, 11 months ago
Losian
So, two days later I managed to pull this off after a great deal of work on my part.

This is a FAIR WARNING to all others who attempt this.. The fonts in Stencyl are done in a WEIRD WAY. Each letter in a font has neither a static height NOR width, as you might expect. This is going to mean that your wordwrapping and such is gonna be pretty weird, because Stencyl will calculate the values to be nowhere near what they will appear to be once printing the fonts onto the screen. I would encourage you to ignore odd spacing and such and just try to get the theory of this working, especially if you attempt the "Super Challenge" as I did. I'm not sure how to work around the font weirdness, but don't let that deter you at all. It isn't your fault!

To summarize: Anyone would expect, for example, Aaaa and Bbbb to be the same 'width' pixel wise, thus kinda the point of fonts, yet Stencyl will return COMPLETELY different lengths for those two different strings, making it rather hard to space things intuitively. It calculates without kerning ( http://en.wikipedia.org/wiki/Kernin g ) and yet draws with it, so there's a disparity there.

1 11 years, 2 months ago
Losian
The super challenge on this one is tough indeed - I managed to get the basic ideas down I just have to organize the logic and such properly.

For anyone having some trouble - keep in mind that for something like this, something entirely dynamic, the code is going to have to handle a lot of the logic itself.

You can test the width of text using 'get width of (text) using current font' to test if the text is too big for the box. But knowing that, then what?

The next step seems to be to use a holder to bring the text over into a text attribute. With this we can use a loop and perhaps the 'Part of [text] (start: [] end: [])' to cycle through.

I basically started with a TextCache1, pulled the list's text into it, then set a temporary number of 'TextClip' to the text length of TextCache1. Then I had it cycle through using a decrement on TextClip until the width tested properly to be less than too wide for the size.

The trick(s) now is multiple lines, storing and drawing multiple lines, etc. Tricky stuff for we novices.

1 11 years, 2 months ago
Stencilian
So far I have not seen any way of downloading version 3 ?
Meanwhile I can draw a rectangle at mouse down (fill rect at x y with w h) but cannot get it to stay on the screen. ? How can we do what SCRATCH does - detect a particular color from lines (PEN DOWN) drawn on the screen?

0 11 years, 4 months ago
weilies
hi there, does the S3.0 come with line-wrap feature?
Also, it seems like it's not possible to set font color (in iOS), will this issue be resolve as well?

0 11 years, 5 months ago
aBanana1234
I'm new to stencyl and I really want to add dialog to the being of my game but I have no idea how.. I would like an article on how to add dialog(unless there already is an article on dialog?) Thanks
0 11 years, 5 months ago
pangtee
What is the maximum length of text that i can input using TEXT?
Can i create a page or a few pages of text?
Thanks.

-1 11 years, 11 months ago
Pendertuga
Instead of Diag boxes being a challenge you guys should just tell people how to do it. I'm sure many people would like to know.
4 11 years, 12 months ago

Sign In to Comment