forked from DevilboxGames/ReincarnationTools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCRToolsNewUI_Accessories.ms
More file actions
383 lines (300 loc) · 15.7 KB
/
Copy pathCRToolsNewUI_Accessories.ms
File metadata and controls
383 lines (300 loc) · 15.7 KB
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
fn AddAccessoryToolsUI parentLayoutHelper = (
local panel = parentLayoutHelper.AddControl "System.Windows.Forms.Panel" size:[380, 40]
parentLayoutHelper.SetBorderStyle panel "FixedSingle"
local layoutHelper = DotNetFormHelper ParentControl:panel OutterMarginTop:5 OutterMarginBottom:5 OutterMarginLeft:5 OutterMarginTop:5
layoutHelper.BeginVerticalGroup align:"center" marginTop:3 marginRight:3 marginBottom:3 marginLeft:3
(
local addAccessoryModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addAccessoryModifierButton.text = "Add Accessory Modifier"
addAccessoryModifierButton.name = "addAccessoryModifierButton"
fn OnAddAccessoryModifierClicked btn ev = (
undo "Accessory Modifier" on
(
if selection.count > 0 then AddAccessoryTXTModifier selection[1]
)
)
SetClickHandler addAccessoryModifierButton OnAddAccessoryModifierClicked
)
layoutHelper.EndVerticalGroup()
local dynamicsLabelLabel = parentLayoutHelper.AddControl "System.Windows.Forms.Label" size:[200,27] margin:[10,0]
dynamicsLabelLabel.text = "Dynamics"
layoutHelper.SetFont dynamicsLabelLabel "Segoe UI" 12 bold:true underline:false
local panel = parentLayoutHelper.AddControl "System.Windows.Forms.Panel" size:[380, 160] margin:[10,0]
panel.name = "DynamicsPanel"
parentLayoutHelper.SetBorderStyle panel "FixedSingle"
local layoutHelper = DotNetFormHelper ParentControl:panel OutterMarginTop:0 OutterMarginBottom:0 OutterMarginLeft:5 OutterMarginRight:5
layoutHelper.BeginVerticalGroup align:"center" marginTop:3 marginRight:3 marginBottom:3 marginLeft:3
(
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local addDynamicsModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addDynamicsModifierButton.text = "Dynamics Modifier"
--addDynamicsModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addDynamicsModifierButton.name = "addDynamicsModifierButton"
fn OnAddDynamicsModifierClicked sender arg = (
undo "Add Dynamics Modifier" on
(
if selection.count > 0 then AddAccessoryDynamicsModifier selection[1]
)
)
SetClickHandler addDynamicsModifierButton OnAddDynamicsModifierClicked
local addBreakableModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addBreakableModifierButton.text = "Breakable Modifier"
--addBreakableModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addBreakableModifierButton.name = "addBreakableModifierButton"
fn OnAddBreakableModifierClicked sender arg = (
undo "Add Breakable Modifier" on
(
if selection.count > 0 then AddAccessoryBreakableModifier selection[1]
)
)
SetClickHandler addBreakableModifierButton OnAddBreakableModifierClicked
)
layoutHelper.EndHorizontalGroup()
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local addWorldJointModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addWorldJointModifierButton.text = "World Joint"
--addWorldJointModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addWorldJointModifierButton.name = "addWorldJointModifierButton"
fn OnAddWorldJointModifierClicked sender arg = (
undo "Add World Joint Modifier" on
(
if selection.count > 0 then AddAccessoryJoint selection[1] jointType:"world_joint"
)
)
SetClickHandler addWorldJointModifierButton OnAddWorldJointModifierClicked
local addChildJointModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addChildJointModifierButton.text = "Child Joint"
--addChildJointModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addChildJointModifierButton.name = "addChildJointModifierButton"
fn OnAddChildJointModifierClicked sender arg = (
undo "Add Child Joint Modifier" on
(
if selection.count > 0 then AddAccessoryJoint selection[1] jointType:"child_joint"
)
)
SetClickHandler addChildJointModifierButton OnAddChildJointModifierClicked
)
layoutHelper.EndHorizontalGroup()
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local addWorldConstraintModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addWorldConstraintModifierButton.text = "World Constraint"
--addWorldConstraintModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addWorldConstraintModifierButton.name = "addWorldConstraintModifierButton"
fn OnAddWorldConstraintModifierClicked sender arg = (
undo "Add World Joint Modifier" on
(
if selection.count > 0 then AddAccessoryJointConstraint selection[1] jointType:"world_joint"
)
)
SetClickHandler addWorldConstraintModifierButton OnAddWorldConstraintModifierClicked
local addChildConstraintModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addChildConstraintModifierButton.text = "Child Constaint"
--addChildConstraintModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addChildConstraintModifierButton.name = "addChildConstraintModifierButton"
fn OnAddChildConstraintModifierClicked sender arg = (
undo "Add Child Joint Modifier" on
(
if selection.count > 0 then AddAccessoryJointConstraint selection[1] jointType:"child_joint"
)
)
SetClickHandler addChildConstraintModifierButton OnAddChildConstraintModifierClicked
)
layoutHelper.EndHorizontalGroup()
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local addWorldWeaknessModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addWorldWeaknessModifierButton.text = "World Weakness"
--addWorldWeaknessModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addWorldWeaknessModifierButton.name = "addWorldWeaknessModifierButton"
fn OnAddWorldWeaknessModifierClicked sender arg = (
undo "Add World Joint Modifier" on
(
if selection.count > 0 then AddAccessoryJointWeakness selection[1] jointType:"world_joint"
)
)
SetClickHandler addWorldWeaknessModifierButton OnAddWorldWeaknessModifierClicked
local addChildWeaknessModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addChildWeaknessModifierButton.text = "Child Weakness"
--addChildWeaknessModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addChildWeaknessModifierButton.name = "addChildWeaknessModifierButton"
fn OnAddChildWeaknessModifierClicked sender arg = (
undo "Add Child Joint Modifier" on
(
if selection.count > 0 then AddAccessoryJointWeakness selection[1] jointType:"child_joint"
)
)
SetClickHandler addChildWeaknessModifierButton OnAddChildWeaknessModifierClicked
)
layoutHelper.EndHorizontalGroup()
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local addBreakableModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addBreakableModifierButton.text = "Make Breakable"
--addBreakableModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addBreakableModifierButton.name = "addBreakableModifierButton"
fn OnAddBreakableModifierClicked sender arg = (
undo "Add World Joint Modifier" on
(
if selection.count > 0 then AddAccessoryBreakableModifier selection[1] jointType:"world_joint"
)
)
SetClickHandler addBreakableModifierButton OnAddBreakableModifierClicked
)
layoutHelper.EndHorizontalGroup()
)
layoutHelper.EndVerticalGroup()
local shapeDataLabel = parentLayoutHelper.AddControl "System.Windows.Forms.Label" size:[200,27] margin:[10,0]
shapeDataLabel.text = "Shapes"
layoutHelper.SetFont shapeDataLabel "Segoe UI" 12 bold:true underline:false
local panel = parentLayoutHelper.AddControl "System.Windows.Forms.Panel" size:[380, 200] margin:[10,0]
panel.name = "AppDataPanel"
parentLayoutHelper.SetBorderStyle panel "FixedSingle"
local layoutHelper = DotNetFormHelper ParentControl:panel OutterMarginTop:0 OutterMarginBottom:0 OutterMarginLeft:5 OutterMarginRight:5
layoutHelper.BeginVerticalGroup align:"center" marginTop:3 marginRight:3 marginBottom:3 marginLeft:3
(
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local addShapeModifier = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addShapeModifier.text = "Set as Shape"
--addShapeModifier.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addShapeModifier.name = "addShapeModifier"
fn OnAddShapeModifierClicked sender arg = (
undo "Add Shape Modifier" on
(
if selection.count > 0 then (
local shapeModifier = AddAccessoryShapeModifier selection[1]
shapeModifier.CollisionType = case (classof selection[1]) of (
"Sphere": "Sphere"
"Box": (
if selection[1].rotation == quat 1 then "AlignedCuboid"
else "Cuboid"
)
"Capsule": "TicTac"
default: "Polyhedron"
)
)
)
)
SetClickHandler addShapeModifier OnAddShapeModifierClicked
local createSphereShapeButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
createSphereShapeButton.text = "Create Sphere"
--createSphereShapeButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
createSphereShapeButton.name = "createSphereShapeButton"
fn OnCreateSphereShapeClickedClicked sender arg = (
undo "Create Sphere Shape" on
(
local sphereShape = Sphere()
local shapeModifier = AddAccessoryShapeModifier sphereShape
shapeModifier.CollisionType = "Sphere"
if selection.count > 0 then (
sphereShape.pos = selection[1].center
local extents = selection[1].max - selection[1].min
sphereShape.radius = (distance selection[1].max selection[1].min) * 0.5
)
)
)
SetClickHandler createSphereShapeButton OnCreateSphereShapeClickedClicked
)
layoutHelper.EndHorizontalGroup()
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local createBoxShapeButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
createBoxShapeButton.text = "Create Box"
--createBoxShapeButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
createBoxShapeButton.name = "createBoxShapeButton"
fn OnCreateBoxShapeClickedClicked sender arg = (
undo "Create Box Shape" on
(
local BoxShape = Box()
local shapeModifier = AddAccessoryShapeModifier BoxShape
shapeModifier.CollisionType = "Cuboid"
if selection.count > 0 then (
local extents = selection[1].max - selection[1].min
BoxShape.pos = selection[1].center - [0,0,extents.z * 0.5]
BoxShape.length = extents.y
BoxShape.width = extents.x
BoxShape.height = extents.z
)
)
)
SetClickHandler createBoxShapeButton OnCreateBoxShapeClickedClicked
local createCapsuleShapeButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
createCapsuleShapeButton.text = "Create Capsule"
--createCapsuleShapeButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
createCapsuleShapeButton.name = "createCapsuleShapeButton"
fn OnCreateCapsuleShapeClickedClicked sender arg = (
undo "Create Capsule Shape" on
(
local CapsuleShape = Capsule()
local shapeModifier = AddAccessoryShapeModifier CapsuleShape
shapeModifier.CollisionType = "Cuboid"
if selection.count > 0 then (
CapsuleShape.pos = selection[1].center
local extents = selection[1].max - selection[1].min
CapsuleShape.height = amax extents.x extents.y extents.z
if(CapsuleShape.height == extents.x) then (
CapsuleShape.radius = (amax extents.y extents.z) * 0.5
CapsuleShape.height -= CapsuleShape.radius * 2
CapsuleShape.rotation = (eulerToQuat (eulerAngles 0 90 0)) * selection[1].rotation
CapsuleShape.pos += [extents.x * 0.5 + CapsuleShape.radius *0.5, 0, CapsuleShape.radius * 0.5]
)
else if(CapsuleShape.height == extents.y) then (
CapsuleShape.radius = (amax extents.x extents.z) * 0.5
CapsuleShape.height -= CapsuleShape.radius * 2
CapsuleShape.rotation = (eulerToQuat (eulerAngles 90 0 0)) * selection[1].rotation
CapsuleShape.pos -= [0,extents.y * 0.5 + CapsuleShape.radius * 0.5, -CapsuleShape.radius * 0.5]
)
else (
CapsuleShape.radius = (amax extents.y extents.x) * 0.5
CapsuleShape.height -= CapsuleShape.radius * 2
CapsuleShape.pos -= [0,0,extents.z * 0.5 ]
)
)
)
)
SetClickHandler createCapsuleShapeButton OnCreateCapsuleShapeClickedClicked
)
layoutHelper.EndHorizontalGroup()
)
layoutHelper.EndVerticalGroup()
local AccessoryDataLabel = parentLayoutHelper.AddControl "System.Windows.Forms.Label" size:[200,27] margin:[10,0]
AccessoryDataLabel.text = "Accessory Data Types"
layoutHelper.SetFont AccessoryDataLabel "Segoe UI" 12 bold:true underline:false
local panel = parentLayoutHelper.AddControl "System.Windows.Forms.Panel" size:[380, 200] margin:[10,0]
panel.name = "AppDataPanel"
parentLayoutHelper.SetBorderStyle panel "FixedSingle"
local layoutHelper = DotNetFormHelper ParentControl:panel OutterMarginTop:0 OutterMarginBottom:0 OutterMarginLeft:5 OutterMarginRight:5
layoutHelper.BeginVerticalGroup align:"center" marginTop:3 marginRight:3 marginBottom:3 marginLeft:3
(
layoutHelper.BeginHorizontalGroup align:"center" marginTop:3 marginRight:15 marginBottom:3 marginLeft:15
(
local addDynamicsModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addDynamicsModifierButton.text = "Dynamics Modifier"
--addDynamicsModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addDynamicsModifierButton.name = "addDynamicsModifierButton"
fn OnAddDynamicsModifierClicked sender arg = (
undo "Add Dynamics Modifier" on
(
if selection.count > 0 then AddAccessoryDynamicsModifier selection[1]
)
)
SetClickHandler addDynamicsModifierButton OnAddDynamicsModifierClicked
local addBreakableModifierButton = layoutHelper.AddControl "System.Windows.Forms.Button" size:[150,20]
addBreakableModifierButton.text = "Breakable Modifier"
--addBreakableModifierButton.tooltip = "Adjusts the wheel's radius based on its radius so the bottom of the wheel is on the origin plane"
addBreakableModifierButton.name = "addBreakableModifierButton"
fn OnAddBreakableModifierClicked sender arg = (
undo "Add Breakable Modifier" on
(
if selection.count > 0 then AddAccessoryBreakableModifier selection[1]
)
)
SetClickHandler addBreakableModifierButton OnAddBreakableModifierClicked
)
layoutHelper.EndHorizontalGroup()
)
layoutHelper.EndVerticalGroup()
)