Cheaper initial erekir research

This commit is contained in:
Anuken
2022-02-19 15:32:55 -05:00
parent 6b0bd41ac6
commit c5ec8ff3ce
3 changed files with 13 additions and 8 deletions

View File

@@ -1874,6 +1874,7 @@ public class Blocks{
buildVisibility = BuildVisibility.berylliumOnly;
health = 90;
speed = 4f;
researchCostMultiplier = 1f / 12f;
}};
ductRouter = new DuctRouter("duct-router"){{
@@ -2289,7 +2290,7 @@ public class Blocks{
hasLiquids = true;
outputLiquid = new LiquidStack(Liquids.water, 5f / 60f / 9f);
liquidCapacity = 20f;
researchCostMultiplier = 0.18f;
researchCostMultiplier = 0.18f / 13f;
}};
//TODO rename
@@ -2495,7 +2496,7 @@ public class Blocks{
tier = 3;
size = 2;
range = 4;
researchCostMultiplier = 0.18f;
researchCostMultiplier = 0.18f / 12f;
consumeLiquid(Liquids.hydrogen, 0.25f / 60f).boost();
}};
@@ -3213,6 +3214,7 @@ public class Blocks{
shootCone = 3f;
scaledHealth = 280;
rotateSpeed = 1.6f;
researchCostMultiplier = 0.3f;
coolant = consume(new ConsumeLiquid(Liquids.water, 15f / 60f));
limitRange();

View File

@@ -63,7 +63,7 @@ public class FogControl implements CustomChunk{
if(state.rules.fog && event.tile.build != null && event.tile.isCenter() && !event.tile.build.team.isAI() && event.tile.block().flags.contains(BlockFlag.hasFogRadius)){
var data = data(event.tile.team());
if(data != null){
data.dynamicUpdated = true;
data.dynamicUpdated = data.dynamicUpdatedClient = true;
}
synchronized(staticEvents){
@@ -78,7 +78,7 @@ public class FogControl implements CustomChunk{
if(state.rules.fog && e.tile.build != null && !e.tile.build.team.isAI() && e.tile.block().flags.contains(BlockFlag.hasFogRadius)){
var data = data(e.tile.team());
if(data != null){
data.dynamicUpdated = true;
data.dynamicUpdated = data.dynamicUpdatedClient = true;
}
}
});
@@ -161,7 +161,7 @@ public class FogControl implements CustomChunk{
if(data == null){
data = fog[team.team.id] = new FogData();
data.dynamicUpdated = true;
data.dynamicUpdated = data.dynamicUpdatedClient = true;
}
synchronized(staticEvents){
@@ -176,7 +176,7 @@ public class FogControl implements CustomChunk{
if(unit.lastFogPos != pos){
pushEvent(event);
unit.lastFogPos = pos;
data.dynamicUpdated = true;
data.dynamicUpdated = data.dynamicUpdatedClient = true;
}
}
}
@@ -187,9 +187,9 @@ public class FogControl implements CustomChunk{
}
//on the client, let the renderer know of all the fog sources
//TODO this runs at a lower FPS and hence may look bad...?
if(data.dynamicUpdated && !headless && team.team == Vars.player.team()){
if(data.dynamicUpdatedClient && !headless && team.team == Vars.player.team()){
renderer.fog.flushDynamic(unitEventQueue);
data.dynamicUpdatedClient = false;
}
//if it's time for an update, flush *everything* onto the update queue
@@ -480,6 +480,8 @@ public class FogControl implements CustomChunk{
/** if true, a dynamic fog update must be scheduled. */
boolean dynamicUpdated;
boolean dynamicUpdatedClient;
FogData(){
int len = ww * wh;

View File

@@ -74,6 +74,7 @@ public class FogRenderer{
//TODO render all (clipped) view circles
dynamicFog.end();
ScissorStack.pop();
Draw.proj(Core.camera);
}