|
|
|
@ -250,6 +250,11 @@ public class PowersParser {
@@ -250,6 +250,11 @@ public class PowersParser {
|
|
|
|
|
case "STICKY": |
|
|
|
|
powerEntry.sticky = Boolean.parseBoolean(lineValues[1].trim()); |
|
|
|
|
break; |
|
|
|
|
case "PULSEINFO": |
|
|
|
|
arguments = lineValues[1].trim().split("\\s+"); |
|
|
|
|
powerEntry.pulseCycle = Integer.parseInt(arguments[0]); |
|
|
|
|
powerEntry.pulseDuration = Integer.parseInt(arguments[1]); |
|
|
|
|
break; |
|
|
|
|
default: |
|
|
|
|
Logger.error("Unhandled variable type:" + key + " for power: " + powerEntry.power_id); |
|
|
|
|
} |
|
|
|
|