import { Button, InputNumber, Popover } from "antd";
import { observer } from "mobx-react";
import React from "react";
import { AutoSizer, Column, Table, TableCellRenderer } from "react-virtualized";
import { huntOptimizerStore, WantedItem } from "../../stores/HuntOptimizerStore";
import { itemKindStores } from "../../stores/ItemKindStore";
import { BigSelect } from "../BigSelect";
import './WantedItemsComponent.less';
@observer
export class WantedItemsComponent extends React.Component {
state = {
helpVisible: false
}
render() {
// Make sure render is called on updates.
huntOptimizerStore.wantedItems.slice(0, 0);
return (
Wanted Items
huntOptimizerStore.wantedItems[index]}
noRowsRenderer={this.noRowsRenderer}
>
)}
Add some items with the above drop down and click "Optimize" to see the result on the right.
Add some items with the drop down and click "Optimize" to see the optimal set of method/difficulty/section ID combinations on the right.
At the moment a method is simply a quest run-through. Partial quest run-throughs are coming. View the list of methods on the "Methods" tab. Each method takes a certain amount of time, which affects the optimization result. Make sure the times are correct for you (at the moment times can't be changed, but this feature is coming).
Only enemy drops are considered. Box drops are coming.
The optimal result is calculated using linear optimization. The optimizer takes rare enemies and the fact that pan arms can be split in two into account.