Compare commits

..

No commits in common. "522899eb1eba99c6f41dcbbb7652ef295b74c0e8" and "d6c60bc31efbf41da90b925bfe01192087af1012" have entirely different histories.

8 changed files with 28 additions and 45 deletions

View File

@ -2,8 +2,7 @@
// :base gibt die Start-Punkte an und überschreibt die maximal Punkt, wenn ungleich 0 // :base gibt die Start-Punkte an und überschreibt die maximal Punkt, wenn ungleich 0
:base 0.0 :base 0.0
// Count of decimal places
:decimals 1
// Design für Punkte. Pts ist dabei für die Punkte, PtsText für den Text. die Punkte zählen als Teil des Textes (<li style=PtsText><span style=Pts>'Punkte'</span>Text</li>) // Design für Punkte. Pts ist dabei für die Punkte, PtsText für den Text. die Punkte zählen als Teil des Textes (<li style=PtsText><span style=Pts>'Punkte'</span>Text</li>)
// full -> best-Case // full -> best-Case
:fullPts color: #0f0; font-weight: bold; :fullPts color: #0f0; font-weight: bold;

View File

@ -16,8 +16,6 @@ public class HtmlContext
public String cbmsFail = ""; public String cbmsFail = "";
/** Style for checked Boxes in CheckboxMultiSelect */ /** Style for checked Boxes in CheckboxMultiSelect */
public String cbmsOk = ""; public String cbmsOk = "";
/** Number of Decimals on Points */
public int decimals = 1;
/** Style for the Points, when the best case Points have been achieved */ /** Style for the Points, when the best case Points have been achieved */
public String fullPtsStyle = ""; public String fullPtsStyle = "";
/** Style for the Text, when the best case Points have been achieved */ /** Style for the Text, when the best case Points have been achieved */
@ -26,7 +24,6 @@ public class HtmlContext
public MathContext mc = MathContext.DECIMAL32; public MathContext mc = MathContext.DECIMAL32;
/** Style for the Points, when the worst case Points have been achieved */ /** Style for the Points, when the worst case Points have been achieved */
public String noPtsStyle = ""; public String noPtsStyle = "";
/** Style for the Text, when the best case Points have been achieved */ /** Style for the Text, when the best case Points have been achieved */
public String noPtsTextStyle = ""; public String noPtsTextStyle = "";

View File

@ -81,7 +81,7 @@ public class KorrekturHelper
kh.frm.setVisible(true); kh.frm.setVisible(true);
} }
private static LinkedHashSet<Node> parseNodes(String[] lines, int[] lineMap, HtmlContext hc) throws IOException private static LinkedHashSet<Node> parseNodes(String[] lines, int[] lineMap) throws IOException
{ {
var roots = new LinkedHashSet<Node>(); var roots = new LinkedHashSet<Node>();
var path = new LinkedList<Node>(); var path = new LinkedList<Node>();
@ -97,10 +97,10 @@ public class KorrekturHelper
yield new HeaderNode(line.substring(path.size())); yield new HeaderNode(line.substring(path.size()));
case "[]": // [] -0.5 Punktabzug case "[]": // [] -0.5 Punktabzug
yield new CheckboxNode(line.substring(path.size()), hc); yield new CheckboxNode(line.substring(path.size()));
case "\\": // \ 1.0 Element existiert | Element existiert nicht case "\\": // \ 1.0 Element existiert | Element existiert nicht
yield new EitherNode(line.substring(path.size()), hc); yield new EitherNode(line.substring(path.size()));
case "\\\\": // \\ MultiSelects case "\\\\": // \\ MultiSelects
if (lines.length <= li) if (lines.length <= li)
@ -118,12 +118,12 @@ public class KorrekturHelper
if (lines[li + 1].trim().startsWith("[]")) if (lines[li + 1].trim().startsWith("[]"))
{ {
li = i - 1; li = i - 1;
yield new CheckboxMultiSelectNode(sb.toString(), hc); yield new CheckboxMultiSelectNode(sb.toString());
} }
else else
{ {
li = i - 1; li = i - 1;
yield new RadioMultiSelectNode(sb.toString(), hc); yield new RadioMultiSelectNode(sb.toString());
} }
case "": case "":
@ -200,10 +200,6 @@ public class KorrekturHelper
hc.basePoints = new BigDecimal(split[1]); hc.basePoints = new BigDecimal(split[1]);
break; break;
case ":decimals":
hc.decimals = Integer.parseInt(split[1]);
break;
case ":fullPts": case ":fullPts":
hc.fullPtsStyle = split.length > 1 ? split[1] : ""; hc.fullPtsStyle = split.length > 1 ? split[1] : "";
break; break;
@ -243,7 +239,7 @@ public class KorrekturHelper
lineMap.add(lineNumber); lineMap.add(lineNumber);
} }
} }
return parseNodes(nodeLines.toArray(String[]::new), lineMap.stream().mapToInt(i -> i).toArray(), hc); return parseNodes(nodeLines.toArray(String[]::new), lineMap.stream().mapToInt(i -> i).toArray());
} }
private static BigDecimal recursiveAchievedPoints(LinkedHashSet<Node> nodes, MathContext mc) private static BigDecimal recursiveAchievedPoints(LinkedHashSet<Node> nodes, MathContext mc)

