sonolus.py 0.9.3__py3-none-any.whl → 0.10.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of sonolus.py might be problematic. Click here for more details.

sonolus/script/runtime.py CHANGED
@@ -343,7 +343,7 @@ class RuntimeUi(Record):
343
343
 
344
344
  Available in play, watch, preview, and tutorial mode.
345
345
  """
346
- match ctx().global_state.mode:
346
+ match ctx().mode_state.mode:
347
347
  case Mode.PLAY:
348
348
  return UiLayout(_PlayRuntimeUi.menu)
349
349
  case Mode.WATCH:
@@ -362,7 +362,7 @@ class RuntimeUi(Record):
362
362
 
363
363
  Available in play, watch, preview, and tutorial mode.
364
364
  """
365
- match ctx().global_state.mode:
365
+ match ctx().mode_state.mode:
366
366
  case Mode.PLAY:
367
367
  return UiConfig(_PlayRuntimeUiConfigs.menu)
368
368
  case Mode.WATCH:
@@ -381,7 +381,7 @@ class RuntimeUi(Record):
381
381
 
382
382
  Available in play and watch mode.
383
383
  """
384
- match ctx().global_state.mode:
384
+ match ctx().mode_state.mode:
385
385
  case Mode.PLAY:
386
386
  return UiLayout(_PlayRuntimeUi.judgment)
387
387
  case Mode.WATCH:
@@ -396,7 +396,7 @@ class RuntimeUi(Record):
396
396
 
397
397
  Available in play and watch mode.
398
398
  """
399
- match ctx().global_state.mode:
399
+ match ctx().mode_state.mode:
400
400
  case Mode.PLAY:
401
401
  return UiConfig(_PlayRuntimeUiConfigs.judgment)
402
402
  case Mode.WATCH:
@@ -411,7 +411,7 @@ class RuntimeUi(Record):
411
411
 
412
412
  Available in play and watch mode.
413
413
  """
414
- match ctx().global_state.mode:
414
+ match ctx().mode_state.mode:
415
415
  case Mode.PLAY:
416
416
  return UiLayout(_PlayRuntimeUi.combo_value)
417
417
  case Mode.WATCH:
@@ -426,7 +426,7 @@ class RuntimeUi(Record):
426
426
 
427
427
  Available in play and watch mode.
428
428
  """
429
- match ctx().global_state.mode:
429
+ match ctx().mode_state.mode:
430
430
  case Mode.PLAY:
431
431
  return UiLayout(_PlayRuntimeUi.combo_text)
432
432
  case Mode.WATCH:
@@ -441,7 +441,7 @@ class RuntimeUi(Record):
441
441
 
442
442
  Available in play and watch mode.
443
443
  """
444
- match ctx().global_state.mode:
444
+ match ctx().mode_state.mode:
445
445
  case Mode.PLAY:
446
446
  return UiConfig(_PlayRuntimeUiConfigs.combo)
447
447
  case Mode.WATCH:
@@ -456,7 +456,7 @@ class RuntimeUi(Record):
456
456
 
457
457
  Available in play and watch mode.
458
458
  """
459
- match ctx().global_state.mode:
459
+ match ctx().mode_state.mode:
460
460
  case Mode.PLAY:
461
461
  return UiLayout(_PlayRuntimeUi.primary_metric_bar)
462
462
  case Mode.WATCH:
@@ -471,7 +471,7 @@ class RuntimeUi(Record):
471
471
 
472
472
  Available in play and watch mode.
473
473
  """
474
- match ctx().global_state.mode:
474
+ match ctx().mode_state.mode:
475
475
  case Mode.PLAY:
476
476
  return UiLayout(_PlayRuntimeUi.primary_metric_value)
477
477
  case Mode.WATCH:
@@ -486,7 +486,7 @@ class RuntimeUi(Record):
486
486
 
487
487
  Available in play and watch mode.
488
488
  """
489
- match ctx().global_state.mode:
489
+ match ctx().mode_state.mode:
490
490
  case Mode.PLAY:
491
491
  return UiConfig(_PlayRuntimeUiConfigs.primary_metric)
492
492
  case Mode.WATCH:
@@ -501,7 +501,7 @@ class RuntimeUi(Record):
501
501
 
