Skip to main content

Jupyter kernel for live connection to DCS (Digital Combat Simulator) scripting environment

Project description

DCS Jupyter

A Jupyter kernel for live connection to DCS (Digital Combat Simulator) scripting environment. Execute Lua code in Jupyter notebooks that communicates directly with a running DCS mission via UDP socket connection.

Features

  • Execute Lua code directly in DCS from Jupyter notebooks
  • Real-time communication with running DCS missions
  • Support for both Jupyter Console and JupyterLab
  • Easy installation and kernel management
  • Cross-platform support (Windows, Linux, macOS)

Installation

Requirements

  • Python 3.11 or higher
  • DCS World (Digital Combat Simulator)

Install Dependencies (Windows)

If you don't have Python and pipx installed:

  1. Install Python:

    • Download Python 3.11+ from python.org
    • During installation, check "Add Python to PATH"
    • Verify installation in Command Prompt: python --version
  2. Install pipx: Open Command Prompt and run:

    python -m pip install --user pipx
    python -m pipx ensurepath
    
    • Restart Command Prompt after installation
    • Verify installation: pipx --version

Install Package

# Basic installation
pipx install dcs-jupyter

# With JupyterLab and extras (vim bindings, rich output, Dracula theme)
pipx install "dcs-jupyter[lab]"

Also available via pip or uv package managers.

Basic Setup (Windows)

1. Patch DCS

In dcs_install_dir/Scripts/MissionScripting.lua, find this section (around line 16):

do
  sanitizeModule('os')
  sanitizeModule('io')
  sanitizeModule('lfs')
  _G['require'] = nil
  _G['loadlib'] = nil
  _G['package'] = nil
end

Add this code BEFORE the above do block:

-- Initialize DCS Jupyter before security restrictions
if not _G['dcs_jupyter_udp'] then
    package.path = package.path..";.\\LuaSocket\\?.lua"
    package.cpath = package.cpath..";.\\LuaSocket\\?.dll"
    local socket = require("socket")
    local udp = assert(socket.udp())
    assert(udp:settimeout(0))
    assert(udp:setsockname("127.0.0.1", 8042))
    _G['dcs_jupyter_udp'] = udp
    
    -- Pre-store DCS user directory for script loading
    local lfs = require("lfs")
    _G['dcs_jupyter_user_dir'] = lfs.writedir()
end

Leave the original do block unchanged. This maintains DCS security while enabling the kernel connection.

2. Install DCS Plugin

Load the dcs_plugin/jupyter_kernel_connection.lua script in your DCS mission using one of these methods:

Option A: Copy-paste script content

  • Open Mission Editor → Triggers → New Trigger
  • Set Event: Mission Start, Action: Do Script
  • Copy entire contents of jupyter_kernel_connection.lua into the text box

Option B: Do Script File action

  • Place jupyter_kernel_connection.lua anywhere
  • Mission Editor → Triggers → New Trigger
  • Set Event: Mission Start, Action: Do Script File
  • Select the script file
  • Note: File contents are loaded once and saved internally to mission. Updating the file won't affect the mission.

Option C: Dynamic loading

  • Place jupyter_kernel_connection.lua anywhere in your DCS user directory (under 'Saved Games')
  • Mission Editor → Triggers → New Trigger
  • Set Event: Mission Start, Action: Do Script
  • Use: assert(loadfile(_G['dcs_jupyter_user_dir'] .. "/Scripts/jupyter_kernel_connection.lua"))()
  • Advantage: Reloads script on every mission restart
  • You can place the script in any subdirectory by changing the path after dcs_jupyter_user_dir

3. Configure Network Settings

The kernel uses localhost (127.0.0.1:8042) by default, which works for native Windows installations.

Usage

Quick Start with Console

dcs-jupyter-console

Automatically installs the DCS kernel if needed and starts Jupyter Console with DCS Lua kernel.

Start with JupyterLab

dcs-jupyter-lab

Automatically installs the DCS kernel if needed and starts JupyterLab.

Examples

Download Example Notebooks

Get started with these example notebooks:

Right-click "Download" links and select "Save link as..." to save to your computer.

Basic Usage

Once connected, you can execute Lua code directly in DCS:

-- Display message in DCS (visible in game)
trigger.action.outText("Hello from DCS Jupyter!", 10)

-- Get current mission time and display it
local currentTime = timer.getTime()
trigger.action.outText("Mission time: " .. math.floor(currentTime) .. " seconds", 5)

