1
0
Fork 0

Implemented a basic extraction loop

This commit is contained in:
Julien Dessaux 2023-05-14 01:50:19 +02:00
parent f190aea975
commit efdf50a55a
Signed by: adyxax
GPG key ID: F92E51B86E07177E
12 changed files with 2022 additions and 0 deletions

35
lib/ships.js Normal file
View file

@ -0,0 +1,35 @@
import * as api from './api.js';
export function extract(ctx) {
console.log(`${ctx.ship}: extracting`);
api.send({endpoint: `/my/ships/${ctx.ship}/extract`, method: 'POST', next: ctx.next});
}
export function dock(ctx) {
console.log(`${ctx.ship}: docking`);
api.send({endpoint: `/my/ships/${ctx.ship}/dock`, method: 'POST', next: ctx.next});
}
export function navigate(ctx) {
console.log(`${ctx.ship}: navigating to ${ctx.waypoint}`);
api.send({endpoint: `/my/ships/${ctx.ship}/navigate`, method: 'POST', payload: { waypointSymbol: ctx.waypoint }, next: ctx.next});
}
export function orbit(ctx) {
console.log(`${ctx.ship}: orbiting`);
api.send({endpoint: `/my/ships/${ctx.ship}/orbit`, method: 'POST', next: ctx.next});
}
export function refuel(ctx) {
console.log(`${ctx.ship}: refueling`);
api.send({endpoint: `/my/ships/${ctx.ship}/refuel`, method: 'POST', next: ctx.next});
}
export function sell(ctx) {
console.log(`${ctx.ship}: selling ${ctx.units} of ${ctx.good}`);
api.send({endpoint: `/my/ships/${ctx.ship}/sell`, method: 'POST', payload: { symbol: ctx.good, units: ctx.units }, next: ctx.next});
}
export function ship(ctx) {
api.send({endpoint: `/my/ships/${ctx.ship}`, next: ctx.next});
}