Skip to content

Commit 3960c2f

Browse files
committed
Chart scrolling fixes
1 parent 5c0bc98 commit 3960c2f

File tree

3 files changed

+28
-7
lines changed

3 files changed

+28
-7
lines changed

MAVGCL/src/main/java/com/comino/flight/model/service/AnalysisModelService.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ public AnalysisDataModel getLast(float f) {
214214
}
215215

216216
public void setCurrent(int index) {
217-
if(modelList.size() > index-1) {
217+
if(modelList.size() > index) {
218218
if(index < 0)
219219
return;
220220
current.set(modelList.get(index));

MAVGCL/src/main/java/com/comino/flight/ui/widgets/charts/line/LineChartWidget.java

+13-4
Original file line numberDiff line numberDiff line change
@@ -557,11 +557,20 @@ private void initialize() {
557557

558558

559559
scroll.addListener((v, ov, nv) -> {
560-
current_x0_pt = dataService.calculateX0IndexByFactor(nv.floatValue());
561-
updateRequest();
562560

563-
if(!dataService.isCollecting() && !dataService.isReplaying() && !state.getConnectedProperty().get()) {
564-
dataService.setCurrent(dataService.calculateX1IndexByFactor(nv.floatValue())-1);
561+
int x1 = dataService.calculateIndexByFactor(nv.floatValue())+1;
562+
if(x1 < (timeFrame.get() * 1000 / dataService.getCollectorInterval_ms())) {
563+
current_x1_pt = x1;
564+
current_x0_pt = 0;
565+
updateGraph(true,x1);
566+
}
567+
else {
568+
current_x0_pt = dataService.calculateX0Index(x1);
569+
updateGraph(true,0);
570+
}
571+
572+
if(!dataService.isCollecting() && !dataService.isReplaying() && !state.getConnectedProperty().get() ) {
573+
dataService.setCurrent(x1);
565574
}
566575
});
567576

MAVGCL/src/main/java/com/comino/flight/ui/widgets/charts/xy/XYChartWidget.java

+14-2
Original file line numberDiff line numberDiff line change
@@ -596,8 +596,20 @@ public void handle(MouseEvent click) {
596596
corr_zero.setSelected(prefs.getBoolean(MAVPreferences.XYCHART_OFFSET, false));
597597

598598
scroll.addListener((v, ov, nv) -> {
599-
current_x0_pt = dataService.calculateX0IndexByFactor(nv.floatValue());
600-
updateRequest();
599+
int x1 = dataService.calculateIndexByFactor(nv.floatValue())+1;
600+
if(x1 < (timeFrame.get() * 1000 / dataService.getCollectorInterval_ms())) {
601+
current_x1_pt = x1;
602+
current_x0_pt = 0;
603+
updateGraph(true,x1);
604+
}
605+
else {
606+
current_x0_pt = dataService.calculateX0Index(x1);
607+
updateGraph(true,0);
608+
}
609+
610+
if(!dataService.isCollecting() && !dataService.isReplaying() && !state.getConnectedProperty().get() ) {
611+
dataService.setCurrent(x1);
612+
}
601613
});
602614

603615
replay.addListener((v, ov, nv) -> {

0 commit comments

Comments
 (0)