-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
44 lines (42 loc) · 1.43 KB
/
Program.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
using System;
namespace Battleships
{
class Program
{
static void Main()
{
try
{
IGameView gameView = new GameView();
IGameApi gameApi = new EmulatorApi(gameView); // RestApi();
for (var i = 0; i < 1000; ++i)
{
gameView.SetGameInfo(CellCoords.MAX, i + 1);
var shoots = PlayGame(gameApi, gameView);
gameView.SetResults(shoots, gameApi.GetCurrentScore(), gameApi.GetBestScore());
}
}
catch (Exception ex)
{
Console.WriteLine(ex);
}
}
private static int PlayGame(IGameApi gameApi, IGameView gameView)
{
Decision.IDecision d = new Decision.Decision(); // Decision.DecisionOld();
var gameId = gameApi.CreateNewGame();
GameState state;
var shoots = 0;
do
{
shoots++;
var cell = d.CellToAttack();
var coords = cell.AsTuple();
state = gameApi.Shoot(gameId, coords.Item1, coords.Item2);
d.UpdateWithFeedback(coords.Item1, coords.Item2, state.LastShot);
gameView.AddShot(cell, state.LastShot);
} while (!state.IsFinished);
return shoots;
}
}
}