forked from hlorus/CAD_Sketcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbase_constraint.py
122 lines (99 loc) · 3.79 KB
/
base_constraint.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
import logging
from bpy.types import Context
from bpy.props import BoolProperty
from ..model.types import SlvsConstraints
from ..solver import solve_system
from ..stateful_operator.state import state_from_args
from .base_stateful import GenericEntityOp
from .utilities import deselect_all
from ..utilities.view import refresh
logger = logging.getLogger(__name__)
state_docstr = "Pick entity to constrain."
class GenericConstraintOp(GenericEntityOp):
initialized: BoolProperty(options={"SKIP_SAVE", "HIDDEN"})
_entity_prop_names = ("entity1", "entity2", "entity3", "entity4")
def _available_entities(self):
# Gets entities that are already set
cls = SlvsConstraints.cls_from_type(self.type)
entities = [None] * len(cls.signature)
for i, name in enumerate(self._entity_prop_names):
if hasattr(self, name):
e = getattr(self, name)
if not e:
continue
entities[i] = e
return entities
@classmethod
def states(cls, operator=None):
states = []
cls_constraint = SlvsConstraints.cls_from_type(cls.type)
for i, _ in enumerate(cls_constraint.signature):
name_index = i + 1
if hasattr(cls_constraint, "get_types") and operator:
types = cls_constraint.get_types(i, operator._available_entities())
else:
types = cls_constraint.signature[i]
if not types:
break
states.append(
state_from_args(
"Entity " + str(name_index),
description=state_docstr,
pointer="entity" + str(name_index),
property=None,
types=types,
)
)
return states
def initialize_constraint(self):
c = self.target
if not self.initialized and hasattr(c, "init_props"):
kwargs = {}
if hasattr(self, "value") and self.properties.is_property_set("value"):
kwargs["value"] = self.value
if hasattr(self, "setting") and self.properties.is_property_set("setting"):
kwargs["setting"] = self.setting
value, setting = c.init_props(**kwargs)
if value is not None:
self.value = value
if setting is not None:
self.setting = setting
self.initialized = True
def fill_entities(self):
c = self.target
args = []
# fill in entities!
for prop in self._entity_prop_names:
if hasattr(c, prop):
value = getattr(self, prop)
setattr(c, prop, value)
args.append(value)
return args
def main(self, context: Context):
c = self.target = context.scene.sketcher.constraints.new_from_type(self.type)
self.sketch = context.scene.sketcher.active_sketch
entities = self.fill_entities()
c.sketch = self.sketch
self.initialize_constraint()
if hasattr(c, "value"):
c["value"] = self.value
if hasattr(c, "setting"):
c["setting"] = self.setting
deselect_all(context)
solve_system(context, sketch=self.sketch)
refresh(context)
return True
def fini(self, context: Context, succeede: bool):
if hasattr(self, "target"):
logger.debug("Add: {}".format(self.target))
def draw(self, context: Context):
layout = self.layout
c = self.target
if not c:
return
if hasattr(c, "value"):
layout.prop(self, "value")
if hasattr(c, "setting"):
layout.prop(self, "setting")
if hasattr(self, "draw_settings"):
self.draw_settings(context)