1
0
Fork 0
mirror of https://github.com/Ellpeck/MLEM.git synced 2024-06-06 06:53:36 +02:00
MLEM/Tests/GameImpl.cs

53 lines
2.1 KiB
C#
Raw Normal View History

using System;
using Microsoft.Xna.Framework;
using Microsoft.Xna.Framework.Graphics;
using Microsoft.Xna.Framework.Input;
using MLEM.Extended.Extensions;
2019-08-09 19:28:48 +02:00
using MLEM.Font;
using MLEM.Input;
2019-08-07 21:26:16 +02:00
using MLEM.Startup;
using MLEM.Textures;
2019-08-09 18:26:28 +02:00
using MLEM.Ui;
using MLEM.Ui.Elements;
2019-08-07 21:26:16 +02:00
namespace Tests {
public class GameImpl : MlemGame {
private Texture2D testTexture;
private NinePatch testPatch;
2019-08-09 18:26:28 +02:00
public GameImpl() {
this.IsMouseVisible = true;
}
protected override void LoadContent() {
base.LoadContent();
this.testTexture = LoadContent<Texture2D>("Textures/Test");
this.testPatch = new NinePatch(new TextureRegion(this.testTexture, 0, 8, 24, 24), 8);
2019-08-09 18:26:28 +02:00
Paragraph.DefaultFont = new GenericSpriteFont(LoadContent<SpriteFont>("Fonts/TestFont"));
2019-08-10 18:41:56 +02:00
Paragraph.DefaultTextScale = 0.2F;
Button.DefaultTexture = new NinePatch(new TextureRegion(this.testTexture, 24, 8, 16, 16), 4);
2019-08-10 19:23:08 +02:00
TextField.DefaultTexture = Button.DefaultTexture;
2019-08-09 23:43:50 +02:00
this.UiSystem.GlobalScale = 5;
2019-08-09 18:26:28 +02:00
2019-08-09 19:28:48 +02:00
var root = new Panel(Anchor.BottomLeft, new Vector2(100, 100), new Point(5, 5), this.testPatch);
2019-08-10 18:41:56 +02:00
root.AddChild(new Paragraph(Anchor.AutoLeft, 1, "This is a test text that is hopefully long enough to cover at least a few lines, otherwise it would be very sad."));
2019-08-09 22:23:16 +02:00
var image = root.AddChild(new Image(Anchor.AutoCenter, new Vector2(20, 20), new TextureRegion(this.testTexture, 0, 0, 8, 8)) {IsHidden = true});
2019-08-10 18:41:56 +02:00
root.AddChild(new Button(Anchor.AutoCenter, new Vector2(1, 15), "Test Button") {
OnClicked = (element, pos, button) => {
if (button == MouseButton.Left)
2019-08-09 22:23:16 +02:00
image.IsHidden = !image.IsHidden;
}
});
2019-08-10 19:23:08 +02:00
root.AddChild(new TextField(Anchor.AutoLeft, new Vector2(1, 15)));
2019-08-09 23:43:50 +02:00
this.UiSystem.Add("Test", root);
}
2019-08-07 21:26:16 +02:00
protected override void Draw(GameTime gameTime) {
this.GraphicsDevice.Clear(Color.Black);
2019-08-09 23:43:50 +02:00
base.Draw(gameTime);
}
2019-08-07 21:26:16 +02:00
}
}