| | |
| | | |
| | | }}; |
| | | |
| | | // 正序 |
| | | public static final List<Integer> TRACK_POSITION_POSITIVE_SEQUENCE1 = new ArrayList<Integer>() {{ |
| | | add(101);add(102);add(104);add(122);add(105);add(107);add(118);add(108); |
| | | }}; |
| | | // 反序 |
| | | public static final List<Integer> TRACK_POSITION_REVERSE_SEQUENCE2 = new ArrayList<Integer>() {{ |
| | | add(117);add(116);add(171);add(1142);add(114);add(123);add(113);add(121);add(111);add(120);add(110); |
| | | }}; |
| | | |
| | | public static Integer getEndRoute(Integer endRoute,Integer rgvNo){ |
| | | if (rgvNo == 1){ |
| | | if (TRACK_POSITION_POSITIVE_SEQUENCE1.contains(endRoute)){ |
| | | return endRoute; |
| | | } else { |
| | | return 108; |
| | | } |
| | | } else if (rgvNo == 2){ |
| | | if (TRACK_POSITION_REVERSE_SEQUENCE2.contains(endRoute)){ |
| | | return endRoute; |
| | | } else { |
| | | return 110; |
| | | } |
| | | } |
| | | return endRoute; |
| | | } |
| | | |
| | | // 正序 |
| | | public static final List<Integer> TRACK_POSITION_POSITIVE_SEQUENCE = new ArrayList<Integer>() {{ |
| | | add(101);add(102);add(104);add(122);add(105);add(107);add(118);add(108);add(119);add(110);add(120);add(111);add(121);add(113);add(123);add(114);add(1142);add(171);add(116);add(117); |