haul: Route Planner for EVE Online

View on GitHub

I would like to share with you haul (Hyperspace Asset Unloading and Loading), a route optimization and trade automation tool I developed specifically for the virtual economy of the EVE Online. In this article, I'll walk you through the methodologies, algorithms, and technical implementations behind haul, highlighting key aspects such as route optimization, arbitrage detection, risk assessment, and performance optimizations I included in the project.

Route Optimization Algorithm

Key Factors for Optimization

When creating haul, I identified several critical factors that significantly impact successful asset transportation in EVE Online:

Route Calculation Implementation

To ensure efficient navigation, haul uses Dijkstra's shortest path algorithm, enhanced with a custom heuristic I designed to integrate multiple factors into a cohesive cost metric:

\[ \text{TotalCost} = \text{WarpTime} + \text{AlignTime} + \text{RiskFactor} \]

Specifically, WarpTime is computed as:

\[ \text{WarpTime} = \frac{\text{Distance (AU)}}{\text{WarpSpeed (AU/s)}} + \text{JumpTime} \]

Here, JumpTime is a constant duration associated with stargate transitions (about 10 seconds per jump).

I also dynamically factored in risk assessments by regularly updating risk data from publicly available kill reports, mathematically represented as:

\[ \text{RiskFactor} = \text{KillDensity} \times \text{CargoValueFactor} \]

This allowed haul to adapt to changing player behaviors and emerging threats in real-time.

Data Acquisition and Processing

Real-time Data Integration

I designed haul to rely heavily on real-time data sourced from EVE Online’s official EVE Swagger Interface (ESI) API, including:

Arbitrage Detection Approach

To accurately identify profitable trade opportunities, haul applies a structured process for analyzing market data:

I calculated profitability per cubic meter (profit/m³) as:

\[ \text{Profitability} = \frac{\text{SellPrice} - \text{BuyPrice} - \text{TransportCost}}{\text{CargoVolume}} \]

Return on Investment (ROI), measuring profitability against initial investment capital, was calculated as:

\[ \text{ROI} = \frac{\text{Profit}}{\text{InitialCapital}} \]

The results were then ranked by both profitability and ROI to produce optimized trade itineraries and routes.

Technical Implementation Details

Backend Development

I developed the backend infrastructure of haul using Python and FastAPI to handle API interactions efficiently. Key features include:

Frontend Development

For the frontend, I chose React for its ability to provide users with intuitive, real-time visualizations. Server-sent events (SSE) were leveraged to maintain synchronization between frontend and backend data, dynamically presenting optimal routes, risk assessments, and profitable trading opportunities.

Performance Optimizations

To ensure responsiveness and efficiency, I precomputed station-to-station paths, significantly reducing runtime computation loads. Additionally, I experimented with rewriting parts of the backend in Rust, which further enhanced performance, particularly in intensive route calculations.

Lessons Learned and Future Plans

Challenges Encountered

Planned Enhancements

Creating haul allowed me to combine algorithmic optimization, economic modeling, and software development into a cohesive tool tailored to the unique challenges of EVE Online. Throughout this project, I developed and refined critical skills in algorithm optimization, API integration, real-time data processing, and asynchronous programming, resulting in a robust and highly functional addition to my technical portfolio.