3
3
4
4
from src .Logging import logFailure
5
5
from src .Parser .ExporterOptions import ExporterOptions
6
- from src .Types import Gamepiece , PreferredUnits , toKg , toLbs
7
- from src .UI import IconPaths
6
+ from src .Types import Gamepiece , UnitSystem
8
7
from src .UI .CreateCommandInputsHelper import (
9
8
createBooleanInput ,
10
9
createTableInput ,
11
10
createTextBoxInput ,
12
11
)
12
+ from src .Util import convertMassUnitsFrom , convertMassUnitsTo , getFusionUnitSystem
13
13
14
14
15
15
class GamepieceConfigTab :
@@ -19,7 +19,6 @@ class GamepieceConfigTab:
19
19
gamepieceTable : adsk .core .TableCommandInput
20
20
previousAutoCalcWeightCheckboxState : bool
21
21
previousSelectedUnitDropdownIndex : int
22
- currentUnits : PreferredUnits
23
22
24
23
@logFailure
25
24
def __init__ (self , args : adsk .core .CommandCreatedEventArgs , exporterOptions : ExporterOptions ) -> None :
@@ -37,20 +36,6 @@ def __init__(self, args: adsk.core.CommandCreatedEventArgs, exporterOptions: Exp
37
36
)
38
37
self .previousAutoCalcWeightCheckboxState = exporterOptions .autoCalcGamepieceWeight
39
38
40
- self .currentUnits = exporterOptions .preferredUnits
41
- imperialUnits = self .currentUnits == PreferredUnits .IMPERIAL
42
- weightUnitTable = gamepieceTabInputs .addDropDownCommandInput (
43
- "gamepieceWeightUnit" , "Unit of Mass" , adsk .core .DropDownStyles .LabeledIconDropDownStyle
44
- )
45
-
46
- # Invisible white space characters are required in the list item name field to make this work.
47
- # I have no idea why, Fusion API needs some special education help - Brandon
48
- weightUnitTable .listItems .add ("" , imperialUnits , IconPaths .massIcons ["LBS" ])
49
- weightUnitTable .listItems .add ("" , not imperialUnits , IconPaths .massIcons ["KG" ])
50
- weightUnitTable .tooltip = "Unit of mass"
51
- weightUnitTable .tooltipDescription = "<hr>Configure the unit of mass for for the weight calculation."
52
- self .previousSelectedUnitDropdownIndex = int (not imperialUnits )
53
-
54
39
self .gamepieceTable = createTableInput (
55
40
"gamepieceTable" ,
56
41
"Gamepiece" ,
@@ -62,8 +47,17 @@ def __init__(self, args: adsk.core.CommandCreatedEventArgs, exporterOptions: Exp
62
47
self .gamepieceTable .addCommandInput (
63
48
createTextBoxInput ("gamepieceNameHeader" , "Name" , gamepieceTabInputs , "Name" , bold = False ), 0 , 0
64
49
)
50
+ fusUnitSystem = getFusionUnitSystem ()
65
51
self .gamepieceTable .addCommandInput (
66
- createTextBoxInput ("gamepieceWeightHeader" , "Weight" , gamepieceTabInputs , "Weight" , bold = False ), 0 , 1
52
+ createTextBoxInput (
53
+ "gamepieceWeightHeader" ,
54
+ "Weight" ,
55
+ gamepieceTabInputs ,
56
+ f"Weight { '(lbs)' if fusUnitSystem is UnitSystem .IMPERIAL else '(kg)' } " ,
57
+ bold = False ,
58
+ ),
59
+ 0 ,
60
+ 1 ,
67
61
)
68
62
self .gamepieceTable .addCommandInput (
69
63
createTextBoxInput (
@@ -112,10 +106,6 @@ def isVisible(self, value: bool) -> None:
112
106
def isActive (self ) -> bool :
113
107
return self .gamepieceConfigTab .isActive or False
114
108
115
- @property
116
- def selectedUnits (self ) -> PreferredUnits :
117
- return self .currentUnits
118
-
119
109
@property
120
110
def autoCalculateWeight (self ) -> bool :
121
111
autoCalcWeightButton : adsk .core .BoolValueCommandInput = self .gamepieceConfigTab .children .itemById (
@@ -168,26 +158,13 @@ def addChildOccurrences(childOccurrences: adsk.fusion.OccurrenceList) -> None:
168
158
frictionCoefficient .valueOne = 0.5
169
159
170
160
physical = gamepiece .component .getPhysicalProperties (adsk .fusion .CalculationAccuracy .LowCalculationAccuracy )
171
- if self .currentUnits == PreferredUnits .IMPERIAL :
172
- gamepieceMass = toLbs (physical .mass )
173
- else :
174
- gamepieceMass = round (physical .mass , 2 )
175
-
161
+ gamepieceMass = round (convertMassUnitsFrom (physical .mass ), 2 )
176
162
weight = commandInputs .addValueInput (
177
163
"gamepieceWeight" , "Weight Input" , "" , adsk .core .ValueInput .createByString (str (gamepieceMass ))
178
164
)
179
165
weight .tooltip = "Weight of field element"
180
166
weight .isEnabled = not self .previousAutoCalcWeightCheckboxState
181
167
182
- weightUnitDropdown : adsk .core .DropDownCommandInput = self .gamepieceConfigTab .children .itemById (
183
- "gamepieceWeightUnit"
184
- )
185
- if weightUnitDropdown .selectedItem .index == 0 :
186
- weight .tooltipDescription = "<tt>(in pounds)</tt>"
187
- else :
188
- assert weightUnitDropdown .selectedItem .index == 1
189
- weight .tooltipDescription = "<tt>(in kilograms)</tt>"
190
-
191
168
row = self .gamepieceTable .rowCount
192
169
self .gamepieceTable .addCommandInput (gamepieceName , row , 0 )
193
170
self .gamepieceTable .addCommandInput (weight , row , 1 )
@@ -222,7 +199,7 @@ def getGamepieces(self) -> list[Gamepiece]:
222
199
gamepieces : list [Gamepiece ] = []
223
200
for row in range (1 , self .gamepieceTable .rowCount ): # Row is 1 indexed
224
201
gamepieceEntityToken = self .selectedGamepieceList [row - 1 ].entityToken
225
- gamepieceWeight = self .gamepieceTable .getInputAtPosition (row , 1 ).value
202
+ gamepieceWeight = convertMassUnitsTo ( self .gamepieceTable .getInputAtPosition (row , 1 ).value )
226
203
gamepieceFrictionCoefficient = self .gamepieceTable .getInputAtPosition (row , 2 ).valueOne
227
204
gamepieces .append (Gamepiece (gamepieceEntityToken , gamepieceWeight , gamepieceFrictionCoefficient ))
228
205
@@ -232,25 +209,14 @@ def reset(self) -> None:
232
209
self .selectedGamepieceEntityIDs .clear ()
233
210
self .selectedGamepieceList .clear ()
234
211
235
- @logFailure
236
- def updateWeightTableToUnits (self , units : PreferredUnits ) -> None :
237
- assert units in {PreferredUnits .METRIC , PreferredUnits .IMPERIAL }
238
- conversionFunc = toKg if units == PreferredUnits .METRIC else toLbs
239
- for row in range (1 , self .gamepieceTable .rowCount ): # Row is 1 indexed
240
- weightInput : adsk .core .ValueCommandInput = self .gamepieceTable .getInputAtPosition (row , 1 )
241
- weightInput .value = conversionFunc (weightInput .value )
242
-
243
212
@logFailure
244
213
def calcGamepieceWeights (self ) -> None :
245
214
for row in range (1 , self .gamepieceTable .rowCount ): # Row is 1 indexed
246
215
weightInput : adsk .core .ValueCommandInput = self .gamepieceTable .getInputAtPosition (row , 1 )
247
216
physical = self .selectedGamepieceList [row - 1 ].component .getPhysicalProperties (
248
217
adsk .fusion .CalculationAccuracy .LowCalculationAccuracy
249
218
)
250
- if self .currentUnits == PreferredUnits .IMPERIAL :
251
- weightInput .value = toLbs (physical .mass )
252
- else :
253
- weightInput .value = round (physical .mass , 2 )
219
+ weightInput .value = round (convertMassUnitsFrom (physical .mass ), 2 )
254
220
255
221
@logFailure
256
222
def handleInputChanged (
@@ -283,20 +249,6 @@ def handleInputChanged(
283
249
284
250
self .previousAutoCalcWeightCheckboxState = autoCalcWeightButton .value
285
251
286
- elif commandInput .id == "gamepieceWeightUnit" :
287
- weightUnitDropdown = adsk .core .DropDownCommandInput .cast (commandInput )
288
- if weightUnitDropdown .selectedItem .index == self .previousSelectedUnitDropdownIndex :
289
- return
290
-
291
- if weightUnitDropdown .selectedItem .index == 0 :
292
- self .currentUnits = PreferredUnits .IMPERIAL
293
- else :
294
- assert weightUnitDropdown .selectedItem .index == 1
295
- self .currentUnits = PreferredUnits .METRIC
296
-
297
- self .updateWeightTableToUnits (self .currentUnits )
298
- self .previousSelectedUnitDropdownIndex = weightUnitDropdown .selectedItem .index
299
-
300
252
elif commandInput .id == "gamepieceAddButton" :
301
253
gamepieceSelection .isVisible = gamepieceSelection .isEnabled = True
302
254
gamepieceSelection .clearSelection ()
0 commit comments