62
62
import com .comino .flight .ui .widgets .charts .annotations .XYSigmaAnnotation ;
63
63
import com .comino .flight .ui .widgets .charts .annotations .XYSlamAnnotation ;
64
64
import com .comino .flight .ui .widgets .charts .annotations .XYTrajectoryAnnonation ;
65
+ import com .comino .flight .ui .widgets .charts .utils .XYCollections ;
65
66
import com .comino .flight .ui .widgets .charts .utils .XYDataPool ;
67
+ import com .comino .flight .ui .widgets .charts .utils .XYObservableListWrapper ;
66
68
import com .comino .flight .ui .widgets .charts .utils .XYStatistics ;
67
69
import com .comino .jfx .extensions .SectionLineChart ;
68
70
import com .comino .jfx .extensions .XYAnnotations .Layer ;
88
90
import javafx .scene .SnapshotParameters ;
89
91
import javafx .scene .chart .NumberAxis ;
90
92
import javafx .scene .chart .XYChart ;
93
+ import javafx .scene .chart .XYChart .Data ;
91
94
import javafx .scene .control .Button ;
92
95
import javafx .scene .control .CheckBox ;
93
96
import javafx .scene .control .ChoiceBox ;
@@ -613,15 +616,32 @@ public void handle(MouseEvent click) {
613
616
});
614
617
615
618
replay .addListener ((v , ov , nv ) -> {
619
+ // if(isDisabled())
620
+ // return;
621
+ // refreshRequest = true;
622
+ // if(nv.intValue()<=5) {
623
+ // current_x0_pt = 0;
624
+ // Platform.runLater(() -> updateGraph(true, 1) );
625
+ // } else
626
+ // Platform.runLater(() -> updateGraph(false,nv.intValue()) );
627
+ // dataService.setCurrent(nv.intValue());
616
628
if (isDisabled ())
617
629
return ;
618
- refreshRequest = true ;
619
- if (nv .intValue ()<=5 ) {
620
- current_x0_pt = 0 ;
621
- Platform .runLater (() -> updateGraph (true , 1 ) );
622
- } else
623
- Platform .runLater (() -> updateGraph (false ,nv .intValue ()) );
624
- dataService .setCurrent (nv .intValue ());
630
+
631
+ if (nv .intValue ()<0 ) {
632
+ current_x0_pt = dataService .calculateX0Index (-nv .intValue ());
633
+ if (current_x0_pt >0 )
634
+ current_x_pt = dataService .calculateX1Index (-nv .intValue ());
635
+ else {
636
+ current_x_pt = -nv .intValue ();
637
+ }
638
+
639
+ dataService .setCurrent (-nv .intValue ());
640
+ updateGraph (true , -nv .intValue ());
641
+ } else {
642
+ updateGraph (false , nv .intValue ());
643
+ dataService .setCurrent (nv .intValue ());
644
+ }
625
645
});
626
646
627
647
annotation .selectedProperty ().addListener ((v , ov , nv ) -> {
@@ -904,6 +924,9 @@ private void updateGraph(boolean refresh, int max_x0) {
904
924
max_x = mList .size ();
905
925
906
926
slot_tms = System .currentTimeMillis ();
927
+
928
+ ((XYObservableListWrapper <?>)series1 .getData ()).begin ();
929
+ ((XYObservableListWrapper <?>)series2 .getData ()).begin ();
907
930
908
931
while (current_x_pt <max_x && ((System .currentTimeMillis ()-slot_tms ) < REFRESH_SLOT || refreshRequest )) {
909
932
//System.out.println(current_x_pt+"<"+max_x+":"+resolution_ms);
@@ -950,6 +973,9 @@ private void updateGraph(boolean refresh, int max_x0) {
950
973
}
951
974
current_x_pt ++;
952
975
}
976
+
977
+ ((XYObservableListWrapper <?>)series1 .getData ()).end ();
978
+ ((XYObservableListWrapper <?>)series2 .getData ()).end ();
953
979
954
980
sigma1 .setPosition (p1 [0 ], p1 [1 ],s1 .stddev_xy );
955
981
sigma2 .setPosition (p2 [0 ], p2 [1 ],s2 .stddev_xy );
@@ -960,10 +986,10 @@ private void updateGraph(boolean refresh, int max_x0) {
960
986
961
987
962
988
public XYChartWidget setup (IMAVController control ) {
963
- series1 = new XYChart .Series <Number ,Number >();
989
+ series1 = new XYChart .Series <Number ,Number >(XYCollections .< Data < Number , Number >> observableArrayList () );
964
990
965
991
xychart .getData ().add (series1 );
966
- series2 = new XYChart .Series <Number ,Number >();
992
+ series2 = new XYChart .Series <Number ,Number >(XYCollections .< Data < Number , Number >> observableArrayList () );
967
993
xychart .getData ().add (series2 );
968
994
969
995
this .control = control ;
0 commit comments