Difficult-Rocket/bin/tools.py

189 lines
4.0 KiB
Python
Raw Normal View History

2020-12-16 06:33:33 +08:00
"""
writen by shenjackyuanjie
mail: 3695888@qq.com
"""
2021-01-25 17:01:54 +08:00
import json5
2021-01-25 17:24:00 +08:00
import decimal
2021-02-06 16:41:54 +08:00
import logging
2021-01-23 19:55:35 +08:00
2021-02-03 22:04:34 +08:00
try:
import configs
except ModuleNotFoundError:
from bin import configs
2021-02-06 16:41:54 +08:00
# logger
tools_logger = logging.getLogger('tools')
2021-01-23 19:55:35 +08:00
"""
some tools
"""
2020-12-23 23:19:16 +08:00
2020-12-16 06:33:33 +08:00
2021-02-06 16:41:54 +08:00
def c_b(thing): # stand for my bool
2021-02-03 22:04:34 +08:00
yes = ['True', 'TRUE', '1', 1]
no = ['False', 'FALSE', '0', 0]
if thing in yes:
2020-12-16 06:33:33 +08:00
return True
2021-02-03 22:04:34 +08:00
elif thing in no:
2020-12-16 06:33:33 +08:00
return False
else:
raise ValueError("Need a 'like bool' not anything else")
2020-12-22 18:13:59 +08:00
2020-12-23 23:19:16 +08:00
2021-01-23 19:55:35 +08:00
"""
Physics calculation
"""
2021-01-25 19:23:16 +08:00
def is_decimal(A: any) -> bool:
2021-02-03 22:04:34 +08:00
if type(A) is not type(decimal.Decimal):
2021-01-25 17:24:00 +08:00
return False
2021-01-27 10:32:25 +08:00
else:
return True
2021-01-25 17:24:00 +08:00
2021-01-25 19:23:16 +08:00
def F_D(A: decimal, B: decimal) -> decimal:
2021-01-25 17:24:00 +08:00
if is_decimal(A) and is_decimal(B):
return A / B
2021-01-25 17:11:16 +08:00
2021-01-27 10:32:25 +08:00
def F_Mu(A: decimal, B: decimal) -> decimal:
if is_decimal(A) and is_decimal(B):
return A * B
def F_Mi(A: decimal, B: decimal) -> decimal:
if is_decimal(A) and is_decimal(B):
return A - B
def F_A(A: decimal, B: decimal) -> decimal:
if is_decimal(A) and is_decimal(B):
return A + B
2021-01-25 17:11:16 +08:00
2021-01-25 19:23:16 +08:00
def D_C(listA: list, listB: list) -> '1': # stand for Duplicate check
2020-12-22 18:13:59 +08:00
"""
usage:\n
input two list\n
the fun will do duplicate check and sort then\n
the fun won't return any thing just change the list now
"""
for unit in listB:
if unit in listA:
listA.remove(unit)
listB.remove(unit)
else:
continue
listA.sort()
listB.sort()
2021-01-25 19:23:16 +08:00
return 1
2020-12-23 23:19:16 +08:00
2021-01-23 19:55:35 +08:00
2021-01-27 10:32:25 +08:00
def S_C_float_check(SC) -> None: # stand for Scientific notation's float check
2021-01-23 19:55:35 +08:00
"""
formats:
SC list format:docs.basic_config.json:basic_number"""
while SC[0] >= 10:
SC[0] = F_D(SC[0], 10)
SC[1] += 1
while SC[0] < 1:
SC[0] = F_Mu(SC[0], 10)
SC[1] -= 1
def S_N_M(*SN): # stand for Scientific notation multiple
"""
formats:
A & B & C list format:docs.basic_config.json:basic_number"""
if len(SN) < 2:
raise TypeError("it need more than 2!")
elif len(SN) == 2:
return __S_N_M(SN[0], SN[1])
else:
R = __S_N_M(SN[0], SN[1])
for A in SN[2:]:
R = __S_N_M(R, A)
return R
def __S_N_M(A, B):
"""
formats:
A & B list format:docs.basic_config.json:basic_number"""
R = [F_Mu(A[0], B[0]), A[1] + B[1]]
S_C_float_check(R)
Unit1, Unit2 = A[2] + B[2], A[3] + B[3]
2021-01-27 10:32:25 +08:00
if Unit1 is None:
2021-01-23 19:55:35 +08:00
Unit1 = []
2021-01-25 17:01:54 +08:00
D_C(Unit1, Unit2)
2021-01-23 19:55:35 +08:00
R += [Unit1, Unit2]
return R
def S_N_D(A, B): # stand for Scientific notation divided
"""
formats:
A & B list format:docs.basic_config:basic_number"""
R = [F_D(A[0], B[0]), A[1] - B[1]]
S_C_float_check(R)
Unit1, Unit2 = A[2] + B[3], A[3] + B[2]
2021-02-03 22:04:34 +08:00
if Unit1 is None:
2021-01-23 19:55:35 +08:00
Unit1 = []
2021-01-25 17:01:54 +08:00
D_C(Unit1, Unit2)
2021-01-23 19:55:35 +08:00
R += [Unit1, Unit2]
return R
def G_C(M, m, R, G): # stand for gravity calculation
"""
formats:
M : ship's mass
m : planet's mass
R : distance to the planet
G : Gravitational constant
M & m & R format: docs.basic_config:basic_number
"""
2021-02-03 22:04:34 +08:00
g = configs.basic_force()
2021-01-23 19:55:35 +08:00
A = S_N_M(M, m, G)
g = S_N_D(A, S_N_M(R, R))
return g
2021-02-03 22:04:34 +08:00
def distance(A, B) -> float:
2021-01-23 19:55:35 +08:00
"""
formats:
A & B format: docs.basic_config:basic_poi
"""
2021-02-03 22:04:34 +08:00
poi_dis = configs.basic_poi()
dis = decimal.Decimal('0.0')
xd = A[0] - B[0]
yd = A[1] - B[1]
poi_dis[0] = xd
poi_dis[1] = yd
# 勾股定理
poi_dis[0] **= 2
poi_dis[1] **= 2
poi_dis.append(poi_dis[0] + poi_dis[1])
poi_dis[2] **= 0.5
return poi_dis[2]
2021-01-23 19:55:35 +08:00
"""
loads
"""
def config(file_name, stack=None):
2021-02-03 22:04:34 +08:00
# rd = {} # rd -> return data
2021-01-23 19:55:35 +08:00
try:
with open(file_name, "r") as jf: # jf -> json file
rd = json5.load(jf)
2021-02-06 16:41:54 +08:00
except FileNotFoundError as exp:
tools_logger.exception("no config file \n file name : %s \n stack : %s" % (file_name, stack))
2021-02-03 22:04:34 +08:00
raise FileNotFoundError("no config file \n file name : %s \n stack : %s" % (file_name, stack))
if stack is not None:
2021-01-23 19:55:35 +08:00
rd = rd[stack]
return rd