general leads the startup
This commit is contained in:
parent
cf930fe24b
commit
53867a3257
5
main.py
5
main.py
@ -11,12 +11,13 @@ def main(args):
|
|||||||
a = StoreAnalyzer(verbose=True)
|
a = StoreAnalyzer(verbose=True)
|
||||||
a.run(args.analyze)
|
a.run(args.analyze)
|
||||||
else:
|
else:
|
||||||
c = Commander(args.data_dir)
|
c = Commander(args.data_dir, auto=args.auto)
|
||||||
c.run()
|
c.run()
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument('-d', '--data-dir', default='data')
|
parser.add_argument('-d', '--data-dir', default='data')
|
||||||
parser.add_argument('-a', '--analyze', type=argparse.FileType('rb'))
|
parser.add_argument('--analyze', type=argparse.FileType('rb'))
|
||||||
|
parser.add_argument('-a', '--auto', action='store_true')
|
||||||
args = parser.parse_args()
|
args = parser.parse_args()
|
||||||
main(args)
|
main(args)
|
||||||
|
@ -19,7 +19,7 @@ class CommandError(AppError):
|
|||||||
pass
|
pass
|
||||||
|
|
||||||
class Commander(CommandLine):
|
class Commander(CommandLine):
|
||||||
def __init__(self, data_dir='data'):
|
def __init__(self, data_dir='data', auto=False):
|
||||||
store_file = os.path.join(data_dir, 'store.npt')
|
store_file = os.path.join(data_dir, 'store.npt')
|
||||||
hist_file = os.path.join(data_dir, 'cmd.hst')
|
hist_file = os.path.join(data_dir, 'cmd.hst')
|
||||||
self.cred_file = os.path.join(data_dir, 'creds.txt')
|
self.cred_file = os.path.join(data_dir, 'creds.txt')
|
||||||
@ -41,6 +41,8 @@ class Commander(CommandLine):
|
|||||||
self.ship = None
|
self.ship = None
|
||||||
|
|
||||||
self.stop_auto = False
|
self.stop_auto = False
|
||||||
|
if auto:
|
||||||
|
self.do_auto()
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
######## INFRA #########
|
######## INFRA #########
|
||||||
@ -407,6 +409,9 @@ class Commander(CommandLine):
|
|||||||
ship.crew = crew
|
ship.crew = crew
|
||||||
pprint(ship)
|
pprint(ship)
|
||||||
|
|
||||||
|
def do_phase(self, phase):
|
||||||
|
self.agent.phase = phase
|
||||||
|
|
||||||
######## Crews #########
|
######## Crews #########
|
||||||
def do_create_crews(self):
|
def do_create_crews(self):
|
||||||
crews = self.captain.create_default_crews()
|
crews = self.captain.create_default_crews()
|
||||||
|
@ -24,11 +24,29 @@ class General:
|
|||||||
self.create_default_crews()
|
self.create_default_crews()
|
||||||
|
|
||||||
def find_shipyard(self, stype):
|
def find_shipyard(self, stype):
|
||||||
|
occ = [s.location.symbol for s in self.store.all('Ship') if s.status != 'IN_TRANSIT']
|
||||||
|
best_price = -1
|
||||||
|
best_yard = None
|
||||||
for shipyard in self.store.all('Shipyard'):
|
for shipyard in self.store.all('Shipyard'):
|
||||||
if stype in shipyard.types:
|
if stype in shipyard.prices:
|
||||||
return stype
|
price = shipyard.prices[stype]
|
||||||
return None
|
if shipyard.symbol in occ:
|
||||||
|
if best_yard is None or price < best_price:
|
||||||
|
best_yard = shipyard
|
||||||
|
best_price = price
|
||||||
|
return best_yard, best_price
|
||||||
|
|
||||||
|
def maybe_purchase(self, stype, role):
|
||||||
|
sy, price = self.find_shipyard(stype)
|
||||||
|
if sy is None:
|
||||||
|
return False
|
||||||
|
traders = [s for s in self.store.all('Ship') if s.role == 'trader']
|
||||||
|
safe_buffer = len(traders) * 100000 + 100000
|
||||||
|
|
||||||
|
if self.agent.credits < safe_buffer + price:
|
||||||
|
return # cant afford it!
|
||||||
|
ship = self.c.api.purchase(stype, sy)
|
||||||
|
ship.role = role
|
||||||
|
|
||||||
def tick(self):
|
def tick(self):
|
||||||
phase = self.agent.phase
|
phase = self.agent.phase
|
||||||
@ -50,11 +68,24 @@ class General:
|
|||||||
command.role = 'probe'
|
command.role = 'probe'
|
||||||
if probe.role is None:
|
if probe.role is None:
|
||||||
probe.role = 'sitter'
|
probe.role = 'sitter'
|
||||||
|
system = command.location.system
|
||||||
|
markets = list(self.store.all_members(system, 'Marketplace'))
|
||||||
|
discovered = len([m for m in markets if m.last_prices > 0])
|
||||||
|
if discovered > len(markets) // 2:
|
||||||
|
return 'probes'
|
||||||
|
|
||||||
def phase_probes(self):
|
def phase_probes(self):
|
||||||
|
ag = self.agent.symbol
|
||||||
|
command = self.store.get('Ship', f'{ag}-1')
|
||||||
# * probes on all markets
|
# * probes on all markets
|
||||||
pass
|
if command.role != 'trader':
|
||||||
|
command.role = 'trader'
|
||||||
|
self.c.captain.init_mission(command, 'none')
|
||||||
|
self.maybe_purchase('SHIP_PROBE', 'sitter')
|
||||||
|
sitters = [s for s in self.store.all('Ship') if s.role == 'sitter']
|
||||||
|
markets = [m for m in self.store.all('Marketplace')]
|
||||||
|
if len(sitters) >= len(markets):
|
||||||
|
return 'trade'
|
||||||
|
|
||||||
def phase_trade(self):
|
def phase_trade(self):
|
||||||
# 20? traders
|
# 20? traders
|
||||||
|
@ -20,5 +20,6 @@ class Agent(Base):
|
|||||||
def f(self, detail=1):
|
def f(self, detail=1):
|
||||||
r = super().f(detail)
|
r = super().f(detail)
|
||||||
if detail >2:
|
if detail >2:
|
||||||
r += f' c:{self.credits}'
|
r += f' c:{self.credits}\n'
|
||||||
|
r+= f'phase: {self.phase}'
|
||||||
return r
|
return r
|
||||||
|
@ -6,7 +6,7 @@ def assign_probe(c, s):
|
|||||||
m = [m.waypoint for m in c.store.all_members(system, 'Marketplace')]
|
m = [m.waypoint for m in c.store.all_members(system, 'Marketplace')]
|
||||||
m = solve_tsp(c, m)
|
m = solve_tsp(c, m)
|
||||||
hops = [w.symbol for w in m]
|
hops = [w.symbol for w in m]
|
||||||
start_hop = randrange(0, len(hops))
|
start_hop = 0
|
||||||
s.log(f'Assigning {s} to probe {len(hops)} starting at {hops[start_hop]}')
|
s.log(f'Assigning {s} to probe {len(hops)} starting at {hops[start_hop]}')
|
||||||
|
|
||||||
c.captain.init_mission(s, 'probe')
|
c.captain.init_mission(s, 'probe')
|
||||||
|
@ -13,8 +13,6 @@ def assign_sitter(c, s):
|
|||||||
shipyards = c.store.all_members(system, 'Shipyard')
|
shipyards = c.store.all_members(system, 'Shipyard')
|
||||||
occupied = [s.mission_state['dest'] for s in ships if s.mission=='sit']
|
occupied = [s.mission_state['dest'] for s in ships if s.mission=='sit']
|
||||||
probe_shipyard = [y for y in shipyards if 'SHIP_PROBE' in y.types][0]
|
probe_shipyard = [y for y in shipyards if 'SHIP_PROBE' in y.types][0]
|
||||||
print('oc', occupied)
|
|
||||||
print('proya', probe_shipyard)
|
|
||||||
|
|
||||||
if probe_shipyard.symbol not in occupied:
|
if probe_shipyard.symbol not in occupied:
|
||||||
return assign_sitter_at(c, s, probe_shipyard)
|
return assign_sitter_at(c, s, probe_shipyard)
|
||||||
|
Loading…
Reference in New Issue
Block a user