All valid section IDs are now shown in the hunt optimization results instead of just one random one.

This commit is contained in:
Daan Vanden Bosch 2019-06-15 23:00:46 +02:00
parent 58b8c66a89
commit a6cb937485
2 changed files with 52 additions and 13 deletions

View File

@ -21,7 +21,7 @@ export class OptimizationResult {
constructor( constructor(
public readonly difficulty: Difficulty, public readonly difficulty: Difficulty,
public readonly sectionId: SectionId, public readonly sectionIds: Array<SectionId>,
public readonly methodName: string, public readonly methodName: string,
public readonly methodTime: number, public readonly methodTime: number,
public readonly runs: number, public readonly runs: number,
@ -33,8 +33,8 @@ export class OptimizationResult {
// TODO: Prefer methods that don't split pan arms over methods that do. // TODO: Prefer methods that don't split pan arms over methods that do.
// For some reason this doesn't actually seem to be a problem, should probably investigate. // For some reason this doesn't actually seem to be a problem, should probably investigate.
// TODO: group similar methods (e.g. same difficulty, same quest and similar ID). // TODO: Show expected value or probability per item per method.
// This way people can choose their preferred section ID. // Can be useful when you want one item "more" than the others.
// TODO: order of items in results table should match order in wanted table. // TODO: order of items in results table should match order in wanted table.
// TODO: boxes. // TODO: boxes.
class HuntOptimizerStore { class HuntOptimizerStore {
@ -200,12 +200,9 @@ class HuntOptimizerStore {
} }
if (addVariable) { if (addVariable) {
let name = `${diff}\t${sectionId}\t${method.name}`; const name = this.fullMethodName(
diff, sectionId, method, splitPanArms
if (splitPanArms) { );
name += ' (Split Pan Arms)';
}
variables[name] = variable; variables[name] = variable;
variableDetails.set(name, { variableDetails.set(name, {
method, method,
@ -248,18 +245,48 @@ class HuntOptimizerStore {
const items = new Map<Item, number>(); const items = new Map<Item, number>();
for (const [itemName, expectedValue] of Object.entries(variable)) { for (const [itemName, expectedAmount] of Object.entries(variable)) {
for (const item of wantedItems) { for (const item of wantedItems) {
if (itemName === item.name) { if (itemName === item.name) {
items.set(item, runs * expectedValue); items.set(item, runs * expectedAmount);
break; break;
} }
} }
} }
// Find all section IDs that provide the same items with the same expected amount.
// E.g. if you need a spread needle and a bringer's right arm, using either
// purplenum or yellowboze will give you the exact same probabilities.
const sectionIds: Array<SectionId> = [];
for (const sid of SectionIds) {
let matchFound = true;
if (sid !== sectionId) {
const v = variables[
this.fullMethodName(difficulty, sid, method, splitPanArms)
];
if (!v) {
matchFound = false;
} else {
for (const itemName of Object.keys(variable)) {
if (variable[itemName] !== v[itemName]) {
matchFound = false;
break;
}
}
}
}
if (matchFound) {
sectionIds.push(sid);
}
}
this.results.push(new OptimizationResult( this.results.push(new OptimizationResult(
difficulty, difficulty,
sectionId, sectionIds,
method.name + (splitPanArms ? ' (Split Pan Arms)' : ''), method.name + (splitPanArms ? ' (Split Pan Arms)' : ''),
method.time, method.time,
runs, runs,
@ -269,6 +296,17 @@ class HuntOptimizerStore {
} }
}); });
} }
private fullMethodName(
difficulty: Difficulty,
sectionId: SectionId,
method: HuntMethod,
splitPanArms: boolean
): string {
let name = `${difficulty}\t${sectionId}\t${method.name}`;
if (splitPanArms) name += ' (Split Pan Arms)';
return name;
}
} }
export const huntOptimizerStore = new HuntOptimizerStore(); export const huntOptimizerStore = new HuntOptimizerStore();

View File

@ -37,7 +37,8 @@ export class OptimizationResultComponent extends React.Component {
{ {
name: 'Section ID', name: 'Section ID',
width: 80, width: 80,
cellRenderer: (result) => result.sectionId, cellRenderer: (result) => result.sectionIds.join(', '),
tooltip: (result) => result.sectionIds.join(', '),
}, },
{ {
name: 'Time/Run', name: 'Time/Run',