mirror of
https://github.com/Ellpeck/MLEM.git
synced 2024-11-04 22:49:08 +01:00
52 lines
No EOL
2.3 KiB
C#
52 lines
No EOL
2.3 KiB
C#
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Microsoft.Xna.Framework;
|
|
using Microsoft.Xna.Framework.Graphics;
|
|
using MLEM.Extended.Extensions;
|
|
using MLEM.Font;
|
|
using MonoGame.Extended.BitmapFonts;
|
|
|
|
namespace MLEM.Extended.Font {
|
|
public class GenericBitmapFont : GenericFont {
|
|
|
|
public readonly BitmapFont Font;
|
|
public override float LineHeight => this.Font.LineHeight;
|
|
|
|
public GenericBitmapFont(BitmapFont font) {
|
|
this.Font = font;
|
|
}
|
|
|
|
public override Vector2 MeasureString(string text) {
|
|
return this.Font.MeasureString(text);
|
|
}
|
|
|
|
public override Vector2 MeasureString(StringBuilder text) {
|
|
return this.Font.MeasureString(text);
|
|
}
|
|
|
|
public override void DrawString(SpriteBatch batch, string text, Vector2 position, Color color) {
|
|
batch.DrawString(this.Font, text, position, color);
|
|
}
|
|
|
|
public override void DrawString(SpriteBatch batch, string text, Vector2 position, Color color, float rotation, Vector2 origin, float scale, SpriteEffects effects, float layerDepth) {
|
|
batch.DrawString(this.Font, text, position, color, rotation, origin, scale, effects, layerDepth);
|
|
}
|
|
|
|
public override void DrawString(SpriteBatch batch, string text, Vector2 position, Color color, float rotation, Vector2 origin, Vector2 scale, SpriteEffects effects, float layerDepth) {
|
|
batch.DrawString(this.Font, text, position, color, rotation, origin, scale, effects, layerDepth);
|
|
}
|
|
|
|
public override void DrawString(SpriteBatch batch, StringBuilder text, Vector2 position, Color color) {
|
|
batch.DrawString(this.Font, text, position, color);
|
|
}
|
|
|
|
public override void DrawString(SpriteBatch batch, StringBuilder text, Vector2 position, Color color, float rotation, Vector2 origin, float scale, SpriteEffects effects, float layerDepth) {
|
|
batch.DrawString(this.Font, text, position, color, rotation, origin, scale, effects, layerDepth);
|
|
}
|
|
|
|
public override void DrawString(SpriteBatch batch, StringBuilder text, Vector2 position, Color color, float rotation, Vector2 origin, Vector2 scale, SpriteEffects effects, float layerDepth) {
|
|
batch.DrawString(this.Font, text, position, color, rotation, origin, scale, effects, layerDepth);
|
|
}
|
|
|
|
}
|
|
} |