502
502
  Available in play and watch mode.
503
503
  """
504
- match ctx().global_state.mode:
504
+ match ctx().mode_state.mode:
505
505
  case Mode.PLAY:
506
506
  return UiLayout(_PlayRuntimeUi.secondary_metric_bar)
507
507
  case Mode.WATCH:
@@ -516,7 +516,7 @@ class RuntimeUi(Record):
516
516
 
517
517
  Available in play and watch mode.
518
518
  """
519
- match ctx().global_state.mode:
519
+ match ctx().mode_state.mode:
520
520
  case Mode.PLAY:
521
521
  return UiLayout(_PlayRuntimeUi.secondary_metric_value)
522
522
  case Mode.WATCH:
@@ -531,7 +531,7 @@ class RuntimeUi(Record):
531
531
 
532
532
  Available in play and watch mode.
533
533
  """
534
- match ctx().global_state.mode:
534
+ match ctx().mode_state.mode:
535
535
  case Mode.PLAY:
536
536
  return UiConfig(_PlayRuntimeUiConfigs.secondary_metric)
537
537
  case Mode.WATCH:
@@ -546,7 +546,7 @@ class RuntimeUi(Record):
546
546
 
547
547
  Available in watch and preview mode.
548
548
  """
549
- match ctx().global_state.mode:
549
+ match ctx().mode_state.mode:
550
550
  case Mode.WATCH:
551
551
  return UiLayout(_WatchRuntimeUi.progress)
552
552
  case Mode.PREVIEW:
@@ -561,7 +561,7 @@ class RuntimeUi(Record):
561
561
 
562
562
  Available in watch and preview mode.
563
563
  """
564
- match ctx().global_state.mode:
564
+ match ctx().mode_state.mode:
565
565
  case Mode.WATCH:
566
566
  return UiConfig(_WatchRuntimeUiConfigs.progress)
567
567
  case Mode.PREVIEW:
@@ -576,7 +576,7 @@ class RuntimeUi(Record):
576
576
 
577
577
  Available in tutorial mode.
578
578
  """
579
- match ctx().global_state.mode:
579
+ match ctx().mode_state.mode:
580
580
  case Mode.TUTORIAL:
581
581
  return UiLayout(_TutorialRuntimeUi.previous)
582
582
  case _:
@@ -589,7 +589,7 @@ class RuntimeUi(Record):
589
589
 
590
590
  Available in tutorial mode.
591
591
  """
592
- match ctx().global_state.mode:
592
+ match ctx().mode_state.mode:
593
593
  case Mode.TUTORIAL:
594
594
  return UiLayout(_TutorialRuntimeUi.next)
595
595
  case _:
@@ -602,7 +602,7 @@ class RuntimeUi(Record):
602
602
 
603
603
  Available in tutorial mode.
604
604
  """
605
- match ctx().global_state.mode:
605
+ match ctx().mode_state.mode:
606
606
  case Mode.TUTORIAL:
607
607
  return UiConfig(_TutorialRuntimeUiConfigs.navigation)
608
608
  case _:
@@ -615,7 +615,7 @@ class RuntimeUi(Record):
615
615
 
616
616
  Available in tutorial mode.
617
617
  """
618
- match ctx().global_state.mode:
618
+ match ctx().mode_state.mode:
619
619
  case Mode.TUTORIAL:
620
620
  return UiLayout(_TutorialRuntimeUi.instruction)
621
621
  case _:
@@ -628,7 +628,7 @@ class RuntimeUi(Record):
628
628
 
629
629
  Available in tutorial mode.
630
630
  """
631
- match ctx().global_state.mode:
631
+ match ctx().mode_state.mode:
632
632
  case Mode.TUTORIAL:
633
633
  return UiConfig(_TutorialRuntimeUiConfigs.instruction)
634
634
  case _:
@@ -841,7 +841,7 @@ def is_debug() -> bool:
841
841
  """Check if the game is running in debug mode."""
842
842
  if not ctx():
843
843
  return False
844
- match ctx().global_state.mode:
844
+ match ctx().mode_state.mode:
845
845
  case Mode.PLAY:
846
846
  return _PlayRuntimeEnvironment.is_debug
847
847
  case Mode.WATCH:
