Uses of Class
it.unicam.cs.pa.mastermind.ui.GameView
-
Packages that use GameView Package Description it.unicam.cs.pa.mastermind.factories Il package contiene le varie factory che hanno il compito di generare nuovi player durante il processo di esecuzione in maniera dinamica ed efficiente.it.unicam.cs.pa.mastermind.players Nel seguente package sono definiti i due principali attori del gioco, il Maker, colui che decide la sequenza da indovinare, e il Breaker, colui che deve cercare di indovinare la sequenza decisa dal Maker.it.unicam.cs.pa.mastermind.ui Il seguente package contiene le classi relative a tutto ciò che concerne l'interfaccia di gioco con la quale comunicherà l'utente fisico, sia esso o meno un giocatore attivo nel gioco. -
-
Uses of GameView in it.unicam.cs.pa.mastermind.factories
Methods in it.unicam.cs.pa.mastermind.factories that return GameView Modifier and Type Method Description GameView
ConsoleGameViewFactory. getGameView()
GameView
GameViewFactory. getGameView()
Ottenimento di un'istanza di una vistaGameView
.Methods in it.unicam.cs.pa.mastermind.factories with parameters of type GameView Modifier and Type Method Description CodeBreaker
BreakerFactory. getBreaker(GameView view, int seqLength, int attempts)
Ottenimento di un'istanza di un giocatoreCodeBreaker
.CodeBreaker
DonaldKnuthBreakerFactory. getBreaker(GameView view, int seqLength, int attempts)
CodeBreaker
InteractiveBreakerFactory. getBreaker(GameView view, int seqLength, int attempts)
CodeBreaker
RandomBotBreakerFactory. getBreaker(GameView view, int seqLength, int attempts)
CodeMaker
InteractiveMakerFactory. getMaker(GameView view, int seqLength, int attempts)
CodeMaker
MakerFactory. getMaker(GameView view, int seqLength, int attempts)
Ottenimento di un'istanza di un giocatoreCodeMaker
.CodeMaker
RandomBotMakerFactory. getMaker(GameView view, int seqLength, int attempts)
-
Uses of GameView in it.unicam.cs.pa.mastermind.players
Constructors in it.unicam.cs.pa.mastermind.players with parameters of type GameView Constructor Description InteractiveBreaker(GameView newView, int seqLength)
InteractiveMaker(GameView newView, int seqLength)
-
Uses of GameView in it.unicam.cs.pa.mastermind.ui
Subclasses of GameView in it.unicam.cs.pa.mastermind.ui Modifier and Type Class Description class
ConsoleGameView
Implementazione di una vista con interazione via console della classeGameView
.
-