MP-Server/mp-server.py

307 lines
11 KiB
Python
Raw Normal View History

2025-03-14 22:22:20 -07:00
import tkinter as tk
from tkinter import filedialog, simpledialog
import json
import socket
import threading
import base64
import os
import pyautogui
import subprocess
from PIL import Image, ImageTk
2025-03-14 22:48:34 -07:00
import pystray # Add this import for system tray functionality
import io
2025-03-14 22:22:20 -07:00
class MacroServer:
def __init__(self, root):
self.root = root
self.root.title("MacroPad Server")
self.root.geometry("800x600")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
self.macros = {}
self.load_macros()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Create GUI
self.create_widgets()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Start server thread
self.server_running = True
self.server_thread = threading.Thread(target=self.run_server)
self.server_thread.daemon = True
self.server_thread.start()
2025-03-14 22:48:34 -07:00
# Set up system tray icon
self.setup_tray_icon()
# Capture the window close event
self.root.protocol("WM_DELETE_WINDOW", self.on_closing)
# Capture the window minimize event
self.root.bind("<Unmap>", lambda e: self.minimize_to_tray() if self.root.state() == 'iconic' else None)
def setup_tray_icon(self):
# Create a simple icon for the tray
icon_image = Image.new("RGB", (64, 64), color="blue")
# Menu for the tray icon
menu = (
pystray.MenuItem('Show', self.show_window),
pystray.MenuItem('Exit', self.exit_app)
)
self.icon = pystray.Icon("macropad_server", icon_image, "MacroPad Server", menu)
def minimize_to_tray(self):
self.root.withdraw() # Hide window
if not self.icon.visible:
# Start the tray icon if it's not already running
self.icon_thread = threading.Thread(target=self.icon.run)
self.icon_thread.daemon = True
self.icon_thread.start()
def show_window(self, icon=None, item=None):
self.root.deiconify() # Show window
self.root.lift() # Bring window to front
self.root.focus_force() # Focus the window
if self.icon.visible:
self.icon.stop() # Remove icon
def exit_app(self, icon=None, item=None):
if self.icon.visible:
self.icon.stop()
self.server_running = False
self.save_macros()
self.root.destroy()
2025-03-14 22:22:20 -07:00
def create_widgets(self):
# Toolbar
toolbar = tk.Frame(self.root)
toolbar.pack(side=tk.TOP, fill=tk.X)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
tk.Button(toolbar, text="Add Macro", command=self.add_macro).pack(side=tk.LEFT, padx=5, pady=5)
tk.Button(toolbar, text="Edit Macro", command=self.edit_macro).pack(side=tk.LEFT, padx=5, pady=5)
tk.Button(toolbar, text="Delete Macro", command=self.delete_macro).pack(side=tk.LEFT, padx=5, pady=5)
2025-03-14 22:48:34 -07:00
tk.Button(toolbar, text="Minimize to Tray", command=self.minimize_to_tray).pack(side=tk.LEFT, padx=5, pady=5)
2025-03-14 22:22:20 -07:00
# Macro list frame
list_frame = tk.Frame(self.root)
list_frame.pack(fill=tk.BOTH, expand=True, padx=10, pady=10)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Scrollable canvas for macros
self.canvas = tk.Canvas(list_frame)
scrollbar = tk.Scrollbar(list_frame, orient="vertical", command=self.canvas.yview)
self.scrollable_frame = tk.Frame(self.canvas)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
self.scrollable_frame.bind(
"<Configure>",
lambda e: self.canvas.configure(scrollregion=self.canvas.bbox("all"))
)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
self.canvas.create_window((0, 0), window=self.scrollable_frame, anchor="nw")
self.canvas.configure(yscrollcommand=scrollbar.set)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
self.canvas.pack(side="left", fill="both", expand=True)
scrollbar.pack(side="right", fill="y")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
self.display_macros()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Status bar
self.status_var = tk.StringVar()
self.status_var.set("Server ready. Waiting for connections...")
status_bar = tk.Label(self.root, textvariable=self.status_var, bd=1, relief=tk.SUNKEN, anchor=tk.W)
status_bar.pack(side=tk.BOTTOM, fill=tk.X)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def load_macros(self):
try:
if os.path.exists("macros.json"):
with open("macros.json", "r") as f:
self.macros = json.load(f)
except Exception as e:
print(f"Error loading macros: {e}")
self.macros = {}
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def save_macros(self):
try:
with open("macros.json", "w") as f:
json.dump(self.macros, f)
except Exception as e:
print(f"Error saving macros: {e}")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def display_macros(self):
# Clear existing macros
for widget in self.scrollable_frame.winfo_children():
widget.destroy()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Display macros in a grid
row, col = 0, 0
max_cols = 3
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
for macro_id, macro in self.macros.items():
frame = tk.Frame(self.scrollable_frame, bd=2, relief=tk.RAISED, padx=5, pady=5)
frame.grid(row=row, column=col, padx=10, pady=10, sticky="nsew")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Load image if exists
if "image_data" in macro and macro["image_data"]:
try:
image_data = base64.b64decode(macro["image_data"])
image = Image.open(io.BytesIO(image_data))
image = image.resize((64, 64), Image.LANCZOS)
photo = ImageTk.PhotoImage(image)
label = tk.Label(frame, image=photo)
label.image = photo # Keep a reference
label.pack()
except Exception as e:
print(f"Error displaying image: {e}")
tk.Label(frame, text="[No Image]", width=8, height=4).pack()
else:
tk.Label(frame, text="[No Image]", width=8, height=4).pack()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
tk.Label(frame, text=macro["name"]).pack()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
col += 1
if col >= max_cols:
col = 0
row += 1
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def add_macro(self):
# Create a dialog to add a new macro
dialog = tk.Toplevel(self.root)
dialog.title("Add Macro")
dialog.geometry("400x300")
dialog.transient(self.root)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
tk.Label(dialog, text="Macro Name:").grid(row=0, column=0, padx=5, pady=5, sticky="w")
name_entry = tk.Entry(dialog, width=30)
name_entry.grid(row=0, column=1, padx=5, pady=5)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
tk.Label(dialog, text="Type:").grid(row=1, column=0, padx=5, pady=5, sticky="w")
type_var = tk.StringVar(value="text")
tk.Radiobutton(dialog, text="Text", variable=type_var, value="text").grid(row=1, column=1, sticky="w")
tk.Radiobutton(dialog, text="Application", variable=type_var, value="app").grid(row=2, column=1, sticky="w")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
tk.Label(dialog, text="Command/Text:").grid(row=3, column=0, padx=5, pady=5, sticky="w")
command_text = tk.Text(dialog, width=30, height=5)
command_text.grid(row=3, column=1, padx=5, pady=5)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
image_path = tk.StringVar()
tk.Label(dialog, text="Image:").grid(row=4, column=0, padx=5, pady=5, sticky="w")
tk.Entry(dialog, textvariable=image_path, width=30).grid(row=4, column=1, padx=5, pady=5)
tk.Button(dialog, text="Browse...", command=lambda: image_path.set(filedialog.askopenfilename(
filetypes=[("Image files", "*.jpg *.jpeg *.png *.gif *.bmp")]))).grid(row=4, column=2)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def save_macro():
name = name_entry.get().strip()
if not name:
tk.messagebox.showerror("Error", "Macro name is required")
return
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
macro_type = type_var.get()
command = command_text.get("1.0", tk.END).strip()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Generate a unique ID
macro_id = str(len(self.macros) + 1)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Process image
image_data = ""
img_path = image_path.get()
if img_path:
try:
with open(img_path, "rb") as img_file:
image_data = base64.b64encode(img_file.read()).decode('utf-8')
except Exception as e:
print(f"Error processing image: {e}")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
# Create macro
self.macros[macro_id] = {
"name": name,
"type": macro_type,
"command": command,
"image_data": image_data
}
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
self.save_macros()
self.display_macros()
dialog.destroy()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
tk.Button(dialog, text="Save", command=save_macro).grid(row=5, column=0, padx=5, pady=20)
tk.Button(dialog, text="Cancel", command=dialog.destroy).grid(row=5, column=1, padx=5, pady=20)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def edit_macro(self):
# To be implemented - similar to add_macro but pre-fills fields with existing data
pass
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def delete_macro(self):
# To be implemented - offers a selection and deletes the chosen macro
pass
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def execute_macro(self, macro_id):
if macro_id not in self.macros:
return False
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
macro = self.macros[macro_id]
try:
if macro["type"] == "text":
pyautogui.typewrite(macro["command"])
elif macro["type"] == "app":
subprocess.Popen(macro["command"], shell=True)
return True
except Exception as e:
print(f"Error executing macro: {e}")
return False
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def run_server(self):
server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
server_socket.setsockopt(socket.SOL_SOCKET, socket.SO_REUSEADDR, 1)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
try:
server_socket.bind(('0.0.0.0', 40000))
server_socket.listen(5)
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
while self.server_running:
client_socket, address = server_socket.accept()
self.status_var.set(f"Client connected from {address}")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
client_thread = threading.Thread(target=self.handle_client, args=(client_socket,))
client_thread.daemon = True
client_thread.start()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
except Exception as e:
print(f"Server error: {e}")
finally:
server_socket.close()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def handle_client(self, client_socket):
try:
while self.server_running:
data = client_socket.recv(1024).decode('utf-8')
if not data:
break
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
try:
request = json.loads(data)
if request['action'] == 'get_macros':
# Send all macros to client
client_socket.send(json.dumps(self.macros).encode('utf-8'))
elif request['action'] == 'execute':
# Execute the specified macro
success = self.execute_macro(request['macro_id'])
client_socket.send(json.dumps({'success': success}).encode('utf-8'))
except json.JSONDecodeError:
print("Invalid JSON received")
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
except Exception as e:
print(f"Error handling client: {e}")
finally:
client_socket.close()
2025-03-14 22:48:34 -07:00
2025-03-14 22:22:20 -07:00
def on_closing(self):
2025-03-14 22:48:34 -07:00
# Instead of directly closing, ask if user wants to minimize to tray
if tk.messagebox.askyesno("Minimize to Tray", "Do you want to minimize to the system tray?"):
self.minimize_to_tray()
else:
self.exit_app()
2025-03-14 22:22:20 -07:00
if __name__ == "__main__":
import io # Added for BytesIO
2025-03-14 22:48:34 -07:00
import tkinter.messagebox # Add this for message boxes
2025-03-14 22:22:20 -07:00
root = tk.Tk()
app = MacroServer(root)
2025-03-14 22:48:34 -07:00
root.mainloop()