from enum import Enum class Wire(Enum): BLUE = 1, "blue" GREEN = 2, "green" RED = 3, "red" YELLOW = 4, "yellow" WHITE = 5, "white" PURPLE = 6, "purple" class TypeHash(Enum): TIME = 90, "time" CHAINED = 45, "chained" STANDARD = 0, "standard" class DangerClassHash(Enum): BIG_BANG = 64, "big bang" WEAPON_OF_MASS_DESTRUCTION = 48, "weapon of mass destruction" RADIOACTIVE = 36, "radioactive" CASUAL_DEVASTATOR = 20, "casual devastator" ALMOST_PIERCES_THROUGH_PAPER = 10, "almost pierces through paper" CHERRY_BOMB = 0, "cherry bomb" class SeriesHash(Enum): TCH_2990TONER = 220, "TCH 2990toner", "T" SWX_5000 = 168, "SWX 5000", "S" WORKHORSE_3200 = 94, "WORKHORSE 3200", "W" FX_500 = 1, "FX 500", "F" class IndicatorHash(Enum): RED = 10, "red" YELLOW = 8, "yellow" BLUE = 5, "blue" GREEN = 2, "green" WHITE = 0, "white" class SpecificityHash(Enum): ANTI_AIRCRAFT = 512, "anti aircraft", "planes" DEPTH_MINE = 256, "depth mine", "ships" ANTI_TANK = 16, "anti tank", "tanks" class WeightHash(Enum): GINORMOUS = 32, "ginormous" EXTRA_LARGE = 24, "extra large" TOTAL_AVERAGE = 16, "total average" SLIM_FIT = 8, "slim fit" BREAD_CRUMB = 0, "bread crumb" 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]) \ + max([elem.value[0] for elem in WeightHash]) def _get_wire_color(hash_sum): if hash_sum < 0.20 * MAX_VALUE: return Wire.BLUE elif hash_sum <= 0.38 * MAX_VALUE: return Wire.GREEN elif hash_sum <= 0.50 * MAX_VALUE: return Wire.YELLOW elif hash_sum <= 0.60 * MAX_VALUE: return Wire.WHITE elif hash_sum <= 0.80 * MAX_VALUE: return Wire.PURPLE else: return Wire.RED # STRING ARGUMENTS def get_wire_from_str(mine_type: str, danger_cls: str, series: str, indicator: str, specificity: str, weight: 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] weight_hash = WeightHash[weight.upper().replace(" ", "_")].value[0] hash_sum = type_hash + danger_cls_hash + series_hash + indicator_hash + specificity_hash + weight_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, weight: WeightHash): hash_list = [mine_type, danger_cls, series, indicator, specificity, weight] hash_sum = sum([enum.value[0] for enum in hash_list]) return _get_wire_color(hash_sum)