Files
igncore/modules/standard/helpbot/overequipped_controller.py
T

48 lines
2.4 KiB
Python

import math
from core.chat_blob import ChatBlob
from core.command_param_types import Int
from core.db import DB
from core.decorators import instance, command
from core.dict_object import DictObject
from core.text import Text
@instance()
class OverequippedController:
def inject(self, registry):
self.db: DB = registry.get_instance("db")
self.text: Text = registry.get_instance("text")
@command(command="oe", params=[Int("skill_level")], access_level="member",
description="Show the current time in every timezone")
def oe_command(self, _, skill_level):
oe = self.get_oe_vals(skill_level)
blob = "With a skill requirement of <highlight>%s</highlight>, you will be\n" % skill_level
blob += "Out of OE: <highlight>%d</highlight> or higher\n" % oe.oe100low
blob += "75%%: <highlight>%d</highlight> to <highlight>%d</highlight>\n" % (oe.oe75low, oe.oe100low - 1)
blob += "50%%: <highlight>%d</highlight> to <highlight>%d</highlight>\n" % (oe.oe50low, oe.oe75low - 1)
blob += "25%%: <highlight>%d</highlight> to <highlight>%d</highlight>\n" % (oe.oe25low, oe.oe50low - 1)
blob += "0%%: <highlight>%d</highlight> or lower\n\n" % (oe.oe25low - 1)
blob += "With a personal skill of <highlight>%s</highlight>, you can use up to\n" % skill_level
blob += "Out of OE: <highlight>%d</highlight> or lower\n" % oe.oe100
blob += "75%%: <highlight>%d</highlight> to <highlight>%d</highlight>\n" % (oe.oe100 + 1, oe.oe75)
blob += "50%%: <highlight>%d</highlight> to <highlight>%d</highlight>\n" % (oe.oe75 + 1, oe.oe50)
blob += "25%%: <highlight>%d</highlight> to <highlight>%d</highlight>\n" % (oe.oe50 + 1, oe.oe25)
blob += "0%%: <highlight>%d</highlight> or higher\n" % (oe.oe25 - 1)
return ChatBlob("%d - %d - %d" % (oe.oe100low, skill_level, oe.oe100), blob)
def get_oe_vals(self, skill_level):
return DictObject({
"oe100": int(math.floor(skill_level / 0.8)),
"oe100low": int(math.floor(skill_level * 0.8)),
"oe75": int(math.floor(skill_level / 0.6)),
"oe75low": int(math.floor(skill_level * 0.6)),
"oe50": int(math.floor(skill_level / 0.4)),
"oe50low": int(math.floor(skill_level * 0.4)),
"oe25": int(math.floor(skill_level / 0.2)),
"oe25low": int(math.floor(skill_level * 0.2))})