Entropia Universe tracking tools suite - Hunt, Mine, and Craft analytics
Go to file
LemonNexus b14888dc97 feat: add total skill gained tracking to HUD
- Add show_skills config option to HUDConfig
- Add total_skill_gained and skill_gains fields to HUDStats
- Add skills display section in HUD UI (purple box)
- Add update_skill() method to track skill gains
- Update on_skill handler in main_window.py to call update_skill()
- Add skills checkbox to HUD settings dialog
- Fix duplicate code in _refresh_display method
- Update to_dict/from_dict for skills config persistence
2026-02-10 14:19:56 +00:00
core fix: add safe_decimal/safe_int helpers to handle null API values 2026-02-09 22:12:36 +00:00
docs feat: implement icon extraction, market prices, and GUI dialogs 2026-02-09 23:51:15 +00:00
memory feat(db): add database migration script for loadout support 2026-02-09 16:55:38 +00:00
modules feat: implement icon extraction, market prices, and GUI dialogs 2026-02-09 23:51:15 +00:00
test-data feat(logs): add Swedish language support from real game logs 2026-02-08 17:30:31 +00:00
tests feat(armor): complete armor system with sets and 7-slot plates 2026-02-09 10:31:56 +00:00
ui feat: add total skill gained tracking to HUD 2026-02-10 14:19:56 +00:00
.env.example feat(globals): add personal global detection with PLAYER_NAME setting 2026-02-08 18:23:35 +00:00
.gitignore chore: add .env.example template and project resume 2026-02-08 16:26:19 +00:00
AGENTS.md chore: initial secure push 2026-02-08 16:01:50 +01:00
AI_KNOWLEDGE_BASE.md docs: add AI knowledge base with project configuration and MCP server details 2026-02-08 17:07:36 +01:00
COMPLETE_FEATURE_SUMMARY.md docs: add complete feature summary for tomorrow's testing session 2026-02-09 23:52:31 +00:00
DEVELOPMENT_SUMMARY.md docs: add comprehensive development summary and roadmap 2026-02-09 23:30:13 +00:00
GAME_MECHANICS.md chore: initial secure push 2026-02-08 16:01:50 +01:00
INSPIRATION.md chore: initial secure push 2026-02-08 16:01:50 +01:00
MODULE_REQUIREMENTS.md chore: initial secure push 2026-02-08 16:01:50 +01:00
OBSIDIAN_WORKFLOW.md chore: initial secure push 2026-02-08 16:01:50 +01:00
PROJECT_INDEX.md docs: add PROJECT_INDEX.md and update PROJECT_RESUME 2026-02-08 16:45:58 +00:00
PROJECT_RESUME.md docs: update PROJECT_RESUME for Sprint 1 completion 2026-02-08 17:03:38 +00:00
README.md chore: initial secure push 2026-02-08 16:01:50 +01:00
RESOURCES.md chore: initial secure push 2026-02-08 16:01:50 +01:00
TECHNICAL_SPECS.md chore: initial secure push 2026-02-08 16:01:50 +01:00
TESTING_AND_DEBUGGING.md chore: initial secure push 2026-02-08 16:01:50 +01:00
USER_TEST_GUIDE.md feat(app): add main.py and user test guide for v0.1.0 2026-02-08 17:02:37 +00:00
VERIFICATION_CHECKLIST.md chore: initial secure push 2026-02-08 16:01:50 +01:00
WINDOWS_TESTING_GUIDE.md feat: add gear management + Windows testing guide 2026-02-08 17:17:37 +00:00
environment-test.md chore: initial secure push 2026-02-08 16:01:50 +01:00
gui_main.py feat(gui): add gui_main.py entry point for full PyQt6 application 2026-02-08 21:18:16 +00:00
main.py feat(phase2): Complete Phase 2 Integration - Bug fixes: SimpleCache self._timestamps typo, MOCK_TOOLS key typo. Agent-swarm UI: main_window, hud_overlay, loadout_manager. Nexus API with mock data. All tests passing. 2026-02-08 21:07:47 +00:00
migrate_db.py feat(db): add database migration script for loadout support 2026-02-09 16:55:38 +00:00
pytest.ini fix(nexus_api): correct DPP calculation formula and mock data values 2026-02-08 21:13:56 +00:00
requirements.txt feat(gui): Sprint 2 Phase 1 - PyQt6 GUI Foundation 2026-02-08 20:30:38 +00:00
run_tests.bat chore: initial secure push 2026-02-08 16:01:50 +01:00

README.md

Entropia-Tools Suite Replication Project

Project Overview

This project aims to replicate the full software suite found at Entropia-Tools.com. The suite provides professional-grade analytics, financial tracking, and utility tools for players of the MMORPG Entropia Universe.

Core Philosophy: The Data Principle

All modules must treat user data as "Projects." Every session (a hunt, a mining run, or a crafting batch) must be:

  1. Stored: Automatically saved to a local database.
  2. Archivable: Capable of being closed and reopened as a "Previous Project."
  3. Comparable: Users should be able to compare current live data against historical project data.

Module Summary

  • Hunter Tracker: Combat performance and ROI analytics.
  • Mining Tracker: Geospatial resource mapping and probe efficiency.
  • Crafting Tool: Manufacturing cost/benefit simulation.
  • Inventory Manager: Asset valuation and market markup tracking.

Technical Stack Recommendation

  • Language: Python (for rapid dev) or C#/.NET (for Windows native performance).
  • Database: SQLite or structured JSON for project storage.
  • UI: Modern Dark Mode (PyQt6 or Electron).