@@ -857,25 +857,25 @@ def is_debug() -> bool:
857
857
  @meta_fn
858
858
  def is_play() -> bool:
859
859
  """Check if the game is running in play mode."""
860
- return bool(ctx() and ctx().global_state.mode == Mode.PLAY)
860
+ return bool(ctx() and ctx().mode_state.mode == Mode.PLAY)
861
861
 
862
862
 
863
863
  @meta_fn
864
864
  def is_preview() -> bool:
865
865
  """Check if the game is running in preview mode."""
866
- return bool(ctx() and ctx().global_state.mode == Mode.PREVIEW)
866
+ return bool(ctx() and ctx().mode_state.mode == Mode.PREVIEW)
867
867
 
868
868
 
869
869
  @meta_fn
870
870
  def is_watch() -> bool:
871
871
  """Check if the game is running in watch mode."""
872
- return bool(ctx() and ctx().global_state.mode == Mode.WATCH)
872
+ return bool(ctx() and ctx().mode_state.mode == Mode.WATCH)
873
873
 
874
874
 
875
875
  @meta_fn
876
876
  def is_tutorial() -> bool:
877
877
  """Check if the game is running in tutorial mode."""
878
- return bool(ctx() and ctx().global_state.mode == Mode.TUTORIAL)
878
+ return bool(ctx() and ctx().mode_state.mode == Mode.TUTORIAL)
879
879
 
880
880
 
881
881
  @meta_fn
@@ -892,7 +892,7 @@ def aspect_ratio() -> float:
892
892
  """Get the aspect ratio of the game."""
893
893
  if not ctx():
894
894
  return 16 / 9
895
- match ctx().global_state.mode:
895
+ match ctx().mode_state.mode:
896
896
  case Mode.PLAY:
897
897
  return _PlayRuntimeEnvironment.aspect_ratio
898
898
  case Mode.WATCH:
@@ -911,7 +911,7 @@ def audio_offset() -> float:
911
911
  """
912
912
  if not ctx():
913
913
  return 0
914
- match ctx().global_state.mode:
914
+ match ctx().mode_state.mode:
915
915
  case Mode.PLAY:
916
916
  return _PlayRuntimeEnvironment.audio_offset
917
917
  case Mode.WATCH:
@@ -930,7 +930,7 @@ def input_offset() -> float:
930
930
  """
931
931
  if not ctx():
932
932
  return 0
933
- match ctx().global_state.mode:
933
+ match ctx().mode_state.mode:
934
934
  case Mode.PLAY:
935
935
  return _PlayRuntimeEnvironment.input_offset
936
936
  case Mode.WATCH:
@@ -947,7 +947,7 @@ def is_multiplayer() -> bool:
947
947
  """
948
948
  if not ctx():
949
949
  return False
950
- match ctx().global_state.mode:
950
+ match ctx().mode_state.mode:
951
951
  case Mode.PLAY:
952
952
  return _PlayRuntimeEnvironment.is_multiplayer
953
953
  case _:
@@ -962,7 +962,7 @@ def is_replay() -> bool:
962
962
  """
963
963
  if not ctx():
964
964
  return False
965
- match ctx().global_state.mode:
965
+ match ctx().mode_state.mode:
966
966
  case Mode.WATCH:
967
967
  return _WatchRuntimeEnvironment.is_replay
968
968
  case _:
@@ -977,7 +977,7 @@ def time() -> float:
977
977
  """
978
978
  if not ctx():
979
979
  return 0
980
- match ctx().global_state.mode:
980
+ match ctx().mode_state.mode:
981
981
  case Mode.PLAY:
982
982
  return _PlayRuntimeUpdate.time
983
983
  case Mode.WATCH:
@@ -996,7 +996,7 @@ def offset_adjusted_time() -> float:
996
996
  """
997
997
  if not ctx():
998
998
  return 0
999
- match ctx().global_state.mode:
999
+ match ctx().mode_state.mode:
1000
1000
  case Mode.PLAY:
1001
1001
  return _PlayRuntimeUpdate.time - _PlayRuntimeEnvironment.input_offset
1002
1002
  case Mode.WATCH:
