forked from organicmaps/organicmaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmessage_subclasses.hpp
1424 lines (1124 loc) · 37.9 KB
/
message_subclasses.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
#include "drape_frontend/circles_pack_shape.hpp"
#include "drape_frontend/color_constants.hpp"
#include "drape_frontend/custom_features_context.hpp"
#include "drape_frontend/drape_api.hpp"
#include "drape_frontend/drape_api_builder.hpp"
#include "drape_frontend/gps_track_point.hpp"
#include "drape_frontend/gui/layer_render.hpp"
#include "drape_frontend/gui/skin.hpp"
#include "drape_frontend/message.hpp"
#include "drape_frontend/my_position.hpp"
#include "drape_frontend/overlay_batcher.hpp"
#include "drape_frontend/postprocess_renderer.hpp"
#include "drape_frontend/render_node.hpp"
#include "drape_frontend/render_state_extension.hpp"
#include "drape_frontend/route_builder.hpp"
#include "drape_frontend/selection_shape.hpp"
#include "drape_frontend/tile_utils.hpp"
#include "drape_frontend/traffic_generator.hpp"
#include "drape_frontend/transit_scheme_builder.hpp"
#include "drape_frontend/user_event_stream.hpp"
#include "drape_frontend/user_mark_shapes.hpp"
#include "drape_frontend/user_marks_provider.hpp"
#include "drape/pointers.hpp"
#include "drape/render_bucket.hpp"
#include "drape/viewport.hpp"
#include "geometry/polyline2d.hpp"
#include "geometry/rect2d.hpp"
#include "geometry/screenbase.hpp"
#include "geometry/triangle2d.hpp"
#include "platform/location.hpp"
#include <condition_variable>
#include <functional>
#include <map>
#include <mutex>
#include <utility>
#include <vector>
namespace df
{
class BaseBlockingMessage : public Message
{
public:
struct Blocker
{
void Wait()
{
std::unique_lock<std::mutex> lock(m_lock);
m_signal.wait(lock, [this]{return !m_blocked;} );
}
private:
friend class BaseBlockingMessage;
void Signal()
{
std::lock_guard<std::mutex> lock(m_lock);
m_blocked = false;
m_signal.notify_one();
}
private:
std::mutex m_lock;
std::condition_variable m_signal;
bool m_blocked = true;
};
explicit BaseBlockingMessage(Blocker & blocker)
: m_blocker(blocker)
{}
~BaseBlockingMessage() override
{
m_blocker.Signal();
}
private:
Blocker & m_blocker;
};
class BaseTileMessage : public Message
{
public:
explicit BaseTileMessage(TileKey const & key)
: m_tileKey(key)
{}
TileKey const & GetKey() const { return m_tileKey; }
private:
TileKey m_tileKey;
};
class FinishReadingMessage : public Message
{
public:
Type GetType() const override { return Type::FinishReading; }
};
class FinishTileReadMessage : public Message
{
public:
template<typename T> FinishTileReadMessage(T && tiles, bool forceUpdateUserMarks)
: m_tiles(std::forward<T>(tiles))
, m_forceUpdateUserMarks(forceUpdateUserMarks)
{}
Type GetType() const override { return Type::FinishTileRead; }
TTilesCollection const & GetTiles() const { return m_tiles; }
TTilesCollection && MoveTiles() { return std::move(m_tiles); }
bool NeedForceUpdateUserMarks() const { return m_forceUpdateUserMarks; }
private:
TTilesCollection m_tiles;
bool m_forceUpdateUserMarks;
};
class FlushRenderBucketMessage : public BaseTileMessage
{
public:
FlushRenderBucketMessage(TileKey const & key, dp::RenderState const & state,
drape_ptr<dp::RenderBucket> && buffer)
: BaseTileMessage(key)
, m_state(state)
, m_buffer(std::move(buffer))
{}
Type GetType() const override { return Type::FlushTile; }
bool IsGraphicsContextDependent() const override { return true; }
bool ContainsRenderState() const override { return true; }
dp::RenderState const & GetState() const { return m_state; }
drape_ptr<dp::RenderBucket> && AcceptBuffer() { return std::move(m_buffer); }
private:
dp::RenderState m_state;
drape_ptr<dp::RenderBucket> m_buffer;
};
template <typename RenderDataType, Message::Type MessageType>
class FlushRenderDataMessage : public Message
{
public:
explicit FlushRenderDataMessage(RenderDataType && data) : m_data(std::move(data)) {}
Type GetType() const override { return MessageType; }
bool IsGraphicsContextDependent() const override { return true; }
bool ContainsRenderState() const override { return true; }
RenderDataType && AcceptRenderData() { return std::move(m_data); }
private:
RenderDataType m_data;
};
using FlushOverlaysMessage = FlushRenderDataMessage<TOverlaysRenderData,
Message::Type::FlushOverlays>;
class InvalidateRectMessage : public Message
{
public:
explicit InvalidateRectMessage(m2::RectD const & rect)
: m_rect(rect) {}
Type GetType() const override { return Type::InvalidateRect; }
m2::RectD const & GetRect() const { return m_rect; }
private:
m2::RectD m_rect;
};
class UpdateReadManagerMessage : public Message
{
public:
Type GetType() const override { return Type::UpdateReadManager; }
};
class InvalidateReadManagerRectMessage : public BaseBlockingMessage
{
public:
InvalidateReadManagerRectMessage(Blocker & blocker, TTilesCollection const & tiles)
: BaseBlockingMessage(blocker)
, m_tiles(tiles)
, m_needRestartReading(false)
{}
explicit InvalidateReadManagerRectMessage(Blocker & blocker)
: BaseBlockingMessage(blocker)
, m_needRestartReading(true)
{}
Type GetType() const override { return Type::InvalidateReadManagerRect; }
TTilesCollection const & GetTilesForInvalidate() const { return m_tiles; }
bool NeedRestartReading() const { return m_needRestartReading; }
private:
TTilesCollection m_tiles;
bool m_needRestartReading;
};
class ClearUserMarkGroupMessage : public Message
{
public:
explicit ClearUserMarkGroupMessage(kml::MarkGroupId groupId)
: m_groupId(groupId)
{}
Type GetType() const override { return Type::ClearUserMarkGroup; }
kml::MarkGroupId GetGroupId() const { return m_groupId; }
private:
kml::MarkGroupId m_groupId;
};
class ChangeUserMarkGroupVisibilityMessage : public Message
{
public:
ChangeUserMarkGroupVisibilityMessage(kml::MarkGroupId groupId, bool isVisible)
: m_groupId(groupId)
, m_isVisible(isVisible) {}
Type GetType() const override { return Type::ChangeUserMarkGroupVisibility; }
kml::MarkGroupId GetGroupId() const { return m_groupId; }
bool IsVisible() const { return m_isVisible; }
private:
kml::MarkGroupId m_groupId;
bool m_isVisible;
};
class UpdateUserMarksMessage : public Message
{
public:
UpdateUserMarksMessage(drape_ptr<IDCollections> && justCreatedIds,
drape_ptr<IDCollections> && removedIds,
drape_ptr<UserMarksRenderCollection> && marksRenderParams,
drape_ptr<UserLinesRenderCollection> && linesRenderParams)
: m_justCreatedIds(std::move(justCreatedIds))
, m_removedIds(std::move(removedIds))
, m_marksRenderParams(std::move(marksRenderParams))
, m_linesRenderParams(std::move(linesRenderParams))
{}
Type GetType() const override { return Type::UpdateUserMarks; }
drape_ptr<UserMarksRenderCollection> AcceptMarkRenderParams() { return std::move(m_marksRenderParams); }
drape_ptr<UserLinesRenderCollection> AcceptLineRenderParams() { return std::move(m_linesRenderParams); }
drape_ptr<IDCollections> AcceptRemovedIds() { return std::move(m_removedIds); }
drape_ptr<IDCollections> AcceptJustCreatedIds() { return std::move(m_justCreatedIds); }
private:
drape_ptr<IDCollections> m_justCreatedIds;
drape_ptr<IDCollections> m_removedIds;
drape_ptr<UserMarksRenderCollection> m_marksRenderParams;
drape_ptr<UserLinesRenderCollection> m_linesRenderParams;
};
class UpdateUserMarkGroupMessage : public Message
{
public:
UpdateUserMarkGroupMessage(kml::MarkGroupId groupId,
drape_ptr<IDCollections> && ids)
: m_groupId(groupId)
, m_ids(std::move(ids))
{}
Type GetType() const override { return Type::UpdateUserMarkGroup; }
kml::MarkGroupId GetGroupId() const { return m_groupId; }
drape_ptr<IDCollections> AcceptIds() { return std::move(m_ids); }
private:
kml::MarkGroupId m_groupId;
drape_ptr<IDCollections> m_ids;
};
using FlushUserMarksMessage = FlushRenderDataMessage<TUserMarksRenderData,
Message::Type::FlushUserMarks>;
class InvalidateUserMarksMessage : public Message
{
public:
InvalidateUserMarksMessage() = default;
Type GetType() const override { return Type::InvalidateUserMarks; }
};
class GuiLayerRecachedMessage : public Message
{
public:
GuiLayerRecachedMessage(drape_ptr<gui::LayerRenderer> && renderer, bool needResetOldGui)
: m_renderer(std::move(renderer))
, m_needResetOldGui(needResetOldGui)
{}
Type GetType() const override { return Type::GuiLayerRecached; }
bool IsGraphicsContextDependent() const override { return true; }
bool ContainsRenderState() const override { return true; }
drape_ptr<gui::LayerRenderer> && AcceptRenderer() { return std::move(m_renderer); }
bool NeedResetOldGui() const { return m_needResetOldGui; }
private:
drape_ptr<gui::LayerRenderer> m_renderer;
bool const m_needResetOldGui;
};
class GuiRecacheMessage : public Message
{
public:
GuiRecacheMessage(gui::TWidgetsInitInfo const & initInfo, bool needResetOldGui)
: m_initInfo(initInfo)
, m_needResetOldGui(needResetOldGui)
{}
Type GetType() const override { return Type::GuiRecache;}
bool IsGraphicsContextDependent() const override { return true; }
gui::TWidgetsInitInfo const & GetInitInfo() const { return m_initInfo; }
bool NeedResetOldGui() const { return m_needResetOldGui; }
private:
gui::TWidgetsInitInfo m_initInfo;
bool const m_needResetOldGui;
};
class MapShapesRecacheMessage : public Message
{
public:
MapShapesRecacheMessage() = default;
Type GetType() const override { return Type::MapShapesRecache; }
bool IsGraphicsContextDependent() const override { return true; }
};
class GuiLayerLayoutMessage : public Message
{
public:
explicit GuiLayerLayoutMessage(gui::TWidgetsLayoutInfo const & info)
: m_layoutInfo(info)
{}
Type GetType() const override { return Type::GuiLayerLayout; }
bool IsGraphicsContextDependent() const override { return true; }
gui::TWidgetsLayoutInfo const & GetLayoutInfo() const { return m_layoutInfo; }
gui::TWidgetsLayoutInfo AcceptLayoutInfo() { return std::move(m_layoutInfo); }
private:
gui::TWidgetsLayoutInfo m_layoutInfo;
};
class UpdateMyPositionRoutingOffsetMessage: public Message
{
public:
UpdateMyPositionRoutingOffsetMessage(bool useDefault, int offsetY)
: m_useDefault(useDefault)
, m_offsetY(offsetY)
{}
Type GetType() const override { return Type::UpdateMyPositionRoutingOffset; }
bool UseDefault() const { return m_useDefault; }
int GetOffsetY() const { return m_offsetY; }
private:
bool m_useDefault;
int m_offsetY;
};
class ShowChoosePositionMarkMessage : public Message
{
public:
ShowChoosePositionMarkMessage() = default;
Type GetType() const override { return Type::ShowChoosePositionMark; }
};
class SetKineticScrollEnabledMessage : public Message
{
public:
explicit SetKineticScrollEnabledMessage(bool enabled)
: m_enabled(enabled)
{}
Type GetType() const override { return Type::SetKineticScrollEnabled; }
bool IsEnabled() const { return m_enabled; }
private:
bool m_enabled;
};
class SetAddNewPlaceModeMessage : public Message
{
public:
SetAddNewPlaceModeMessage(bool enable, std::vector<m2::TriangleD> && boundArea,
bool enableKineticScroll, bool hasPosition, m2::PointD const & position)
: m_enable(enable)
, m_boundArea(std::move(boundArea))
, m_enableKineticScroll(enableKineticScroll)
, m_hasPosition(hasPosition)
, m_position(position)
{}
Type GetType() const override { return Type::SetAddNewPlaceMode; }
std::vector<m2::TriangleD> && AcceptBoundArea() { return std::move(m_boundArea); }
bool IsEnabled() const { return m_enable; }
bool IsKineticScrollEnabled() const { return m_enableKineticScroll; }
bool HasPosition() const { return m_hasPosition; }
m2::PointD const & GetPosition() const { return m_position; }
private:
bool m_enable;
std::vector<m2::TriangleD> m_boundArea;
bool m_enableKineticScroll;
bool m_hasPosition;
m2::PointD m_position;
};
class BlockTapEventsMessage : public Message
{
public:
explicit BlockTapEventsMessage(bool block)
: m_needBlock(block)
{}
Type GetType() const override { return Type::BlockTapEvents; }
bool NeedBlock() const { return m_needBlock; }
private:
bool const m_needBlock;
};
class MapShapesMessage : public Message
{
public:
MapShapesMessage(drape_ptr<MyPosition> && shape, drape_ptr<SelectionShape> && selection)
: m_shape(std::move(shape))
, m_selection(std::move(selection))
{}
Type GetType() const override { return Type::MapShapes; }
bool ContainsRenderState() const override { return true; }
bool IsGraphicsContextDependent() const override { return true; }
drape_ptr<MyPosition> && AcceptShape() { return std::move(m_shape); }
drape_ptr<SelectionShape> AcceptSelection() { return std::move(m_selection); }
private:
drape_ptr<MyPosition> m_shape;
drape_ptr<SelectionShape> m_selection;
};
class ChangeMyPositionModeMessage : public Message
{
public:
enum EChangeType
{
SwitchNextMode,
LoseLocation,
StopFollowing
};
explicit ChangeMyPositionModeMessage(EChangeType changeType)
: m_changeType(changeType)
{}
EChangeType GetChangeType() const { return m_changeType; }
Type GetType() const override { return Type::ChangeMyPositionMode; }
private:
EChangeType const m_changeType;
};
class CompassInfoMessage : public Message
{
public:
explicit CompassInfoMessage(location::CompassInfo const & info)
: m_info(info)
{}
Type GetType() const override { return Type::CompassInfo; }
location::CompassInfo const & GetInfo() const { return m_info; }
private:
location::CompassInfo const m_info;
};
class GpsInfoMessage : public Message
{
public:
GpsInfoMessage(location::GpsInfo const & info, bool isNavigable,
location::RouteMatchingInfo const & routeInfo)
: m_info(info)
, m_isNavigable(isNavigable)
, m_routeInfo(routeInfo)
{}
Type GetType() const override { return Type::GpsInfo; }
location::GpsInfo const & GetInfo() const { return m_info; }
bool IsNavigable() const { return m_isNavigable; }
location::RouteMatchingInfo const & GetRouteInfo() const { return m_routeInfo; }
private:
location::GpsInfo const m_info;
bool const m_isNavigable;
location::RouteMatchingInfo const m_routeInfo;
};
class SelectObjectMessage : public Message
{
public:
struct DismissTag {};
explicit SelectObjectMessage(DismissTag)
: m_selected(SelectionShape::OBJECT_EMPTY)
, m_glbPoint(m2::PointD::Zero())
, m_isAnim(false)
, m_isDismiss(true)
, m_isGeometrySelectionAllowed(false)
, m_isSelectionShapeVisible(false)
{}
SelectObjectMessage(SelectionShape::ESelectedObject selectedObject, m2::PointD const & glbPoint,
FeatureID const & featureID, bool isAnim, bool isGeometrySelectionAllowed,
bool isSelectionShapeVisible)
: m_selected(selectedObject)
, m_glbPoint(glbPoint)
, m_featureID(featureID)
, m_isAnim(isAnim)
, m_isDismiss(false)
, m_isGeometrySelectionAllowed(isGeometrySelectionAllowed)
, m_isSelectionShapeVisible(isSelectionShapeVisible)
{}
Type GetType() const override { return Type::SelectObject; }
bool IsGraphicsContextDependent() const override { return false; }
m2::PointD const & GetPosition() const { return m_glbPoint; }
SelectionShape::ESelectedObject GetSelectedObject() const { return m_selected; }
FeatureID const & GetFeatureID() const { return m_featureID; }
bool IsAnim() const { return m_isAnim; }
bool IsDismiss() const { return m_isDismiss; }
bool IsGeometrySelectionAllowed() const { return m_isGeometrySelectionAllowed; }
bool IsSelectionShapeVisible() const { return m_isSelectionShapeVisible; }
private:
SelectionShape::ESelectedObject m_selected;
m2::PointD m_glbPoint;
FeatureID m_featureID;
bool m_isAnim;
bool m_isDismiss;
bool m_isGeometrySelectionAllowed;
bool m_isSelectionShapeVisible;
};
class CheckSelectionGeometryMessage : public Message
{
public:
CheckSelectionGeometryMessage(FeatureID const & feature, int recacheId)
: m_feature(feature)
, m_recacheId(recacheId)
{}
Type GetType() const override { return Type::CheckSelectionGeometry; }
FeatureID const & GetFeature() const { return m_feature; };
int GetRecacheId() const { return m_recacheId; }
private:
FeatureID const m_feature;
int const m_recacheId;
};
using BaseFlushSelectionGeometryMessage = FlushRenderDataMessage<drape_ptr<RenderNode>,
Message::Type::FlushSelectionGeometry>;
class FlushSelectionGeometryMessage : public BaseFlushSelectionGeometryMessage
{
public:
FlushSelectionGeometryMessage(drape_ptr<RenderNode> && renderNode, int recacheId)
: BaseFlushSelectionGeometryMessage(std::move(renderNode))
, m_recacheId(recacheId)
{}
int GetRecacheId() const { return m_recacheId; }
private:
int const m_recacheId;
};
class AddSubrouteMessage : public Message
{
public:
AddSubrouteMessage(dp::DrapeID subrouteId, SubrouteConstPtr subroute)
: AddSubrouteMessage(subrouteId, subroute, -1 /* invalid recache id */)
{}
AddSubrouteMessage(dp::DrapeID subrouteId, SubrouteConstPtr subroute, int recacheId)
: m_subrouteId(subrouteId)
, m_subroute(subroute)
, m_recacheId(recacheId)
{}
Type GetType() const override { return Type::AddSubroute; }
dp::DrapeID GetSubrouteId() const { return m_subrouteId; };
SubrouteConstPtr GetSubroute() const { return m_subroute; }
int GetRecacheId() const { return m_recacheId; }
private:
dp::DrapeID m_subrouteId;
SubrouteConstPtr m_subroute;
int const m_recacheId;
};
class PrepareSubrouteArrowsMessage : public Message
{
public:
PrepareSubrouteArrowsMessage(dp::DrapeID subrouteId,
std::vector<ArrowBorders> && borders)
: m_subrouteId(subrouteId)
, m_borders(std::move(borders))
{}
Type GetType() const override { return Type::PrepareSubrouteArrows; }
dp::DrapeID GetSubrouteId() const { return m_subrouteId; }
std::vector<ArrowBorders> && AcceptBorders() { return std::move(m_borders); }
private:
dp::DrapeID m_subrouteId;
std::vector<ArrowBorders> m_borders;
};
class CacheSubrouteArrowsMessage : public Message
{
public:
CacheSubrouteArrowsMessage(dp::DrapeID subrouteId,
std::vector<ArrowBorders> const & borders,
int recacheId)
: m_subrouteId(subrouteId)
, m_borders(borders)
, m_recacheId(recacheId)
{}
Type GetType() const override { return Type::CacheSubrouteArrows; }
dp::DrapeID GetSubrouteId() const { return m_subrouteId; }
std::vector<ArrowBorders> const & GetBorders() const { return m_borders; }
int GetRecacheId() const { return m_recacheId; }
private:
dp::DrapeID m_subrouteId;
std::vector<ArrowBorders> m_borders;
int const m_recacheId;
};
class RemoveSubrouteMessage : public Message
{
public:
RemoveSubrouteMessage(dp::DrapeID segmentId, bool deactivateFollowing)
: m_subrouteId(segmentId)
, m_deactivateFollowing(deactivateFollowing)
{}
Type GetType() const override { return Type::RemoveSubroute; }
dp::DrapeID GetSegmentId() const { return m_subrouteId; }
bool NeedDeactivateFollowing() const { return m_deactivateFollowing; }
private:
dp::DrapeID m_subrouteId;
bool m_deactivateFollowing;
};
using FlushSubrouteMessage = FlushRenderDataMessage<drape_ptr<SubrouteData>,
Message::Type::FlushSubroute>;
using FlushSubrouteArrowsMessage = FlushRenderDataMessage<drape_ptr<SubrouteArrowsData>,
Message::Type::FlushSubrouteArrows>;
using FlushSubrouteMarkersMessage = FlushRenderDataMessage<drape_ptr<SubrouteMarkersData>,
Message::Type::FlushSubrouteMarkers>;
class AddRoutePreviewSegmentMessage : public Message
{
public:
AddRoutePreviewSegmentMessage(dp::DrapeID segmentId, m2::PointD const & startPt,
m2::PointD const & finishPt)
: m_segmentId(segmentId)
, m_startPoint(startPt)
, m_finishPoint(finishPt)
{}
Type GetType() const override { return Type::AddRoutePreviewSegment; }
dp::DrapeID GetSegmentId() const { return m_segmentId; };
m2::PointD const & GetStartPoint() const { return m_startPoint; }
m2::PointD const & GetFinishPoint() const { return m_finishPoint; }
private:
dp::DrapeID m_segmentId;
m2::PointD m_startPoint;
m2::PointD m_finishPoint;
};
class RemoveRoutePreviewSegmentMessage : public Message
{
public:
RemoveRoutePreviewSegmentMessage() = default;
explicit RemoveRoutePreviewSegmentMessage(dp::DrapeID segmentId)
: m_segmentId(segmentId)
, m_needRemoveAll(false)
{}
Type GetType() const override { return Type::RemoveRoutePreviewSegment; }
dp::DrapeID GetSegmentId() const { return m_segmentId; }
bool NeedRemoveAll() const { return m_needRemoveAll; }
private:
dp::DrapeID m_segmentId = 0;
bool m_needRemoveAll = true;
};
class SetSubrouteVisibilityMessage : public Message
{
public:
SetSubrouteVisibilityMessage(dp::DrapeID subrouteId, bool isVisible)
: m_subrouteId(subrouteId)
, m_isVisible(isVisible)
{}
Type GetType() const override { return Type::SetSubrouteVisibility; }
dp::DrapeID GetSubrouteId() const { return m_subrouteId; }
bool IsVisible() const { return m_isVisible; }
private:
dp::DrapeID m_subrouteId;
bool m_isVisible;
};
class UpdateMapStyleMessage : public Message
{
public:
Type GetType() const override { return Type::UpdateMapStyle; }
};
class FollowRouteMessage : public Message
{
public:
FollowRouteMessage(int preferredZoomLevel, int preferredZoomLevelIn3d, bool enableAutoZoom,
bool isArrowGlued)
: m_preferredZoomLevel(preferredZoomLevel)
, m_preferredZoomLevelIn3d(preferredZoomLevelIn3d)
, m_enableAutoZoom(enableAutoZoom)
, m_isArrowGlued(isArrowGlued)
{}
Type GetType() const override { return Type::FollowRoute; }
int GetPreferredZoomLevel() const { return m_preferredZoomLevel; }
int GetPreferredZoomLevelIn3d() const { return m_preferredZoomLevelIn3d; }
bool EnableAutoZoom() const { return m_enableAutoZoom; }
bool IsArrowGlued() const { return m_isArrowGlued; }
private:
int const m_preferredZoomLevel;
int const m_preferredZoomLevelIn3d;
bool const m_enableAutoZoom;
bool const m_isArrowGlued;
};
class SwitchMapStyleMessage : public BaseBlockingMessage
{
public:
using FilterMessagesHandler = std::function<void()>;
SwitchMapStyleMessage(Blocker & blocker, FilterMessagesHandler && filterMessagesHandler)
: BaseBlockingMessage(blocker)
, m_filterMessagesHandler(std::move(filterMessagesHandler))
{}
Type GetType() const override { return Type::SwitchMapStyle; }
void FilterDependentMessages()
{
if (m_filterMessagesHandler)
m_filterMessagesHandler();
}
private:
FilterMessagesHandler m_filterMessagesHandler;
};
class InvalidateMessage : public Message
{
public:
Type GetType() const override { return Type::Invalidate; }
};
class RecoverContextDependentResourcesMessage : public Message
{
public:
Type GetType() const override { return Type::RecoverContextDependentResources; }
bool IsGraphicsContextDependent() const override { return true; }
};
class SetVisibleViewportMessage : public Message
{
public:
explicit SetVisibleViewportMessage(m2::RectD const & rect)
: m_rect(rect)
{}
Type GetType() const override { return Type::SetVisibleViewport; }
m2::RectD const & GetRect() const { return m_rect; }
private:
m2::RectD m_rect;
};
class DeactivateRouteFollowingMessage : public Message
{
public:
Type GetType() const override { return Type::DeactivateRouteFollowing; }
};
class Allow3dModeMessage : public Message
{
public:
Allow3dModeMessage(bool allowPerspective, bool allow3dBuildings)
: m_allowPerspective(allowPerspective)
, m_allow3dBuildings(allow3dBuildings)
{}
Type GetType() const override { return Type::Allow3dMode; }
bool AllowPerspective() const { return m_allowPerspective; }
bool Allow3dBuildings() const { return m_allow3dBuildings; }
private:
bool const m_allowPerspective;
bool const m_allow3dBuildings;
};
class AllowAutoZoomMessage : public Message
{
public:
explicit AllowAutoZoomMessage(bool allowAutoZoom)
: m_allowAutoZoom(allowAutoZoom)
{}
Type GetType() const override { return Type::AllowAutoZoom; }
bool AllowAutoZoom() const { return m_allowAutoZoom; }
private:
bool const m_allowAutoZoom;
};
class Allow3dBuildingsMessage : public Message
{
public:
explicit Allow3dBuildingsMessage(bool allow3dBuildings)
: m_allow3dBuildings(allow3dBuildings)
{}
Type GetType() const override { return Type::Allow3dBuildings; }
bool Allow3dBuildings() const { return m_allow3dBuildings; }
private:
bool const m_allow3dBuildings;
};
class EnablePerspectiveMessage : public Message
{
public:
EnablePerspectiveMessage() = default;
Type GetType() const override { return Type::EnablePerspective; }
};
class CacheCirclesPackMessage : public Message
{
public:
enum Destination
{
GpsTrack,
RoutePreview
};
CacheCirclesPackMessage(uint32_t pointsCount, Destination dest)
: m_pointsCount(pointsCount)
, m_destination(dest)
{}
Type GetType() const override { return Type::CacheCirclesPack; }
uint32_t GetPointsCount() const { return m_pointsCount; }
Destination GetDestination() const { return m_destination; }
private:
uint32_t m_pointsCount;
Destination m_destination;
};
using BaseFlushCirclesPackMessage = FlushRenderDataMessage<drape_ptr<CirclesPackRenderData>,
Message::Type::FlushCirclesPack>;
class FlushCirclesPackMessage : public BaseFlushCirclesPackMessage
{
public:
FlushCirclesPackMessage(drape_ptr<CirclesPackRenderData> && renderData,
CacheCirclesPackMessage::Destination dest)
: BaseFlushCirclesPackMessage(std::move(renderData))
, m_destination(dest)
{}
CacheCirclesPackMessage::Destination GetDestination() const { return m_destination; }
private:
CacheCirclesPackMessage::Destination m_destination;
};
class UpdateGpsTrackPointsMessage : public Message
{
public:
UpdateGpsTrackPointsMessage(std::vector<GpsTrackPoint> && toAdd,
std::vector<uint32_t> && toRemove)
: m_pointsToAdd(std::move(toAdd))
, m_pointsToRemove(std::move(toRemove))
{}
Type GetType() const override { return Type::UpdateGpsTrackPoints; }
std::vector<GpsTrackPoint> const & GetPointsToAdd() { return m_pointsToAdd; }
std::vector<uint32_t> const & GetPointsToRemove() { return m_pointsToRemove; }
private:
std::vector<GpsTrackPoint> m_pointsToAdd;
std::vector<uint32_t> m_pointsToRemove;
};
class ClearGpsTrackPointsMessage : public Message
{
public:
Type GetType() const override { return Type::ClearGpsTrackPoints; }
};
class OnEnterForegroundMessage : public Message
{
public:
explicit OnEnterForegroundMessage(double time)
: m_time(time)
{}
Type GetType() const override { return Type::OnEnterForeground; }
double GetTime() const { return m_time; }
private:
double m_time;
};
class OnEnterBackgroundMessage : public Message
{
public:
Type GetType() const override { return Type::OnEnterBackground; }
};
class RequestSymbolsSizeMessage : public Message
{
public:
using Sizes = std::map<std::string, m2::PointF>;
using RequestSymbolsSizeCallback = std::function<void(Sizes &&)>;
RequestSymbolsSizeMessage(std::vector<std::string> const & symbols,
RequestSymbolsSizeCallback const & callback)
: m_symbols(symbols)
, m_callback(callback)
{}
Type GetType() const override { return Type::RequestSymbolsSize; }
std::vector<std::string> const & GetSymbols() const { return m_symbols; }