mirror of
https://github.com/nixietab/picodulce.git
synced 2025-04-03 15:08:58 +01:00
Add files via upload
This commit is contained in:
parent
dbb7d224a2
commit
7793c1876f
33
marroc.py
33
marroc.py
@ -10,6 +10,13 @@ from PyQt5.QtGui import QIcon, QPalette, QColor, QPixmap
|
|||||||
|
|
||||||
CONFIG_FILE = "config.json"
|
CONFIG_FILE = "config.json"
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class IconLoader(QObject, threading.Thread):
|
class IconLoader(QObject, threading.Thread):
|
||||||
icon_loaded = pyqtSignal(QPixmap)
|
icon_loaded = pyqtSignal(QPixmap)
|
||||||
|
|
||||||
@ -37,25 +44,7 @@ class ModrinthSearchApp(QWidget):
|
|||||||
|
|
||||||
self.setWindowTitle("Marroc Mod Manager")
|
self.setWindowTitle("Marroc Mod Manager")
|
||||||
self.setGeometry(100, 100, 500, 400)
|
self.setGeometry(100, 100, 500, 400)
|
||||||
|
self.ensure_directories_exist()
|
||||||
# Set Fusion style
|
|
||||||
app.setStyle("Fusion")
|
|
||||||
# Set dark color palette
|
|
||||||
dark_palette = QPalette()
|
|
||||||
dark_palette.setColor(QPalette.Window, QColor(53, 53, 53))
|
|
||||||
dark_palette.setColor(QPalette.WindowText, Qt.white)
|
|
||||||
dark_palette.setColor(QPalette.Base, QColor(25, 25, 25))
|
|
||||||
dark_palette.setColor(QPalette.AlternateBase, QColor(53, 53, 53))
|
|
||||||
dark_palette.setColor(QPalette.ToolTipBase, Qt.white)
|
|
||||||
dark_palette.setColor(QPalette.ToolTipText, Qt.white)
|
|
||||||
dark_palette.setColor(QPalette.Text, Qt.white)
|
|
||||||
dark_palette.setColor(QPalette.Button, QColor(53, 53, 53))
|
|
||||||
dark_palette.setColor(QPalette.ButtonText, Qt.white)
|
|
||||||
dark_palette.setColor(QPalette.BrightText, Qt.red)
|
|
||||||
dark_palette.setColor(QPalette.Link, QColor(42, 130, 218))
|
|
||||||
dark_palette.setColor(QPalette.Highlight, QColor(42, 130, 218))
|
|
||||||
dark_palette.setColor(QPalette.HighlightedText, Qt.white)
|
|
||||||
self.setPalette(dark_palette)
|
|
||||||
|
|
||||||
layout = QVBoxLayout()
|
layout = QVBoxLayout()
|
||||||
|
|
||||||
@ -73,6 +62,12 @@ class ModrinthSearchApp(QWidget):
|
|||||||
|
|
||||||
self.setLayout(layout)
|
self.setLayout(layout)
|
||||||
|
|
||||||
|
def ensure_directories_exist(self):
|
||||||
|
directories = ["marroc/mods", "marroc/resourcepacks"]
|
||||||
|
for directory in directories:
|
||||||
|
if not os.path.exists(directory):
|
||||||
|
os.makedirs(directory)
|
||||||
|
|
||||||
def init_search_tab(self):
|
def init_search_tab(self):
|
||||||
layout = QVBoxLayout()
|
layout = QVBoxLayout()
|
||||||
|
|
||||||
|
88
picodulce.py
88
picodulce.py
@ -9,9 +9,9 @@ import json
|
|||||||
import os
|
import os
|
||||||
from pypresence import Presence
|
from pypresence import Presence
|
||||||
import time
|
import time
|
||||||
from PyQt5.QtWidgets import QApplication, QComboBox, QWidget, QVBoxLayout, QPushButton, QMessageBox, QDialog, QHBoxLayout, QLabel, QLineEdit, QCheckBox, QTabWidget, QFrame, QSpacerItem, QSizePolicy, QMainWindow, QGridLayout
|
from PyQt5.QtWidgets import QApplication, QComboBox, QWidget, QVBoxLayout, QListWidget, QPushButton, QMessageBox, QDialog, QHBoxLayout, QLabel, QLineEdit, QCheckBox, QTabWidget, QFrame, QSpacerItem, QSizePolicy, QMainWindow, QGridLayout
|
||||||
from PyQt5.QtGui import QFont, QIcon, QColor, QPalette
|
from PyQt5.QtGui import QFont, QIcon, QColor, QPalette, QMovie, QPixmap
|
||||||
from PyQt5.QtCore import Qt
|
from PyQt5.QtCore import Qt, QObject, pyqtSignal
|
||||||
|
|
||||||
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
logging.basicConfig(level=logging.INFO, format='%(asctime)s - %(levelname)s - %(message)s')
|
||||||
|
|
||||||
@ -278,25 +278,32 @@ class PicomcVersionSelector(QWidget):
|
|||||||
logging.error("'marroc.py' not found.")
|
logging.error("'marroc.py' not found.")
|
||||||
QMessageBox.critical(self, "Error", "'marroc.py' not found.")
|
QMessageBox.critical(self, "Error", "'marroc.py' not found.")
|
||||||
|
|
||||||
|
|
||||||
def play_instance(self):
|
def play_instance(self):
|
||||||
if self.installed_version_combo.count() == 0:
|
if self.installed_version_combo.count() == 0:
|
||||||
QMessageBox.warning(self, "No Version Available", "Please download a version first.")
|
QMessageBox.warning(self, "No Version Available", "Please download a version first.")
|
||||||
return
|
return
|
||||||
|
|
||||||
# Check if there are any accounts
|
# Check if there are any accounts
|
||||||
account_list_output = subprocess.check_output(["picomc", "account", "list"]).decode("utf-8").strip()
|
try:
|
||||||
if not account_list_output:
|
account_list_output = subprocess.check_output(["picomc", "account", "list"]).decode("utf-8").strip()
|
||||||
QMessageBox.warning(self, "No Account Available", "Please create an account first.")
|
if not account_list_output:
|
||||||
return
|
QMessageBox.warning(self, "No Account Available", "Please create an account first.")
|
||||||
|
return
|
||||||
|
|
||||||
# Check if the selected account has a '*' (indicating it's the selected one)
|
# Check if the selected account has a '*' (indicating it's the selected one)
|
||||||
if '*' not in account_list_output:
|
if '*' not in account_list_output:
|
||||||
QMessageBox.warning(self, "No Account Selected", "Please select an account.")
|
QMessageBox.warning(self, "No Account Selected", "Please select an account.")
|
||||||
|
return
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
error_message = f"Error fetching accounts: {e.stderr.decode()}"
|
||||||
|
logging.error(error_message)
|
||||||
|
QMessageBox.critical(self, "Error", error_message)
|
||||||
return
|
return
|
||||||
|
|
||||||
selected_instance = self.installed_version_combo.currentText()
|
selected_instance = self.installed_version_combo.currentText()
|
||||||
|
logging.info(f"Selected instance: {selected_instance}")
|
||||||
|
|
||||||
# Create a separate thread to run the game process
|
|
||||||
play_thread = threading.Thread(target=self.run_game, args=(selected_instance,))
|
play_thread = threading.Thread(target=self.run_game, args=(selected_instance,))
|
||||||
play_thread.start()
|
play_thread.start()
|
||||||
|
|
||||||
@ -310,6 +317,7 @@ class PicomcVersionSelector(QWidget):
|
|||||||
logging.error(error_message)
|
logging.error(error_message)
|
||||||
QMessageBox.critical(self, "Error", error_message)
|
QMessageBox.critical(self, "Error", error_message)
|
||||||
|
|
||||||
|
|
||||||
def update_last_played(self, selected_instance):
|
def update_last_played(self, selected_instance):
|
||||||
config_path = "config.json"
|
config_path = "config.json"
|
||||||
self.config["LastPlayed"] = selected_instance
|
self.config["LastPlayed"] = selected_instance
|
||||||
@ -744,7 +752,7 @@ class ModLoaderAndVersionMenu(QDialog):
|
|||||||
|
|
||||||
def setup_download_version_tab(self, download_version_tab):
|
def setup_download_version_tab(self, download_version_tab):
|
||||||
layout = QVBoxLayout(download_version_tab)
|
layout = QVBoxLayout(download_version_tab)
|
||||||
|
|
||||||
# Create title label
|
# Create title label
|
||||||
title_label = QLabel('Download Version')
|
title_label = QLabel('Download Version')
|
||||||
title_label.setFont(QFont("Arial", 14))
|
title_label.setFont(QFont("Arial", 14))
|
||||||
@ -792,6 +800,8 @@ class ModLoaderAndVersionMenu(QDialog):
|
|||||||
versions = output.splitlines()
|
versions = output.splitlines()
|
||||||
versions = [version.replace('[local]', ' ').strip() for version in versions]
|
versions = [version.replace('[local]', ' ').strip() for version in versions]
|
||||||
version_combo.addItems(versions)
|
version_combo.addItems(versions)
|
||||||
|
# Update the download button state whenever versions are updated
|
||||||
|
update_download_button_state()
|
||||||
|
|
||||||
release_checkbox.clicked.connect(update_versions)
|
release_checkbox.clicked.connect(update_versions)
|
||||||
snapshot_checkbox.clicked.connect(update_versions)
|
snapshot_checkbox.clicked.connect(update_versions)
|
||||||
@ -800,17 +810,54 @@ class ModLoaderAndVersionMenu(QDialog):
|
|||||||
|
|
||||||
# Create download button
|
# Create download button
|
||||||
download_button = QPushButton('Download')
|
download_button = QPushButton('Download')
|
||||||
|
download_button.setEnabled(False) # Initially disabled
|
||||||
download_button.clicked.connect(lambda: self.download_version(version_combo.currentText()))
|
download_button.clicked.connect(lambda: self.download_version(version_combo.currentText()))
|
||||||
layout.addWidget(download_button)
|
layout.addWidget(download_button)
|
||||||
|
|
||||||
def download_version(self, version): # <- Define download_version function
|
# Define a function to update the download button state
|
||||||
try:
|
def update_download_button_state():
|
||||||
subprocess.run(['picomc', 'version', 'prepare', version], check=True)
|
download_button.setEnabled(version_combo.currentIndex() != -1)
|
||||||
QMessageBox.information(self, "Success", f"Version {version} prepared successfully!")
|
|
||||||
except subprocess.CalledProcessError as e:
|
# Connect the combo box signal to the update function
|
||||||
error_message = f"Error preparing {version}: {e.stderr.decode()}"
|
version_combo.currentIndexChanged.connect(update_download_button_state)
|
||||||
QMessageBox.critical(self, "Error", error_message)
|
|
||||||
logging.error(error_message)
|
def show_popup(self):
|
||||||
|
self.popup = QDialog(self)
|
||||||
|
self.popup.setWindowTitle("Installing Version")
|
||||||
|
layout = QVBoxLayout(self.popup)
|
||||||
|
|
||||||
|
label = QLabel("The version is being installed...")
|
||||||
|
layout.addWidget(label)
|
||||||
|
|
||||||
|
movie = QMovie("drums.gif")
|
||||||
|
gif_label = QLabel()
|
||||||
|
gif_label.setMovie(movie)
|
||||||
|
layout.addWidget(gif_label)
|
||||||
|
|
||||||
|
movie.start()
|
||||||
|
self.popup.setGeometry(200, 200, 300, 200)
|
||||||
|
self.popup.setWindowModality(Qt.ApplicationModal)
|
||||||
|
self.popup.show()
|
||||||
|
|
||||||
|
def download_version(self, version):
|
||||||
|
# Show the popup in the main thread
|
||||||
|
self.show_popup()
|
||||||
|
|
||||||
|
def download():
|
||||||
|
try:
|
||||||
|
subprocess.run(['picomc', 'version', 'prepare', version], check=True)
|
||||||
|
self.popup.close()
|
||||||
|
QMessageBox.information(self, "Success", f"Version {version} prepared successfully!")
|
||||||
|
except subprocess.CalledProcessError as e:
|
||||||
|
self.popup.close()
|
||||||
|
error_message = f"Error preparing {version}: {e.stderr.decode()}"
|
||||||
|
QMessageBox.critical(self, "Error", error_message)
|
||||||
|
logging.error(error_message)
|
||||||
|
|
||||||
|
# Create and start the download thread
|
||||||
|
thread = threading.Thread(target=download)
|
||||||
|
thread.start()
|
||||||
|
|
||||||
|
|
||||||
def populate_available_releases(self, version_combo, install_forge, install_fabric):
|
def populate_available_releases(self, version_combo, install_forge, install_fabric):
|
||||||
try:
|
try:
|
||||||
@ -864,6 +911,7 @@ class ModLoaderAndVersionMenu(QDialog):
|
|||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
app = QApplication(sys.argv)
|
app = QApplication(sys.argv)
|
||||||
|
app_icon = QIcon('launcher_icon.ico')
|
||||||
window = PicomcVersionSelector()
|
window = PicomcVersionSelector()
|
||||||
window.show()
|
window.show()
|
||||||
sys.exit(app.exec_())
|
sys.exit(app.exec_())
|
||||||
|
@ -1,8 +1,10 @@
|
|||||||
{
|
{
|
||||||
"version": "0.9.2",
|
"version": "0.9.3",
|
||||||
"links": [
|
"links": [
|
||||||
"https://raw.githubusercontent.com/nixietab/picodulce/main/version.json",
|
"https://raw.githubusercontent.com/nixietab/picodulce/main/version.json",
|
||||||
"https://raw.githubusercontent.com/nixietab/picodulce/main/picodulce.py",
|
"https://raw.githubusercontent.com/nixietab/picodulce/main/picodulce.py",
|
||||||
"https://raw.githubusercontent.com/nixietab/picodulce/main/requirements.txt"
|
"https://raw.githubusercontent.com/nixietab/picodulce/main/requirements.txt",
|
||||||
|
"https://raw.githubusercontent.com/nixietab/picodulce/main/drums.gif",
|
||||||
|
"https://raw.githubusercontent.com/nixietab/picodulce/main/marroc.py"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user