Instead of attempting to keep all the Fit service functionality, move these into specific "Fitting Commands" that are designed to define a unit of work and it's undo. Then, we will have "GUI Commands" which are defined as actions taken by the user themselves - these will usually use one or more "Fitting Commands".
78 lines
2.5 KiB
Python
78 lines
2.5 KiB
Python
import wx
|
|
from service.fit import Fit
|
|
|
|
import gui.mainFrame
|
|
from gui import globalEvents as GE
|
|
from .helpers import ModuleInfoCache
|
|
from eos.saveddata.module import Module, State
|
|
import eos.db
|
|
from logbook import Logger
|
|
pyfalog = Logger(__name__)
|
|
|
|
|
|
class FitReplaceModuleCommand(wx.Command):
|
|
""""
|
|
Fitting command that changes an existing module into another.
|
|
|
|
from sFit.changeModule
|
|
"""
|
|
def __init__(self, fitID, position, itemID):
|
|
wx.Command.__init__(self, True, "Change Module")
|
|
self.fitID = fitID
|
|
self.itemID = itemID
|
|
self.position = position
|
|
self.module = None # the module version of itemID
|
|
self.old_module = None
|
|
|
|
def Do(self):
|
|
return self.change_module(self.fitID, self.position, self.itemID)
|
|
|
|
def Undo(self):
|
|
self.change_module(self.fitID, self.position, self.itemID)
|
|
self.module.state = self.old_module.state
|
|
self.module.charge = self.old_module.charge
|
|
return True
|
|
|
|
def change_module(self, fitID, position, itemID):
|
|
fit = eos.db.getFit(fitID)
|
|
|
|
# We're trying to add a charge to a slot, which won't work. Instead, try to add the charge to the module in that slot.
|
|
# todo: evaluate if this is still a thing
|
|
# actually, this seems like it should be handled higher up...
|
|
#
|
|
# if self.isAmmo(itemID):
|
|
# module = fit.modules[self.position]
|
|
# if not module.isEmpty:
|
|
# self.setAmmo(fitID, itemID, [module])
|
|
# return True
|
|
|
|
pyfalog.debug("Changing position of module from position ({0}) for fit ID: {1}", self.position, fitID)
|
|
|
|
item = eos.db.getItem(itemID, eager=("attributes", "group.category"))
|
|
|
|
mod = fit.modules[self.position]
|
|
self.old_module.append(ModuleInfoCache(mod.modPosition, mod.item.ID, mod.state, mod.charge))
|
|
|
|
# Dummy it out in case the next bit fails
|
|
fit.modules.toDummy(self.position)
|
|
|
|
try:
|
|
self.module = Module(item)
|
|
except ValueError:
|
|
pyfalog.warning("Invalid item: {0}", itemID)
|
|
return False
|
|
|
|
if self.module.fits(fit):
|
|
self.module.owner = fit
|
|
fit.modules.toModule(self.position, self.module)
|
|
if self.module.isValidState(State.ACTIVE):
|
|
self.module.state = State.ACTIVE
|
|
|
|
# Then, check states of all modules and change where needed. This will recalc if needed
|
|
# self.checkStates(fit, m)
|
|
|
|
fit.fill()
|
|
eos.db.commit()
|
|
return True
|
|
return False
|