GameSentenceMiner 2.15.1__py3-none-any.whl → 2.15.2__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.
GameSentenceMiner/obs.py CHANGED
@@ -506,9 +506,16 @@ def set_fit_to_screen_for_scene_items(scene_name: str):
506
506
 
507
507
  source_width = scene_item_transform.get('sourceWidth', None)
508
508
  source_height = scene_item_transform.get('sourceHeight', None)
509
-
509
+
510
510
  aspect_ratio_different = False
511
- if source_width and source_height:
511
+ already_cropped = any([
512
+ scene_item_transform.get('cropLeft', 0) != 0,
513
+ scene_item_transform.get('cropRight', 0) != 0,
514
+ scene_item_transform.get('cropTop', 0) != 0,
515
+ scene_item_transform.get('cropBottom', 0) != 0,
516
+ ])
517
+
518
+ if source_width and source_height and not already_cropped:
512
519
  source_aspect_ratio = source_width / source_height
513
520
  canvas_aspect_ratio = canvas_width / canvas_height
514
521
  # Check if aspect ratio is different and if it's a standard aspect ratio
@@ -541,11 +548,15 @@ def set_fit_to_screen_for_scene_items(scene_name: str):
541
548
  'boundsHeight': canvas_height,
542
549
  'positionX': 0,
543
550
  'positionY': 0,
544
- 'cropLeft': 0 if not aspect_ratio_different or canvas_width > source_width else (source_width - canvas_width) // 2,
545
- 'cropRight': 0 if not aspect_ratio_different or canvas_width > source_width else (source_width - canvas_width) // 2,
546
- 'cropTop': 0 if not aspect_ratio_different or canvas_height > source_height else (source_height - canvas_height) // 2,
547
- 'cropBottom': 0 if not aspect_ratio_different or canvas_height > source_height else (source_height - canvas_height) // 2,
548
551
  }
552
+
553
+ if not already_cropped:
554
+ fit_to_screen_transform.update({
555
+ 'cropLeft': 0 if not aspect_ratio_different or canvas_width > source_width else (source_width - canvas_width) // 2,
556
+ 'cropRight': 0 if not aspect_ratio_different or canvas_width > source_width else (source_width - canvas_width) // 2,
557
+ 'cropTop': 0 if not aspect_ratio_different or canvas_height > source_height else (source_height - canvas_height) // 2,
558
+ 'cropBottom': 0 if not aspect_ratio_different or canvas_height > source_height else (source_height - canvas_height) // 2,
559
+ })
549
560
 
550
561
  try:
551
562
  client.set_scene_item_transform(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: GameSentenceMiner
3
- Version: 2.15.1
3
+ Version: 2.15.2
4
4
  Summary: A tool for mining sentences from games. Update: Overlay?
5
5
  Author-email: Beangate <bpwhelan95@gmail.com>
6
6
  License: MIT License
@@ -3,7 +3,7 @@ GameSentenceMiner/anki.py,sha256=4Tq6OGjfN-5tYorYRWiih7FZjSKMG6amrLv6DFKkFQc,253
3
3
  GameSentenceMiner/config_gui.py,sha256=G36MLR1UcdiLB6V3T25_ggGVnt5B4Vj1pS76nQQMqpk,139669
4
4
  GameSentenceMiner/gametext.py,sha256=fgBgLchezpauWELE9Y5G3kVCLfAneD0X4lJFoI3FYbs,10351
5
5
  GameSentenceMiner/gsm.py,sha256=4mJn5v4WKqKAJEtph5e0v4YPVDOpvFN1ylV2vQvf_Dg,31913
6
- GameSentenceMiner/obs.py,sha256=pr3n2Z9S80vYlwaYi516iwQL4DZKLx6owQofbwUMPnQ,25837
6
+ GameSentenceMiner/obs.py,sha256=99V4WvBhbBTEGI1o3dlGzhqnktKFUxPc1-5vOBcV0lk,26296
7
7
  GameSentenceMiner/vad.py,sha256=YCn4ZIc6_Q3IGOr5QNMiheVT3Ma5nisn8-V8xD53Mw4,19236
8
8
  GameSentenceMiner/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
9
9
  GameSentenceMiner/ai/ai_prompting.py,sha256=41xdBzE88Jlt12A0D-T_cMfLO5j6MSxfniOptpwNZm0,24068
@@ -72,9 +72,9 @@ GameSentenceMiner/web/templates/index.html,sha256=LqXZx7-NE42pXSpHNZ3To680rD-vt9
72
72
  GameSentenceMiner/web/templates/text_replacements.html,sha256=tV5c8mCaWSt_vKuUpbdbLAzXZ3ATZeDvQ9PnnAfqY0M,8598
73
73
  GameSentenceMiner/web/templates/utility.html,sha256=3flZinKNqUJ7pvrZk6xu__v67z44rXnaK7UTZ303R-8,16946
74
74
  GameSentenceMiner/wip/__init___.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
75
- gamesentenceminer-2.15.1.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
76
- gamesentenceminer-2.15.1.dist-info/METADATA,sha256=bGgKYTzm7t0Ko5S8johUdqLaSDJrqtmiFSrkjiwd1wk,7317
77
- gamesentenceminer-2.15.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
78
- gamesentenceminer-2.15.1.dist-info/entry_points.txt,sha256=2APEP25DbfjSxGeHtwBstMH8mulVhLkqF_b9bqzU6vQ,65
79
- gamesentenceminer-2.15.1.dist-info/top_level.txt,sha256=V1hUY6xVSyUEohb0uDoN4UIE6rUZ_JYx8yMyPGX4PgQ,18
80
- gamesentenceminer-2.15.1.dist-info/RECORD,,
75
+ gamesentenceminer-2.15.2.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
76
+ gamesentenceminer-2.15.2.dist-info/METADATA,sha256=G5LgyYGod4vrUBzQESiCd7p8CQwBybDYTVXy7Fkv_M8,7317
77
+ gamesentenceminer-2.15.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
78
+ gamesentenceminer-2.15.2.dist-info/entry_points.txt,sha256=2APEP25DbfjSxGeHtwBstMH8mulVhLkqF_b9bqzU6vQ,65
79
+ gamesentenceminer-2.15.2.dist-info/top_level.txt,sha256=V1hUY6xVSyUEohb0uDoN4UIE6rUZ_JYx8yMyPGX4PgQ,18
80
+ gamesentenceminer-2.15.2.dist-info/RECORD,,