Files
pyfa/gui/statsPane.py
2010-08-14 15:48:55 +02:00

161 lines
6.6 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 Affero 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 Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with pyfa. If not, see <http://www.gnu.org/licenses/>.
#===============================================================================
import wx
from gui import bitmapLoader
class StatsPane(wx.Panel):
def __init__(self, parent):
wx.Panel.__init__(self, parent)
size = wx.Size()
size.SetWidth(315)
self.SetMinSize(size)
self.sizerBase = wx.BoxSizer(wx.VERTICAL)
self.SetSizer(self.sizerBase)
sizerHeaderResources = wx.BoxSizer(wx.HORIZONTAL)
self.sizerBase.Add(sizerHeaderResources, 0, wx.EXPAND)
# Resources header
self.labelResources = wx.StaticText(self, wx.ID_ANY, "Resources")
font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT)
font.SetWeight(wx.BOLD)
self.labelResources.SetFont(font)
sizerHeaderResources.Add(self.labelResources, 0, wx.ALIGN_CENTER)
sizerHeaderResources.Add(wx.StaticLine(self, wx.ID_ANY), 1, wx.EXPAND)
# Resources stuff
sizerResources = wx.BoxSizer(wx.HORIZONTAL)
self.sizerBase.Add(sizerResources)
# Turret slots, Launcher slots & calibration
sizerHardResources = wx.FlexGridSizer(3, 4)
sizerResources.Add(sizerHardResources, 0, wx.ALIGN_CENTER)
for type in ("turret", "launcher"):
sizerHardResources.Add(bitmapLoader.getStaticBitmap("%s_big" % type, self))
lbl = wx.StaticText(self, wx.ID_ANY, "0")
setattr(self, "labelAvailable%sHardpoints", lbl)
sizerHardResources.Add(lbl, 0, wx.ALIGN_CENTER)
sizerHardResources.Add(wx.StaticText(self, wx.ID_ANY, "/"), 0, wx.ALIGN_CENTER)
lbl = wx.StaticText(self, wx.ID_ANY, "0")
setattr(self, "labelTotal%sHardpoints", lbl)
sizerHardResources.Add(lbl, 0, wx.ALIGN_CENTER)
# Calibration points
sizerHardResources.Add(bitmapLoader.getStaticBitmap("calibration_big", self))
self.labelAvailableCalibrationPoints = wx.StaticText(self, wx.ID_ANY, "0")
sizerHardResources.Add(self.labelAvailableCalibrationPoints, 0, wx.ALIGN_CENTER)
sizerHardResources.Add(wx.StaticText(self, wx.ID_ANY, "/"), 0, wx.ALIGN_CENTER)
self.labelTotalCalibrationPoints = wx.StaticText(self, wx.ID_ANY, "0")
sizerHardResources.Add(self.labelTotalCalibrationPoints, 0, wx.ALIGN_CENTER)
sizerResources.Add(wx.StaticLine(self, wx.ID_ANY, style=wx.VERTICAL), 1, wx.EXPAND)
#PG, Cpu & drone stuff
for group in (("cpu", "pg"), ("droneBay", "droneBandwidth")):
main = wx.BoxSizer(wx.VERTICAL)
sizerResources.Add(main, 0, wx.EXPAND)
for type in group:
capitalizedType = type[0].capitalize() + type[1:]
base = wx.BoxSizer(wx.HORIZONTAL)
main.Add(base, 0, wx.EXPAND)
base.Add(bitmapLoader.getStaticBitmap(type + "_big", self), 0, wx.ALIGN_CENTER)
stats = wx.BoxSizer(wx.VERTICAL)
base.Add(stats, 0, wx.EXPAND)
absolute = wx.BoxSizer(wx.HORIZONTAL)
stats.Add(absolute)
lbl = wx.StaticText(self, wx.ID_ANY, "0")
setattr(self, "labelAvailable%s" % capitalizedType, lbl)
absolute.Add(lbl, 0, wx.ALIGN_CENTER)
absolute.Add(wx.StaticText(self, wx.ID_ANY, "/"), 0, wx.ALIGN_CENTER)
lbl = wx.StaticText(self, wx.ID_ANY, "0")
setattr(self, "labelTotal%s" % capitalizedType, lbl)
absolute.Add(lbl, 0, wx.ALIGN_CENTER)
gauge = wx.Gauge(self, wx.ID_ANY, 100)
setattr(self, "gauge%s" % capitalizedType, gauge)
stats.Add(gauge)
if "cpu" in group:
sizerResources.Add(wx.StaticLine(self, wx.ID_ANY, style=wx.VERTICAL), 1, wx.EXPAND)
# Resistances
sizerHeaderResistances = wx.BoxSizer(wx.HORIZONTAL)
self.sizerBase.Add(sizerHeaderResistances, 0, wx.EXPAND)
# Header & EHP
labelResistances = wx.StaticText(self, wx.ID_ANY, "Resistances")
font = wx.SystemSettings_GetFont(wx.SYS_DEFAULT_GUI_FONT)
font.SetWeight(wx.BOLD)
labelResistances.SetFont(font)
sizerHeaderResistances.Add(labelResistances, 0, wx.ALIGN_CENTER)
sizerHeaderResistances.Add(wx.StaticText(self, wx.ID_ANY, " (Effective HP: "), 0, wx.ALIGN_CENTER)
self.labelEhp = wx.StaticText(self, wx.ID_ANY, "0")
sizerHeaderResistances.Add(self.labelEhp, 0, wx.ALIGN_CENTER)
sizerHeaderResistances.Add(wx.StaticText(self, wx.ID_ANY, ")"), 0, wx.ALIGN_CENTER)
sizerHeaderResistances.Add(wx.StaticLine(self, wx.ID_ANY), 1, wx.EXPAND)
# Display table
sizerResistances = wx.GridSizer(4, 6)
self.sizerBase.Add(sizerResistances, 0, wx.EXPAND)
# Add an empty label, then the rest.
sizerResistances.Add(wx.StaticText(self, wx.ID_ANY))
for damageType in ("em", "thermal", "kinetic", "explosive"):
sizerResistances.Add(bitmapLoader.getStaticBitmap("%s_big" % damageType, self), 0, wx.ALIGN_CENTER)
sizerResistances.Add(wx.StaticText(self, wx.ID_ANY, "EHP"), 0, wx.ALIGN_CENTER)
for tankType in ("shield", "armor", "hull"):
sizerResistances.Add(bitmapLoader.getStaticBitmap("%s_big" % tankType, self), 0, wx.ALIGN_CENTER)
for damageType in ("em", "thermal", "kinetic", "explosive"):
box = wx.BoxSizer(wx.HORIZONTAL)
sizerResistances.Add(box, 1, wx.EXPAND)
lbl = wx.StaticText(self, wx.ID_ANY, "0.00")
setattr(self, "labelResistance%s%s" % (tankType, damageType), lbl)
box.Add(lbl, 0, wx.ALIGN_CENTER)
box.Add(wx.StaticText(self, wx.ID_ANY, "%"), 0, wx.ALIGN_CENTER)
lbl = wx.StaticText(self, wx.ID_ANY, "0")
setattr(self, "labelResistance%sEhp" % tankType, lbl)
sizerResistances.Add(lbl, 0, wx.ALIGN_CENTER)