Skip to content

[Feature Request] Indicate if resource count is going up or down #23

@deniszholob

Description

@deniszholob

With high number of items being made its hard to tell if there is more items being made than consumed

Show an arrow up/down, if resource is increasing/decreasing based on its production rate and consumption rate from other resources.
Show by how much its increasing/decreasing
image

Something like

const indicator = "‒"; // Not increasing or decreasing

charcoal.consumptionRate = brick.productionRate * brick.charcoalRequirement + glass.productionRate * brick.charcoalRequirement ...;

const trendRate = charcoal.productionRate  - charcoal.consumptionRate; // items/sec

if(trendRate > 0 ){
  indicator = "🔼"; // increasing
}elseif(trendRate < 0 ){
  indicator = "🔽"; // decreasing
}

Metadata

Metadata

Assignees

No one assigned

    Labels

    enhancementNew feature or request

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions