|
@@ -1,6 +1,7 @@
|
|
|
package com.gyee.runeconomy.model;
|
|
|
|
|
|
import com.gyee.runeconomy.dto.speed.Desc;
|
|
|
+import com.gyee.runeconomy.init.CacheContext;
|
|
|
import lombok.Data;
|
|
|
|
|
|
/**
|
|
@@ -18,6 +19,14 @@ public class PowerFittingData {
|
|
|
this.cpdata = ((double)((int)(Double.valueOf(str[2])*1000)))/1000;
|
|
|
}
|
|
|
}
|
|
|
+ public PowerFittingData(String[] str,String modleId) {
|
|
|
+ if (str.length >= 2){
|
|
|
+ this.speed = Double.valueOf(str[0]);
|
|
|
+ this.nhdata = Double.valueOf(str[1]);
|
|
|
+ this.xzdata = CacheContext.theoreticalPowerMap.get(modleId).get(this.speed).getEnsurePower();
|
|
|
+ this.cpdata = ((double)((int)(Double.valueOf(str[2])*1000)))/1000;
|
|
|
+ }
|
|
|
+ }
|
|
|
|
|
|
|
|
|
//风速
|