-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrenpytrans.py
952 lines (825 loc) · 35.9 KB
/
renpytrans.py
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
# -*- coding: utf-8 -*-
"""
1) Verificar caracteres especiales \033[32m||\033[0m \033[31m檢查特殊字元\033[0m
2) Copiar todos archivos .rpy que esta en esp a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m拷貝esp裡的所有.rpy\033[0m
3) Copiar todos archivos .rpy que esta en chino a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m拷貝chino裡的所有.rpy\033[0m
4) Eliminar completo .bak en toda las carpetas \033[32m||\033[0m \033[31m移除所有資料夾.bak\033[0m
5) Renombrar .rpy a .bak solo una carpeta \033[32m||\033[0m \033[31m只備份單一資料夾.rpy到.bak\033[0m
6) Hacer copia .rpy a .bak todas las carpetas \033[32m||\033[0m \033[31m備份所有資料夾.rpy到.bak\033[0m
7) Page down 200sec \033[32m||\033[0m \033[31m自動page down 200sec\033[0m
8) Copiar todos archivos .rpy a antigua que esta en esp a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m 拷貝esp裡的所有.rpy到antigua\033[0m
9) Copiar todos archivos .rpy a antigua que esta en chino a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m 拷貝chino裡的所有.rpy到antigua\033[0m
10) buscar [] {} ()
11) Reemplazar commam ESP por WEB
12) Reemplazar commam CHT por WEB
13) Separar el .rpy en varios archivos
14) Buscar dirección de google drives
15) Reemplazar screens ESP
16) Reemplazar screens CHT
17) Nada aun
18) Reemplazar commam ESP por AI nllb200
19) Reemplazar screens ESP por AI nllb200
20) Reemplazar commam CHS por AI nllb200
21) Reemplazar screens CHS por AI nllb200
22) Nada aun
23) Nada aun
24) Nada aun
25) Nada aun
26) Nada aun
27) Nada aun
28) Nada aun
"""
# imprimimos el menú en pantalla
print("\033[36m")
print("""
1) Verificar caracteres especiales \033[32m||\033[0m \033[31m檢查特殊字元\033[0m
2) Copiar todos archivos .rpy que esta en esp a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m拷貝esp裡的所有.rpy\033[0m
3) Copiar todos archivos .rpy que esta en chino a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m拷貝chino裡的所有.rpy\033[0m
4) Eliminar completo .bak en toda las carpetas \033[32m||\033[0m \033[31m移除所有資料夾.bak\033[0m
5) Renombrar .rpy a .bak solo una carpeta \033[32m||\033[0m \033[31m只備份單一資料夾.rpy到.bak\033[0m
6) Hacer copia .rpy a .bak todas las carpetas \033[32m||\033[0m \033[31m備份所有資料夾.rpy到.bak\033[0m
7) Page down 200sec \033[32m||\033[0m \033[31m自動page down 200sec\033[0m
8) Copiar todos archivos .rpy a antigua que esta en esp a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m 拷貝esp裡的所有.rpy到antigua\033[0m
9) Copiar todos archivos .rpy a antigua que esta en chino a la carpeta projzv3 traducir \033[32m||\033[0m \033[31m 拷貝chino裡的所有.rpy到antigua\033[0m
10) buscar [] {} ()
11) Reemplazar commam ESP por WEB
12) Reemplazar commam CHT por WEB
13) Separar el .rpy en varios archivos
14) Buscar dirección de google drives
15) Reemplazar screens ESP
16) Reemplazar screens CHT
17) Nada aun
18) Reemplazar commam ESP por AI nllb200
19) Reemplazar screens ESP por AI nllb200
20) Reemplazar commam CHS por AI nllb200
21) Reemplazar screens CHS por AI nllb200
22) Nada aun
23) Nada aun
24) Nada aun
25) Nada aun
26) Nada aun
27) Nada aun
28) Nada aun
""")
print("\033[0m")
# Leemos lo que ingresa el usuario
eleg = input("Seleccionar el ejercicio que desea ejecutar: ")
# Según lo que ingresó, código diferente
if eleg == "1":
import os
import re
import time
import progressbar
folder = os.path.dirname(os.path.abspath(__file__))
print("Comenzando procesamiento de archivos .rpy...")
start_time = time.time()
total_archivos = 0
for root, dirs, files in os.walk(folder):
total_archivos += len(files)
bar = progressbar.ProgressBar(maxval=total_archivos)
bar.start()
contador = 0
for root, dirs, files in os.walk(folder):
for filename in files:
if filename.endswith('.bak'):
os.remove(os.path.join(root, filename))
print("\n")
print(f"Eliminando archivo {filename}")
if filename.endswith('.rpy'):
with open(os.path.join(root, filename), 'r', encoding="utf-8") as f:
text = f.read()
cleaned = re.sub(
r'</font><font style="vertical-align: inherit;">', '', text)
cleaned = re.sub(
r'<font style="vertical-align: inherit;">', '', cleaned)
cleaned = re.sub(r'?', '?', cleaned)
cleaned = re.sub(r'。', '.', cleaned)
cleaned = re.sub(r'!', '!', cleaned)
cleaned = re.sub(r'“', '"', cleaned)
cleaned = re.sub(r'”', '"', cleaned)
cleaned = re.sub(r':', ':', cleaned)
cleaned = re.sub(r',', ',', cleaned)
cleaned = re.sub(r'(', '(', cleaned)
cleaned = re.sub(r')', ')', cleaned)
cleaned = re.sub(r'</font>', '', cleaned)
cleaned = re.sub(r'<td>', '', cleaned)
cleaned = re.sub(r'</td>', '', cleaned)
cleaned = re.sub(r'<tr>', '', cleaned)
cleaned = re.sub(r'</tr>', '', cleaned)
# cleaned = re.sub(r'{i}', '', cleaned)
# cleaned = re.sub(r'{/i}', '', cleaned)
cleaned = re.sub(r'@@', '', cleaned)
patron = r'\\.+?"'
resultados = re.findall(patron, cleaned)
for resultado in resultados:
cleaned = cleaned.replace(resultado, '@^' + resultado)
time.sleep(0.5)
contador += 1
bar.update(contador)
with open(os.path.join(root, 'cleaned_'+filename), 'w', encoding="utf-8") as f:
f.write(cleaned)
print("\n")
for root, dirs, files in os.walk(folder):
for filename in files:
if filename.endswith('.rpy') and not filename.startswith('cleaned_'):
os.rename(os.path.join(root, filename),
os.path.join(root, filename.split('.')[0] + '.rpy.bak'))
print(f"Procesando archivo {filename}")
print("\n")
for root, dirs, files in os.walk(folder):
for filename in files:
if filename.startswith('cleaned_'):
cleaned_name = filename
original_name = filename.replace('cleaned_', '')
os.rename(os.path.join(root, cleaned_name),
os.path.join(root, original_name))
print(f"cambiando nombre de archivo {filename}")
end_time = time.time()
print(f"Tiempo de ejecución: {round(end_time - start_time, 2)} segundos")
print("Procesamiento de archivos .rpy finalizado")
elif eleg == "2":
import os
import shutil
import time
from tqdm import tqdm
script_dir = os.path.dirname(os.path.abspath(__file__))
source_folder = os.path.join(script_dir, 'game', 'tl', 'esp')
destination_folder = 'g:\\projzv3\\traducir'
if not os.path.exists(source_folder):
print("Carpeta origen no encontrada")
if os.path.exists(destination_folder):
print(
f"La carpeta {destination_folder} no está vacía. ¿Desea borrar el contenido antes de copiar? (s/n)")
if input().lower() != "s":
print("Copia cancelada")
exit()
shutil.rmtree(destination_folder)
if not os.path.exists(destination_folder):
os.makedirs(destination_folder)
total_files = 0
copied_files = 0
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
total_files += 1 # Incrementar el contador de archivos
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
# Crear el directorio de destino si no existe
destination_dir = os.path.dirname(destination_path)
if not os.path.exists(destination_dir):
os.makedirs(destination_dir)
print(f'Copying {file}')
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
with tqdm(total=total_files, desc="Copying files", unit="file") as pbar:
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
pbar.update(1)
print("Proceso de copia completado")
elif eleg == "3":
import os
import shutil
import time
from tqdm import tqdm
script_dir = os.path.dirname(os.path.abspath(__file__))
source_folder = os.path.join(script_dir, 'game', 'tl', 'chino')
destination_folder = 'g:\\projzv3\\traducir'
if not os.path.exists(source_folder):
print("Carpeta origen no encontrada")
if os.path.exists(destination_folder):
print(
f"La carpeta {destination_folder} no está vacía. ¿Desea borrar el contenido antes de copiar? (s/n)")
if input().lower() != "s":
print("Copia cancelada")
exit()
shutil.rmtree(destination_folder)
if not os.path.exists(destination_folder):
os.makedirs(destination_folder)
total_files = 0
copied_files = 0
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
total_files += 1 # Incrementar el contador de archivos
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
# Crear el directorio de destino si no existe
destination_dir = os.path.dirname(destination_path)
if not os.path.exists(destination_dir):
os.makedirs(destination_dir)
print(f'Copying {file}')
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
with tqdm(total=total_files, desc="Copying files", unit="file") as pbar:
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
pbar.update(1)
print("Proceso de copia completado")
elif eleg == "4":
import os
import re
import time
import shutil
import progressbar
# folder = 'G:/TamaraExposedTheBeginning10esp/tetbesp_v1.0'
folder = os.path.dirname(os.path.abspath(__file__))
print("Comenzando procesamiento de eliminar .bak...")
start_time = time.time()
total_archivos = len(os.listdir(folder))
bar = progressbar.ProgressBar(maxval=100)
bar.start()
contador = 0
for dirpath, dirnames, filenames in os.walk(folder):
for filename in filenames:
if filename.endswith('.bak'):
filepath = os.path.join(dirpath, filename)
os.remove(filepath)
print(f"Eliminando archivo {filename}")
contador += 1
porcentaje = int(contador / total_archivos * 100)
end_time = time.time()
print(f"Tiempo de ejecución: {round(end_time - start_time, 2)} segundos")
# print("Procesamiento de archivos .rpy finalizado")
print("Archivos .bak eliminados")
bar.update(porcentaje)
elif eleg == "5":
import os
import shutil
import time
folder = os.path.dirname(os.path.abspath(__file__))
print("Comenzando procesamiento de archivos .rpy a .bak...")
start_time = time.time()
for file in os.listdir(folder):
if file.endswith('.rpy'):
src = os.path.join(folder, file)
dst = src + '.bak'
shutil.move(src, dst)
print(f'Renombrado {src} a {dst}')
end_time = time.time()
print(f"Tiempo de ejecución: {round(end_time - start_time, 2)} segundos")
print("Procesamiento de archivos .rpy finalizado")
elif eleg == "6":
import os
import re
import shutil
import time
import progressbar
# folder = 'G:/TamaraExposedTheBeginning10esp/tetbesp_v1.0'
folder = os.path.dirname(os.path.abspath(__file__))
print("Comenzando procesamiento de archivos .rpy a .bak...")
start_time = time.time()
total_archivos = len(os.listdir(folder))
bar = progressbar.ProgressBar(maxval=100)
bar.start()
contador = 0
for root, dirs, files in os.walk(folder):
for file in files:
if file.endswith('.rpy'):
src = os.path.join(root, file)
dst = src + '.bak'
shutil.copy2(src, dst)
print(f'Backed up {src} to {dst}')
contador += 1
porcentaje = int(contador / total_archivos * 100)
end_time = time.time()
print(f"Tiempo de ejecución: {round(end_time - start_time, 2)} segundos")
print("Procesamiento de archivos .rpy finalizado")
bar.update(porcentaje)
elif eleg == "7":
import curses
import time
import keyboard
stdscr = curses.initscr()
curses.noecho()
stdscr.nodelay(True)
total = 100
width = stdscr.getmaxyx()[1] - 20
stdscr.addstr(0, 0, 'Progreso: ')
for i in range(total):
if keyboard.is_pressed('q') or keyboard.is_pressed('esc'):
break
keyboard.press('pagedown')
time.sleep(3)
keyboard.press('pagedown')
time.sleep(3)
percent_done = (i + 1) * 100 / total
stdscr.addstr(1, 0, '[' + '=' * int(percent_done) +
'>' + '-' * (100 - int(percent_done)) + ']')
contador = f'{int(percent_done)}%'
stdscr.addstr(4, 0, contador)
stdscr.refresh()
time.sleep(0.1)
stdscr.addstr(1, 0, 'Completado!' + ' ' * (width - 12))
curses.endwin()
elif eleg == "8":
import os
import shutil
import time
from tqdm import tqdm
script_dir = os.path.dirname(os.path.abspath(__file__))
source_folder = os.path.join(script_dir, 'game', 'tl', 'esp')
destination_folder = 'g:\\projzv3\\antigua'
if not os.path.exists(source_folder):
print("Carpeta origen no encontrada")
if os.path.exists(destination_folder):
print(
f"La carpeta {destination_folder} no está vacía. ¿Desea borrar el contenido antes de copiar? (s/n)")
if input().lower() != "s":
print("Copia cancelada")
exit()
shutil.rmtree(destination_folder)
if not os.path.exists(destination_folder):
os.makedirs(destination_folder)
total_files = 0
copied_files = 0
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
total_files += 1 # Incrementar el contador de archivos
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
# Crear el directorio de destino si no existe
destination_dir = os.path.dirname(destination_path)
if not os.path.exists(destination_dir):
os.makedirs(destination_dir)
print(f'Copying {file}')
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
with tqdm(total=total_files, desc="Copying files", unit="file") as pbar:
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
pbar.update(1)
print("Proceso de copia completado")
elif eleg == "9":
import os
import shutil
import time
from tqdm import tqdm
script_dir = os.path.dirname(os.path.abspath(__file__))
source_folder = os.path.join(script_dir, 'game', 'tl', 'chino')
destination_folder = 'g:\\projzv3\\antigua'
if not os.path.exists(source_folder):
print("Carpeta origen no encontrada")
if os.path.exists(destination_folder):
print(
f"La carpeta {destination_folder} no está vacía. ¿Desea borrar el contenido antes de copiar? (s/n)")
if input().lower() != "s":
print("Copia cancelada")
exit()
shutil.rmtree(destination_folder)
if not os.path.exists(destination_folder):
os.makedirs(destination_folder)
total_files = 0
copied_files = 0
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
total_files += 1 # Incrementar el contador de archivos
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
# Crear el directorio de destino si no existe
destination_dir = os.path.dirname(destination_path)
if not os.path.exists(destination_dir):
os.makedirs(destination_dir)
print(f'Copying {file}')
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
with tqdm(total=total_files, desc="Copying files", unit="file") as pbar:
for root, dirs, files in os.walk(source_folder):
for file in files:
if file.endswith('.rpy'):
source_path = os.path.join(root, file)
destination_path = os.path.join(
destination_folder, os.path.relpath(root, source_folder), file)
try:
shutil.copy2(source_path, destination_path)
except Exception as e:
print("Error copiando archivo:", e)
copied_files += 1
pbar.update(1)
print("Proceso de copia completado")
elif eleg == "10":
import os
import re
def find_matches(pattern, suffix):
file_count = 0
for root, dirs, files in os.walk('.'):
for filename in files:
if filename.endswith('.rpy'):
file_count += 1
processed_files = 0
for root, dirs, files in os.walk('.'):
for filename in files:
if filename.endswith('.rpy'):
matches_by_line = {}
total_matches = 0
with open(os.path.join(root, filename), encoding="utf-8") as f:
for i, line in enumerate(f):
matches = re.findall(pattern, line)
if matches:
matches_by_line[i+1] = matches
result_filename = os.path.join(root, filename + suffix)
with open(result_filename, 'w', encoding="utf-8") as f:
for line, matches in matches_by_line.items():
for match in matches:
f.write(f'Encontrado en la línea {line} {match}\n')
total_matches += 1
print(f'Encontrado en la línea {line} {match} \n')
processed_files += 1
progress = processed_files / file_count * 100
print(f'Progreso: {progress:.2f}%')
print(
f'Resultados para {filename} guardados en {result_filename}')
print(f'Total de matches []: {total_matches}')
find_matches(r'\[.*?\]', 'resulcomi.txt')
find_matches(r'\{.*?\}', 'resulllave.txt')
find_matches(r'\(.*?\)', 'resulllave1.txt')
elif eleg == "11":
import re
archivo = "common.rpy"
cambios = {
# r"\[texto\]": "[text]",
# r"\[índice\]": "[index]",
# r"\[recuento\]": "[count]",
# r"\[problema\]": "[problem]",
# r"\[nombre\]": "[name]",
# r"\[tipo\]": "[kind]",
r'new "{#weekday_short}Sol"': 'new "{#weekday_short}Dom"',
r'new "{#month}August"': 'new "{#month}Agosto"',
r'new "{#month_short}abr"': 'new "{#month_short}Abr"',
r'new "{#month_short}Mayo"': 'new "{#month_short}May"',
r'new "{#month_short}ago"': 'new "{#month_short}Ago"',
}
lineas = []
with open(archivo, "r", encoding="utf-8") as f:
for linea in f:
for buscar, reemplazar in cambios.items():
linea = re.sub(buscar, reemplazar, linea)
lineas.append(linea)
print(linea)
with open(archivo, "w", encoding="utf-8") as f:
for l in lineas:
f.write(l)
elif eleg == "12":
import re
archivo = "common.rpy"
with open(archivo, "r", encoding="utf-8") as f:
contenido = f.read()
cambios = {
r"\[文本\]": "[text]",
r"\[计数\]": "[index]",
r"\[索引\]": "[count]",
r"\[问题\]": "[problem]",
r"\[名称\]": "[name]",
r"\[种类\]": "[kind]",
r"\[总计\]": "[total]",
r'"\[控件!s\]"': "'[control!s]'",
r'new "{#weekday_short}Tue"': 'new "{#weekday_short}週二"',
r'new "{#weekday_short}Thu"': 'new "{#weekday_short}週四"',
r'new "{#weekday_short}卫星"': 'new "{#weekday_short}週六"',
r'new "{#weekday_short}Sun"': 'new "{#weekday_short}週日"',
r'new "{#month_short}Jan"': 'new "{#month_short}一月"',
r'new "{#month_short}Mar"': 'new "{#month_short}三月"',
r'new "{#month_short}Jun"': 'new "{#month_short}六月"',
r'new "{#month_short}Jul"': 'new "{#month_short}七月"',
r'new "{#month_short}Sep"': 'new "{#month_short}九月"',
r'new "{#month_short}Oct"': 'new "{#month_short}十月"',
r'new "{#month_short}Nov"': 'new "{#month_short}十一月"',
r'new "{#month_short}Dec"': 'new "{#month_short}十二月"',
r'"shift\+C"': "'shift+C'",
r'"alt\+shift\+V"': "'alt+shift+V'",
r'"v"': "'v'",
r'"是"': "'是'"
}
# Hacer reemplazos en todo el contenido
for buscar, reemplazar in cambios.items():
contenido = re.sub(buscar, reemplazar, contenido)
# Volver a escribir el contenido modificado
with open(archivo, "w", encoding="utf-8") as f:
f.write(contenido)
print(contenido)
elif eleg == "13":
# ese tiene que cambiar manual el archivo que va separar
import os
secuencia = 1
conteo_lineas = 0
archivo_salida = open(
f"secuencia{str(secuencia).zfill(4)}.rpy", "w", encoding="utf-8")
with open("story.rpy") as archivo:
for linea in archivo:
if conteo_lineas == 5000:
archivo_salida.close()
secuencia += 1
conteo_lineas = 0
archivo_salida = open(
f"secuencia{str(secuencia).zfill(4)}.rpy", "w", encoding="utf-8")
print(linea)
archivo_salida.write(linea)
conteo_lineas += 1
archivo_salida.close()
elif eleg == "14":
import re
with open('verificar.txt', "r", encoding="utf-8") as f:
for line in f:
match = re.search(r'(href=".*?")', line)
if match:
url = match.group(1)
print(url)
with open('urls.txt', 'a') as f2:
f2.write(url + '\n')
with open('urls.txt', "r", encoding="utf-8") as f:
for line in f:
match = re.search(r'https?://drive\.google\.com/[^"]*', line)
if match:
url = match.group(0)
with open('urlssolo.txt', 'a') as f2:
f2.write(url + '\n')
print(url)
elif eleg == "15":
import re
archivo = "screens.rpy"
cambios = {
r'"<"': '"<"',
r'">"': '">"',
# r'new "{#month_short}abr"': 'new "{#month_short}Abr"',
# r'new "{#month_short}Mayo"': 'new "{#month_short}May"',
# r'new "{#month_short}ago"': 'new "{#month_short}Ago"',
}
lineas = []
with open(archivo, "r", encoding="utf-8") as f:
for linea in f:
for buscar, reemplazar in cambios.items():
linea = re.sub(buscar, reemplazar, linea)
lineas.append(linea)
print(linea)
with open(archivo, "w", encoding="utf-8") as f:
for l in lineas:
f.write(l)
elif eleg == "16":
import re
archivo = "screens.rpy"
cambios = {
r'"<"': '"<"',
r'">"': '">"',
# r'new "{#month_short}abr"': 'new "{#month_short}Abr"',
# r'new "{#month_short}Mayo"': 'new "{#month_short}May"',
# r'new "{#month_short}ago"': 'new "{#month_short}Ago"',
}
lineas = []
with open(archivo, "r", encoding="utf-8") as f:
for linea in f:
for buscar, reemplazar in cambios.items():
linea = re.sub(buscar, reemplazar, linea)
lineas.append(linea)
print(linea)
with open(archivo, "w", encoding="utf-8") as f:
for l in lineas:
f.write(l)
elif eleg == "17":
print("ok17")
elif eleg == "18":
import re
archivo = "common.rpy"
cambios = {
# r"\[texto\]": "[text]",
# r"\[índice\]": "[index]",
# r"\[recuento\]": "[count]",
# r"\[problema\]": "[problem]",
# r"\[nombre\]": "[name]",
# r"\[tipo\]": "[kind]",
r'new "@@El lunes"': 'new "{#weekday}Lunes"',
r'new "@@El martes"': 'new "{#weekday}Martes"',
r'new "@@Miércoles"': 'new "{#weekday}Miércoles"',
r'new "@@Jueves"': 'new "{#weekday}Jueves"',
r'new "@@Viernes"': 'new "{#weekday}Viernes"',
r'new "@@El sábado"': 'new "{#weekday}Sábado"',
r'new "@@El domingo"': 'new "{#weekday}Domingo"',
r'new "@@El Mon"': 'new "{#weekday_short}Lun"',
r'new "@@El día de la muerte"': 'new "{#weekday_short}Mar"',
r'new "@@Casado"': 'new "{#weekday_short}Mie"',
r'new "@@El de la"': 'new "{#weekday_short}Jue"',
r'new "@@Fr"': 'new "{#weekday_short}Vie"',
r'new "@@El sat"': 'new "{#weekday_short}Sab"',
r'new "@@El sol"': 'new "{#weekday_short}Dom"',
r'new "@@1 de enero"': 'new "{#month}Enero"',
r'new "@@Febrero"': 'new "{#month}Febrero"',
r'new "@@Marzo"': 'new "{#month}Marzo"',
r'new "@@El 1 de abril"': 'new "{#month}Abril"',
r'new "@@El 1 de mayo"': 'new "{#month}Mayo"',
r'new "@@Junio"': 'new "{#month}Junio"',
r'new "@@Julio"': 'new "{#month}Julio"',
r'new "@@Agosto"': 'new "{#month}Agosto"',
r'new "@@Septiembre"': 'new "{#month}Septiembre"',
r'new "@@Octubre"': 'new "{#month}Octubre"',
r'new "@@El 1 de noviembre"': 'new "{#month}Noviembre"',
r'new "@@Diciembre"': 'new "{#month}Diciembre"',
r'new "@@El día de hoy"': 'new "{#month_short}Ene"',
# r'new "@@Febrero"': 'new "{#month_short}Feb"',
r'new "@@Mar"': 'new "{#month_short}Mar"',
r'new "@@Apr"': 'new "{#month_short}Abr"',
# r'new "@@El 1 de mayo"': 'new "{#month_short}May"',
r'new "@@El año"': 'new "{#month_short}Jun"',
# r'new "Jul"': 'new "{#month_short}Jul"',
# r'new "Aug"': 'new "{#month_short}Ago"',
# r'new "@@Septiembre"': 'new "{#month_short}Sep"',
r'new "@@Oct"': 'new "{#month_short}Oct"',
r'new "@@El 1 de noviembre"': 'new "{#month_short}Nov"',
r'new "@@Dec"': 'new "{#month_short}Dic"',
r'new "@@¿Qué es eso\?"': 'new "(esconder)"',
r'new "new "@@Mientras desempaca, tipo desconocido."': 'new "@@Mientras desempaca{}, tipo desconocido{}."',
# r'new "\( Los atributos \)"': 'new "(Los atributos)"',
# r'new "La transformación\)"': 'new "(La transformación)"',
# r'new "La transición\)"': 'new "(La transición)"',
# r'new "\( El escondido \)"': 'new "(El escondido)"',
# r'new "El canal\)"': 'new "(El canal)"',
# r'new "Sin embargo, el tipo desconocido."': 'new "Sin embargo {}, el tipo desconocido {}."',
}
lineas = []
with open(archivo, "r", encoding="utf-8") as f:
for linea in f:
for buscar, reemplazar in cambios.items():
linea = re.sub(buscar, reemplazar, linea)
lineas.append(linea)
print(linea)
with open(archivo, "w", encoding="utf-8") as f:
for l in lineas:
f.write(l)
elif eleg == "19":
import re
archivo = "screens.rpy"
cambios = {
r'new "@@>"': 'new ">"',
r'new "@@¿Qué es eso\?"': 'new "<"',
r'new "@@Página "': 'new "@@Página {} "',
r'new "@@%A, %B %d %Y, %H:%M"': 'new "{#file_time}%A, %B %d %Y, %H:%M"',
r'new "@@A. El"': 'new "{#auto_page}A"',
r'new "@@Q. El"': 'new "{#auto_page}Q"',
}
lineas = []
with open(archivo, "r", encoding="utf-8") as f:
for linea in f:
for buscar, reemplazar in cambios.items():
linea = re.sub(buscar, reemplazar, linea)
lineas.append(linea)
print(linea)
with open(archivo, "w", encoding="utf-8") as f:
for l in lineas:
f.write(l)
elif eleg == "20":
import re
archivo = "common.rpy"
cambios = {
# r"\[texto\]": "[text]",
# r"\[índice\]": "[index]",
# r"\[recuento\]": "[count]",
# r"\[problema\]": "[problem]",
# r"\[nombre\]": "[name]",
# r"\[tipo\]": "[kind]",
r'new "@@电脑电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑,电脑等."': 'new "@@启用剪贴板发声."',
r'new "@@酒吧"': 'new "@@移动条"',
r'new "@@星期一"': 'new "{#weekday}星期一"',
r'new "@@星期二"': 'new "{#weekday}星期二"',
r'new "@@星期三"': 'new "{#weekday}星期三"',
r'new "@@星期四"': 'new "{#weekday}星期四"',
r'new "@@星期五"': 'new "{#weekday}星期五"',
r'new "@@星期六"': 'new "{#weekday}星期六"',
r'new "@@星期日"': 'new "{#weekday}星期日"',
r'new "@@周一"': 'new "{#weekday_short}周一"',
r'new "{#weekday_short}Tue"': 'new "{#weekday_short}周二"',
r'new "@@结婚"': 'new "{#weekday_short}周三"',
r'new "{#weekday_short}Thu': 'new "{#weekday_short}周四"',
r'new "@@星期五"': 'new "{#weekday_short}周五"',
r'new "@@坐标"': 'new "{#weekday_short}周六"',
r'new "@@太阳"': 'new "{#weekday_short}周日"',
r'new "@@十一月"': 'new "{#month}一月"',
r'new "@@2月"': 'new "{#month}二月"',
r'new "@@时间:"': 'new "{#month}三月"',
# r'new "@@El 1 de abril"': 'new "{#month}Abril"',
r'new "@@五月"': 'new "{#month}五月"',
r'new "@@六月"': 'new "{#month}六月"',
r'new "@@七月"': 'new "{#month}七月"',
r'new "@@八月"': 'new "{#month}八月"',
r'new "@@9月"': 'new "{#month}九月"',
r'new "@@10月"': 'new "{#month}十月"',
r'new "@@11月"': 'new "{#month}十一月"',
r'new "@@12月"': 'new "{#month}十二月"',
r'new "{#month_short}Jan"': 'new "{#month_short}一月"',
# r'new "@@Febrero"': 'new "{#month_short}Feb"',
r'new "{#month_short}Mar"': 'new "{#month_short}三月"',
r'new "@@时间"': 'new "{#month_short}四月"',
# r'new "@@El 1 de mayo"': 'new "{#month_short}May"',
# r'new "@@El año"': 'new "{#month_short}Jun"',
r'new "@@周六"': 'new "{#month_short}七月"',
# r'new "Aug"': 'new "{#month_short}Ago"',
# r'new "@@Septiembre"': 'new "{#month_short}Sep"',
# r'new "@@Oct"': 'new "{#month_short}Oct"',
r'new "@@十月"': 'new "{#month_short}十二月"',
r'new "@@十一月"': 'new "{#month_short}十一月"',
r'new "@@¿Qué es eso\?"': 'new "(esconder)"',
r'new "new "@@其他类型:"': 'new "%b %d, %H:%M"',
r'" Shift\+C"': "'shift+C'",
r'"alt\+shift\+V"': "'alt+shift+V'",
r'"v"': "'v'",
r'"是"': "'是'",
r'new "@@在打包时,不知名的类型."': 'new "@@在打包时{},不知名的类型{}."',
r'"\[控制!s\]"': "'[control!s]'",
# r'new "La transformación\)"': 'new "(La transformación)"',
# r'new "La transición\)"': 'new "(La transición)"',
# r'new "\( El escondido \)"': 'new "(El escondido)"',
# r'new "El canal\)"': 'new "(El canal)"',
# r'new "Sin embargo, el tipo desconocido."': 'new "Sin embargo {}, el tipo desconocido {}."',
}
lineas = []
with open(archivo, "r", encoding="utf-8") as f:
for linea in f:
for buscar, reemplazar in cambios.items():
linea = re.sub(buscar, reemplazar, linea)
lineas.append(linea)
print(linea)
with open(archivo, "w", encoding="utf-8") as f:
for l in lineas:
f.write(l)
elif eleg == "21":
import re
archivo = "screens.rpy"
cambios = {
r'new "@@汽车"': 'new "@@自动"',
r'new "@@预言"': 'new "@@设定"',
r'new "@@页面"': 'new "@@页面{}"',
r'new "@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,"': 'new "@@{#file_time}%A, %B %d %Y, %H:%M"',
r'new "@@其他"': 'new "@@<"',
r'new "@@问题"': 'new "@@{#quick_page}Q',
# r'new "@@%A, %B %d %Y, %H:%M"': 'new "{#file_time}%A, %B %d %Y, %H:%M"',
# r'new "@@A. El"': 'new "{#auto_page}A"',
# r'new "@@Q. El"': 'new "{#auto_page}Q"',
}
lineas = []
with open(archivo, "r", encoding="utf-8") as f:
for linea in f:
for buscar, reemplazar in cambios.items():
linea = re.sub(buscar, reemplazar, linea)
lineas.append(linea)
print(linea)
with open(archivo, "w", encoding="utf-8") as f:
for l in lineas:
f.write(l)
elif eleg == "22":
print("ok22")
elif eleg == "23":
print("ok23")
elif eleg == "24":
print("ok24")
elif eleg == "25":
print("ok25")
elif eleg == "26":
print("ok26")
elif eleg == "27":
print("ok27")
elif eleg == "28":
print("ok28")
else:
print("Opción no es valido")
exec(open("renpytrans.py", encoding="utf-8").read())