36 lines
1.4 KiB
JavaScript
36 lines
1.4 KiB
JavaScript
import { CMOptions } from '../../Config/VariablesAndData';
|
|
import GetCPS from '../../Disp/HelperFunctions/GetCPS';
|
|
import {
|
|
ColorBlue, ColorGray, ColorGreen, ColorOrange, ColorPurple, ColorRed, ColorYellow,
|
|
} from '../../Disp/VariablesAndData';
|
|
import { CacheMaxPP, CacheMidPP, CacheMinPP } from '../VariablesAndData';
|
|
|
|
/**
|
|
* This functions return the colour assosciated with the given pp value
|
|
* It is called by CM.Cache.CacheBuildingsPP(), CM.Cache.CacheBuildingsBulkPP() and CM.Cache.CacheUpgradePP()
|
|
* @params {object} obj The obj of which the pp value should be checked
|
|
* @params {number} price The price of the object
|
|
* @returns {string} color The colour assosciated with the pp value
|
|
*/
|
|
export default function ColourOfPP(me, price) {
|
|
let color = '';
|
|
// Colour based on PP
|
|
if (me.pp <= 0 || me.pp === Infinity) color = ColorGray;
|
|
else if (me.pp < CacheMinPP) color = ColorBlue;
|
|
else if (me.pp === CacheMinPP) color = ColorGreen;
|
|
else if (me.pp === CacheMaxPP) color = ColorRed;
|
|
else if (me.pp > CacheMaxPP) color = ColorPurple;
|
|
else if (me.pp > CacheMidPP) color = ColorOrange;
|
|
else color = ColorYellow;
|
|
|
|
// Colour based on price in terms of CPS
|
|
if (Number(CMOptions.PPSecondsLowerLimit) !== 0) {
|
|
if (price / GetCPS() < Number(CMOptions.PPSecondsLowerLimit)) color = ColorBlue;
|
|
}
|
|
// Colour based on being able to purchase
|
|
if (CMOptions.PPOnlyConsiderBuyable) {
|
|
if (price - Game.cookies > 0) color = ColorRed;
|
|
}
|
|
return color;
|
|
}
|