Display alphanumeric characters
summary
Display an arbitrary character string (alphanumeric) on the screen.
Operating environment
Prerequisites
Supported XNA Versions |
|
Supported Platforms |
|
Windows Required Vertex Shader Version | 2.0 |
Windows Required Pixel Shader Version | 2.0 |
Operating environment
platform |
|
substance
In order to display text in XNA, you need a file called a "sprite font" that describes the font information. The extension is ". spritefont. Sprite font files are written in an extended format of XML, so they can be easily rewritten. To create a sprite font, do the following:
Right-click the Content project and click Add → New Item.
The Add New Item dialog opens.
In the installed template, there is an item called "Sprite Font", so select it.
Specify a file name, but here it is named "Font.spritefont". Basically, you can set any name you want.
After entering, press the "Add" button at the bottom right.
When you create a file, the sprite font file is open.
It has also been added to the content project.
The contents of the sprite font can be left as the default, but this time it has been rewritten as follows (comments are also Japanese for clarity). Please refer to the comments for an explanation of each node.
In addition, a detailed explanation of sprite fonts is explained in the "Font Style Details" section.
<?xml version="1.0" encoding="utf-8"?>
<!-- 文字の描画に使用するフォントの名前やサイズなどの情報を記述します。 -->
<XnaContent xmlns:Graphics="Microsoft.Xna.Framework.Content.Pipeline.Graphics">
<Asset Type="Graphics:FontDescription">
<!--
使用するフォント名。
-->
<FontName>メイリオ</FontName>
<!--
文字のサイズ。浮動小数点も可。単位はバックバッファ内でのピクセル単位。
-->
<Size>18</Size>
<!--
文字間の幅。単位はバックバッファ内でのピクセル単位。
-->
<Spacing>0</Spacing>
<!--
カーニングを使用するかどうか。
-->
<UseKerning>true</UseKerning>
<!--
文字スタイル。通常は"Regular"、太文字は"Bold", イタリックは"Italic"
"Bold, Italic"と記述することで複数のスタイルを指定可能。
-->
<Style>Regular</Style>
<!--
キャラクターリージョンで指定した文字次回の文字が描画されようとしたときに
代わりに表示する文字を指定します。ASCII 以外の Unicode 文字も可。
-->
<DefaultCharacter>*</DefaultCharacter>
<!--
キャラクターリージョン。使う文字の範囲をUnicodeで指定します。
32(ASCIIのスペース)から126('~')の英数字を指定しています。(10進数)
-->
<CharacterRegions>
<CharacterRegion>
<Start> </Start>
<End>~</End>
</CharacterRegion>
</CharacterRegions>
</Asset>
</XnaContent>
Next, I will describe the program for drawing text.
<summary>
スプライトのバッチ化クラス
</summary>
private SpriteBatch spriteBatch = null;
<summary>
スプライトでテキストを描画するためのフォント
</summary>
private SpriteFont font = null;
To draw text, we use two classes: "SpriteBatch" and "SpriteFont". The text will be drawn as a sprite.
<summary>
ゲームが始まるときに一回だけ呼ばれ
すべてのゲームコンテンツを読み込みます
</summary>
protected override void LoadContent()
{
// テクスチャーを描画するためのスプライトバッチクラスを作成します
this.spriteBatch = new SpriteBatch(this.GraphicsDevice);
// フォントをコンテンツパイプラインから読み込む
this.font = this.Content.Load<SpriteFont>("Font");
}
Within the LoadGraphicsContent method, first create a SpriteBatch class. Pass a GraphicsDevice as the argument.
Next, use the ContentManager.Load method to load the sprite font file you just created. Specify the "SpriteFont" class for the type parameter and the asset name for the argument. If you have not changed the asset name of the sprite font, specify the file name extension removed.
For details on loading content, see "Loading Resources (Content)".
SpriteBatch
constructor
Create an instance of the class "SpriteBatch" that batches the drawing of sprites.
graphicsDevice | GraphicsDevice | Specifies the GraphicsDevice to use for drawing. |
// スプライトの描画準備
this.spriteBatch.Begin();
// テキストをスプライトとして描画する
this.spriteBatch.DrawString(this.font, "Draw Sprite in a screen.",
Vector2.Zero, Color.White);
// スプライトの一括描画
this.spriteBatch.End();
Draw the text in the Draw method.
The "SpriteBatch.DrawString" method is used to draw the text, but since the text is drawn as a sprite, the "SpriteBatch.Begin" and "SpriteBatch.End" methods are called before and after drawing, respectively.
The first argument of the SpriteBatch.DrawString method is the "SpriteFont" class you created. This allows you to draw characters in the style specified in the sprite font. The second argument is the string to be displayed.
SpriteBatch.Begin
method
Call it before drawing the sprite. Internally, we are making the necessary settings for drawing sprites.
SpriteBatch.DrawString
method
Draw a string.
spriteFont | SpriteFont | Specifies the SpriteFont that contains the string image. |
text | string | Specifies the text to display. |
position | Vector2 | The position at which to display the text. Specify in screen coordinates relative to the top left of the screen. The origin of the text will be at the top left of the first character. |
color | Color | Text color |
SpriteBatch.End
method
Draw all batched sprites. The drawing order, drawing state, and so on are specified in the SpriteBatch.Begin method. If necessary, the render state is returned to the state it was in before the SpriteBatch.Begin method was called.
There is no problem with a display used on a computer, etc., but when outputting from an Xbox 360 to an analog TV, you may not be able to see the text displayed in the upper left corner. In this case, you have to adjust the display position of the characters, which will be explained in "Specify the position to draw the characters".
One thing to note about this sample is that it cannot display Japanese characters. If you specify Japanese for the SpriteBatch.DrawString method, an exception will occur. This time, only alphanumeric characters and symbols defined in 32~126 specified in Unicode can be displayed. I would like to introduce how to display Japanese in another tip.
Unicode tables (32~127)
(Numbers in rows ×16 + numbers in columns) will be the code.
0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | A | B | C | D | E | F | ||
2 | ! | " | # | $ | % | & | ' | ( | ) | * | + | , | - | . | / | ||
3 | 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | : | ; | < | = | > | ? | |
4 | @ | A | B | C | D | E | F | G | H | I | J | K | L | M | N | O | |
5 | P | Q | R | S | T | U | V | W | X | Y | Z | [ | \ | ] | ^ | _ | |
6 | ` | a | b | c | d | e | f | g | h | i | j | k | l | m | n | o | |
7 | p | q | r | s | t | u | v | w | x | y | z | { | } | ~ | |
All Codes
using System;
using System.Collections.Generic;
using System.Linq;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Audio;
using Microsoft.Xna.Framework.Content;
using Microsoft.Xna.Framework.GamerServices;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using Microsoft.Xna.Framework.Media;
#if WINDOWS_PHONE
using Microsoft.Xna.Framework.Input.Touch;
#endif
namespace DrawAlphameric
{
<summary>
ゲームメインクラス
</summary>
public class GameMain : Microsoft.Xna.Framework.Game
{
<summary>
グラフィックデバイス管理クラス
</summary>
private GraphicsDeviceManager graphics = null;
<summary>
スプライトのバッチ化クラス
</summary>
private SpriteBatch spriteBatch = null;
<summary>
スプライトでテキストを描画するためのフォント
</summary>
private SpriteFont font = null;
<summary>
GameMain コンストラクタ
</summary>
public GameMain()
{
// グラフィックデバイス管理クラスの作成
this.graphics = new GraphicsDeviceManager(this);
// ゲームコンテンツのルートディレクトリを設定
this.Content.RootDirectory = "Content";
#if WINDOWS_PHONE
// Windows Phone のデフォルトのフレームレートは 30 FPS
this.TargetElapsedTime = TimeSpan.FromTicks(333333);
// バックバッファサイズの設定
this.graphics.PreferredBackBufferWidth = 480;
this.graphics.PreferredBackBufferHeight = 800;
// フルスクリーン表示
this.graphics.IsFullScreen = true;
#endif
}
<summary>
ゲームが始まる前の初期化処理を行うメソッド
グラフィック以外のデータの読み込み、コンポーネントの初期化を行う
</summary>
protected override void Initialize()
{
// TODO: ここに初期化ロジックを書いてください
// コンポーネントの初期化などを行います
base.Initialize();
}
<summary>
ゲームが始まるときに一回だけ呼ばれ
すべてのゲームコンテンツを読み込みます
</summary>
protected override void LoadContent()
{
// テクスチャーを描画するためのスプライトバッチクラスを作成します
this.spriteBatch = new SpriteBatch(this.GraphicsDevice);
// フォントをコンテンツパイプラインから読み込む
this.font = this.Content.Load<SpriteFont>("Font");
}
<summary>
ゲームが終了するときに一回だけ呼ばれ
すべてのゲームコンテンツをアンロードします
</summary>
protected override void UnloadContent()
{
// TODO: ContentManager で管理されていないコンテンツを
// ここでアンロードしてください
}
<summary>
描画以外のデータ更新等の処理を行うメソッド
主に入力処理、衝突判定などの物理計算、オーディオの再生など
</summary>
<param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
protected override void Update(GameTime gameTime)
{
// Xbox 360 コントローラ、Windows Phone の BACK ボタンを押したときに
// ゲームを終了させます
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
{
this.Exit();
}
// TODO: ここに更新処理を記述してください
// 登録された GameComponent を更新する
base.Update(gameTime);
}
<summary>
描画処理を行うメソッド
</summary>
<param name="gameTime">このメソッドが呼ばれたときのゲーム時間</param>
protected override void Draw(GameTime gameTime)
{
// 画面を指定した色でクリアします
this.GraphicsDevice.Clear(Color.CornflowerBlue);
// スプライトの描画準備
this.spriteBatch.Begin();
// テキストをスプライトとして描画する
this.spriteBatch.DrawString(this.font, "Draw Sprite in a screen.",
Vector2.Zero, Color.White);
// スプライトの一括描画
this.spriteBatch.End();
// 登録された DrawableGameComponent を描画する
base.Draw(gameTime);
}
}
}