Archived
1
0
Fork 0

Merge branch 'core-game'

This commit is contained in:
Ethanell 2022-04-07 16:05:42 +02:00
commit 97f2542119
4 changed files with 87 additions and 3 deletions

View file

@ -70,6 +70,14 @@ public class Tetrominoe {
// ToDO: ascpect technique test
}
public Tetrominoe(Grid grid, String shape, Point coordinates, short orientation, Color color) {
_grid = grid;
_shape = TetrominoeParser.Get(shape);
_coordinates = coordinates;
_orientation = orientation;
_color = color;
}
private bool[,] _rotateLeft(bool[,] shape) {
bool[,] rotatedArr = new bool[shape.GetLength(1), shape.GetLength(0)];

View file

@ -0,0 +1,59 @@
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using Newtonsoft.Json.Linq;
namespace Tetris.Models;
public class TetrominoeParser {
private static JObject _content;
private static JObject content {
get {
if (_content == null)
_content = GetContent();
return _content;
}
}
public static bool[,] Get(String name) {
if (!content.ContainsKey(name))
throw new Exception("Invalid name");
String s = content.GetValue(name).ToString();
int width = s.IndexOf('\n');
if (width < 0)
width = s.Length;
int height = s.Count(c => c == '\n')+1;
bool[,] g = new bool[width, height];
int x = 0;
int y = 0;
for (int i = 0; i < s.Length; i++, x++) {
char c = Char.ToLower(s[i]);
if (c == 'x')
g[x, y] = true;
else if (c == '-')
g[x, y] = false;
else if (c == '\n') {
x = -1;
y++;
}
}
return g;
}
public static List<String> List() {
return content.Properties().Select(p => p.Name).ToList();
}
private static JObject GetContent() {
return JObject.Parse(File.ReadAllText(@"Resources\tetrominoes.json"));
}
}

View file

@ -0,0 +1,9 @@
{
"I": "xxxx",
"J": "x--\nxxx",
"L": "--x\nxxx",
"O": "xx\nxx",
"S": "-xx\nxx-",
"T": "-x-\nxxx",
"Z": "xx-\n-xx"
}

View file

@ -11,13 +11,21 @@
<ItemGroup>
<None Remove="Resources\tetris.png" />
<Resource Include="Resources\tetris.png">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Pastel" Version="3.0.0" />
<PackageReference Include="WriteableBitmapEx" Version="1.6.8" />
<None Remove="Resources\tetrominoes.json" />
<EmbeddedResource Include="Resources\tetrominoes.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</EmbeddedResource>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Pastel" Version="3.0.0" />
<PackageReference Include="WriteableBitmapEx" Version="1.6.8" />
</ItemGroup>
</Project>