dmolony-DiskBrowser/src/com/bytezone/diskbrowser/visicalc/If.java
2017-02-26 21:44:10 +11:00

71 lines
1.5 KiB
Java

package com.bytezone.diskbrowser.visicalc;
class If extends Function
{
private final Condition condition;
private final String textTrue;
private final String textFalse;
private Expression expTrue;
private Expression expFalse;
public If (Sheet parent, String text)
{
super (parent, text);
int pos1 = functionText.indexOf (',');
int pos2 = functionText.indexOf (',', pos1 + 1);
condition = new Condition (parent, functionText.substring (0, pos1));
values.add (condition);
textTrue = functionText.substring (pos1 + 1, pos2);
textFalse = functionText.substring (pos2 + 1);
}
@Override
public Value calculate ()
{
valueType = ValueType.VALUE;
condition.calculate ();
if (condition.getValue () == 1)
{
if (expTrue == null)
{
expTrue = new Expression (parent, textTrue);
values.add (expTrue);
}
expTrue.calculate ();
if (!expTrue.isValueType (ValueType.VALUE))
valueType = expTrue.getValueType ();
else
value = expTrue.getValue ();
}
else
{
if (expFalse == null)
{
expFalse = new Expression (parent, textFalse);
values.add (expFalse);
}
expFalse.calculate ();
if (!expFalse.isValueType (ValueType.VALUE))
valueType = expFalse.getValueType ();
else
value = expFalse.getValue ();
}
return this;
}
@Override
public String toString ()
{
return String.format ("[IF:%s, True:%s, False:%s]", condition, textTrue, textFalse);
}
}