2019-08-14 14:15:07 +02:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2021-11-29 21:24:08 +01:00
|
|
|
using MLEM.Graphics;
|
2024-07-19 20:02:28 +02:00
|
|
|
using MLEM.Maths;
|
2019-08-14 14:15:07 +02:00
|
|
|
using MLEM.Startup;
|
2021-12-03 21:10:19 +01:00
|
|
|
using MLEM.Textures;
|
2019-08-14 14:15:07 +02:00
|
|
|
|
|
|
|
namespace Demos {
|
|
|
|
/// <summary>
|
|
|
|
/// This is a demo for <see cref="AutoTiling"/>.
|
|
|
|
/// </summary>
|
2019-09-01 11:55:41 +02:00
|
|
|
public class AutoTilingDemo : Demo {
|
2019-08-14 14:15:07 +02:00
|
|
|
|
2021-11-27 15:03:30 +01:00
|
|
|
private const int TileSize = 8;
|
2019-08-14 14:15:07 +02:00
|
|
|
private Texture2D texture;
|
|
|
|
private string[] layout;
|
|
|
|
|
2021-12-28 14:56:11 +01:00
|
|
|
public AutoTilingDemo(MlemGame game) : base(game) {}
|
2019-09-01 11:55:41 +02:00
|
|
|
|
|
|
|
public override void LoadContent() {
|
2019-08-14 14:15:07 +02:00
|
|
|
base.LoadContent();
|
2021-11-27 15:03:30 +01:00
|
|
|
// The layout of the texture is important for auto tiling to work correctly, and is explained in the XML docs for the methods used
|
2022-06-15 11:38:11 +02:00
|
|
|
this.texture = Demo.LoadContent<Texture2D>("Textures/AutoTiling");
|
2019-08-14 14:15:07 +02:00
|
|
|
|
|
|
|
// in this example, a simple string array is used for layout purposes. As the AutoTiling method allows any kind of
|
|
|
|
// comparison, the actual implementation can vary (for instance, based on a more in-depth tile map)
|
|
|
|
this.layout = new[] {
|
2021-11-27 15:03:30 +01:00
|
|
|
"XXX X ",
|
|
|
|
"XXXXXX",
|
|
|
|
"XXX X",
|
|
|
|
"XXXXX ",
|
|
|
|
" X "
|
2019-08-14 14:15:07 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-09-01 11:55:41 +02:00
|
|
|
public override void DoDraw(GameTime gameTime) {
|
2019-08-14 14:15:07 +02:00
|
|
|
this.GraphicsDevice.Clear(Color.Black);
|
|
|
|
|
|
|
|
// drawing the auto tiles
|
2022-06-24 14:01:26 +02:00
|
|
|
this.SpriteBatch.Begin(SpriteSortMode.Deferred, null, SamplerState.PointClamp, null, null, null, Matrix.CreateScale(10));
|
2021-11-27 15:03:30 +01:00
|
|
|
for (var x = 0; x < 6; x++) {
|
2019-08-14 14:15:07 +02:00
|
|
|
for (var y = 0; y < 5; y++) {
|
|
|
|
// don't draw non-grass tiles ( )
|
|
|
|
if (this.layout[y][x] != 'X')
|
|
|
|
continue;
|
2019-08-15 14:59:15 +02:00
|
|
|
|
2019-08-14 14:15:07 +02:00
|
|
|
var x1 = x;
|
|
|
|
var y1 = y;
|
2020-06-18 17:24:35 +02:00
|
|
|
|
2019-08-14 14:15:07 +02:00
|
|
|
// the connectsTo function determines for any given tile if it should connect to, that is, auto-tile with the
|
|
|
|
// neighbor in the supplied offset direction. In this example, the layout determines where grass tiles are (X)
|
|
|
|
// and where there are none ( ).
|
2020-06-18 17:24:35 +02:00
|
|
|
bool ConnectsTo(int xOff, int yOff) {
|
2019-08-14 14:15:07 +02:00
|
|
|
// don't auto-tile out of bounds
|
2021-11-27 15:03:30 +01:00
|
|
|
if (x1 + xOff < 0 || y1 + yOff < 0 || x1 + xOff >= 6 || y1 + yOff >= 5)
|
2019-08-14 14:15:07 +02:00
|
|
|
return false;
|
|
|
|
// check if the neighboring tile is also grass (X)
|
|
|
|
return this.layout[y1 + yOff][x1 + xOff] == 'X';
|
2020-06-18 17:24:35 +02:00
|
|
|
}
|
|
|
|
|
2021-11-27 15:03:30 +01:00
|
|
|
// the texture region supplied to the AutoTiling method should only encompass the first filler tile's location and size
|
2022-06-15 11:38:11 +02:00
|
|
|
AutoTiling.DrawAutoTile(this.SpriteBatch, new Vector2(x + 1, y + 1) * AutoTilingDemo.TileSize, new TextureRegion(this.texture, 0, 0, AutoTilingDemo.TileSize, AutoTilingDemo.TileSize), ConnectsTo, Color.White);
|
2021-11-27 15:03:30 +01:00
|
|
|
|
|
|
|
// when drawing extended auto-tiles, the same rules apply, but the source texture layout is different
|
2022-06-15 11:38:11 +02:00
|
|
|
var background = new TextureRegion(this.texture, 0, AutoTilingDemo.TileSize * 2, AutoTilingDemo.TileSize, AutoTilingDemo.TileSize);
|
|
|
|
var overlay = new TextureRegion(this.texture, background.Area.OffsetCopy(new Point(AutoTilingDemo.TileSize, 0)));
|
|
|
|
AutoTiling.DrawExtendedAutoTile(this.SpriteBatch, new Vector2(x + 8, y + 1) * AutoTilingDemo.TileSize, background, overlay, ConnectsTo, Color.White, Color.White);
|
2019-08-14 14:15:07 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
this.SpriteBatch.End();
|
|
|
|
|
2019-08-15 14:59:15 +02:00
|
|
|
base.DoDraw(gameTime);
|
2019-08-14 14:15:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
2022-06-17 18:23:47 +02:00
|
|
|
}
|