-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSite.cs
85 lines (72 loc) · 1.97 KB
/
Site.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
using System;
using System.Collections.Generic;
using System.Linq;
namespace Halite
{
public enum Direction
{
Still = 0,
North = 1,
East = 2,
South = 3,
West = 4
}
public class Site
{
public ushort Owner { get; internal set; }
public ushort Strength { get; internal set; }
public ushort Production { get; internal set; }
public int X { get; }
public int Y { get; }
public Site Top { get; set; }
public Site Bottom { get; set; }
public Site Left { get; set; }
public Site Right { get; set; }
public Site(int x, int y)
{
X = x;
Y = y;
}
public Direction GetDirectionToNeighbour(Site neighbour)
{
if (neighbour == Top)
return Direction.North;
if (neighbour == Bottom)
return Direction.South;
if (neighbour == Left)
return Direction.West;
if (neighbour == Right)
return Direction.East;
throw new ArgumentException("Specified site is not a neighbour");
}
public bool IsMine()
{
return Owner == Config.Get().PlayerTag;
}
public bool IsEnemy()
{
return Owner != Config.Get().PlayerTag && Owner != 0;
}
public bool IsEmpty()
{
return Owner == 0;
}
public void PopulateNeighbours(Site top, Site bottom, Site left, Site right)
{
Top = top;
Bottom = bottom;
Left = left;
Right = right;
}
}
public class Move
{
public Site Site;
public Direction Direction;
public static string MovesToString(IEnumerable<Move> moves)
{
return string.Join(" ",
moves.Select(m => $"{m.Site.X} {m.Site.Y} {(int)m.Direction}"));
}
}
}