117 lines
2.6 KiB
JavaScript
117 lines
2.6 KiB
JavaScript
|
|
const entity_chart = {
|
|
type: 'line',
|
|
data: {
|
|
labels: [],
|
|
datasets: [
|
|
{
|
|
label: 'Total',
|
|
data: [],
|
|
backgroundColor: [ 'rgba(0,0,0,0)' ],
|
|
borderColor: [
|
|
'#5BE595',
|
|
],
|
|
borderWidth: 2,
|
|
pointRadius: 0,
|
|
yAxisID: "count"
|
|
},
|
|
{
|
|
label: 'Matched',
|
|
data: [],
|
|
backgroundColor: [ 'rgba(0,0,0,0)' ],
|
|
borderColor: [
|
|
'#46D9E6',
|
|
],
|
|
borderWidth: 2,
|
|
pointRadius: 0,
|
|
yAxisID: "count"
|
|
}
|
|
]
|
|
},
|
|
options: {
|
|
title: {
|
|
display: false
|
|
},
|
|
responsive: true,
|
|
maintainAspectRatio: false,
|
|
lineTension: 1,
|
|
animation: {
|
|
duration: 0
|
|
},
|
|
legend: {
|
|
display: true
|
|
},
|
|
scales: {
|
|
yAxes: [{
|
|
id: 'count',
|
|
ticks: {
|
|
beginAtZero: true,
|
|
padding: 10,
|
|
callback: function(value, index, values) {
|
|
return value;
|
|
}
|
|
}
|
|
}],
|
|
xAxes: [{
|
|
ticks: {
|
|
minRotation: 0,
|
|
maxRotation: 0,
|
|
maxTicksLimit: 20
|
|
}
|
|
}]
|
|
}
|
|
}
|
|
}
|
|
|
|
Vue.component('entity-graph', {
|
|
props: ['tick', 'data'],
|
|
updated() {
|
|
this.updateChart();
|
|
},
|
|
data: function() {
|
|
return {
|
|
chart: undefined
|
|
}
|
|
},
|
|
methods: {
|
|
setValues() {
|
|
if (!this.data.world) {
|
|
return;
|
|
}
|
|
|
|
if (!this.chart) {
|
|
this.createChart();
|
|
}
|
|
|
|
var labels = [];
|
|
var length = this.data.world.history_1m.frame_time_total.avg.length;
|
|
for (var i = 0; i < length; i ++) {
|
|
labels.push((length - i) + "s");
|
|
}
|
|
|
|
entity_chart.data.labels = labels;
|
|
entity_chart.data.datasets[0].data = this.data.world.history_1m.entity_count.avg;
|
|
entity_chart.data.datasets[1].data = this.data.world.history_1m.matched_entity_count.avg;
|
|
},
|
|
createChart() {
|
|
const ctx = document.getElementById('entity-graph');
|
|
this.chart = new Chart(ctx, {
|
|
type: entity_chart.type,
|
|
data: entity_chart.data,
|
|
options: entity_chart.options
|
|
});
|
|
},
|
|
updateChart() {
|
|
if (!this.data.world) {
|
|
return;
|
|
}
|
|
this.setValues();
|
|
this.chart.update();
|
|
}
|
|
},
|
|
template: `
|
|
<div class="app-graph">
|
|
<canvas id="entity-graph" :data-fps="tick"></canvas>
|
|
</div>`
|
|
});
|