Skip to content

improve loader7 decompilation #608

improve loader7 decompilation

improve loader7 decompilation #608

Workflow file for this run

name: Build and Release (Windows)
on:
push:
branches:
- master
jobs:
build:
runs-on: windows-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python 3
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install MinGW
run: choco install mingw -y
- name: Install PyInstaller
run: pip install pyinstaller
- name: Compile LoaderMDO
run: g++ -static -mwindows -o LoaderMDO.exe rewritten-modern-software/LoaderMDO/LoaderMDO/LoaderMDO.cpp
- name: Compile BCD1Creator
run: g++ -static -o BCD1Creator.exe tools/BCD1Creator/BCD1Creator.cpp
- name: Compile DEV7Launcher
run: g++ -static -o DEV7Launcher.exe tools/DEV7Launcher/DEV7Launcher.cpp
- name: Compile OBJDumper
run: g++ -static -o OBJDumper.exe tools/OBJDumper/OBJDumper.cpp
- name: Compile ModelPathDumper
run: g++ -static -o ModelPathDumper.exe tools/ModelPathDumper/ModelPathDumper.cpp
- name: Compile SYSTEM (Modern Version)
run: g++ -static -mwindows -o SYSTEM.EXE rewritten-modern-software/SYSTEM/SYSTEM/SYSTEM.cpp
- name: Compile SYSTEM (Modern Russian Version)
run: g++ -static -mwindows -o SYSTEM_RussianRelease.EXE rewritten-modern-software/SYSTEM_RussianRelease/SYSTEM/SYSTEM.cpp
- name: Compile CTRKViewer
run: g++ -static -o CTRKViewer.exe tools/CTRKViewer/CTRKViewer.cpp
- name: Compile OBCViewer
run: g++ -static -o OBCViewer.exe tools/OBCViewer/OBCViewer.cpp
- name: Compile PLAViewer
run: g++ -static -o PLAViewer.exe tools/PLAViewer/PLAViewer.cpp
# - name: Compile DEV7Monitor
# run: g++ -static -o DEV7Monitor.exe tools-win/DEV7Monitor/DEV7Monitor/DEV7Monitor.cpp -lpdh
- name: Compile SetupPatcher
run: g++ -static -o SetupPatcher.exe patches/SetupPatcher/SetupPatcher/SetupPatcher.cpp
- name: Compile Y2K38Patcher
run: g++ -static -o Y2K38Patcher.exe patches/Y2K38Patcher/Y2K38Patcher/Y2K38Patcher.cpp
- name: Compile LOADER7VC
run: g++ -static -o LOADER7VC.exe tools-win/LOADER7VC/LOADER7VC/LOADER7VC.cpp -lversion -lshlwapi
- name: Compile IMGConverter
run: pyinstaller --onefile --distpath . tools/IMGConverter/IMGConverter.py
- name: Compile AdultCornerDecoder
run: pyinstaller --onefile --distpath . tools/AdultCornerDecoder/decoder.py
- name: Compile AdultCornerEncoder
run: pyinstaller --onefile --distpath . tools/AdultCornerEncoder/encoder.py
- name: Compile IMGIdentifier
run: pyinstaller --onefile --distpath . tools/IMGIdentifier/IMGIdentifier.py
- name: Compile OBCEditor
run: pyinstaller --onefile --distpath . tools/OBCEditor/OBCEditor.py
- name: Compile PetiteDetector
run: pyinstaller --onefile --distpath . tools/PetiteDetector/PetiteDetector.py
- name: Compile PKLiteDetector
run: pyinstaller --onefile --distpath . tools/PKLiteDetector/PKLiteDetector.py
- name: Compile SecuROMDetector
run: pyinstaller --onefile --distpath . tools/SecuROMDetector/SecuROMDetector.py
- name: Compile copyDatas
run: pyinstaller --onefile --distpath . tools/copyDatas/copyDatas.py
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: compiled-windows
path: |
LoaderMDO.exe
SYSTEM.EXE
SYSTEM_RussianRelease.EXE
BCD1Creator.exe
DEV7Launcher.exe
OBJDumper.exe
ModelPathDumper.exe
IMGConverter.exe
decoder.exe
encoder.exe
IMGIdentifier.exe
OBCEditor.exe
PetiteDetector.exe
PKLiteDetector.exe
SecuROMDetector.exe
OBCViewer.exe
CTRKViewer.exe
PLAViewer.exe
SetupPatcher.exe
Y2K38Patcher.exe
copyDatas.exe
LOADER7VC.exe
# DEV7Monitor.exe