Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Introduction

The development of NautDrafter is conducted in the open with attempting to utilize open source tools or tools that cater to the open source community.  The list below indicates the resources used for development.

UsageTool
Source Code ControlBitBucket
TrackerJira
WikiConfluence
Communication AggregatorSlack

 

Code

The repository contains four projects:

  1. /main/ NautDrafter - The client GUI (also contains the drafting server) - javadocs here
  2. /drafting/ NautDrafter_Drafting - The drafting server
  3. /lobby/ NautDrafter_Lobby - The lobby server (used for listing drafting servers, and helping holepunch connections between client and drafting server) - javadocs here
  4. /common/ NautDrafter_Common - Anything required by both the main and lobby projects.

Package Structure

Within the main GUI project "NautDrafter" we use MVC architecture.

Most UI elements are defined in fxml files in the view package, under the source folder "resources". However there are a few Java classes in the view package under the "java" source folder.

All fxml components need a controller to load and interact with the actual elements. These are defined in the controller package.

For our project the "Model" is mainly defined as the networking packages as the DraftingSever/Client determines what should be showing in the UI.