60 lines
3.2 KiB
Python
60 lines
3.2 KiB
Python
# =============================================================================
|
|
# Copyright (C) 2010 Diego Duclos
|
|
#
|
|
# This file is part of pyfa.
|
|
#
|
|
# pyfa is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# pyfa is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
|
|
# =============================================================================
|
|
|
|
|
|
from graphs.data.base import FitGraph, Input, XDef, YDef
|
|
from .getter import (
|
|
Distance2NeutingStrGetter, Distance2WebbingStrGetter, Distance2EcmStrMaxGetter,
|
|
Distance2DampStrLockRangeGetter, Distance2TdStrOptimalGetter, Distance2GdStrRangeGetter,
|
|
Distance2TpStrGetter)
|
|
|
|
|
|
class FitEwarStatsGraph(FitGraph):
|
|
|
|
# UI stuff
|
|
internalName = 'ewarStatsGraph'
|
|
name = 'Electronic Warfare Stats'
|
|
xDefs = [XDef(handle='distance', unit='km', label='Distance', mainInput=('distance', 'km'))]
|
|
yDefs = [
|
|
YDef(handle='neutStr', unit=None, label='Cap neutralized per second', selectorLabel='Neuts: cap per second'),
|
|
YDef(handle='webStr', unit='%', label='Speed reduction', selectorLabel='Webs: speed reduction'),
|
|
YDef(handle='ecmStrMax', unit=None, label='Combined ECM strength', selectorLabel='ECM: combined strength'),
|
|
YDef(handle='dampStrLockRange', unit='%', label='Lock range reduction', selectorLabel='Damps: lock range reduction'),
|
|
YDef(handle='tdStrOptimal', unit='%', label='Turret optimal range reduction', selectorLabel='TDs: turret optimal range reduction'),
|
|
YDef(handle='gdStrRange', unit='%', label='Missile flight range reduction', selectorLabel='GDs: missile flight range reduction'),
|
|
YDef(handle='tpStr', unit='%', label='Signature radius increase', selectorLabel='TPs: signature radius increase')]
|
|
inputs = [
|
|
Input(handle='distance', unit='km', label='Distance', iconID=1391, defaultValue=None, defaultRange=(0, 100)),
|
|
Input(handle='resist', unit='%', label='Target resistance', iconID=1393, defaultValue=0, defaultRange=(0, 100))]
|
|
|
|
# Calculation stuff
|
|
_normalizers = {
|
|
('distance', 'km'): lambda v, src, tgt: None if v is None else v * 1000,
|
|
('resist', '%'): lambda v, src, tgt: None if v is None else v / 100}
|
|
_limiters = {'resist': lambda src, tgt: (0, 1)}
|
|
_getters = {
|
|
('distance', 'neutStr'): Distance2NeutingStrGetter,
|
|
('distance', 'webStr'): Distance2WebbingStrGetter,
|
|
('distance', 'ecmStrMax'): Distance2EcmStrMaxGetter,
|
|
('distance', 'dampStrLockRange'): Distance2DampStrLockRangeGetter,
|
|
('distance', 'tdStrOptimal'): Distance2TdStrOptimalGetter,
|
|
('distance', 'gdStrRange'): Distance2GdStrRangeGetter,
|
|
('distance', 'tpStr'): Distance2TpStrGetter}
|
|
_denormalizers = {('distance', 'km'): lambda v, src, tgt: None if v is None else v / 1000}
|