예제 #1
0
파일: const.py 프로젝트: zzwpower/Pyfa
class GraphCacheCleanupReason(IntEnum):
    fitChanged = autoId()
    fitRemoved = autoId()
    profileChanged = autoId()
    profileRemoved = autoId()
    graphSwitched = autoId()
    inputChanged = autoId()
    optionChanged = autoId()
    resistModeChanged = autoId()
    hpEffectivityChanged = autoId()
예제 #2
0
파일: const.py 프로젝트: zzwpower/Pyfa
class GraphColor(IntEnum):
    red = autoId()
    green = autoId()
    blue = autoId()
    yellow = autoId()
    cyan = autoId()
    magenta = autoId()
    orange = autoId()
    purple = autoId()
예제 #3
0
파일: const.py 프로젝트: zzwpower/Pyfa
class GuiAttrGroup(IntEnum):
    """
    Define the various groups of attributes.
    This enum is used for GUI functions and getting redefined in
    /gui/builtinItemStatsViews/attributeGrouping.py
    """
    FITTING = autoId()
    STRUCTURE = autoId()
    SHIELD = autoId()
    ARMOR = autoId()
    TARGETING = autoId()
    EWAR_RESISTS = autoId()
    CAPACITOR = autoId()
    SHARED_FACILITIES = autoId()
    FIGHTER_FACILITIES = autoId()
    ON_DEATH = autoId()
    JUMP_SYSTEMS = autoId()
    PROPULSIONS = autoId()
    FIGHTERS = autoId()
    SHIP_GROUP = autoId()
예제 #4
0
파일: const.py 프로젝트: zzwpower/Pyfa
class GraphLineStyle(IntEnum):
    solid = autoId()
    dashed = autoId()
    dotted = autoId()
    dashdotted = autoId()
예제 #5
0
파일: const.py 프로젝트: zzwpower/Pyfa
class GraphLightness(IntEnum):
    normal = autoId()
    dark = autoId()
    bright = autoId()
예제 #6
0
파일: const.py 프로젝트: zzwpower/Pyfa
class TargetResistMode(IntEnum):
    auto = autoId()
    shield = autoId()
    armor = autoId()
    hull = autoId()
    weightedAverage = autoId()