View File

@ -11,13 +11,12 @@ public class Utils
/** /**
* formats Points for Users * formats Points for Users
* *
* @param bd the {@link BigDecimal} to format * @param bd the {@link BigDecimal} to format
* @param decimals decimals
* @return the formatted String (1 decimal place) * @return the formatted String (1 decimal place)
*/ */
public static String formatPoints(BigDecimal bd, int decimals) public static String formatPoints(BigDecimal bd)
{ {
return String.format("%." + decimals + "f", bd.doubleValue()); return String.format("%.1f", bd.doubleValue());
} }
/** /**

View File

@ -25,9 +25,8 @@ public class CheckboxMultiSelectNode extends AbstractNode
/** /**
* @param config the config string to parse * @param config the config string to parse
* @param hc {@link HtmlContext}
*/ */
public CheckboxMultiSelectNode(String config, HtmlContext hc) public CheckboxMultiSelectNode(String config)
{ {
var lines = config.split("\n"); var lines = config.split("\n");
if (lines.length <= 1) if (lines.length <= 1)
@ -59,7 +58,7 @@ public class CheckboxMultiSelectNode extends AbstractNode
{ throw new IllegalArgumentException("Expected []"); } { throw new IllegalArgumentException("Expected []"); }
points[i - 1] = new BigDecimal(s[1]); points[i - 1] = new BigDecimal(s[1]);
text[i - 1] = s[2]; text[i - 1] = s[2];
rbs[i - 1] = new JCheckBox(Utils.formatPoints(points[i - 1], hc.decimals) + "P - " + text[i - 1]); rbs[i - 1] = new JCheckBox(Utils.formatPoints(points[i - 1]) + "P - " + text[i - 1]);
rbs[i - 1].addActionListener(cl); rbs[i - 1].addActionListener(cl);
content.add(rbs[i - 1]); content.add(rbs[i - 1]);
} }
@ -125,8 +124,7 @@ public class CheckboxMultiSelectNode extends AbstractNode
var sb = new StringBuilder(); var sb = new StringBuilder();
sb.append("<li").append(hc.styleText(achievedPoints(hc.mc), maxPoints)).append(">"); sb.append("<li").append(hc.styleText(achievedPoints(hc.mc), maxPoints)).append(">");
sb.append("<span").append(hc.stylePts(achievedPoints(hc.mc), maxPoints)).append(">"); sb.append("<span").append(hc.stylePts(achievedPoints(hc.mc), maxPoints)).append(">");
sb.append(Utils.formatPoints(achievedPoints(hc.mc), hc.decimals)).append(" / ") sb.append(Utils.formatPoints(achievedPoints(hc.mc))).append(" / ").append(Utils.formatPoints(maxPoints));
.append(Utils.formatPoints(maxPoints, hc.decimals));
sb.append("P</span> "); sb.append("P</span> ");
sb.append(baseMsg); sb.append(baseMsg);
sb.append("\n\t<ul style=\"list-style-type: none;margin-top: 0px;margin-bottom:0px\">\n"); sb.append("\n\t<ul style=\"list-style-type: none;margin-top: 0px;margin-bottom:0px\">\n");
@ -134,7 +132,7 @@ public class CheckboxMultiSelectNode extends AbstractNode
{ {
sb.append("\t\t<li").append(hc.cbx(rbs[i])).append(">"); sb.append("\t\t<li").append(hc.cbx(rbs[i])).append(">");
sb.append(rbs[i].isSelected() ? "&checkmark; " : "&cross; "); sb.append(rbs[i].isSelected() ? "&checkmark; " : "&cross; ");
sb.append("(").append(Utils.formatPoints(points[i], hc.decimals)).append("P) "); sb.append("(").append(Utils.formatPoints(points[i])).append("P) ");
sb.append(text[i]); sb.append(text[i]);
sb.append("</li>\n"); sb.append("</li>\n");
} }

