Compare commits
No commits in common. "9e43ead5c2fb345111220603e435a2cf29f4f583" and "026339ecefc511ee4892501009dd8b215145ff15" have entirely different histories.
9e43ead5c2
...
026339ecef
|
|
@ -0,0 +1,88 @@
|
||||||
|
name: Build Executables
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [ main ]
|
||||||
|
pull_request:
|
||||||
|
branches: [ main ]
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-windows:
|
||||||
|
runs-on: windows-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
|
||||||
|
- name: Install dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pyinstaller
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
- name: Build executable
|
||||||
|
run: |
|
||||||
|
pyinstaller icon_extractor.spec --clean
|
||||||
|
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: EU-Icon-Extractor-Windows
|
||||||
|
path: dist/EU-Icon-Extractor.exe
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
files: dist/EU-Icon-Extractor.exe
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
build-linux:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v4
|
||||||
|
with:
|
||||||
|
python-version: '3.11'
|
||||||
|
|
||||||
|
- name: Install system dependencies
|
||||||
|
run: |
|
||||||
|
sudo apt-get update
|
||||||
|
sudo apt-get install -y libgl1-mesa-glx libglib2.0-0 libxkbcommon-x11-0
|
||||||
|
|
||||||
|
- name: Install Python dependencies
|
||||||
|
run: |
|
||||||
|
python -m pip install --upgrade pip
|
||||||
|
pip install pyinstaller
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
- name: Build executable
|
||||||
|
run: |
|
||||||
|
pyinstaller icon_extractor.spec --clean
|
||||||
|
|
||||||
|
- name: Upload artifact
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: EU-Icon-Extractor-Linux
|
||||||
|
path: dist/EU-Icon-Extractor
|
||||||
|
|
||||||
|
- name: Create Release
|
||||||
|
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
files: dist/EU-Icon-Extractor
|
||||||
|
draft: false
|
||||||
|
prerelease: false
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
@ -1,162 +1,58 @@
|
||||||
# ---> Python
|
# Entropia Universe Icon Extractor - Git Ignore
|
||||||
# Byte-compiled / optimized / DLL files
|
|
||||||
|
# Build artifacts
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
*.exe
|
||||||
|
*.pkg
|
||||||
|
*.app
|
||||||
|
|
||||||
|
# Python
|
||||||
__pycache__/
|
__pycache__/
|
||||||
*.py[cod]
|
*.py[cod]
|
||||||
*$py.class
|
*$py.class
|
||||||
|
|
||||||
# C extensions
|
|
||||||
*.so
|
*.so
|
||||||
|
|
||||||
# Distribution / packaging
|
|
||||||
.Python
|
.Python
|
||||||
build/
|
|
||||||
develop-eggs/
|
|
||||||
dist/
|
|
||||||
downloads/
|
|
||||||
eggs/
|
|
||||||
.eggs/
|
|
||||||
lib/
|
|
||||||
lib64/
|
|
||||||
parts/
|
|
||||||
sdist/
|
|
||||||
var/
|
|
||||||
wheels/
|
|
||||||
share/python-wheels/
|
|
||||||
*.egg-info/
|
|
||||||
.installed.cfg
|
|
||||||
*.egg
|
|
||||||
MANIFEST
|
|
||||||
|
|
||||||
# PyInstaller
|
|
||||||
# Usually these files are written by a python script from a template
|
|
||||||
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
||||||
*.manifest
|
|
||||||
*.spec
|
|
||||||
|
|
||||||
# Installer logs
|
|
||||||
pip-log.txt
|
|
||||||
pip-delete-this-directory.txt
|
|
||||||
|
|
||||||
# Unit test / coverage reports
|
|
||||||
htmlcov/
|
|
||||||
.tox/
|
|
||||||
.nox/
|
|
||||||
.coverage
|
|
||||||
.coverage.*
|
|
||||||
.cache
|
|
||||||
nosetests.xml
|
|
||||||
coverage.xml
|
|
||||||
*.cover
|
|
||||||
*.py,cover
|
|
||||||
.hypothesis/
|
|
||||||
.pytest_cache/
|
|
||||||
cover/
|
|
||||||
|
|
||||||
# Translations
|
|
||||||
*.mo
|
|
||||||
*.pot
|
|
||||||
|
|
||||||
# Django stuff:
|
|
||||||
*.log
|
|
||||||
local_settings.py
|
|
||||||
db.sqlite3
|
|
||||||
db.sqlite3-journal
|
|
||||||
|
|
||||||
# Flask stuff:
|
|
||||||
instance/
|
|
||||||
.webassets-cache
|
|
||||||
|
|
||||||
# Scrapy stuff:
|
|
||||||
.scrapy
|
|
||||||
|
|
||||||
# Sphinx documentation
|
|
||||||
docs/_build/
|
|
||||||
|
|
||||||
# PyBuilder
|
|
||||||
.pybuilder/
|
|
||||||
target/
|
|
||||||
|
|
||||||
# Jupyter Notebook
|
|
||||||
.ipynb_checkpoints
|
|
||||||
|
|
||||||
# IPython
|
|
||||||
profile_default/
|
|
||||||
ipython_config.py
|
|
||||||
|
|
||||||
# pyenv
|
|
||||||
# For a library or package, you might want to ignore these files since the code is
|
|
||||||
# intended to run in multiple environments; otherwise, check them in:
|
|
||||||
# .python-version
|
|
||||||
|
|
||||||
# pipenv
|
|
||||||
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
||||||
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
||||||
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
||||||
# install all needed dependencies.
|
|
||||||
#Pipfile.lock
|
|
||||||
|
|
||||||
# poetry
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
||||||
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
||||||
# commonly ignored for libraries.
|
|
||||||
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
||||||
#poetry.lock
|
|
||||||
|
|
||||||
# pdm
|
|
||||||
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
||||||
#pdm.lock
|
|
||||||
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
||||||
# in version control.
|
|
||||||
# https://pdm.fming.dev/#use-with-ide
|
|
||||||
.pdm.toml
|
|
||||||
|
|
||||||
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
||||||
__pypackages__/
|
|
||||||
|
|
||||||
# Celery stuff
|
|
||||||
celerybeat-schedule
|
|
||||||
celerybeat.pid
|
|
||||||
|
|
||||||
# SageMath parsed files
|
|
||||||
*.sage.py
|
|
||||||
|
|
||||||
# Environments
|
|
||||||
.env
|
|
||||||
.venv
|
|
||||||
env/
|
env/
|
||||||
venv/
|
venv/
|
||||||
ENV/
|
ENV/
|
||||||
env.bak/
|
env.bak/
|
||||||
venv.bak/
|
venv.bak/
|
||||||
|
*.egg-info/
|
||||||
|
dist/
|
||||||
|
build/
|
||||||
|
|
||||||
# Spyder project settings
|
# PyInstaller
|
||||||
.spyderproject
|
# Keep the spec file for CI/CD builds
|
||||||
.spyproject
|
!icon_extractor.spec
|
||||||
|
|
||||||
# Rope project settings
|
# IDE
|
||||||
.ropeproject
|
.vscode/
|
||||||
|
.idea/
|
||||||
|
*.swp
|
||||||
|
*.swo
|
||||||
|
*~
|
||||||
|
|
||||||
# mkdocs documentation
|
# OS files
|
||||||
/site
|
.DS_Store
|
||||||
|
Thumbs.db
|
||||||
|
desktop.ini
|
||||||
|
|
||||||
# mypy
|
# Temporary files
|
||||||
.mypy_cache/
|
*.tmp
|
||||||
.dmypy.json
|
*.temp
|
||||||
dmypy.json
|
*.log
|
||||||
|
|
||||||
# Pyre type checker
|
# Game cache (if accidentally committed)
|
||||||
.pyre/
|
public_users_data/
|
||||||
|
*.tga
|
||||||
|
|
||||||
# pytype static type analyzer
|
# Large binary files
|
||||||
.pytype/
|
*.zip
|
||||||
|
*.7z
|
||||||
# Cython debug symbols
|
*.tar.gz
|
||||||
cython_debug/
|
*.rar
|
||||||
|
|
||||||
# PyCharm
|
|
||||||
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
||||||
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
||||||
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
||||||
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
||||||
#.idea/
|
|
||||||
|
|
||||||
|
# Don't commit built executables
|
||||||
|
EU-Icon-Extractor
|
||||||
|
EU-Icon-Extractor.exe
|
||||||
|
|
|
||||||
9
LICENSE
9
LICENSE
|
|
@ -1,9 +0,0 @@
|
||||||
MIT License
|
|
||||||
|
|
||||||
Copyright (c) 2026 impulsivefps
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
||||||
139
README.md
139
README.md
|
|
@ -1,3 +1,138 @@
|
||||||
# EU-Icon-Extractor
|
# Entropia Universe Icon Extractor
|
||||||
|
|
||||||
Extract item icons from Entropia Universe cache
|
A standalone cross-platform tool for extracting item icons from Entropia Universe game cache.
|
||||||
|
|
||||||
|
<img src="icon.ico" width="64" height="64" alt="EU Icon Extractor">
|
||||||
|
|
||||||
|
## Download
|
||||||
|
|
||||||
|
**[Download Latest Release](https://github.com/ImpulsiveFPS/EU-Icon-Extractor/releases/latest)**
|
||||||
|
|
||||||
|
- **Windows:** `EU-Icon-Extractor-Windows.exe`
|
||||||
|
- **Linux:** `EU-Icon-Extractor-Linux`
|
||||||
|
|
||||||
|
No installation needed - just download and run!
|
||||||
|
|
||||||
|
## Description
|
||||||
|
|
||||||
|
Extract item icons from Entropia Universe cache and convert them to PNG format.
|
||||||
|
|
||||||
|
**Important:** Items must be seen/rendered in-game before they appear in the cache! If an icon is missing, view the item in your inventory or the auction first.
|
||||||
|
|
||||||
|
## Features
|
||||||
|
|
||||||
|
### Cross-Platform Support
|
||||||
|
- **Windows** - Auto-detects from Registry and standard paths
|
||||||
|
- **Linux** - Auto-detects Steam installations
|
||||||
|
|
||||||
|
### Multiple Cache Sources
|
||||||
|
- **Standard Install** - Detected from Windows Registry (`PublicUsersDataParentFolder`)
|
||||||
|
- **Steam** - Auto-detects from Steam library folders
|
||||||
|
- **Manual Browse** - Select custom cache folder
|
||||||
|
- **Extract from All** - Combine icons from multiple sources
|
||||||
|
|
||||||
|
### Extraction Options
|
||||||
|
- **Version selector** - Choose which game version to extract from
|
||||||
|
- **"All Folders" option** - Extract from all versions at once
|
||||||
|
- **320x320 PNG output** - Icons centered on transparent canvas
|
||||||
|
- **Multiple upscale methods** - HQ4x, Lanczos, or Nearest Neighbor
|
||||||
|
|
||||||
|
### User Interface
|
||||||
|
- **Source selection** - Choose between Standard, Steam, or All sources
|
||||||
|
- **Double-click preview** - Preview TGA files before extraction
|
||||||
|
- **Light/Dark theme** - Toggle between themes
|
||||||
|
- **Custom output folder** - Choose where to save extracted icons
|
||||||
|
|
||||||
|
## Usage
|
||||||
|
|
||||||
|
### Option 1: Download Executable (Recommended)
|
||||||
|
1. Download the appropriate executable for your OS from [Releases](https://github.com/ImpulsiveFPS/EU-Icon-Extractor/releases/latest)
|
||||||
|
2. Double-click to run - no installation needed!
|
||||||
|
|
||||||
|
### Option 2: Run from Source
|
||||||
|
```bash
|
||||||
|
python icon_extractor.py
|
||||||
|
```
|
||||||
|
|
||||||
|
#### Requirements
|
||||||
|
- Python 3.11+
|
||||||
|
- PyQt6: `pip install PyQt6`
|
||||||
|
- Pillow: `pip install Pillow`
|
||||||
|
|
||||||
|
## Cache Locations
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
The tool automatically detects the cache location from the Windows Registry:
|
||||||
|
```
|
||||||
|
HKEY_LOCAL_MACHINE\SOFTWARE\WOW6432Node\MindArk\Entropia Universe
|
||||||
|
PublicUsersDataParentFolder = C:\ProgramData\Entropia Universe
|
||||||
|
```
|
||||||
|
|
||||||
|
Full cache path: `{PublicUsersDataParentFolder}\public_users_data\cache\icon\{VERSION}`
|
||||||
|
|
||||||
|
### Linux (Steam)
|
||||||
|
The tool checks these Steam installation paths:
|
||||||
|
- `~/.steam/steam/`
|
||||||
|
- `~/.local/share/Steam/`
|
||||||
|
- `~/.steam/root/`
|
||||||
|
|
||||||
|
Full cache path: `{Steam}/steamapps/common/Entropia Universe/public_users_data/cache/icon/{VERSION}`
|
||||||
|
|
||||||
|
## Output
|
||||||
|
|
||||||
|
Icons are saved to your Documents folder:
|
||||||
|
|
||||||
|
**Windows:**
|
||||||
|
```
|
||||||
|
Documents\Entropia Universe\Icons\
|
||||||
|
```
|
||||||
|
|
||||||
|
**Linux:**
|
||||||
|
```
|
||||||
|
~/Documents/Entropia Universe/Icons/
|
||||||
|
```
|
||||||
|
|
||||||
|
(Same location where `chat.log` is normally stored)
|
||||||
|
|
||||||
|
## Links
|
||||||
|
|
||||||
|
- **Developer:** ImpulsiveFPS
|
||||||
|
- **Discord:** impulsivefps
|
||||||
|
- **GitHub:** https://github.com/ImpulsiveFPS/EU-Icon-Extractor
|
||||||
|
- **Report Bug:** https://github.com/ImpulsiveFPS/EU-Icon-Extractor/issues
|
||||||
|
- **Support Me:** https://ko-fi.com/impulsivefps
|
||||||
|
|
||||||
|
## Disclaimer
|
||||||
|
|
||||||
|
Entropia Universe Icon Extractor is a fan-made resource and is not affiliated with [MindArk PE AB](https://www.mindark.com/). [Entropia Universe](https://www.entropiauniverse.com/) is a trademark of MindArk PE AB.
|
||||||
|
|
||||||
|
## Building from Source
|
||||||
|
|
||||||
|
### Windows
|
||||||
|
```bash
|
||||||
|
# Install dependencies
|
||||||
|
pip install pyinstaller
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
# Build executable
|
||||||
|
pyinstaller icon_extractor.spec --clean
|
||||||
|
```
|
||||||
|
|
||||||
|
### Linux
|
||||||
|
```bash
|
||||||
|
# Install system dependencies (Ubuntu/Debian)
|
||||||
|
sudo apt-get install libgl1-mesa-glx libglib2.0-0 libxkbcommon-x11-0
|
||||||
|
|
||||||
|
# Install Python dependencies
|
||||||
|
pip install pyinstaller
|
||||||
|
pip install -r requirements.txt
|
||||||
|
|
||||||
|
# Build executable
|
||||||
|
pyinstaller icon_extractor.spec --clean
|
||||||
|
```
|
||||||
|
|
||||||
|
The executable will be in `dist/`
|
||||||
|
|
||||||
|
## License
|
||||||
|
|
||||||
|
MIT License - Feel free to use and modify!
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -0,0 +1,44 @@
|
||||||
|
# PyInstaller spec file for EU Icon Extractor
|
||||||
|
# Usage: pyinstaller icon_extractor.spec
|
||||||
|
|
||||||
|
block_cipher = None
|
||||||
|
|
||||||
|
a = Analysis(
|
||||||
|
['icon_extractor.py'],
|
||||||
|
pathex=[],
|
||||||
|
binaries=[],
|
||||||
|
datas=[('icon.ico', '.')],
|
||||||
|
hiddenimports=[],
|
||||||
|
hookspath=[],
|
||||||
|
hooksconfig={},
|
||||||
|
runtime_hooks=[],
|
||||||
|
excludes=[],
|
||||||
|
win_no_prefer_redirects=False,
|
||||||
|
win_private_assemblies=False,
|
||||||
|
cipher=block_cipher,
|
||||||
|
noarchive=False,
|
||||||
|
)
|
||||||
|
|
||||||
|
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
|
||||||
|
|
||||||
|
exe = EXE(
|
||||||
|
pyz,
|
||||||
|
a.scripts,
|
||||||
|
a.binaries,
|
||||||
|
a.zipfiles,
|
||||||
|
a.datas,
|
||||||
|
[],
|
||||||
|
name='EU-Icon-Extractor',
|
||||||
|
debug=False,
|
||||||
|
bootloader_ignore_signals=False,
|
||||||
|
strip=False,
|
||||||
|
upx=True,
|
||||||
|
upx_exclude=[],
|
||||||
|
runtime_tmpdir=None,
|
||||||
|
console=False,
|
||||||
|
disable_windowed_traceback=False,
|
||||||
|
target_arch=None,
|
||||||
|
codesign_identity=None,
|
||||||
|
entitlements_file=None,
|
||||||
|
icon='icon.ico',
|
||||||
|
)
|
||||||
|
|
@ -0,0 +1,2 @@
|
||||||
|
PyQt6>=6.4.0
|
||||||
|
Pillow>=9.0.0
|
||||||
Loading…
Reference in New Issue