92 lines
2.6 KiB
Python
92 lines
2.6 KiB
Python
from enum import Enum
|
|
|
|
|
|
class Wire(Enum):
|
|
BLUE = 1, "blue"
|
|
GREEN = 2, "green"
|
|
RED = 3, "red"
|
|
|
|
|
|
class TypeHash(Enum):
|
|
TIME = 90, "time"
|
|
CHAINED = 12, "chained"
|
|
STANDARD = 0, "standard"
|
|
|
|
|
|
class DangerClassHash(Enum):
|
|
BIG_BANG = 64, "big bang"
|
|
WEAPON_OF_MASS_DESTRUCTION = 32, "weapon of mass destruction"
|
|
RADIOACTIVE = 16, "radioactive"
|
|
CASUAL_DEVASTATOR = 8, "casual devastator"
|
|
CHERRY_BOMB = 0, "cherry bomb"
|
|
|
|
|
|
class SeriesHash(Enum):
|
|
TCH_2990TONER = 65, "TCH_2990toner"
|
|
TCH_2990INKJET = 64, "TCH_2990inkjet"
|
|
TVY_2400H = 55, "TVY_2400h"
|
|
SWX_5000 = 53, "SWX_5000"
|
|
SWX_4000 = 50, "SWX_4000"
|
|
WORKHORSE_3200 = 43, "WORKHORSE_3200"
|
|
FX_500 = 40, "FX_500"
|
|
TVY_2400 = 23, "TVY_2400"
|
|
|
|
|
|
class IndicatorHash(Enum):
|
|
RED = 10, "red"
|
|
YELLOW = 8, "yellow"
|
|
BLUE = 5, "blue"
|
|
GREEN = 2, "green"
|
|
WHITE = 0, "white"
|
|
|
|
|
|
class SpecificityHash(Enum):
|
|
ANTI_AIRCRAFT = 55, "anti_aircraft"
|
|
ANTI_PERSONNEL = 43, "anti_personnel"
|
|
DEPTH_MINE = 37, "depth_mine"
|
|
ANTI_TANK = 26, "anti_tank"
|
|
PROXIMITY_MINE = 18, "proximity_mine"
|
|
PRESSURE_MINE = 9, "pressure_mine"
|
|
FRAGMENTATION_MINE = 0, "fragmentation_mine"
|
|
|
|
|
|
MAX_VALUE = max([elem.value[0] for elem in TypeHash]) \
|
|
+ max([elem.value[0] for elem in DangerClassHash]) \
|
|
+ max([elem.value[0] for elem in SeriesHash]) \
|
|
+ max([elem.value[0] for elem in IndicatorHash]) \
|
|
+ max([elem.value[0] for elem in SpecificityHash])
|
|
|
|
|
|
def _get_wire_color(hash_sum):
|
|
if hash_sum < 0.4 * MAX_VALUE:
|
|
return Wire.BLUE
|
|
elif hash_sum <= 0.6 * MAX_VALUE:
|
|
return Wire.GREEN
|
|
else:
|
|
return Wire.RED
|
|
|
|
|
|
# STRING ARGUMENTS
|
|
def get_wire_from_str(mine_type: str, danger_cls: str, series: str, indicator: str, specificity: str):
|
|
|
|
type_hash = TypeHash[mine_type.upper().replace(" ", "_")].value[0]
|
|
danger_cls_hash = DangerClassHash[danger_cls.upper().replace(" ", "_")].value[0]
|
|
series_hash = SeriesHash[series.upper().replace(" ", "_")].value[0]
|
|
indicator_hash = IndicatorHash[indicator.upper().replace(" ", "_")].value[0]
|
|
specificity_hash = SpecificityHash[specificity.upper().replace(" ", "_")].value[0]
|
|
|
|
hash_sum = type_hash + danger_cls_hash + series_hash + indicator_hash + specificity_hash
|
|
return _get_wire_color(hash_sum)
|
|
|
|
|
|
# ENUM ARGUMENTS
|
|
def get_wire_from_enums(
|
|
mine_type: TypeHash,
|
|
danger_cls: DangerClassHash,
|
|
series: SeriesHash,
|
|
indicator: IndicatorHash,
|
|
specificity: SpecificityHash):
|
|
|
|
hash_sum = mine_type.value[0] + danger_cls.value[0] + series.value[0] + indicator.value[0] + specificity.value[0]
|
|
return _get_wire_color(hash_sum)
|