59 lines
2.1 KiB
Python
59 lines
2.1 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/>.
|
|
# =============================================================================
|
|
|
|
import wx
|
|
from eos.types import Fighter
|
|
from gui.viewColumn import ViewColumn
|
|
from gui.bitmapLoader import BitmapLoader
|
|
|
|
|
|
class Ammo(ViewColumn):
|
|
name = "Ammo"
|
|
|
|
def __init__(self, fittingView, params):
|
|
ViewColumn.__init__(self, fittingView)
|
|
self.mask = wx.LIST_MASK_IMAGE
|
|
self.imageId = fittingView.imageList.GetImageIndex("damagePattern_small", "gui")
|
|
self.bitmap = BitmapLoader.getBitmap("damagePattern_small", "gui")
|
|
|
|
def getText(self, stuff):
|
|
if isinstance(stuff, Fighter):
|
|
# this is an experiment, not sure I like it. But it saves us from duplicating code.
|
|
col = self.columns['Fighter Abilities'](self.fittingView, {})
|
|
text = col.getText(stuff)
|
|
del col
|
|
return text
|
|
if getattr(stuff, "charge", None) is not None:
|
|
charges = stuff.numCharges
|
|
if charges > 0:
|
|
cycles = stuff.numShots
|
|
if cycles != 0 and charges != cycles:
|
|
return "%s (%d, %d cycles)" % (stuff.charge.name, charges, cycles)
|
|
else:
|
|
return "%s (%d)" % (stuff.charge.name, charges)
|
|
else:
|
|
return stuff.charge.name
|
|
return ""
|
|
|
|
def getImageId(self, mod):
|
|
return -1
|
|
|
|
|
|
Ammo.register()
|