View File

@ -21,9 +21,8 @@ public class CheckboxNode extends AbstractNode
/** /**
* @param configString config String to parse * @param configString config String to parse
* @param hc {@link HtmlContext}
*/ */
public CheckboxNode(String configString, HtmlContext hc) public CheckboxNode(String configString)
{ {
if (configString.contains("\n")) if (configString.contains("\n"))
{ throw new IllegalArgumentException("Bad config! Found line feed!"); } { throw new IllegalArgumentException("Bad config! Found line feed!"); }
@ -34,7 +33,7 @@ public class CheckboxNode extends AbstractNode
{ throw new IllegalArgumentException("Not a [] Node"); } { throw new IllegalArgumentException("Not a [] Node"); }
points = new BigDecimal(spl[1]); points = new BigDecimal(spl[1]);
message = spl[2]; message = spl[2];
cbx = new JCheckBox(Utils.formatPoints(points, hc.decimals) + "P " + message); cbx = new JCheckBox(Utils.formatPoints(points) + "P " + message);
cbx.addActionListener(e -> onChange(this)); cbx.addActionListener(e -> onChange(this));
content.add(cbx); content.add(cbx);
} }
@ -71,7 +70,7 @@ public class CheckboxNode extends AbstractNode
public String toResultHtml(HtmlContext hc) public String toResultHtml(HtmlContext hc)
{ {
return "<li" + hc.styleText(points.signum()) + "><span" + hc.stylePts(points.signum()) + ">" return "<li" + hc.styleText(points.signum()) + "><span" + hc.stylePts(points.signum()) + ">"
+ Utils.formatPoints(achievedPoints(hc.mc), hc.decimals) + "P</span> " + message + "</li>"; + Utils.formatPoints(achievedPoints(hc.mc)) + "P</span> " + message + "</li>";
} }
} }

View File

@ -25,9 +25,8 @@ public class EitherNode extends AbstractNode
/** /**
* @param config the config String * @param config the config String
* @param hc {@link HtmlContext}
*/ */
public EitherNode(String config, HtmlContext hc) public EitherNode(String config)
{ {
if (config.contains("\n")) if (config.contains("\n"))
{ throw new IllegalArgumentException("Bad config! Found line feed!"); } { throw new IllegalArgumentException("Bad config! Found line feed!"); }
@ -43,15 +42,14 @@ public class EitherNode extends AbstractNode
messageFail = spl.length == 3 ? null : spl.length == 4 ? spl[3].substring(1).trim() : spl[4]; messageFail = spl.length == 3 ? null : spl.length == 4 ? spl[3].substring(1).trim() : spl[4];
if (points.signum() > 0) if (points.signum() > 0)
{ {
btn_ok = new JRadioButton(Utils.formatPoints(points, hc.decimals) + "P " + messageOK); btn_ok = new JRadioButton(Utils.formatPoints(points) + "P " + messageOK);
btn_fail = new JRadioButton( btn_fail = new JRadioButton(
Utils.formatPoints(BigDecimal.ZERO, hc.decimals) + "P " + (messageFail == null ? messageOK : messageFail)); Utils.ptsToString(BigDecimal.ZERO) + "P " + (messageFail == null ? messageOK : messageFail));
} }
else else
{ {
btn_ok = new JRadioButton(Utils.formatPoints(BigDecimal.ZERO, hc.decimals) + "P " + messageOK); btn_ok = new JRadioButton(Utils.formatPoints(BigDecimal.ZERO) + "P " + messageOK);
btn_fail = new JRadioButton( btn_fail = new JRadioButton(Utils.formatPoints(points) + "P " + (messageFail == null ? messageOK : messageFail));
Utils.formatPoints(points, hc.decimals) + "P " + (messageFail == null ? messageOK : messageFail));
} }
btn_ok.addActionListener(e -> onChange(this)); btn_ok.addActionListener(e -> onChange(this));
btn_fail.addActionListener(e -> onChange(this)); btn_fail.addActionListener(e -> onChange(this));
@ -129,8 +127,8 @@ public class EitherNode extends AbstractNode
} }
return "<li" + hc.styleText(signum) + ">" + // return "<li" + hc.styleText(signum) + ">" + //
"<span" + hc.stylePts(signum) + ">" + // "<span" + hc.stylePts(signum) + ">" + //
Utils.formatPoints(achievedPoints(hc.mc), hc.decimals) + // Utils.formatPoints(achievedPoints(hc.mc)) + //
(points.signum() < 0 ? "" : " / " + Utils.formatPoints(maximumPoints(), hc.decimals)) + "P" + // (points.signum() < 0 ? "" : " / " + Utils.formatPoints(maximumPoints())) + "P" + //
"</span> " + // "</span> " + //
(points.signum() < 0 ? btn_fail.isSelected() ? messageOK : messageFail (points.signum() < 0 ? btn_fail.isSelected() ? messageOK : messageFail
: btn_fail.isSelected() ? messageFail : messageOK) : btn_fail.isSelected() ? messageFail : messageOK)

