-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathobjects.py
691 lines (530 loc) · 21 KB
/
objects.py
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
from abc import ABC, abstractmethod
from copy import deepcopy
from dataclasses import dataclass, field
from enum import auto
from typing import TYPE_CHECKING, Any, Callable, List, Optional, Tuple, cast
from python_ggplot.core.objects import (
AxisKind,
Font,
GGEnum,
GGException,
Point,
Scale,
UnitType,
)
from python_ggplot.core.units.objects import Quantity, unit_type_from_type
from python_ggplot.graphics.cairo_backend import CairoBackend
if TYPE_CHECKING:
from python_ggplot.core.coord.objects import OperatorType
from python_ggplot.graphics.views import ViewPort
def coord_type_from_unit_type(unit_type: UnitType):
lookup = {
UnitType.POINT: PointCoordType,
UnitType.CENTIMETER: CentimeterCoordType,
UnitType.INCH: InchCoordType,
UnitType.RELATIVE: RelativeCoordType,
UnitType.DATA: DataCoordType,
UnitType.CENTIMETER: InchCoordType,
UnitType.STR_HEIGHT: StrHeightCoordType,
UnitType.STR_WIDTH: StrWidthCoordType,
}
return lookup[unit_type]
def default_coord_view_location(
view: "ViewPort", kind: AxisKind
) -> Tuple[Quantity, Optional[Scale]]:
length_data = {
AxisKind.X: (view.point_width(), view.x_scale),
AxisKind.Y: (view.point_height(), view.y_scale),
}
return length_data[kind]
def default_length_and_scale(
view: "ViewPort", kind: AxisKind
) -> Tuple[Quantity, Optional[Scale]]:
length, scale = default_coord_view_location(view, kind)
return length, scale
def path_coord_quantity(coord: "Coord1D", length: Quantity):
if isinstance(coord, (CentimeterCoordType, InchCoordType, PointCoordType)):
if coord.get_length() is None:
coord.data.length = length
return coord
def path_coord_view_port(coord: "Coord", view: "ViewPort") -> "Coord":
return Coord(
x=path_coord_quantity(coord.x, view.w_img),
y=path_coord_quantity(coord.y, view.h_img),
)
Operator = Callable[[float, float], float]
def add_two_absolute_coord(
left: "Coord1D", right: "Coord1D", operator: Operator
) -> "Coord1D":
left_point = left.to(UnitType.POINT)
right_point = right.to(UnitType.POINT)
pos = operator(left_point.pos, right_point.pos)
data = LengthCoord(length=deepcopy(left_point.get_length()))
return PointCoordType(pos, data)
def add_coord_one_length(
left_coord: "Coord1D",
other_coord: "Coord1D",
operator: Operator,
scale: Optional[Scale],
result_to_clone: "Coord1D",
operator_type: "OperatorType",
) -> "Coord1D":
length = result_to_clone.get_length()
if length is None:
raise GGException("Length must not be None")
left_cls = unit_type_from_type(left_coord.unit_type)
right_cls = unit_type_from_type(other_coord.unit_type)
left = left_cls(val=left_coord.pos)
right = right_cls(val=other_coord.pos)
quantity = left.apply_operator(
other=right,
length=length,
scale=scale,
as_coordinate=True,
operator=operator,
operator_type=operator_type,
)
if quantity.unit_type == UnitType.RELATIVE:
return RelativeCoordType(pos=quantity.val)
else:
result = deepcopy(result_to_clone)
result.pos = quantity.val
return result
def coord_operator(
lhs: "Coord1D", rhs: "Coord1D", operator: Operator, operator_type: "OperatorType"
) -> "Coord1D":
"""
# TODO this allows you to pass operator=lambda x,y: x-y and OperatorType.DIV
needs refactoring to become prone to errors
"""
# todo unit tests
alike = False
if operator_type == OperatorType.DIV:
alike = lhs.equal_kind_and_scale(rhs)
else:
alike = lhs.compatible_kind_and_scale(rhs)
if alike:
if lhs.unit_type.is_absolute() and rhs.unit_type.is_absolute():
return add_two_absolute_coord(lhs, rhs, operator)
else:
res = deepcopy(lhs)
res.pos = operator(lhs.pos, rhs.pos)
return res
elif lhs.unit_type.is_length():
scale = rhs.get_scale()
return add_coord_one_length(lhs, rhs, operator, scale, lhs, operator_type)
elif rhs.unit_type.is_length():
scale = lhs.get_scale()
return add_coord_one_length(lhs, rhs, operator, scale, rhs, operator_type)
else:
left = lhs.to(UnitType.RELATIVE)
right = rhs.to(UnitType.RELATIVE)
pos = operator(left.pos, right.pos)
return RelativeCoordType(pos=pos)
def coord_quantity_operator(
coord: "Coord1D", quantity: Quantity, operator: Operator
) -> "Coord1D":
if coord.unit_type != quantity.unit_type:
raise GGException("Quantity and coord types have to be the same")
res = deepcopy(coord)
res.pos = operator(coord.pos, quantity.val)
return res
def coord_quantity_add(coord: "Coord1D", quantity: Quantity) -> "Coord1D":
operator: Operator = lambda a, b: a + b
return coord_quantity_operator(coord, quantity, operator)
def coord_quantity_sub(coord: "Coord1D", quantity: Quantity) -> "Coord1D":
operator: Operator = lambda a, b: a - b
return coord_quantity_operator(coord, quantity, operator)
def coord_quantity_mul(coord: "Coord1D", quantity: Quantity) -> "Coord1D":
operator: Operator = lambda a, b: a * b
return coord_quantity_operator(coord, quantity, operator)
def coord_quantity_div(coord: "Coord1D", quantity: Quantity) -> "Coord1D":
operator: Operator = lambda a, b: a / b
return coord_quantity_operator(coord, quantity, operator)
@dataclass
class CoordsInput:
left: float = 0.0
bottom: float = 0.0
width: float = 1.0
height: float = 1.0
class OperatorType(GGEnum):
DIV = auto()
ADD = auto()
SUB = auto()
MUL = auto()
@dataclass
class ToCord:
cord: "Coord1D"
to_kind: UnitType = UnitType.RELATIVE
length: Optional[Quantity] = None
abs_length: Optional[Quantity] = None
scale: Optional[Scale] = None
axis: Optional[AxisKind] = None
str_text: Optional[str] = None
str_font: Optional[str] = None
@dataclass
class Coord1D(ABC):
pos: float
@property
@abstractmethod
def unit_type(self) -> UnitType:
pass
@staticmethod
def create_str_height(pos: float, font: Font) -> "StrHeightCoordType":
return StrHeightCoordType(pos, data=TextCoordData(text="W", font=font))
@staticmethod
def create_str_width(pos: float, font: Font) -> "StrWidthCoordType":
return StrWidthCoordType(pos, data=TextCoordData(text="W", font=font))
@staticmethod
def create_relative(pos: float) -> "Coord1D":
return RelativeCoordType(pos)
@staticmethod
def create_data(pos: float, scale: Scale, axis_kind: AxisKind) -> "Coord1D":
return DataCoordType(pos, data=DataCoord(scale=scale, axis_kind=axis_kind))
@staticmethod
def create_point(pos: float, length: Optional[Quantity] = None) -> "Coord1D":
return PointCoordType(pos, data=LengthCoord(length=length))
def update_scale(self, view: "ViewPort"):
# only applicable to DataCoord
pass
def __eq__(self, other: "Coord1D") -> bool: # type: ignore
if self.unit_type.is_length() and other.unit_type.is_length():
return self.to_points().pos == other.to_points().pos
else:
return self.to_relative().pos == other.to_relative().pos
@staticmethod
def create_default_coord_type(
view: "ViewPort", at: float, axis_kind: AxisKind, kind: UnitType
) -> "Coord1D":
cls = coord_type_from_unit_type(kind)
return cls.create_default_coord_type(view, at, axis_kind, kind)
@staticmethod
@abstractmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
pass
def embed_into(self, axis_kind: AxisKind, into: "ViewPort") -> "Coord1D":
from python_ggplot.core.embed import coord1d_embed_into
return coord1d_embed_into(self, axis_kind, into)
@abstractmethod
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
pass
@abstractmethod
def from_length(self, length: "LengthCoord") -> "PointCoordType":
pass
def get_length(self) -> Optional[Quantity]:
# todo fix this, fine for now
return None
def get_scale(self) -> Optional[Scale]:
# todo fix this, fine for now
return None
def to_inches(self, length: Optional[Quantity] = None) -> "Coord1D":
return self.to(UnitType.INCH, length=length)
def to_centimeters(self, length: Optional[Quantity] = None) -> "Coord1D":
return self.to(UnitType.CENTIMETER, length=length)
def to_points(self, length: Optional[Quantity] = None) -> "Coord1D":
return self.to(UnitType.POINT, length=length)
def to_relative(self, length: Optional[Quantity] = None) -> "Coord1D":
return self.to(UnitType.RELATIVE, length=length)
def to_via_points(
self,
to_kind: UnitType,
length: Optional[Quantity] = None,
abs_length: Optional[Quantity] = None,
scale: Optional[Scale] = None,
axis: Optional[AxisKind] = None,
) -> "Coord1D":
from python_ggplot.core.coord.convert import (
convert_via_point,
) # pylint: disable=all
return convert_via_point(
self, to_kind, length=length, abs_length=abs_length, scale=scale, axis=axis
)
def to(self, to_kind: UnitType, length: Optional[Quantity] = None) -> "Coord1D":
from python_ggplot.core.coord.convert import (
convert_coord,
) # pylint: disable=all
return convert_coord(coord=self, to_type=to_kind, length=length)
@staticmethod
def create(
view: "ViewPort", at: float, axis_kind: "AxisKind", kind: "Coord1D"
) -> "Coord1D":
unity_type = coord_type_from_class(kind)
return kind.create_default_coord_type(view, at, axis_kind, unity_type)
def equal_kind_and_scale(self, other: "Coord1D") -> bool:
if self.unit_type != other.unit_type:
return False
if self.unit_type.is_length():
left_length = self.get_length()
right_length = self.get_length()
return left_length == right_length
if {self.unit_type, other.unit_type} == {UnitType.DATA}:
self_ = cast(DataCoordType, self)
other_ = cast(DataCoordType, other)
# TODO why the pyright result of this is "unknown or bool?"
# and operator on 2 equal statements is unknown?
return (
self_.data.scale == other_.data.scale
and self_.data.axis_kind == other_.data.axis_kind
) # type: ignore
if self.unit_type == UnitType.RELATIVE:
return True
raise GGException("This should never be reached")
def compatible_kind_and_scale(self, other: "Coord1D"):
if self.unit_type.is_absolute() and other.unit_type.is_absolute():
return True
elif self.unit_type != other.unit_type:
return False
else:
return self.equal_kind_and_scale(other)
def __add__(self, other: "Coord1D") -> "Coord1D":
return coord_operator(self, other, lambda x, y: x + y, OperatorType.ADD)
def __mul__(self, other: "Coord1D") -> "Coord1D":
return coord_operator(self, other, lambda x, y: x * y, OperatorType.MUL)
def __truediv__(self, other: "Coord1D") -> "Coord1D":
return coord_operator(self, other, lambda x, y: x / y, OperatorType.DIV)
def __sub__(self, other: "Coord1D") -> "Coord1D":
return coord_operator(self, other, lambda x, y: x - y, OperatorType.SUB)
@dataclass
class LengthCoord:
length: Optional[Quantity] = None
@dataclass
class DataCoord:
axis_kind: AxisKind
scale: Scale
@dataclass
class TextCoordData:
text: str
font: Font
def get_text_extend(self):
return CairoBackend.get_text_extend(self.text, self.font)
@dataclass
class RelativeCoordType(Coord1D):
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
raise GGException("not implemented")
def from_length(self, length: "LengthCoord") -> "PointCoordType":
raise GGException("not implemented")
@staticmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
return RelativeCoordType(at)
@property
def unit_type(self) -> UnitType:
return UnitType.RELATIVE
@staticmethod
def create_default_coord_type(
view: "ViewPort", at: float, axis_kind: AxisKind, kind: UnitType
) -> "Coord1D":
return RelativeCoordType(pos=at)
@dataclass
class PointCoordType(Coord1D):
data: LengthCoord = field(default_factory=LengthCoord)
@property
def unit_type(self) -> UnitType:
return UnitType.POINT
@staticmethod
def create_default_coord_type(
view: "ViewPort", at: float, axis_kind: AxisKind, kind: UnitType
) -> "Coord1D":
length, _ = default_length_and_scale(view, axis_kind)
return PointCoordType(at, LengthCoord(length=length.to_points()))
@staticmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
length: Quantity = view.length_from_axis(axis_kind)
length = length.to_points()
return PointCoordType(at, LengthCoord(length=length))
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
self.data.length = view.length_from_axis(axis_kind)
def from_length(self, length: LengthCoord) -> "PointCoordType":
return PointCoordType(self.pos, length)
def get_length(self) -> Optional[Quantity]:
# todo fix this, fine for now
return self.data.length
@dataclass
class CentimeterCoordType(Coord1D):
data: LengthCoord
@property
def unit_type(self) -> UnitType:
return UnitType.CENTIMETER
@staticmethod
def create_default_coord_type(
view: "ViewPort", at: float, axis_kind: AxisKind, kind: UnitType
) -> "Coord1D":
length, _ = default_length_and_scale(view, axis_kind)
return CentimeterCoordType(at, LengthCoord(length=length.to_centimeter()))
@staticmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
# nom source -> template c1*
length: Quantity = view.length_from_axis(axis_kind)
length = length.to_centimeter()
return CentimeterCoordType(at, LengthCoord(length=length))
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
self.data.length = view.length_from_axis(axis_kind)
def from_length(self, length: LengthCoord) -> "PointCoordType":
return PointCoordType(self.pos, length)
def get_length(self) -> Optional[Quantity]:
# todo fix this, fine for now
return self.data.length
def compare(self, other: "CentimeterCoordType") -> bool:
return self.data.length == other.data.length
@dataclass
class InchCoordType(Coord1D):
data: LengthCoord
@property
def unit_type(self) -> UnitType:
return UnitType.INCH
@staticmethod
def create_default_coord_type(
view: "ViewPort", at: float, axis_kind: AxisKind, kind: UnitType
) -> "Coord1D":
length, _ = default_length_and_scale(view, axis_kind)
return InchCoordType(at, LengthCoord(length=length.to_inch()))
@staticmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
# nom source -> template c1*
length: Quantity = view.length_from_axis(axis_kind)
length = length.to_inch()
return InchCoordType(at, LengthCoord(length=length))
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
self.data.length = view.length_from_axis(axis_kind)
def from_length(self, length: LengthCoord) -> "PointCoordType":
return PointCoordType(self.pos, length)
def get_length(self) -> Optional[Quantity]:
# todo fix this, fine for now
return self.data.length
def compare(self, other: "InchCoordType") -> bool:
return self.data.length == other.data.length
@dataclass
class DataCoordType(Coord1D):
data: DataCoord
def from_length(self, length: "LengthCoord") -> "PointCoordType":
raise GGException("not implemented")
@property
def unit_type(self) -> UnitType:
return UnitType.DATA
def update_scale(self, view: "ViewPort"):
if self.data.axis_kind == AxisKind.X:
self.scale = view.x_scale
if self.data.axis_kind == AxisKind.Y:
self.scale = view.y_scale
def get_scale(self) -> Optional[Scale]:
# todo fix this, fine for now
return self.data.scale
@staticmethod
def create_default_coord_type(
view: "ViewPort", at: float, axis_kind: AxisKind, kind: UnitType
) -> "Coord1D":
_, scale = default_length_and_scale(view, axis_kind)
if scale is None:
raise GGException("expected a scale")
data = DataCoord(scale=scale, axis_kind=axis_kind)
return DataCoordType(at, data)
@staticmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
# template c1*
scale = view.scale_for_axis(axis_kind)
if scale is None:
raise GGException("expected scale")
return DataCoordType(at, DataCoord(scale=scale, axis_kind=axis_kind))
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
scale = view.scale_for_axis(axis_kind)
if scale is None:
raise GGException("expected scale")
self.data.scale = scale
@dataclass
class StrWidthCoordType(Coord1D):
data: TextCoordData
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
raise GGException("not implemented")
def from_length(self, length: "LengthCoord"):
raise GGException("not implemented")
@staticmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
raise GGException("not implemented")
@property
def unit_type(self) -> UnitType:
return UnitType.STR_WIDTH
def point_dimension(self):
text_extend = self.data.get_text_extend()
return text_extend.x_bearing + text_extend.x_advance
def relative_dimension(self):
text_extend = self.data.get_text_extend()
return text_extend.width
def text_extend_dimension(self, text_extend: Any) -> float:
return text_extend.width
@dataclass
class StrHeightCoordType(Coord1D):
data: TextCoordData
def update_from_view(self, view: "ViewPort", axis_kind: AxisKind):
raise GGException("not implemented")
def from_length(self, length: "LengthCoord"):
raise GGException("not implemented")
@staticmethod
def from_view(view: "ViewPort", axis_kind: "AxisKind", at: float) -> "Coord1D":
raise GGException("not implemented")
@property
def unit_type(self) -> UnitType:
return UnitType.STR_HEIGHT
def relative_dimension(self):
text_extend = self.data.get_text_extend()
return text_extend.height
def point_dimension(self):
text_extend = self.data.get_text_extend()
return text_extend.y_bearing + text_extend.y_advance
def text_extend_dimension(self, text_extend: Any) -> float:
return text_extend.height
@dataclass
class Coord:
x: Coord1D
y: Coord1D
def point(self) -> Point[float]:
return Point(
x=self.x.pos,
y=self.y.pos,
)
def dimension_for_axis(self, axis: AxisKind) -> "Coord1D":
if axis == AxisKind.X:
return self.x
else:
return self.y
@staticmethod
def relative(x: float, y: float) -> "Coord":
return Coord(
x=RelativeCoordType(x),
y=RelativeCoordType(y),
)
def to_relative(self) -> "Coord":
x = self.x.to(UnitType.RELATIVE)
y = self.y.to(UnitType.RELATIVE)
return Coord(x=x, y=y)
def __eq__(self, other) -> bool: # type: ignore
return self.x == other.x and self.y == other.y # type: ignore
def embed_into(self, into: "ViewPort") -> "Coord":
from python_ggplot.core.embed import coord_embed_into
return coord_embed_into(self, into)
@dataclass
class GridCoord:
origin: Coord
origin_diagonal: Coord
x: List[Coord]
y: List[Coord]
def coord_type_from_type(kind: UnitType) -> Coord1D:
data = {
UnitType.POINT: PointCoordType,
UnitType.CENTIMETER: CentimeterCoordType,
UnitType.INCH: InchCoordType,
UnitType.RELATIVE: RelativeCoordType,
UnitType.DATA: DataCoordType,
UnitType.STR_WIDTH: StrWidthCoordType,
UnitType.STR_HEIGHT: StrHeightCoordType,
}
return data[kind] # type: ignore
def coord_type_from_class(kind: Coord1D) -> UnitType:
data = {
PointCoordType: UnitType.POINT,
CentimeterCoordType: UnitType.CENTIMETER,
InchCoordType: UnitType.INCH,
RelativeCoordType: UnitType.RELATIVE,
DataCoordType: UnitType.DATA,
StrWidthCoordType: UnitType.STR_WIDTH,
StrHeightCoordType: UnitType.STR_HEIGHT,
}
return data[kind] # type: ignore