-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGameController.php
125 lines (101 loc) · 3.39 KB
/
GameController.php
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
<?php
namespace App\Http\Controllers;
use App\Models\Game;
use App\Models\Field;
use App\Models\Player;
use App\Http\Requests\StoreGameRequest;
use App\Http\Requests\UpdateGameRequest;
use App\Services\Filler\CellIterator;
use App\Services\Filler\Filler;
use Illuminate\Support\Facades\DB;
class GameController extends Controller
{
/**
* Store a newly created resource in storage.
*
* @param StoreGameRequest $request
* @return \Illuminate\Http\JsonResponse
*/
public function store(StoreGameRequest $request)
{
$validated = $request->validated();
$game = new Game;
$field = new Field;
$field->fill($validated);
$game->save();
$game->field()->save($field);
$filler = new Filler($validated['width'], $validated['height']);
$game->players()->saveMany([
new Player([
'id' => 1,
'game_id' => $game->id,
'color' => $filler->getCurrentColor(1)
]),
new Player([
'id' => 2,
'game_id' => $game->id,
'color' => $filler->getCurrentColor(2)
]),
]);
$cells = CellIterator::toArray(
$filler->field->getCells(),
['playerNumber' => 'player_id'],
['field_id' => $field->id]
);
DB::table('cells')->insert($cells);
return response()->json($game->only(['id']), 201);
}
/**
* Display the specified resource.
*
* @param \App\Models\Game $game
* @return \Illuminate\Http\Response
*/
public function show(Game $game)
{
return $game->load('field', 'field.cells', 'players');
}
/**
* Update the specified resource in storage.
*
* @param UpdateGameRequest $request
* @param \App\Models\Game $game
* @return \Illuminate\Http\Response
*/
public function update(UpdateGameRequest $request, Game $game)
{
$validated = $request->validated();
$playerId = $validated['playerId'];
$color = $validated['color'];
if ($playerId !== $game->currentPlayerId) {
return response('The player with the specified number cannot move now', 403);
}
$field = $game->field;
$cells = $field->cells->map(function ($item) {
$item->makeVisible('id');
return $item;
})->toArray();
$filler = new Filler($field->width, $field->height, $cells);
$stepResult = $filler->step($color, $playerId);
$gameOver = $filler->isGameOver();
if (!$stepResult && !$gameOver) {
return response('The player with the specified number cannot select the specified color', 409);
} else if ($gameOver) {
$game->winnerPlayerId = $filler->getWinner();
}
CellIterator::each($filler->field->getCells(), function ($cell) {
DB::table('cells')
->where('id', $cell->id)
->update([
'color' => $cell->color,
'player_id' => $cell->playerNumber,
]);
});
DB::table('players')
->where('game_id', $game->id)
->where('id', $playerId)
->update(['color' => $color]);
$game->currentPlayerId = $gameOver ? 0 : ($playerId === 1 ? 2 : 1);
$game->save();
}
}