-- Create smoke at a specific location
local smokePos = {x = 0, y = 0, z = 0}  -- Adjust coordinates as needed
trigger.action.smoke(smokePos, trigger.smokeColor.Red)

-- Get all red coalition groups
local redGroups = coalition.getGroups(coalition.side.RED)
trigger.action.outText("Red coalition has " .. #redGroups .. " groups", 8)

Return current mission time:

return timer.getTime()

Get structured data for analysis:

-- Get all airfields with their properties
local airfields = {}
for coalition_id = 0, 2 do
    local airfield_list = coalition.getAirbases(coalition_id)
    for _, airfield in pairs(airfield_list) do
        airfields[#airfields + 1] = {
            name = airfield:getName(),
            coalition = coalition_id,
            position = airfield:getPosition().p,
            category = airfield:getDesc().category
        }
    end
end
return net.lua2json(airfields)

Configuration

Default settings: 127.0.0.1:8042, 10 second timeout. See Advanced Setup for customization.

Troubleshooting

Connection Issues

  • Ensure DCS is running with the Lua plugin loaded
  • Check firewall settings allow UDP traffic on port 8042
  • Verify IP address is correct (127.0.0.1 for Windows, host IP for WSL2)

Kernel Not Found

If the kernel isn't recognized:

# Reinstall kernel
jupyter kernelspec uninstall dcs-lua
dcs-jupyter-console  # Will reinstall automatically

WSL2 Connection Problems

  • WSL2 users need to modify IP addresses manually (see Advanced Setup)
  • Use Windows host IP address instead of localhost
  • Consider using native Windows installation for simpler setup

Advanced Setup

WSL2 Users

The default localhost configuration should work for most WSL2 setups. If you experience connection issues, you may need to use the Windows host IP:

  1. Find Windows host IP: cat /etc/resolv.conf | grep nameserver
  2. Edit IP in the patching code: Replace 127.0.0.1 with your Windows host IP in the MissionScripting.lua patch above
  3. Edit IP in kernel: src/dcs_jupyter/kernel.py: SOCKET_ADDR = 'YOUR_HOST_IP'
  4. Configure Windows Firewall for UDP port 8042 (might be needed)

Manual Kernel Installation

# Install kernel manually
jupyter kernelspec install kernel_spec/dcs-lua --user

# List installed kernels
jupyter kernelspec list

# Start Jupyter with DCS kernel
jupyter console --kernel=dcs-lua

Custom IP/Port Configuration

Edit SOCKET_ADDR and PORT constants in both src/dcs_jupyter/kernel.py and dcs_plugin/jupyter_kernel_connection.lua with identical values.

License

MIT License - see LICENSE file for details.

Support

For issues and questions:

  • Check the troubleshooting section above
  • Open an issue on GitHub with detailed information about your problem

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dcs_jupyter-0.1.1.tar.gz (83.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

dcs_jupyter-0.1.1-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file dcs_jupyter-0.1.1.tar.gz.

File metadata

  • Download URL: dcs_jupyter-0.1.1.tar.gz
  • Upload date:
  • Size: 83.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dcs_jupyter-0.1.1.tar.gz
Algorithm Hash digest
SHA256 19f564faee4041ed88c136739ccf77726e4785e4c7a8394f7bd77cf1cbe58154
MD5 1d4e279035bb18704c55a6d35bf08910
BLAKE2b-256 8b064f6dd606e7889a3e0589336c5a2b312c77e2755956e2de87c0f27578a41b

See more details on using hashes here.

Provenance

The following attestation bundles were made for dcs_jupyter-0.1.1.tar.gz:

Publisher: publish.yml on SamiAhola/dcs-jupyter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file dcs_jupyter-0.1.1-py3-none-any.whl.

File metadata

  • Download URL: dcs_jupyter-0.1.1-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for dcs_jupyter-0.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 f0ae2e44486d973a2e10a4ca985c2e64b6065e1e0d6d466d114ec43a1db41740
MD5 ba28acd0605d619954d6638ecaa90937
BLAKE2b-256 b5d426b1190a2a2cf4b6399a4eafe73930c2660ffe70dc620ca6ab08705f33de

See more details on using hashes here.

Provenance

The following attestation bundles were made for dcs_jupyter-0.1.1-py3-none-any.whl:

Publisher: publish.yml on SamiAhola/dcs-jupyter

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page