Skip to content

bobbyjim/acs-builder-golang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

acs-builder

A Traveller5 starship component builder.

Theory

Relatively small, stateless endpoints. Incrementally developed.

Example - weapon creation using dynamic picklists

GET /weapons
GET /mounts
GET /ranges

(App displays picklists for weapon, mount, and range) (User selects weapon Y "Hybrid L-M-S", T3 "triple turret", and Vd "Very distant" range)

POST /weapons/Y

{
   "mount": "T3",
   "range": "Vd"
}

API

GET /mounts - Returns a list of all mounts.

GET /ranges - Returns a list of all ranges.

GET /sensors - Returns a list of all sensor types.

GET /weapons - Returns a list of all weapon types.

GET /drives - Returns a list of all drive types.

GET /hulls - Returns a list of all hull configurations.

POST /mounts - Add a mount to the database.

POST /ranges - Add a range to the database.

POST /sensors - Add a sensor type to the database.

POST /weapons - Add a weapon type to the database.

POST /sensors/{type}

Build a sensor from existing mounts, ranges, and types.

Request Body:

  • mount (optional): enum (T1 | T2 | T3 | T4 | B1 | B2)
  • range (optional): enum (Vl | D | Vd | Or | Fo | G | BR | FR | SR | AR | LR | DS)

POST /weapons/{type}

Build a weapon from existing mounts, ranges, and types. Uses the same request body as the sensor.

POST /drives/{type}

Build a drive from existing types.

Request Body:

  • rating: numeric drive rating (e.g. 2 for Jump-2 or Maneuver-2)
  • targetHullTons: hull tons (e.g. 200 for a 200t hull; 10000 for a 10 kiloton hull)

POST /hulls/{config}

Build a hull with the given configuration.

Request Body:

  • tons: volume of hull, in tons
  • tl: TL of the hull

To Do

  • Swagger doc.
  • Decouple methods.
  • Fill out maps.
  • Externalize maps.
  • Weapons.
  • Defenses.
  • Hull.
  • Drives.
  • Etc.

About

A microservice in Go to build T5 ship components

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published