blob: 393a98cc991056891c5b8ef83239ff8063d7e066 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
import * as dbShips from '../database/ships.js';
import * as api from '../lib/api.js';
import * as ships from '../lib/ships.js';
// example ctx { good: 'SILVER_ORE', symbol: 'ADYXAX-2' }
// returns the number of units of the good the ship holds
export async function mineUntilFullOf(ctx) {
while(true) {
let cargo = await mineUntilFull({symbol: ctx.symbol});
let good = cargo.inventory.filter(i => i.symbol === ctx.good)[0];
const antimatter = cargo.inventory.filter(i => i.symbol === 'ANTIMATTER')[0];
const junk = cargo.inventory.filter(i => i.symbol !== ctx.good && i.symbol !== 'ANTIMATTER');
if ((good?.units ?? 0) + (antimatter?.units ?? 0) >= cargo.capacity * 0.9) { // > 90% full of the valuable goods
return good.units;
} else { // we are full but need to sell junk
for (let i=0; i<junk.length; ++i) {
await ships.sell({symbol: ctx.symbol, good: junk[i].symbol, units: junk[i].units});
}
}
}
}
// example ctx { symbol: 'ADYXAX-2' }
// extract the ship's cargo contents when more than 80% full then returns the ships cargo object
async function mineUntilFull(ctx) {
while(true) {
const ship = dbShips.getShip(ctx.symbol);
if (ship.cargo.units >= ship.cargo.capacity * 0.8) return ship.cargo;
await ships.extract({symbol: ctx.symbol});
}
}
// TODO surveying the asteroid field
|