diff --git a/docs/src/SUMMARY.md b/docs/src/SUMMARY.md index bf2f324..2644e25 100644 --- a/docs/src/SUMMARY.md +++ b/docs/src/SUMMARY.md @@ -29,4 +29,6 @@ [Installazione](./others/installation.md) +[Guida utente](./others/tutorial.md) + [Link utili](./others/links.md) diff --git a/docs/src/img/others/tutorial/game-view/card-panel.png b/docs/src/img/others/tutorial/game-view/card-panel.png new file mode 100644 index 0000000..5c48aa1 Binary files /dev/null and b/docs/src/img/others/tutorial/game-view/card-panel.png differ diff --git a/docs/src/img/others/tutorial/game-view/game-field.png b/docs/src/img/others/tutorial/game-view/game-field.png new file mode 100644 index 0000000..1725776 Binary files /dev/null and b/docs/src/img/others/tutorial/game-view/game-field.png differ diff --git a/docs/src/img/others/tutorial/game-view/info-panel.png b/docs/src/img/others/tutorial/game-view/info-panel.png new file mode 100644 index 0000000..f9cd05a Binary files /dev/null and b/docs/src/img/others/tutorial/game-view/info-panel.png differ diff --git a/docs/src/img/others/tutorial/game-view/trade-panel.png b/docs/src/img/others/tutorial/game-view/trade-panel.png new file mode 100644 index 0000000..3129d5b Binary files /dev/null and b/docs/src/img/others/tutorial/game-view/trade-panel.png differ diff --git a/docs/src/img/others/tutorial/home-view.png b/docs/src/img/others/tutorial/home-view.png new file mode 100644 index 0000000..b26ee6d Binary files /dev/null and b/docs/src/img/others/tutorial/home-view.png differ diff --git a/docs/src/img/others/tutorial/initial-positioning/initial-positioning.png b/docs/src/img/others/tutorial/initial-positioning/initial-positioning.png new file mode 100644 index 0000000..898cb66 Binary files /dev/null and b/docs/src/img/others/tutorial/initial-positioning/initial-positioning.png differ diff --git a/docs/src/img/others/tutorial/initial-positioning/rule-on-initial-positioning.png b/docs/src/img/others/tutorial/initial-positioning/rule-on-initial-positioning.png new file mode 100644 index 0000000..76a1b42 Binary files /dev/null and b/docs/src/img/others/tutorial/initial-positioning/rule-on-initial-positioning.png differ diff --git a/docs/src/img/others/tutorial/initial-resources-assignment/initial-resources-assignment.png b/docs/src/img/others/tutorial/initial-resources-assignment/initial-resources-assignment.png new file mode 100644 index 0000000..99025ee Binary files /dev/null and b/docs/src/img/others/tutorial/initial-resources-assignment/initial-resources-assignment.png differ diff --git a/docs/src/img/others/tutorial/initial-resources-assignment/second-settlment-placing.png b/docs/src/img/others/tutorial/initial-resources-assignment/second-settlment-placing.png new file mode 100644 index 0000000..c2714cb Binary files /dev/null and b/docs/src/img/others/tutorial/initial-resources-assignment/second-settlment-placing.png differ diff --git a/docs/src/img/others/tutorial/setup-view.png b/docs/src/img/others/tutorial/setup-view.png new file mode 100644 index 0000000..bfeffe5 Binary files /dev/null and b/docs/src/img/others/tutorial/setup-view.png differ diff --git a/docs/src/others/installation.md b/docs/src/others/installation.md index 3d3ffc8..5332797 100644 --- a/docs/src/others/installation.md +++ b/docs/src/others/installation.md @@ -24,5 +24,3 @@ Per eseguire i **test** è necessario avere installato, si può procedere con il ```bash % sbt test ``` - -## Guida utente diff --git a/docs/src/others/tutorial.md b/docs/src/others/tutorial.md new file mode 100644 index 0000000..1b3dae7 --- /dev/null +++ b/docs/src/others/tutorial.md @@ -0,0 +1,50 @@ +# Guida utente + +## Schermata iniziale + +![Schermata iniziale](../img/others/tutorial/home-view.png) + +## Schermata di setup + +![Schermata di setup](../img/others/tutorial/setup-view.png) + +## Schermata di gioco + +### Campo di gioco + +![Campo di gioco](../img/others/tutorial/game-view/game-field.png) + +### Pannello informazioni e mosse + +![Pannello informazioni](../img/others/tutorial/game-view/info-panel.png) + +### Zona carte del giocatore + +![Zona carte del giocatore](../img/others/tutorial/game-view/card-panel.png) + +### Pannello di scambio + +![Pannello di scambio](../img/others/tutorial/game-view/trade-panel.png) + +## Posizionamento iniziale + +Gli utenti posizionano le strutture iniziali seguendo le regole del gioco: + +- Si posiziona prima il settlement e poi la strada +- Ordine: `P1 -> P2 -> P3 -> P3 -> P2 -> P1` + +![Posizionamento iniziale](../img/others/tutorial/initial-positioning/initial-positioning.png) + +> **Regola**: per costruire un settlment è necessario che, negli spot adiacenti, non ci siano altre strutture! + +![Posizionamento iniziale errore](../img/others/tutorial/initial-positioning/rule-on-initial-positioning.png) + +## Risorse iniziali + +`Player 1` posiziona il suo secondo settlement e la sua seconda strada + +![Risorse iniziali](../img/others/tutorial/initial-resources-assignment/second-settlment-placing.png) + +e riceve le risorse corrispondenti alle tasselle su cui ha costruito. + +![Assegnemnto Risorse iniziali](../img/others/tutorial/initial-resources-assignment/initial-resources-assignment.png) \ No newline at end of file