diff --git a/api/tools/log-parse-tool.js b/api/tools/log-parse-tool.js index 0da7a45..ec3b1c6 100644 --- a/api/tools/log-parse-tool.js +++ b/api/tools/log-parse-tool.js @@ -28,7 +28,7 @@ const parseWarLog = (lineArray, war) => { lineArray.some(line => { /** - * sanitize nameToLongError coming up in first line + * sanitize nameTooLongError coming up in first line */ if (line.includes(nameToLongError)) { line = line.substring(line.indexOf(nameToLongError) + nameToLongError.length); @@ -65,7 +65,7 @@ const parseWarLog = (lineArray, war) => { if (line.includes('Endbudget')) { stats.war['endBudgetBlufor'] = transformMoneyString(budg[11]); stats.war['endBudgetOpfor'] = transformMoneyString(budg[14]); - war.endDate = new Date(budg[0].substr(0, budg[0].length - 1).split('/').join('-') + 'T0' + budg[5] +'.000+02:00'); + war.endDate = new Date(budg[0].substr(0, budg[0].length - 1).split('/').join('-') + 'T0' + budg[5]); } else if (line.includes('Startbudget')) { stats.war.date = new Date(budg[0].substr(0, budg[0].length - 1).split('/').join('-') + 'T22:00:00.000+02:00'); stats.war['budgetBlufor'] = transformMoneyString(budg[11]); diff --git a/package.json b/package.json index 945d0b2..f4446c7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "opt-cc", - "version": "1.6.0", + "version": "1.6.1", "license": "MIT", "author": "Florian Hartwich ", "private": true, diff --git a/static/src/app/statistic/war-detail/war-detail.component.html b/static/src/app/statistic/war-detail/war-detail.component.html index 39bd71a..97bec74 100644 --- a/static/src/app/statistic/war-detail/war-detail.component.html +++ b/static/src/app/statistic/war-detail/war-detail.component.html @@ -101,7 +101,6 @@ [gradient]="gradient" [xAxis]="xAxis" [yAxis]="yAxis" - [curve]="monotoneYCurve" [legend]="legend" [legendTitle]="legendTitle" [showXAxisLabel]="showXAxisLabel" @@ -119,7 +118,6 @@ [gradient]="gradient" [xAxis]="xAxis" [yAxis]="yAxis" - [curve]="monotoneYCurve" [legend]="legend" [legendTitle]="legendTitle" [showXAxisLabel]="showXAxisLabel" @@ -137,7 +135,6 @@ [gradient]="gradient" [xAxis]="xAxis" [yAxis]="yAxis" - [curve]="monotoneYCurve" [legend]="legend" [legendTitle]="legendTitle" [showXAxisLabel]="showXAxisLabel" @@ -155,7 +152,6 @@ [gradient]="gradient" [xAxis]="xAxis" [yAxis]="yAxis" - [curve]="monotoneYCurve" [legend]="legend" [legendTitle]="legendTitle" [showXAxisLabel]="showXAxisLabel" @@ -173,7 +169,6 @@ [gradient]="gradient" [xAxis]="xAxis" [yAxis]="yAxis" - [curve]="monotoneYCurve" [legend]="legend" [legendTitle]="legendTitle" [showXAxisLabel]="showXAxisLabel" @@ -191,7 +186,6 @@ [gradient]="gradient" [xAxis]="xAxis" [yAxis]="yAxis" - [curve]="monotoneYCurve" [legend]="legend" [legendTitle]="legendTitle" [showXAxisLabel]="showXAxisLabel" @@ -209,7 +203,6 @@ [gradient]="gradient" [xAxis]="xAxis" [yAxis]="yAxis" - [curve]="monotoneYCurve" [legend]="legend" [legendTitle]="legendTitle" [showXAxisLabel]="showXAxisLabel" diff --git a/static/src/app/statistic/war-detail/war-detail.component.ts b/static/src/app/statistic/war-detail/war-detail.component.ts index 232dc44..749496d 100644 --- a/static/src/app/statistic/war-detail/war-detail.component.ts +++ b/static/src/app/statistic/war-detail/war-detail.component.ts @@ -66,7 +66,6 @@ export class WarDetailComponent { yAxisLabelStabilize = 'Stabilisiert'; yAxisLabelFlag = 'Flaggenbesitz'; - monotoneYCurve = d3.curveMonotoneY; stepCurve = d3.curveStepAfter; gradient = false; yAxis = true; @@ -187,12 +186,22 @@ export class WarDetailComponent { "name": startDateObj, "value": this.war.budgetOpfor }); - data.budget.forEach(budgetEntry => { - this.tmpBudgetData[budgetEntry.fraction === 'BLUFOR' ? 0 : 1].series.push({ + // This adds an entry for both fractions on every event + for (let i = 0; i < data.budget.length; i++) { + const budgetEntry = data.budget[i]; + const fractionChange = budgetEntry.fraction === 'BLUFOR' ? 0 : 1; + const fractionOld = budgetEntry.fraction !== 'BLUFOR' ? 0 : 1; + + this.tmpBudgetData[fractionChange].series.push({ "name": new Date(budgetEntry.time), "value": budgetEntry.newBudget }); - }); + + this.tmpBudgetData[fractionOld].series.push({ + "name": new Date(budgetEntry.time), + "value": this.tmpBudgetData[fractionOld].series[this.tmpBudgetData[fractionOld].series.length-1].value + }); + } // KILLS let killCountBlufor = 0; @@ -290,11 +299,11 @@ export class WarDetailComponent { if (reviveEntry.stabilized === false) { reviveCountBlufor++; } else { - reviveCountOpfor++; + stabilizeCountBlufor++; } } else { if (reviveEntry.stabilized === false) { - stabilizeCountBlufor++; + reviveCountOpfor++; } else { stabilizeCountOpfor++; } diff --git a/static/src/app/utils/chart-utils.ts b/static/src/app/utils/chart-utils.ts index 0802e2c..565bcec 100644 --- a/static/src/app/utils/chart-utils.ts +++ b/static/src/app/utils/chart-utils.ts @@ -2,9 +2,8 @@ export class ChartUtils { public static getShortDateString(date): string { const isoDate = date.slice(0, 10); - const dayDate = parseInt(isoDate.slice(8, 10)) + 1; + const dayDate = parseInt(isoDate.slice(8, 10)); return (dayDate < 10 ? "0" + dayDate : dayDate) + '.' + isoDate.slice(5, 7) + '.' + isoDate.slice(2, 4); } - }