Metadata-Version: 2.4
Name: cpcready
Version: 0.1.1
Summary: CPCReady Toolchain
License: MIT
License-File: LICENSE.md
License-File: NOTICE.md
Author: destroyer
Author-email: destroyer.dcf@gmail.com
Requires-Python: >=3.10
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Dist: click (>=8.3.0,<9.0.0)
Requires-Dist: packaging (>=24.0,<25.0)
Requires-Dist: prompt-toolkit (>=3.0.52,<4.0.0)
Requires-Dist: psutil (>=7.1.0,<8.0.0)
Requires-Dist: questionary (>=2.1.1,<3.0.0)
Requires-Dist: requests (>=2.32.5,<3.0.0)
Requires-Dist: rich (>=14.2.0,<15.0.0)
Requires-Dist: tabulate (>=0.9.0,<0.10.0)
Requires-Dist: tomli (==1.1.0) ; python_version < "3.11"
Requires-Dist: tomli-w (>=1.1.0,<2.0.0)
Description-Content-Type: text/markdown

# CPCReady

<p align="center">
  <img src="Resources/icon_512x512.png" alt="CPCReady Logo" width="300"/>
</p>

[![Release](https://img.shields.io/github/v/release/CPCReady/cpc)](https://github.com/CPCReady/cpc/releases)
[![Build](https://img.shields.io/github/actions/workflow/status/CPCReady/cpc/release.yml)](https://github.com/CPCReady/cpc/actions)
[![Tests](https://img.shields.io/github/actions/workflow/status/CPCReady/cpc/test-compatibility.yml?label=tests)](https://github.com/CPCReady/cpc/actions/workflows/test-compatibility.yml)
[![Python](https://img.shields.io/badge/python-3.10+-blue)](https://www.python.org)
[![Poetry](https://img.shields.io/badge/poetry-managed-blue)](https://python-poetry.org)
[![License](https://img.shields.io/badge/license-GPL--3.0-blue.svg)](LICENSE.md)
[![Code Style](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)

A command-line toolchain for managing Amstrad CPC disk images (.DSK files) and running them in emulators.

## Overview

CPCReady provides a comprehensive set of tools to work with Amstrad CPC virtual disks, managing files, and launching emulators with the correct configuration.

## Features

- **Disk Management**: Create, list, and manage .DSK disk images
- **Virtual Drives**: Simulate A and B drives with disk insertion/ejection
- **File Operations**: Save, list, extract, rename, and delete files on disks
- **CP/M User Areas**: Support for user numbers (0-15) like real CP/M systems
- **Emulator Integration**: Launch RetroVirtualMachine with automatic configuration
- **CPC Configuration**: Manage CPC model (464/664/6128), video mode

## Recomendación de instalación y experiencia de usuario

### Instalación recomendada

Para la mejor experiencia y facilidad de uso, se recomienda instalar CPCReady usando gestores de paquetes:

- **macOS y Linux:** Homebrew
- **Windows:** Chocolatey

Esto permite instalar y actualizar CPCReady con un solo comando, manteniendo el sistema limpio y seguro.

```bash
# macOS / Linux
brew install cpcready/cpcready/cpc

# Windows
choco install cpc
```

### Alternativa: Binario standalone

Si no puedes usar un gestor de paquetes, también puedes descargar el binario standalone generado con Nuitka. Este binario no requiere Python ni dependencias, pero puede ser más grande y menos portable entre sistemas.

### Pros y contras

| Método         | Pros usuario                      | Contras usuario                  | Pros desarrollo         | Contras desarrollo         |
|---------------|-----------------------------------|----------------------------------|------------------------|---------------------------|
| Homebrew/Choco| Instalación/actualización fácil   | Requiere gestor de paquetes      | Releases automáticas   | Mantener fórmulas/paquetes|
|               | Integración con el sistema        | Requiere Python instalado        | Menos testing manual   | Menos control del entorno |
| Standalone    | No requiere Python ni dependencias| Binario grande, menos portable   | Control total binario  | Compilar por arquitectura |
|               | Doble click, sin instalación extra| Actualización manual             | Personalización total  | Firmas y testing extra    |

**Recomendación:**
- Usa Homebrew/Chocolatey como método principal para la mayoría de usuarios.
- Ofrece el binario standalone como alternativa para entornos restringidos o usuarios avanzados.

---

## Installation

### Via Homebrew (Recommended)

```bash
# Add the CPCReady tap
brew tap cpcready/cpcready https://github.com/cpcready/homebrew-cpcready

# Install cpc
brew install cpcready/cpcready/cpc

# Verify installation
cpc --version
```

### From Source

#### Prerequisites

- Python 3.13+
- Poetry (dependency manager)

#### Install with Poetry

```bash
poetry install
```

## Main Commands

### Drive Management

```bash
cpc drive A <disk.dsk>    # Insert disk into drive A
cpc drive B <disk.dsk>    # Insert disk into drive B
cpc drive status          # Show current drive status
cpc drive eject A         # Eject disk from drive A
```

### Disk Operations

```bash
cpc disc <disk.dsk>       # Create or select a disk
cpc cat                   # List files on current disk
cpc save <file> [type]    # Save file to disk (a/b/p types)
cpc era <file>            # Delete file from disk
cpc ren <old> <new>       # Rename file on disk
```

### File Management

```bash
cpc list <file>           # List BASIC program
cpc filextr <file>        # Extract file from disk
```

- **Command History**: Navigate previous commands with arrow keys
- **Auto-completion**: Tab completion for commands and filenames
- **All Commands Available**: Access all `cpc` commands directly (cat, list, save, etc.)
- **Persistent State**: Drive and configuration state maintained throughout session

### System Configuration

```bash
cpc user <0-15>           # Set CP/M user number
cpc model <464|664|6128>  # Set CPC model
cpc mode <0|1|2>          # Set video mode
```

### Emulator

```bash
cpc run [file]            # Launch emulator with current disk
cpc run [file] -A         # Run from drive A
cpc run [file] -B         # Run from drive B
```

## File Types

When saving files, you can specify:

- `a` - ASCII/text file (no AMSDOS header)
- `b` - Binary file (requires load/exec addresses)
- `p` - Program file (preserves existing header)

Example:
```bash
cpc save game.bin b 0x4000 0x4000    # Binary at address 0x4000
cpc save data.txt a                  # ASCII file
```

## Configuration

Configuration is stored in TOML format at:
`~/.config/cpcready/cpcready.toml`

Structure:
```toml
[drive]
drive_a = "/path/to/disk.dsk"
drive_b = ""
selected_drive = "A"

[emulator]
default = "RetroVirtualMachine"
retro_virtual_machine_path = "/Applications/Retro Virtual Machine 2.app"

[system]
user = 0        # CP/M user area
model = "6128"  # CPC model
mode = 1        # Video mode
```

## Project Structure

```
cpcready/
├── cli.py              # Main CLI entry point
├── drive/              # Drive management (A/B)
├── disc/               # Disk operations
├── save/               # Save files to disk
├── list/               # List BASIC programs
├── cat/                # Catalog disk contents
├── era/                # Delete files
├── ren/                # Rename files
├── filextr/            # Extract files
├── run/                # Launch emulator
├── user/               # CP/M user management
├── model/              # CPC model configuration
├── mode/               # Video mode configuration
├── pydsk/              # DSK file format library
└── utils/              # Utilities and helpers

```

## Development

```bash
# Install development dependencies
poetry install

# Run tests
poetry run pytest

# Run in development mode
poetry run cpc <command>
```

### Creating Releases

CPCReady uses an automated release workflow:

```bash
./Version/create_release.sh
```

This interactive script will:
1. Create a new Git tag and GitHub release
2. Build and publish the package to PyPI automatically
3. Update and publish the Homebrew formula (if confirmed)
4. Update and publish the Chocolatey package (if confirmed)

For more details on the publishing workflows, see [.github/PUBLISHING.md](.github/PUBLISHING.md).

#### Manual Publishing

You can also trigger publishing workflows manually from the GitHub Actions tab:

- **PyPI**: Actions → Publish to PyPI → Run workflow
- **Chocolatey**: Actions → Publish to Chocolatey → Run workflow

## Tests automáticos

Para ejecutar todos los tests automáticos de CPCReady, simplemente activa el entorno virtual y ejecuta:

```bash
source .venv/bin/activate && pytest tests --maxfail=20 --disable-warnings -v
```

Este comando ejecuta la batería completa de pruebas, cubriendo:

- **Gestión de discos**: creación, inserción, existencia, sobrescritura, y manejo de errores.
- **Gestión de drives**: inserción, expulsión, selección, prevención de duplicados, reemplazo y reset.
- **Operaciones de archivos**: guardar, extraer, listar, renombrar, borrar y persistencia.
- **Comandos de usuario, modelo y modo**: cambio y verificación de configuración.
- **Integración con emulador**: lanzamiento y configuración.
- **Cobertura avanzada**: secuencias largas, interacción, flags combinados, errores, ayuda, regresión y formato de salida.
- **Estado y persistencia**: comprobación de consistencia y recuperación de estado.
- **Limpieza automática**: todos los archivos `.dsk` temporales creados durante los tests se eliminan automáticamente tras cada prueba.

### Resumen de tests que pasan

- Todos los comandos principales (`disc`, `drive`, `cat`, `save`, `era`, `ren`, `list`, `filextr`, `run`, `user`, `model`, `mode`).
- Casos de error, edge y persistencia.
- Integración y regresión.
- Limpieza de temporales.
- 92 tests pasan y 4 se omiten por requerir hardware/emulador o archivos inexistentes.

No es necesario ningún parámetro extra ni configuración especial: solo ejecuta el comando anterior y tendrás la validación completa del sistema.

## License

Apache GPL 3.0- See [LICENSE.md](LICENSE.md) for details.

---

**Note**: This tool is designed for Amstrad CPC enthusiasts and retro computing hobbyists.

