Metadata-Version: 2.4
Name: particle-field
Version: 0.2.0
Summary: Pure-Python, GPU-accelerated particle morphing library
Author-email: Josh James <josh@rocketnow.com>
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: numpy>=1.19
Requires-Dist: opensimplex>=0.1.2
Requires-Dist: vispy>=0.9

# Particle Field

A pure-Python, GPU-accelerated particle morphing library using VisPy and NumPy. Inspired by a Three.js reference implementation, it supports dynamic shape morphing, noise-driven effects, and flexible color schemes.

## Features
- Multiple built-in shape generators: sphere, cube, pyramid, torus, galaxy, wave
- Smooth morphing with swarm, swirl, and noise effects
- HSL-based color schemes with noise perturbation: fire, neon, nature, rainbow
- Live interactive demo via VisPy `SceneCanvas`
- Python API: `set_shape()`, `set_color()`, `trigger_morph()`, `load_custom_points()`

## Installation
1. Create a virtual environment (recommended):
   ```bash
   python3 -m venv venv
   source venv/bin/activate
   ```
2. Install core dependencies:
   ```bash
   pip install -r requirements.txt
   ```
3. Install the package in editable mode:
   ```bash
   pip install -e .
   ```
4. Install a GUI backend for VisPy (required to open the canvas). We recommend PyQt6:
   ```bash
   pip install PyQt6
   ```
  5. (Optional) Vendor dependencies locally for offline use:
     ```bash
     chmod +x vendor_deps.sh
     ./vendor_deps.sh
     # Then install dependencies from the 'deps' folder:
     pip install --no-index --find-links deps -r requirements.txt
     ```

## Usage
Run the interactive demo:
```bash
python3 examples/demo.py
```

### Remote Control Demo
You can also start a TCP JSON controller:
```bash
python3 examples/controller_demo.py
```

## WebSocket Browser UI Integration
For an embedded web interface (Three.js), start the FastAPI+Uvicorn server:
```bash
python3 ws_server.py
# or: uvicorn ws_server:app --reload --port 8000
```
Then open your browser at `http://localhost:8000/` to load the Three.js UI from `reference/dist`.
WebSocket messages (`/ws`) can be sent from browser JS or via the AI bridge.

---
Run individual components manually:
  * Python VisPy client:
    ```bash
    python3 examples/demo.py
    ```
  * WebSocket + Static Server + Three.js UI:
    ```bash
    python3 ws_server.py
    # or use: uvicorn ws_server:app --reload --port 8000
    ```
  * AI Bridge (requires OPENAI_API_KEY):
    ```bash
    python3 examples/openai_demo.py
    ```
---

## Unified Launcher
Use `run_all.py` to start all components in one command. Browser will open automatically:
```bash
# starts WebSocket server + Three.js UI, VisPy canvas, and AI bridge
python3 run_all.py
```
**Note:** To enter AI prompts via console, disable the VisPy canvas:
```bash
python3 run_all.py --no-vispy
```
Disable any component with flags:
```bash
python3 run_all.py --no-ai        # disable AI bridge
python3 run_all.py --no-vispy     # disable VisPy canvas (console free for AI)
python3 run_all.py --no-web       # disable web server (Three.js UI)
```
Environment:
- `OPENAI_API_KEY`: your OpenAI API key (for AI bridge)
Then connect via `netcat`:
```bash
nc localhost 8765
{"command":"set_shape","args":["cube"]}
{"command":"trigger_morph","args":[1500]}
{"command":"express","args":["joy",1.0,2000]}
```

### Jupyter Notebook Demo
Open `examples/demo_notebook.ipynb` in Jupyter (uses VisPy external window):
```bash
jupyter notebook examples/demo_notebook.ipynb
```

```bash
jupyter notebook examples/demo_notebook.ipynb
```

### Controls
- Space or Right Arrow: cycle to next shape and morph
- C: cycle to next color scheme
- Q or Esc: quit

## Examples
Embed `ParticleField` in your own scripts:
```python
from particle_field import ParticleField
field = ParticleField(count=20000, size=15.0)
field.set_shape('galaxy')
field.set_color('rainbow')
field.trigger_morph(3000)
# The VisPy canvas runs its own event loop
```

## Continuous Deployment to PyPI

We use GitHub Actions to automatically publish new versions to PyPI upon creating a Git tag of the form `vX.Y.Z`.

1. Generate a PyPI API token:
   - Login to PyPI, go to Account settings → API tokens → Add Token → give it a name and expire policy.
   - Copy the token.
2. Add the token to your GitHub repository as a secret:
   - In GitHub, go to **Settings → Secrets and variables → Actions → New repository secret**.
   - Name: `PYPI_API_TOKEN`
   - Value: *paste the token here*
3. Tag a new release and push the tag:
   ```bash
   git tag v0.1.0
   git push origin v0.1.0
   ```
4. GitHub Actions will build the package and publish to PyPI.

### GitHub Actions Workflow
See `.github/workflows/publish.yml` for the deployment configuration.

## License
This project is MIT licensed. See LICENSE.txt in the reference folder for details.
