Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add reload of classes on battle reset #14

Open
wants to merge 1 commit into
base: PyQt-Robocode
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 22 additions & 6 deletions Python-Robocode/GUI/window.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,12 @@
Module implementing MainWindow.
"""

import os, pickle
import os
import pickle
import re

from twisted.python import reflect
from importlib import reload

from PyQt5.QtWidgets import QMainWindow, QGraphicsScene, QHeaderView, QTableWidgetItem
from PyQt5.QtCore import pyqtSlot, QTimer
Expand All @@ -16,6 +21,7 @@
from RobotInfo import RobotInfo
from statistic import statistic


class MainWindow(QMainWindow, Ui_MainWindow):
"""
Class documentation goes here.
Expand All @@ -30,23 +36,33 @@ def __init__(self, parent = None):
self.timer = QTimer()
self.tableWidget.horizontalHeader().setSectionResizeMode(QHeaderView.Stretch)
self.tableWidget.hide()



def reimport_class(self, cls):
"""
Reload and reimport class "cls".
"""

mod = __import__(cls.__module__, fromlist=[cls.__name__])
reload(mod)

return getattr(mod, cls.__name__)

@pyqtSlot()
def on_pushButton_clicked(self):
"""
Start the last battle
"""

if os.path.exists(os.getcwd() + "/.datas/lastArena"):
with open(os.getcwd() + "/.datas/lastArena", 'rb') as file:
unpickler = pickle.Unpickler(file)
dico = unpickler.load()
file.close()
else:
print("No last arena found.")

self.setUpBattle(dico["width"] , dico["height"], dico["botList"] )

botList = [self.reimport_class(bot) for bot in dico["botList"]]
self.setUpBattle(dico["width"], dico["height"], botList)

def setUpBattle(self, width, height, botList):
self.tableWidget.clearContents()
Expand Down