25 lines
502 B
Python
25 lines
502 B
Python
|
|
from .base import Base
|
|
from math import sqrt
|
|
|
|
class System(Base):
|
|
x:int = 0
|
|
y:int = 0
|
|
type:str = 'unknown'
|
|
|
|
def update(self, d):
|
|
self.seta('x', d)
|
|
self.seta('y', d)
|
|
self.seta('type', d)
|
|
|
|
@classmethod
|
|
def ext(self):
|
|
return 'stm'
|
|
|
|
def path(self):
|
|
sector, symbol = self.symbol.split('-')
|
|
return f'atlas/{sector}/{symbol[0:1]}/{self.symbol}.{self.ext()}'
|
|
|
|
def distance(self, other):
|
|
return int(sqrt((self.x - other.x) ** 2 + (self.y - other.y) ** 2))
|