File tree 3 files changed +28
-7
lines changed
MAVGCL/src/main/java/com/comino/flight
3 files changed +28
-7
lines changed Original file line number Diff line number Diff line change @@ -214,7 +214,7 @@ public AnalysisDataModel getLast(float f) {
214
214
}
215
215
216
216
public void setCurrent (int index ) {
217
- if (modelList .size () > index - 1 ) {
217
+ if (modelList .size () > index ) {
218
218
if (index < 0 )
219
219
return ;
220
220
current .set (modelList .get (index ));
Original file line number Diff line number Diff line change @@ -557,11 +557,20 @@ private void initialize() {
557
557
558
558
559
559
scroll .addListener ((v , ov , nv ) -> {
560
- current_x0_pt = dataService .calculateX0IndexByFactor (nv .floatValue ());
561
- updateRequest ();
562
560
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 );
565
574
}
566
575
});
567
576
Original file line number Diff line number Diff line change @@ -596,8 +596,20 @@ public void handle(MouseEvent click) {
596
596
corr_zero .setSelected (prefs .getBoolean (MAVPreferences .XYCHART_OFFSET , false ));
597
597
598
598
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
+ }
601
613
});
602
614
603
615
replay .addListener ((v , ov , nv ) -> {
You can’t perform that action at this time.
0 commit comments