Already thought about this, but as the numbers are changing every time and so quickly, i'm really not sure that the result will be usefull. About the glow effect, keep in mind that this picture is a power point. A lot of detail are lickely to be modified.
I'm really pleased that you're continuing to work on this mod, and I agree that the new design is significantly swankier than the interim one. However, don't get too stressed - remember the old adage: "You can never please all of the people all of the time.”
It looks amazing, but there's nothing that shows me my current net income. I have a pretty good idea of how much that number will change depending on what I start building, so I rely on that number a lot. There is a gross income number in there, which I assumed was the net income until I crashed my economy because I kept thinking I had metal available to spend. I really think both net and gross should be in there somewhere, although net income is more important than gross.
the green number is your gross income. The net income is not displayed as it is completely redundant with the efficiency.
Ah, then I'll just stick to the old mod since I use that net number a lot. In the early game, knowing exactly how much you have available to spend is pretty important.
The glow looks cool, and you did a good job making the design more streamlined, yet, still I prefer the previous version. As cptcon said, it had stats that I've grown to rely on. Couldn't the percentages in the original version have this swanky glow applied to them? I found the percentages being colored more useful. They are what I payed the most attention to, and the color coordination enhanced their state. Separating the two now makes me feel like my attention is divided. Frankly, I feel like you're reinventing the wheel..
The old version kind of needs to go away anyway since this one is doing a lot of things better behind the scenes. I think this mod is slowly making progress and I can't wait for it to be something I can use. It doesn't matter how long it takes though because we do still have the old one.
I've done the last little details about the design, i'm really happy with the result. Here the files. Please could you add it to PAMM ?
When talking about the new spectator mode, sorian pointed out that this mod should be calculating its central efficiency number through metal efficiency * energy efficiency. I presume that this calculation should use 100% as a cut-off for both metal and energy otherwise you get an incorrect figure.
Here is the code that calculates the efficiency in live_game.js: Code: // calculate efficiency var metalEfficiency; if (spectatorData.metal.demand > 0 && spectatorData.metal.current <= 0) { metalEfficiency = Math.min(1, Math.max(spectatorData.metal.production / spectatorData.metal.demand, 0)) } else { metalEfficiency = 1; } var energyEfficiency; if (spectatorData.energy.demand > 0 && spectatorData.energy.current <= 0) { energyEfficiency = Math.min(1, Math.max(spectatorData.energy.production / spectatorData.energy.demand, 0)) } else { energyEfficiency = 1; } var totalEfficiency = Math.min(metalEfficiency, energyEfficiency); playerData.buildEfficiency = Number(100 * totalEfficiency).toFixed(0);
Update : - Now the number are colorized - The Overall efficiency has its own color rules 100 - 75 green 75 - 50 yellow 50 - 33 orange 33 - 0 red
I think the colour is misleading. 50% efficiency should be red because that's terrible. I understand you want to equally divide the brackets, but I believe it gives people the wrong idea about what a reasonable economy looks like.