View File

@ -28,9 +28,8 @@ public class RadioMultiSelectNode extends AbstractNode
/** /**
* @param config the config string to parse * @param config the config string to parse
* @param hc htmlContext
*/ */
public RadioMultiSelectNode(String config, HtmlContext hc) public RadioMultiSelectNode(String config)
{ {
var lines = config.split("\n"); var lines = config.split("\n");
if (lines.length <= 1) if (lines.length <= 1)
@ -61,7 +60,7 @@ public class RadioMultiSelectNode extends AbstractNode
{ throw new IllegalArgumentException("Expected exactly 1 \\t"); } { throw new IllegalArgumentException("Expected exactly 1 \\t"); }
points[i - 1] = new BigDecimal(s[0]); points[i - 1] = new BigDecimal(s[0]);
text[i - 1] = s[1]; text[i - 1] = s[1];
rbs[i - 1] = new JRadioButton(Utils.formatPoints(points[i - 1], hc.decimals) + "P - " + text[i - 1]); rbs[i - 1] = new JRadioButton(Utils.formatPoints(points[i - 1]) + "P - " + text[i - 1]);
rbs[i - 1].addActionListener(cl); rbs[i - 1].addActionListener(cl);
content.add(rbs[i - 1]); content.add(rbs[i - 1]);
bg.add(rbs[i - 1]); bg.add(rbs[i - 1]);
@ -132,14 +131,12 @@ public class RadioMultiSelectNode extends AbstractNode
{ {
return "<li" + hc.styleText(BigDecimal.ZERO, maxPoints) + ">" + // return "<li" + hc.styleText(BigDecimal.ZERO, maxPoints) + ">" + //
"<span" + hc.stylePts(achievedPoints(hc.mc), maxPoints) + ">" + // "<span" + hc.stylePts(achievedPoints(hc.mc), maxPoints) + ">" + //
Utils.formatPoints(BigDecimal.ZERO, hc.decimals) + " / " + Utils.formatPoints(maxPoints, hc.decimals) Utils.formatPoints(BigDecimal.ZERO) + " / " + Utils.formatPoints(maxPoints) + "P</span> " + //
+ "P</span> " + //
(baseMsg == null ? "" : baseMsg) + "</li>"; (baseMsg == null ? "" : baseMsg) + "</li>";
} }
return "<li" + hc.styleText(achievedPoints(hc.mc), maxPoints) + ">" + // return "<li" + hc.styleText(achievedPoints(hc.mc), maxPoints) + ">" + //
"<span" + hc.stylePts(achievedPoints(hc.mc), maxPoints) + "> " + // "<span" + hc.stylePts(achievedPoints(hc.mc), maxPoints) + "> " + //
Utils.formatPoints(achievedPoints(hc.mc), hc.decimals) + " / " + Utils.formatPoints(maxPoints, hc.decimals) Utils.formatPoints(achievedPoints(hc.mc)) + " / " + Utils.formatPoints(maxPoints) + "P</span> " + //
+ "P</span> " + //
(baseMsg == null ? text[getSelected()] : baseMsg + " (" + text[getSelected()] + ")") + "</li>"; (baseMsg == null ? text[getSelected()] : baseMsg + " (" + text[getSelected()] + ")") + "</li>";
} }