2020-01-18 03:41:45 +00:00
|
|
|
using Microsoft.Xna.Framework;
|
|
|
|
using Microsoft.Xna.Framework.Graphics;
|
2020-02-02 14:33:33 +00:00
|
|
|
using System;
|
2020-01-18 03:41:45 +00:00
|
|
|
using System.Collections.Generic;
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
namespace SemiColinGames {
|
|
|
|
enum Terrain {
|
|
|
|
Grass,
|
|
|
|
GrassL,
|
|
|
|
GrassR,
|
|
|
|
Rock,
|
|
|
|
RockL,
|
|
|
|
RockR,
|
|
|
|
Water,
|
|
|
|
Block
|
|
|
|
}
|
|
|
|
|
|
|
|
class Tile {
|
2020-01-25 02:04:30 +00:00
|
|
|
readonly Texture2D texture;
|
2020-02-02 14:04:33 +00:00
|
|
|
readonly Rectangle textureSource;
|
2020-01-18 03:41:45 +00:00
|
|
|
|
2020-02-02 15:24:21 +00:00
|
|
|
static readonly Dictionary<Terrain, Point> terrainToTilePosition =
|
|
|
|
new Dictionary<Terrain, Point>() {
|
|
|
|
{ Terrain.Grass, new Point(3, 0) },
|
|
|
|
{ Terrain.GrassL, new Point(2, 0) },
|
|
|
|
{ Terrain.GrassR, new Point(4, 0) },
|
|
|
|
{ Terrain.Rock, new Point(3, 1) },
|
|
|
|
{ Terrain.RockL, new Point(1, 2) },
|
|
|
|
{ Terrain.RockR, new Point(5, 2) },
|
|
|
|
{ Terrain.Water, new Point(9, 2) },
|
|
|
|
{ Terrain.Block, new Point(6, 3) },
|
|
|
|
};
|
|
|
|
|
2020-01-18 03:41:45 +00:00
|
|
|
public Tile(Texture2D texture, Terrain terrain, Rectangle position) {
|
|
|
|
this.texture = texture;
|
2020-01-25 17:03:26 +00:00
|
|
|
Terrain = terrain;
|
|
|
|
Position = position;
|
2020-02-02 14:04:33 +00:00
|
|
|
this.textureSource = TextureSource();
|
2020-01-18 03:41:45 +00:00
|
|
|
}
|
|
|
|
|
2020-01-25 16:15:11 +00:00
|
|
|
public Rectangle Position { get; private set; }
|
|
|
|
public Terrain Terrain { get; private set; }
|
2020-01-18 03:41:45 +00:00
|
|
|
|
2020-02-04 22:37:42 +00:00
|
|
|
public void Draw(SpriteBatch spriteBatch) {
|
|
|
|
spriteBatch.Draw(texture, Position.Location.ToVector2(), textureSource, Color.White);
|
2020-02-02 14:04:33 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private Rectangle TextureSource() {
|
|
|
|
int size = World.TileSize;
|
2020-02-02 15:24:21 +00:00
|
|
|
Point pos = terrainToTilePosition[Terrain];
|
|
|
|
return new Rectangle(pos.X * size, pos.Y * size, size, size);
|
2020-01-18 03:41:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class World {
|
|
|
|
|
|
|
|
public const int TileSize = 16;
|
2020-01-28 02:58:48 +00:00
|
|
|
readonly Tile[] tiles;
|
2020-01-18 03:41:45 +00:00
|
|
|
|
2020-01-29 23:01:41 +00:00
|
|
|
// Size of World in terms of tile grid.
|
|
|
|
private readonly int tileWidth;
|
|
|
|
private readonly int tileHeight;
|
|
|
|
|
|
|
|
// Size of World in pixels.
|
|
|
|
public int Width {
|
|
|
|
get { return tileWidth * TileSize; }
|
|
|
|
}
|
2020-01-18 03:41:45 +00:00
|
|
|
|
2020-01-29 23:27:20 +00:00
|
|
|
public int Height {
|
|
|
|
get { return tileHeight * TileSize; }
|
|
|
|
}
|
|
|
|
|
2020-02-02 15:32:32 +00:00
|
|
|
private static readonly Dictionary<char, Terrain> charToTerrain =
|
|
|
|
new Dictionary<char, Terrain>() {
|
|
|
|
{ '=', Terrain.Grass },
|
|
|
|
{ '<', Terrain.GrassL },
|
|
|
|
{ '>', Terrain.GrassR },
|
|
|
|
{ '.', Terrain.Rock },
|
|
|
|
{ '[', Terrain.RockL },
|
|
|
|
{ ']', Terrain.RockR },
|
|
|
|
{ '~', Terrain.Water },
|
|
|
|
{ 'X', Terrain.Block }
|
|
|
|
};
|
|
|
|
|
2020-02-04 14:55:07 +00:00
|
|
|
public World(Texture2D texture, string levelSpecification) {
|
2020-01-28 02:58:48 +00:00
|
|
|
var tilesList = new List<Tile>();
|
2020-02-04 14:55:07 +00:00
|
|
|
string[] worldDesc = levelSpecification.Split('\n');
|
2020-01-29 23:01:41 +00:00
|
|
|
tileWidth = worldDesc.AsQueryable().Max(a => a.Length);
|
|
|
|
tileHeight = worldDesc.Length;
|
|
|
|
Debug.WriteLine("world size: {0}x{1}", tileWidth, tileHeight);
|
|
|
|
for (int i = 0; i < tileWidth; i++) {
|
|
|
|
for (int j = 0; j < tileHeight; j++) {
|
2020-01-18 03:41:45 +00:00
|
|
|
if (i < worldDesc[j].Length) {
|
2020-02-02 15:32:32 +00:00
|
|
|
char key = worldDesc[j][i];
|
|
|
|
if (charToTerrain.ContainsKey(key)) {
|
|
|
|
Terrain terrain = charToTerrain[key];
|
|
|
|
var position = new Rectangle(i * TileSize, j * TileSize, TileSize, TileSize);
|
|
|
|
tilesList.Add(new Tile(texture, terrain, position));
|
2020-01-18 03:41:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-01-28 02:58:48 +00:00
|
|
|
tiles = tilesList.ToArray();
|
2020-01-29 21:11:28 +00:00
|
|
|
|
2020-01-29 23:04:56 +00:00
|
|
|
// Because we added tiles from left to right, the CollisionTargets are sorted by x-position.
|
|
|
|
// We maintain this invariant so that it's possible to efficiently find CollisionTargets that
|
2020-01-29 22:43:32 +00:00
|
|
|
// are nearby a given x-position.
|
2020-01-30 21:58:42 +00:00
|
|
|
CollisionTargets = new AABB[tiles.Length + 2];
|
2020-01-29 22:43:32 +00:00
|
|
|
|
|
|
|
// Add a synthetic collisionTarget on the left side of the world.
|
2020-01-30 21:58:42 +00:00
|
|
|
CollisionTargets[0] = new AABB(new Vector2(-1, 0), new Vector2(1, float.MaxValue));
|
2020-01-29 22:43:32 +00:00
|
|
|
|
|
|
|
// Now add all the normal collisionTargets for every static terrain tile.
|
2020-01-29 21:11:28 +00:00
|
|
|
Vector2 halfSize = new Vector2(TileSize / 2, TileSize / 2);
|
2020-01-28 02:58:48 +00:00
|
|
|
for (int i = 0; i < tiles.Length; i++) {
|
2020-01-29 21:11:28 +00:00
|
|
|
Vector2 center = new Vector2(
|
|
|
|
tiles[i].Position.Left + halfSize.X, tiles[i].Position.Top + halfSize.Y);
|
2020-01-30 21:58:42 +00:00
|
|
|
CollisionTargets[i + 1] = new AABB(center, halfSize);
|
2020-01-28 02:58:48 +00:00
|
|
|
}
|
2020-01-29 22:43:32 +00:00
|
|
|
|
|
|
|
// Add a final synthetic collisionTarget on the right side of the world.
|
2020-01-30 21:58:42 +00:00
|
|
|
CollisionTargets[tiles.Length + 1] = new AABB(
|
2020-01-29 23:01:41 +00:00
|
|
|
new Vector2(Width + 1, 0), new Vector2(1, float.MaxValue));
|
2020-01-18 03:41:45 +00:00
|
|
|
}
|
|
|
|
|
2020-02-04 22:37:42 +00:00
|
|
|
public void Draw(SpriteBatch spriteBatch) {
|
2020-01-25 16:23:37 +00:00
|
|
|
foreach (Tile t in tiles) {
|
2020-02-04 22:37:42 +00:00
|
|
|
t.Draw(spriteBatch);
|
2020-01-18 03:41:45 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-01-30 21:58:42 +00:00
|
|
|
public AABB[] CollisionTargets { get; }
|
2020-01-18 03:41:45 +00:00
|
|
|
}
|
|
|
|
}
|