Metadata-Version: 2.4
Name: bdo-empire
Version: 0.5.1
Summary: Worker empire optimizer for BDO using HiGHS mip solver.
Author-email: Thell 'Bo' Fowler <thell@tbfowler.net>
License-Expression: Unlicense
Requires-Python: >=3.12
Description-Content-Type: text/markdown
Requires-Dist: bidict>=0.23.1
Requires-Dist: certifi>=2025.8.3
Requires-Dist: CTkToolTip>=0.8
Requires-Dist: customtkinter>=5.2.2
Requires-Dist: highspy>=1.11.0
Requires-Dist: loguru>=0.7.3
Requires-Dist: natsort>=8.4.0
Requires-Dist: psutil>=7.0.0
Requires-Dist: rustworkx>=0.17.1
Requires-Dist: tabulate>=0.9.0

# bdo-empire

## About

Given a contribution point limit and price list this program will find the
optimum allocation of the points to maximize a Worker Node Empire's value.

It
  - generates a json file to import into [Workerman][workerman]
  - uses workers of level 40.
  - uses workers with optimum skills learned.
  - assumes all drops are sent to storage with zero cost (Calpheon).

and, when specified, it
  - accounts for workshop _lodging cost_ but not profits or the workshop itself.
  - accounts for grinding node connections.
  - extends _lodging and worker nodes_ from a base empire exported from Workerman.

It does not
  - account for CP spent outside of the Node Empire.

This program uses the HiGHS High Performance Optimization Software to solve
the MIP using branch and cut. The parameters chosen guarantee the result is
within 0.01% of the optimum value but in practice it is optimum for all test
cases used during the development and testing of the model.

**NOTE:**  Every change in input or options can alter the runtime! There is no
real average but empirically budgets of ~350 or ~600 take the longest and all
of the bench cases for v0.5.0 complete in < 30 minutes when testing every
increment of 25 from 50 to 625. The vast majority of those completed nearer to
10 minutes or less. Good luck, be patient, and if needed use the 'stop'
button to use the best solution found so far.


## Installation

Using pipx: `pipx install bdo-empire`  
Using pip: `pip install bdo-empire`

## Usage

**Requirements**
  - python >= 3.12
  - an exported price list* from [Workerman settings page][settings].
  - optional; an exported modifiers list from [Workerman modifiers page][modifiers]
    (click `▶Advanced`).
  - optional; an exported 'base' empire from the [Workerman][workerman] page.

\* Use the 'reload' button on workerman's setting page prior to exporting.

**Start the program**

Installed using pipx: `empire-optimizer.exe`  
Installed using pip: `python -m bdo_empire.main`


Fill in the required fields, click **Optimize** and then wait.


[workerman]:https://shrddr.github.io/workerman
[settings]:https://shrddr.github.io/workerman/settings
[modifiers]:https://shrddr.github.io/workerman/modifiers
[release]:https://github.com/thell/bdo-empire/releases/latest