@@ -1015,7 +1015,7 @@ def delta_time() -> float:
1015
1015
  """
1016
1016
  if not ctx():
1017
1017
  return 0
1018
- match ctx().global_state.mode:
1018
+ match ctx().mode_state.mode:
1019
1019
  case Mode.PLAY:
1020
1020
  return _PlayRuntimeUpdate.delta_time
1021
1021
  case Mode.WATCH:
@@ -1034,7 +1034,7 @@ def scaled_time() -> float:
1034
1034
  """
1035
1035
  if not ctx():
1036
1036
  return 0
1037
- match ctx().global_state.mode:
1037
+ match ctx().mode_state.mode:
1038
1038
  case Mode.PLAY:
1039
1039
  return _PlayRuntimeUpdate.scaled_time
1040
1040
  case Mode.WATCH:
@@ -1059,7 +1059,7 @@ def touches() -> ArrayLike[Touch]:
1059
1059
  """Get the current touches of the game."""
1060
1060
  if not ctx():
1061
1061
  return Array[Touch, 0]() # type: ignore
1062
- match ctx().global_state.mode:
1062
+ match ctx().mode_state.mode:
1063
1063
  case Mode.PLAY:
1064
1064
  return ArrayPointer[Touch]._raw(
1065
1065
  size=Num._accept_(_PlayRuntimeUpdate.touch_count),
@@ -1078,7 +1078,7 @@ def is_skip() -> bool:
1078
1078
  """
1079
1079
  if not ctx():
1080
1080
  return False
1081
- match ctx().global_state.mode:
1081
+ match ctx().mode_state.mode:
1082
1082
  case Mode.WATCH:
1083
1083
  return _WatchRuntimeUpdate.is_skip
1084
1084
  case _:
@@ -1093,7 +1093,7 @@ def navigation_direction() -> int:
1093
1093
  """
1094
1094
  if not ctx():
1095
1095
  return 0
1096
- match ctx().global_state.mode:
1096
+ match ctx().mode_state.mode:
1097
1097
  case Mode.TUTORIAL:
1098
1098
  return _TutorialRuntimeUpdate.navigation_direction
1099
1099
  case _:
sonolus/script/stream.py CHANGED
@@ -118,19 +118,19 @@ def streams[T](cls: type[T]) -> T:
118
118
 
119
119
  @meta_fn
120
120
  def _check_can_read_stream() -> None:
121
- if not ctx() or ctx().global_state.mode != Mode.WATCH:
121
+ if not ctx() or ctx().mode_state.mode != Mode.WATCH:
122
122
  raise RuntimeError("Stream read operations are only allowed in watch mode.")
123
123
 
124
124
 
125
125
  @meta_fn
126
126
  def _check_can_write_stream() -> None:
127
- if not ctx() or ctx().global_state.mode != Mode.PLAY:
127
+ if not ctx() or ctx().mode_state.mode != Mode.PLAY:
128
128
  raise RuntimeError("Stream write operations are only allowed in play mode.")
129
129
 
130
130
 
131
131
  @meta_fn
132
132
  def _check_can_read_or_write_stream() -> None:
133
- if not ctx() or ctx().global_state.mode not in {Mode.PLAY, Mode.WATCH}:
133
+ if not ctx() or ctx().mode_state.mode not in {Mode.PLAY, Mode.WATCH}:
134
134
  raise RuntimeError("Stream operations are only allowed in play and watch modes.")
135
135
 
136
136
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: sonolus.py
3
- Version: 0.9.3
3
+ Version: 0.10.0
4
4
  Summary: Sonolus engine development in Python
5
5
  Project-URL: Documentation, https://sonolus.py.qwewqa.xyz/
6
6
  Project-URL: Repository, https://github.com/qwewqa/sonolus.py
@@ -11,7 +11,7 @@ sonolus/backend/node.py,sha256=eEzPP14jzWJp2xrZCAaPlNtokxdoqg0bSM7xQiwx1j8,1254
11
11
  sonolus/backend/ops.py,sha256=5weB_vIxbkwCSJuzYZyKUk7vVXsSIEDJYRlvE-2ke8A,10572
12
12
  sonolus/backend/place.py,sha256=7qwV732hZ4WP-9GNN8FQSEKssPJZELip1wLXTWfop7Y,4717
13
13
  sonolus/backend/utils.py,sha256=OwD1EPh8j-hsfkLzeKNzPQojT_3kklpJou0WTJNoCbc,2337
14
- sonolus/backend/visitor.py,sha256=SIkrr7JOOQ4is9ov2siBpczpb_vWZZyckBQQr2BojrQ,63437
14
+ sonolus/backend/visitor.py,sha256=PxxIvhP3AzGS3hZMulaF5CO2aswiBMyZc_Hwo040hTk,64421
15
15
  sonolus/backend/optimize/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  sonolus/backend/optimize/allocate.py,sha256=CuumoMphkpQlGRNeKLHT4FBGE0XVj5pwhfNdrqiLFSs,7535
17
17
  sonolus/backend/optimize/constant_evaluation.py,sha256=U--9moGsXFzrgweWWwHIiEuuMzwetd1IOjjtrCscoNM,21450
@@ -26,21 +26,21 @@ sonolus/backend/optimize/passes.py,sha256=YyFKy6qCwcR_Ua2_SXpcBODfvBbm_ygVYcqloO
26
26
  sonolus/backend/optimize/simplify.py,sha256=RDNVTKfC7ByRyxY5z30_ShimOAKth_pKlVFV_36pDG4,14082
27
27
  sonolus/backend/optimize/ssa.py,sha256=raQO0furQQRPYb8iIBKfNrJlj-_5wqtI4EWNfLZ8QFo,10834
28
28
  sonolus/build/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
29
- sonolus/build/cli.py,sha256=aEuuyWxo5u12z-0On2conYxQ31XHTIZ3npD4y0QNpFQ,9441
29
+ sonolus/build/cli.py,sha256=GQHzXGj55pqz84AnOKa21t74Nrbt7gUKfQe88gXIKtI,9357
30
30
  sonolus/build/collection.py,sha256=6hniAzriPWBKUeGDkXabNXpbdHiHnqiK9shs6U1OExM,12748
31
- sonolus/build/compile.py,sha256=3r3pbrOMS45ufQdtd12mhCq11b3km7BU4Npa2AMxTzo,8272
32
- sonolus/build/dev_server.py,sha256=5LgfHRhnR8cYGp8prkGxOp6E3TflTPw7xmJ1h1kOpGM,6331
33
- sonolus/build/engine.py,sha256=J5I1-oYpiwCl9lOKhLpEgw3iPRhzD6aLH9oBPjgHx_s,14139
31
+ sonolus/build/compile.py,sha256=KOmncDKmGfgzC_FWB_LTxAl0s9w4wnaDe-luACMlCVs,8397
32
+ sonolus/build/dev_server.py,sha256=WSih91Df2dPIRHdObjZ_sGnL3LKPJgv9m9RD_Zr7BqU,9881
33
+ sonolus/build/engine.py,sha256=No_q4O6PRMwxEPHvSlbaBKVe5CXJswWFZdR3xgfIuI8,14672
34
34
  sonolus/build/level.py,sha256=KLqUAtxIuIqrzeFURJA97rdqjA5pcvYSmwNZQhElaMQ,702
35
35
  sonolus/build/node.py,sha256=gnX71RYDUOK_gYMpinQi-bLWO4csqcfiG5gFmhxzSec,1330
36
- sonolus/build/project.py,sha256=8_Xnz6GyHFw9bfdRz4ATrgvSeMBEe554AYc8Lac-0sM,8340
36
+ sonolus/build/project.py,sha256=Uuz82QtTNFdklrVJ_i7EPp8hSjyOxLU1xAeOloa6G00,8579
37
37
  sonolus/script/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- sonolus/script/archetype.py,sha256=xhdm1jO_p32V1NtGjgV0SGPm7X9GnJ6Z7hXi2zT69Ww,49647
38
+ sonolus/script/archetype.py,sha256=ck_LR8z0ipVq3T9b735VwvQI2mxVUyjHylr4BFagXT8,49631
39
39
  sonolus/script/array.py,sha256=dzuAd72DcVGG8Ix5H69eIZpGiFSoH_rErKFNgQ5DEKI,12399
40
40
  sonolus/script/array_like.py,sha256=hUDdDaP306kflVv9YomdHIMXogrVjxsBXCrLvB9QpuE,9681
41
- sonolus/script/bucket.py,sha256=XLZ208UQIwDEdW9LDaAxIemhoNsNyKJo9aQVfAb5D7M,7796
41
+ sonolus/script/bucket.py,sha256=yIod3DgX7Hv7RLe-4Cn81FcydvbkbdMt26FzpRj7oUI,7794
42
42
  sonolus/script/containers.py,sha256=L3rzPfN1cDb2m02k9qRyjnGxJx07X3q3MccCaL5tNJ8,18773
43
- sonolus/script/debug.py,sha256=cwtKcO6unPlwkKIYF72RD_jlZpCNZiXLBHyrb4rl95s,5903
43
+ sonolus/script/debug.py,sha256=tok7uKzoVgps0V8ANAlcrZ0NJf5wVWK7ICozn8IVd30,6351
44
44
  sonolus/script/easing.py,sha256=2FUJI_nfp990P_armCcRqHm2329O985glJAhSC6tnxs,11379
45
45
  sonolus/script/effect.py,sha256=pYihzdVOS3ekiiTwPVg6czUW1UNv0CJNIk-xBsYRdq8,7792
46
46
  sonolus/script/engine.py,sha256=etI9dJsQ7V9YZICVNZg54WqpLijPxG8eTPHiV-_EiG8,10687
@@ -52,16 +52,16 @@ sonolus/script/level.py,sha256=X3-V99ihruYYCcPdch66dHi_ydCWXXn7epviLLjxW8w,8288
52
52
  sonolus/script/maybe.py,sha256=VYvTWgEfPzoXqI3i3zXhc4dz0pWBVoHmW8FtWH0GQvM,8194
53
53
  sonolus/script/metadata.py,sha256=ttRK27eojHf3So50KQJ-8yj3udZoN1bli5iD-knaeLw,753
54
54
  sonolus/script/num.py,sha256=9pahERQcIh16ytoDjJB3u3L6fH1Xh11Y99l8SYxkjMA,15927
55
- sonolus/script/options.py,sha256=XVN-mL7Rwhd2Tu9YysYq9YDGpH_LazdmhqzSYE6nR3Q,9455
55
+ sonolus/script/options.py,sha256=05y_4j2kr8fzct5FLqmSp5ZAjnq6-slmNgtsh4fVEpg,9451
56
56
  sonolus/script/particle.py,sha256=rCEJGT7frqJqZLi4EBCqDs4QBvLW6Ys640nD1FxiVec,10326
57
57
  sonolus/script/pointer.py,sha256=FoOfyD93r0G5d_2BaKfeOT9SqkOP3hq6sqtOs_Rb0c8,1511
58
58
  sonolus/script/printing.py,sha256=mNYu9QWiacBBGZrnePZQMVwbbguoelUps9GiOK_aVRU,2096
59
- sonolus/script/project.py,sha256=uw6_WuN1aRq_Sf43LPV_XpJWnx76nuO54D3UtdF2e0A,4793
59
+ sonolus/script/project.py,sha256=4svmMWYihF7olmYSMS5uoSjlnzbd7Ip2zTRY86oL1L8,4629
60
60
  sonolus/script/quad.py,sha256=8lZ_5-eWeqePldNGBkNZTuOgS_IRb41URgGwSW4h2T0,14445
61
61
  sonolus/script/record.py,sha256=BrQ8k-O4WX9FT_EfoRmNnKC1BZM9gWydZ4R4swh3chc,13051
62
- sonolus/script/runtime.py,sha256=Buy-bePUKBDj7LCKf5ek8xyiSy3ENOoz7FTGGMahnSk,33405
62
+ sonolus/script/runtime.py,sha256=TjxcfIIPRH6oxlEjWfLHDj1oo7fPfwTBdwETfnhN7h4,33331
63
63
  sonolus/script/sprite.py,sha256=q2i9AwFHO6X_li2hgwpP79fSG-ZriX0gMGhr3yTI8p8,18245
64
- sonolus/script/stream.py,sha256=qVljaCxJJtQs7aBwfUG15pYvztb4jFYzSLGDh5t4DTA,24713
64
+ sonolus/script/stream.py,sha256=Fu02SNjH8j1FQ9_7ncacR9uRIhoWtAZR-sTi8qBT7rA,24707
65
65
  sonolus/script/text.py,sha256=wxujIgKYcCfl2AD2_Im8g3vh0lDEHYwTSRZg9wsBPEU,13402
66
66
  sonolus/script/timing.py,sha256=DklMvuxcFg3MzXsecUo6Yhdk7pScOJ7STwXvAiTvLKM,3067
67
67
  sonolus/script/transform.py,sha256=w5mr7hTuNYU0eTAdnN_wTVibaQa0mZrkl-W-kgewJxQ,21345
@@ -72,7 +72,7 @@ sonolus/script/internal/__init__.py,sha256=T6rzLoiOUaiSQtaHMZ88SNO-ijSjSSv33TKtU
72
72
  sonolus/script/internal/builtin_impls.py,sha256=R1h3IOlWzolPfc9yoma2cBN0F5cBhj_JNP-TTdKoBlc,13186
73
73
  sonolus/script/internal/callbacks.py,sha256=vWzJG8uiJoEtsNnbeZPqOHogCwoLpz2D1MnHY2wVV8s,2801
74
74
  sonolus/script/internal/constant.py,sha256=3ycbGkDJVUwcrCZ96vLjAoAARgsvaqDM8rJ_YCrLrvo,4289
75
- sonolus/script/internal/context.py,sha256=Cd9US3GNHxs_96UcVdBAXGD-H4gCNnV9h5OfCWbtoOg,17668
75
+ sonolus/script/internal/context.py,sha256=Q_0wfTqjM0BF81dK69OZcIftRF082XtGJLW47SfLpsU,18715
76
76
  sonolus/script/internal/descriptor.py,sha256=XRFey-EjiAm_--KsNl-8N0Mi_iyQwlPh68gDp0pKf3E,392
77
77
  sonolus/script/internal/dict_impl.py,sha256=alu_wKGSk1kZajNf64qbe7t71shEzD4N5xNIATH8Swo,1885
78
78
  sonolus/script/internal/error.py,sha256=ZNnsvQVQAnFKzcvsm6-sste2lo-tP5pPI8sD7XlAZWc,490
@@ -87,8 +87,8 @@ sonolus/script/internal/simulation_context.py,sha256=LGxLTvxbqBIhoe1R-SfwGajNIDw
87
87
  sonolus/script/internal/transient.py,sha256=y2AWABqF1aoaP6H4_2u4MMpNioC4OsZQCtPyNI0txqo,1634
88
88
  sonolus/script/internal/tuple_impl.py,sha256=DPNdmmRmupU8Ah4_XKq6-PdT336l4nt15_uCJKQGkkk,3587
89
89
  sonolus/script/internal/value.py,sha256=OngrCdmY_h6mV2Zgwqhuo4eYFad0kTk6263UAxctZcY,6963
90
- sonolus_py-0.9.3.dist-info/METADATA,sha256=85b716gzemda0_TZ3ldIMytt7juroiJuQqt_oxkg2vY,553
91
- sonolus_py-0.9.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
92
- sonolus_py-0.9.3.dist-info/entry_points.txt,sha256=oTYspY_b7SA8TptEMTDxh4-Aj-ZVPnYC9f1lqH6s9G4,54
93
- sonolus_py-0.9.3.dist-info/licenses/LICENSE,sha256=JEKpqVhQYfEc7zg3Mj462sKbKYmO1K7WmvX1qvg9IJk,1067
94
- sonolus_py-0.9.3.dist-info/RECORD,,
90
+ sonolus_py-0.10.0.dist-info/METADATA,sha256=DsXCiBAkO45upsutT8V7g_5jfLj9Duu1JCMGegtRSMg,554
91
+ sonolus_py-0.10.0.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
92
+ sonolus_py-0.10.0.dist-info/entry_points.txt,sha256=oTYspY_b7SA8TptEMTDxh4-Aj-ZVPnYC9f1lqH6s9G4,54
93
+ sonolus_py-0.10.0.dist-info/licenses/LICENSE,sha256=JEKpqVhQYfEc7zg3Mj462sKbKYmO1K7WmvX1qvg9IJk,1067
94
+ sonolus_py-0.10.0.dist-info/RECORD,,