Merge remote-tracking branch 'origin/main'
This commit is contained in:
commit
631ea90225
71
README.md
71
README.md
|
@ -1 +1,70 @@
|
|||
# team02-AngryNerds-projekt2-turnierverwaltung
|
||||
# team02-AngryNerds-projekt2-turnierverwaltung
|
||||
|
||||
## Tournament administration
|
||||
### Documentation
|
||||
|
||||
> Our Tournament Administration Tool is available in german and english,
|
||||
> to change the language click on start in the top left corner and then select your
|
||||
> desired language under 'Sprache' or 'Language' (documentation is only provided in english).
|
||||
|
||||
Once you start the Programm you will be presented with the possibility to either create a new tournament or load one if one has already been saved.
|
||||
|
||||
>To create a new tournament simply type in the name of it and press create
|
||||
|
||||
>To load a tournament select the tournament on the list and click open
|
||||
|
||||
>You can also delete a tournament by selecting it and then clicking delete
|
||||
|
||||
Once a tournament has been created you will be sent to the tournament screen.
|
||||
Your next step should be adding a place or players you can do so vie Edit Participants or Edit Locations.
|
||||
|
||||
Once you have enough Players(min 4 and only number that are 2^n e.g. 4, 8, 16...), you can click the Create game schedule button and the schedule will be created
|
||||
|
||||
you can then input the location where a game takes place and as well the points a team scored
|
||||
the winning team will then automatically advance in the tree.
|
||||
|
||||
The Programm automatically saves, so no worries you won't lose your progress.
|
||||
|
||||
# Startup and Testing
|
||||
To Start the Programm use the command
|
||||
>./gradlew run
|
||||
|
||||
To run the tests use the command
|
||||
>./gradlew test
|
||||
|
||||
# Branching Model
|
||||
We used a simple branching model, for each new functionality or working step a new branch would be created, once a segment was finished the branch would then be reviewed by peers and be pushed into the main branch via a pull request, no direct work is usually done in the main branch.
|
||||
|
||||
# Class Diagramm
|
||||
Our class Diagramm can be found [here](https://github.zhaw.ch/PM2-IT21bWIN-ruiz-mach-krea/team02-AngryNerds-projekt2-turnierverwaltung/blob/main/ClassDiagram.png)
|
||||
# Architecture
|
||||
|
||||
Our Model View Pattern has been set, so that the class Tournament acts as the Model.
|
||||
Each View has its own unique controller assigned
|
||||
For Comprehensive Reasons all Controller Classes inherit from the abstract super class FX Controller.
|
||||
|
||||
The Class Tournament decorator has the purpose of communication of the controller classes with the Model of the tournament, the same Decorator also communicates with the FileIO and inherits the task of saving or importing save files into the program.
|
||||
|
||||
The Class Tournament Decorator always stores the Tournament that is opened in a data field.
|
||||
The Factory and its associated Factory Decorators are responsible to load all the views if application is started. And to switch between the views while using the application.
|
||||
|
||||
The Factory decorator is placed between the controllers and the factory to enable the communication.
|
||||
|
||||
The Model tournament saves a List of all participants, all places and all games. Participants are implemented as an interface, since we want to be able to save a team or a single player as participant (in the prototype it is not possible to create a team).
|
||||
|
||||
To refresh the view of the tournament tree, each game has its own game decorator with a list of listeners.
|
||||
|
||||
To realize the tree there are listeners placed in the game decorators of the previous round to gather the winner and calculate the new participants of a game. Listeners are only placed
|
||||
|
||||
Loggers are implemented in all relevant classes
|
||||
Each class creates its own logger a root logger is created in the LogConfiguration class and two Handlers are specified for use, one File Handler and one Console Handler.
|
||||
The setting of those handlers can be set in the file log.properties.
|
||||
|
||||
We choose this architecture since it gives us the advantage to add more views without having any more code duplication.
|
||||
We also think it is an advantage that the saving automatically takes place and the user does not have to take into consideration to save from time to time.
|
||||
It also closely resembles what we learned already in lectures we had previously, so we were able to implement it accordingly.
|
||||
|
||||
# Notable Pullrequests
|
||||
[Number 1](https://github.zhaw.ch/PM2-IT21bWIN-ruiz-mach-krea/team02-AngryNerds-projekt2-turnierverwaltung/pull/22)
|
||||
[Number 2](https://github.zhaw.ch/PM2-IT21bWIN-ruiz-mach-krea/team02-AngryNerds-projekt2-turnierverwaltung/pull/20)
|
||||
|
||||
|
|
|
@ -14,6 +14,11 @@ import javafx.scene.input.MouseEvent;
|
|||
import javafx.scene.layout.GridPane;
|
||||
import javafx.scene.layout.VBox;
|
||||
|
||||
import java.util.logging.Logger;
|
||||
|
||||
/**
|
||||
* Controller of Participant
|
||||
*/
|
||||
public class ParticipantFormularController extends FXController {
|
||||
|
||||
@FXML
|
||||
|
@ -68,8 +73,14 @@ public class ParticipantFormularController extends FXController {
|
|||
@FXML
|
||||
private Button saveBtn;
|
||||
|
||||
private static final Logger logger = Logger.getLogger(ParticipantFormularController.class.getCanonicalName());
|
||||
|
||||
/**
|
||||
* Shares GUI Elements with the LanguageConfigurator
|
||||
*/
|
||||
@Override
|
||||
public void shareGUIElementWithLanguageConfigurator() {
|
||||
logger.fine("sharing GUI Elements");
|
||||
getLanguageConfigurator().recieveLabel(participantListTitle);
|
||||
getLanguageConfigurator().recieveLabel(closeBtn);
|
||||
getLanguageConfigurator().recieveLabel(deleteBtn);
|
||||
|
@ -81,8 +92,11 @@ public class ParticipantFormularController extends FXController {
|
|||
getLanguageConfigurator().recieveLabel(saveBtn);
|
||||
}
|
||||
|
||||
/**
|
||||
* Changes the current selection
|
||||
*/
|
||||
@FXML
|
||||
void changedSelection(MouseEvent event){
|
||||
void changedSelection(){
|
||||
Player participant = (Player) participantListView.getSelectionModel().getSelectedItems().get(0);
|
||||
participantNameTextField.setText(participant.getName());
|
||||
firstNameTextField.setText(participant.getFirstName());
|
||||
|
@ -90,12 +104,18 @@ public class ParticipantFormularController extends FXController {
|
|||
birthDateTextField.setText(participant.getFormattedDateOfBirth());
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves a new Participant and clears form
|
||||
*/
|
||||
@FXML
|
||||
void saveParticipant(ActionEvent event) {
|
||||
void saveParticipant() {
|
||||
getTournamentDecorator().savePlayer(firstNameTextField.getText(), participantNameTextField.getText(), phoneNumberTextField.getText(), birthDateTextField.getText());
|
||||
clearFormular();
|
||||
}
|
||||
|
||||
/**
|
||||
* Clears current form
|
||||
*/
|
||||
private void clearFormular() {
|
||||
firstNameTextField.clear();
|
||||
participantNameTextField.clear();
|
||||
|
@ -103,19 +123,30 @@ public class ParticipantFormularController extends FXController {
|
|||
birthDateTextField.clear();
|
||||
}
|
||||
|
||||
/**
|
||||
* Deletes the selected participant.
|
||||
*/
|
||||
@FXML
|
||||
void delete(ActionEvent event) {
|
||||
void delete() {
|
||||
Participant participant = participantListView.getSelectionModel().getSelectedItems().get(0);
|
||||
logger.fine("deleting participant:" + participant);
|
||||
getTournamentDecorator().deleteParticipant(participant);
|
||||
}
|
||||
|
||||
/**
|
||||
* Closes the participant form
|
||||
*/
|
||||
@FXML
|
||||
void close(ActionEvent event) {
|
||||
void close() {
|
||||
getFactoryDecorator().openScheduleView();
|
||||
}
|
||||
|
||||
/**
|
||||
* Loads the previously saved content and puts it in the list
|
||||
*/
|
||||
@Override
|
||||
public void loadContent() {
|
||||
logger.fine("loading and placing it into the list");
|
||||
Tournament tournament = getTournamentDecorator().getTournament();
|
||||
if(tournament != null){
|
||||
participantListView.setItems(tournament.getParticipants());
|
||||
|
|
Binary file not shown.
Loading…
Reference in New Issue