-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInputManagerAsset.xojo_code
419 lines (258 loc) · 9.81 KB
/
InputManagerAsset.xojo_code
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
#tag Class
Protected Class InputManagerAsset
#tag Method, Flags = &h0
Shared Function fromFile(f as FolderItem) As InputManagerAsset
var s as String = ""
Files.load( s, f )
return InputManagerAsset.fromString( s )
End Function
#tag EndMethod
#tag Method, Flags = &h0
Shared Function fromJSON(json as JSONItem) As InputManagerAsset
var asset as InputManagerAsset = new InputManagerAsset()
// Unity can only copy one axis entry at a time onto the clipboard?
var axis as AxisSetting = new AxisSetting()
asset.entries.Add( axis )
var children as JSONItem = json.Value( "children" )
for i as Integer = 0 to children.LastRowIndex()
var child as JSONItem = children.ChildAt( i )
var name as String = child.Value( "name" )
var type as Integer = child.Value( "type" )
var val as Variant = child.Value( "val" )
#pragma unused type
select case name
case "m_Name"
axis.m_Name = val
case "descriptiveName"
axis.descriptiveName = val
case "descriptiveNegativeName"
axis.descriptiveNegativeName = val
case "negativeButton"
axis.negativeButton = val
case "positiveButton"
axis.positiveButton = val
case "altNegativeButton"
axis.altNegativeButton = val
case "altPositiveButton"
axis.altPositiveButton = val
case "gravity"
axis.gravity = val
case "dead"
axis.dead = val
case "sensitivity"
axis.sensitivity = val
case "snap"
axis.snap = val
case "invert"
axis.invert = val
case "type"
axis.setTypeViaStringEnum( val )
case "axis"
axis.setAxisViaStringEnum( val )
case "joyNum"
axis.setJoyNumViaStringEnum( val )
else
raise new RuntimeException( "Unknown JSON name: " + name + ": " + val.StringValue )
end select
next
return asset
End Function
#tag EndMethod
#tag Method, Flags = &h0
Shared Function fromString(byRef s as String) As InputManagerAsset
var asset as InputManagerAsset = nil
if s.BeginsWith( "GenericPropertyJSON:" ) then
// Unity doesn’t quite put proper JSON on the clipboard: need to trim off prefix ...
s = s.TrimLeft( "GenericPropertyJSON:" )
var json as JSONItem = new JSONItem( s )
asset = InputManagerAsset.fromJSON( json )
elseif s.BeginsWith( "%YAML 1.1" ) then
asset = InputManagerAsset.fromYAML( s )
else
raise new RuntimeException( "String contents not recognised (YAML for file contents, YAML/(semi-)JSON for clipboard)" )
end if
return asset
End Function
#tag EndMethod
#tag Method, Flags = &h0
Shared Function fromWindowMain(entries() as AxisSetting, m_UsePhysicalKeys as Boolean) As InputManagerAsset
var asset as InputManagerAsset = new InputManagerAsset()
asset.m_UsePhysicalKeys = m_UsePhysicalKeys
asset.entries = entries
return asset
End Function
#tag EndMethod
#tag Method, Flags = &h0
Shared Function fromYAML(byRef s as String) As InputManagerAsset
s = s.ReplaceLineEndings( EndOfLine().Native )
var asset as InputManagerAsset = new InputManagerAsset()
var lines() as String = s.Split( EndOfLine().Native )
if lines( 0 ) <> "%YAML 1.1" then raise new RuntimeException( "First line not: %YAML 1.1" )
lines.RemoveAt( 0 )
if lines( 0 ) <> "%TAG !u! tag:unity3d.com,2011:" then raise new RuntimeException( "Second line not: %TAG !u! tag:unity3d.com,2011:" )
lines.RemoveAt( 0 )
if lines( 0 ) <> "--- !u!13 &1" then raise new RuntimeException( "Third line not: --- !u!13 &1" )
lines.RemoveAt( 0 )
if lines( 0 ) <> "InputManager:" then raise new RuntimeException( "Fourth line not: InputManager:" )
lines.RemoveAt( 0 )
var count as Integer = lines.Count
var entry as AxisSetting = nil
for i as Integer = 1 to count
var line as String = lines( 0 ).Trim()
lines.RemoveAt( 0 )
if line.Contains( "- serializedVersion: 3" ) then
entry = new AxisSetting()
elseif line.Contains( "m_UsePhysicalKeys:" ) then
var bits() as String = line.Split( ": " )
asset.m_UsePhysicalKeys = if ( bits( 1 ) = "1", true, false )
else
var result as Boolean = InputManagerAsset.lookAtLine( line, entry )
if result then
asset.entries.Add( entry )
entry = nil
end if
end if
next
return asset
End Function
#tag EndMethod
#tag Method, Flags = &h21
Private Shared Function lookAtLine(line as String, entry as AxisSetting) As Boolean
var bits() as String = line.Split( ": " )
var data as String = if ( bits.Count > 1, bits( 1 ), "" )
if line.BeginsWith( "m_Name:" ) then
entry.m_Name = data
elseif line.BeginsWith( "descriptiveName:" ) then
entry.descriptiveName = data
elseif line.BeginsWith( "descriptiveNegativeName:" ) then
entry.descriptiveNegativeName = data
elseif line.BeginsWith( "negativeButton:" ) then
entry.negativeButton = data
elseif line.BeginsWith( "positiveButton:" ) then
entry.positiveButton = data
elseif line.BeginsWith( "altNegativeButton:" ) then
entry.altNegativeButton = data
elseif line.BeginsWith( "altPositiveButton:" ) then
entry.altPositiveButton = data
elseif line.BeginsWith( "gravity:" ) then
entry.gravity = val( data )
elseif line.BeginsWith( "dead:" ) then
entry.dead = val( data )
elseif line.BeginsWith( "sensitivity:" ) then
entry.sensitivity = val( data )
elseif line.BeginsWith( "snap:" ) then
entry.snap = if ( data = "0", false, true )
elseif line.BeginsWith( "invert:" ) then
entry.invert = if ( data = "0", false, true )
elseif line.BeginsWith( "type:" ) then
entry.type = val( data )
elseif line.BeginsWith( "axis:" ) then
entry.axis = val( data )
elseif line.BeginsWith( "joyNum:" ) then
entry.joyNum = val( data )
return true
else
// nothing
end if
return false
End Function
#tag EndMethod
#tag Method, Flags = &h0
Function toString() As String
var lines() as String
lines.Add( "%YAML 1.1" )
lines.Add( "%TAG !u! tag:unity3d.com,2011:" )
lines.Add( "--- !u!13 &1" )
lines.Add( "InputManager:" )
lines.Add( " m_ObjectHideFlags: 0" )
lines.Add( " serializedVersion: 2" )
lines.Add( " m_Axes:" )
for each entry as AxisSetting in self.entries
self.Untitled( entry, lines )
next
lines.Add( " m_UsePhysicalKeys: " + if ( self.m_UsePhysicalKeys, "1", "0" ) )
var data as String = ""
for each line as String in lines
data = data + line + EndOfLine().Native
next
return data
End Function
#tag EndMethod
#tag Method, Flags = &h21
Private Sub Untitled(entry as AxisSetting, output() as String)
output.Add( " - serializedVersion: 3" )
output.Add( " m_Name: " + entry.m_Name )
output.Add( " descriptiveName: " + entry.descriptiveName )
output.Add( " descriptiveNegativeName: " + entry.descriptiveNegativeName )
output.Add( " negativeButton: " + entry.negativeButton )
output.Add( " positiveButton: " + entry.positiveButton )
output.Add( " altNegativeButton: " + entry.altNegativeButton )
output.Add( " altPositiveButton: " + entry.altPositiveButton )
output.Add( " gravity: " + entry.gravity.ToString() )
output.Add( " dead: " + entry.dead.ToString() )
output.Add( " sensitivity: " + entry.sensitivity.ToString() )
output.Add( " snap: " + if ( entry.snap, "1", "0" ) )
output.Add( " invert: " + if ( entry.invert, "1", "0" ) )
output.Add( " type: " + entry.type.ToString() )
output.Add( " axis: " + entry.axis.ToString() )
output.Add( " joyNum: " + entry.joyNum.ToString() )
End Sub
#tag EndMethod
#tag Property, Flags = &h0
entries() As AxisSetting
#tag EndProperty
#tag Property, Flags = &h0
m_UsePhysicalKeys As Boolean
#tag EndProperty
#tag ViewBehavior
#tag ViewProperty
Name="name"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Index"
Visible=true
Group="ID"
InitialValue="-2147483648"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Super"
Visible=true
Group="ID"
InitialValue=""
Type="String"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Left"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="Top"
Visible=true
Group="Position"
InitialValue="0"
Type="Integer"
EditorType=""
#tag EndViewProperty
#tag ViewProperty
Name="m_UsePhysicalKeys"
Visible=false
Group="Behavior"
InitialValue=""
Type="Boolean"
EditorType=""
#tag EndViewProperty
#tag EndViewBehavior
End Class
#tag EndClass