-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy patheve_sde_tools.py
1106 lines (984 loc) · 49.2 KB
/
eve_sde_tools.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
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
""" Q.Industrialist (desktop/mobile)
run the following command from this directory as the root:
$ chcp 65001 & @rem on Windows only!
$ python eve_sde_tools.py --cache_dir=~/.q_industrialist
$ python q_dictionaries.py --category=all --cache_dir=~/.q_industrialist
$ python q_universe_preloader.py --category=all --pilot="Qandra Si" --online --cache_dir=~/.q_industrialist
"""
import typing
import sys
import os
import getopt
import yaml
import json
from yaml import SafeLoader
from pathlib import Path
import pyfa_conversions as conversions
# type=static_data_interface : unpacked SDE-yyyymmdd-TRANQUILITY.zip
def __get_yaml(type, sub_url, item):
f_name = '{cwd}/{type}/{url}'.format(type=type, cwd=os.getcwd(), url=sub_url)
item_to_search = "\n{}\n".format(item)
with open(f_name, 'r', encoding='utf8') as f:
contents = f.read()
beg = contents.find(item_to_search)
if beg == -1:
return {}
beg = beg + len(item_to_search)
# debug:print("{} = {}".format(item, beg))
end = beg + 1
length = len(contents)
while True:
end = contents.find("\n", end)
if (end == -1) or (end == (length-1)):
yaml_contents = contents[beg:length].encode('utf-8')
break
if contents[end+1] == ' ':
end = end + 1
else:
yaml_contents = contents[beg:beg+end-beg].encode('utf-8')
break
yaml_data = yaml.load(yaml_contents, Loader=SafeLoader)
return yaml_data
def __get_source_name(subname, name):
return '{cwd}/{type}/{url}'.format(cwd=os.getcwd(), type="static_data_interface", url="{}/{}.yaml".format(subname, name))
def __get_converted_name(ws_dir, name):
return '{dir}/sde_cache/.converted_{nm}.json'.format(dir=ws_dir, nm=name)
def read_converted(ws_dir, name):
f_name_json = __get_converted_name(ws_dir, name)
with open(f_name_json, 'r', encoding='utf8') as f:
s = f.read()
json_data = (json.loads(s))
return json_data
def __rebuild(ws_dir, subname, name_from, name_to, items_to_stay=None):
keys_to_stay = []
dicts_to_stay = []
if not (items_to_stay is None):
for i2s in items_to_stay:
if isinstance(i2s, str):
keys_to_stay.append(i2s)
elif isinstance(i2s, dict):
dicts_to_stay.append(i2s)
f_name_yaml = __get_source_name(subname, name_from)
f_name_json = __get_converted_name(ws_dir, name_to)
# файлы от CCP-шников действительно сохранены в utf-8 кодировке, т.к. например в groups.yaml
# содержится группа 1764 с Unicode Character 'BLACK DIAMOND SUIT' (U+2666) см. подробнее тут
# https://www.fileformat.info/info/unicode/char/2666/index.htm и в файле содержится
# последовательность из октет 0xE2 0x99 0xA6, что соответствует utf-8
# ---
# метод open(..., 'r', encoding='utf8') и s = f.read() выполняет чтение данных из этого файле и возвращает
# строку, содержающую универсальные символы \u2666
# ---
# если пытаться конвертировать строки с пом. encode("utf-16"), то будут появляться bytes-последовательности:
# b'\xff\xfef& \x00M\x00i\x00n\x00i\x00n\x00g\x00 \x00F\x00r\x00i\x00g\x00a\x00t\x00e\x00'
# если конвертировать строки с пом. encode("utf-8"), то будут появляться bytes-последовательности:
# b'\xe2\x99\xa6 Mining Frigate'
# в том и в другом случае decode('utf-8') обратно вернёт строку:
# "\u2666 Mining Frigate"
# ---
# для того, чтобы содержимое таких строк в windows отображалось в консоли, надо предварительно задать
# кодовую страницу utf-8 в cmd.exe с помощью команды cpch 65001, тогда строка при выводе будет выглядеть:
# ♦ Mining Frigate
# ---
# см. также https://stackoverflow.com/a/27527728
# см. также https://stackoverflow.com/a/31207398
with open(f_name_yaml, 'r', encoding='utf8') as f:
try:
# yaml
s = f.read()
yaml_data = yaml.load(s, Loader=SafeLoader)
# clean yaml
for yd in yaml_data:
if isinstance(yaml_data, dict) and (isinstance(yd, str) or isinstance(yd, int)):
yd_ref =yaml_data[yd]
elif isinstance(yaml_data, list):
yd_ref = yd
else:
break # нет смысла продолжать, т.к. все элементы в файлы однотипны
while True:
keys1 = yd_ref.keys()
deleted1 = False
for key1 in keys1: # ["iconID","name"]
found1 = False
if key1 in keys_to_stay: # "name"
continue
for d2s in dicts_to_stay: # [{"name", ["en"]}]
k2s = d2s.get(key1, None) # ["en"]
if k2s is None:
continue
found1 = True
while True:
keys2 = yd_ref[key1].keys() # ["en","de","ru"]
deleted2 = False
for key2 in keys2:
if not (key2 in k2s): # "en"
del yd_ref[key1][key2]
deleted2 = True
break
if deleted2:
continue
break
if not found1:
del yd_ref[key1]
deleted1 = True
break
if deleted1:
continue
break
# mkdir
Path('{dir}/sde_cache'.format(dir=ws_dir)).mkdir(parents=True, exist_ok=True)
# json
s = json.dumps(yaml_data, indent=1, sort_keys=False)
f = open(f_name_json, "wt+", encoding='utf8')
f.write(s)
del yaml_data
finally:
f.close()
def __rebuild_list2dict_by_key(ws_dir, name, key, val=None):
# перечитываем построенный файл и преобразуем его из списка в справочник
# при этом одно из значений элементов списка выбирается ключём в справочнике,
# в том числ поддерживается возможность упростить
# [key1: {key1_2: val1_2}, key2: {key2_1: val2_2}]
# до
# {"key1": val1_2, "key2": val2_2}
# задав необязательный val-параметр
lst = read_converted(ws_dir, name)
if not isinstance(lst, list):
return
dct = {}
for itm in lst:
if val is None:
key_value = itm[key]
del itm[key]
dct.update({str(key_value): itm})
else:
dct.update({str(itm[key]): itm[val]})
# json
f_name_json = __get_converted_name(ws_dir, name)
s = json.dumps(dct, indent=1, sort_keys=False)
f = open(f_name_json, "wt+", encoding='utf8')
f.write(s)
del dct
del lst
def get_item_name_by_type_id(type_ids, type_id):
type_dict = type_ids.get(str(type_id))
if type_dict is not None:
name_dict = type_dict.get('name')
if name_dict is not None:
en_name = name_dict.get('en')
if en_name is not None:
return en_name
return str(type_id)
def convert_sde_type_ids(type_ids):
named_type_ids = {}
keys = type_ids.keys()
for type_id in keys:
type_dict = type_ids[str(type_id)]
if ("name" in type_dict) and ("en" in type_dict["name"]):
__name = type_dict["name"]["en"]
named_dict = type_dict.copy()
del named_dict["name"]
named_dict["id"] = int(type_id)
named_type_ids.update({__name: named_dict})
return named_type_ids
def find_type_id_by_item_name_ex(named_type_ids, name):
__item = named_type_ids.get(name)
if __item is None:
return None, None
return __item["id"], __item
def find_type_id_by_item_name(named_type_ids, name):
type_id, __dummy0 = find_type_id_by_item_name_ex(named_type_ids, name)
return type_id
def get_type_id_by_item_name_ex(type_ids, name):
keys = type_ids.keys()
for type_id in keys:
type_dict = type_ids[str(type_id)]
if ("name" in type_dict) and ("en" in type_dict["name"]):
__name = type_dict["name"]["en"]
if __name == name:
return int(type_id), type_dict
return None, None
def get_type_id_by_item_name(type_ids, name):
type_id, __dummy0 = get_type_id_by_item_name_ex(type_ids, name)
return type_id
def get_market_group_name_by_id(sde_type_ids, group_id):
group_sid: str = str(group_id)
group_dict = sde_type_ids.get(str(group_id))
if group_dict is not None:
name_dict = group_dict.get('nameID')
if name_dict is not None:
en_name = name_dict.get('en')
if en_name is not None:
return en_name
return group_sid
def get_market_group_by_type_id(sde_type_ids, type_id: int) -> typing.Optional[int]:
type_dict = sde_type_ids.get(str(type_id))
if type_dict is None:
return None
return type_dict.get("marketGroupID")
def get_market_group_by_name(sde_market_groups, name):
for grp in sde_market_groups.items():
if name == grp[1]["nameID"]["en"]:
return grp # id=grp[0], dict=grp[1]
return None
def get_market_group_id_by_name(sde_market_groups, name):
grp = get_market_group_by_name(sde_market_groups, name)
return None if grp is None else grp[0]
def get_market_groups_chain_by_type_id(sde_type_ids, sde_market_groups, type_id: int) -> typing.List[int]:
group_id: typing.Optional[int] = get_market_group_by_type_id(sde_type_ids, type_id)
if group_id is None:
return []
__group_id: int = group_id
__groups_chain: typing.List[int] = [group_id]
while True:
__grp1 = sde_market_groups[str(__group_id)]
if "parentGroupID" in __grp1:
__group_id = __grp1["parentGroupID"]
# переворачиваем элементы списка, где корень будет в его начале
__groups_chain.insert(0, __group_id)
else:
return __groups_chain
def get_root_market_group_by_type_id(sde_type_ids, sde_market_groups, type_id):
groups_chain = get_market_groups_chain_by_type_id(sde_type_ids, sde_market_groups, type_id)
if (groups_chain is None) or not groups_chain:
return None
return groups_chain[0]
def get_basis_market_group_by_group_id(sde_market_groups, group_id: int):
__group_id = group_id
while True:
if __group_id in [# 475, # Manufacture & Research
# 533, # Materials (parent:475, см. ниже)
# 1035, # Components (parent:475, см. ниже)
1872, # Research Equipment (parent:475)
955, # Ship and Module Modifications
1112, # Subsystems (parent:955)
]:
return __group_id
__grp1 = sde_market_groups[str(__group_id)]
if "parentGroupID" in __grp1:
__parent_group_id = __grp1["parentGroupID"]
# группа материалов для целей производства должна делиться на подгруппы (производство и заказы
# в каждой из них решается индивидуально)
if __parent_group_id in [533, # Materials
1034, # Reaction Materials
477, # Structures (чтобы было понятнее содержимое accounting-отчётов)
1035, # Components
]:
return __group_id
__group_id = __parent_group_id
else:
return __group_id
def get_basis_market_group_by_type_id(sde_type_ids, sde_market_groups, type_id: int) -> typing.Optional[int]:
group_id: typing.Optional[int] = get_market_group_by_type_id(sde_type_ids, type_id)
if group_id is None:
return None
return get_basis_market_group_by_group_id(sde_market_groups, int(group_id))
def is_type_id_nested_into_market_group(
type_id: int,
market_groups: typing.Union[typing.List[int], typing.Set[int]],
sde_type_ids,
sde_market_groups) -> typing.Optional[bool]:
groups_chain: typing.List[int] = get_market_groups_chain_by_type_id(sde_type_ids, sde_market_groups, type_id)
if groups_chain is None:
return None
return bool(set(groups_chain) & set(market_groups))
def get_blueprint_any_activity(blueprints, activity: str, type_id: int):
# manufacturing - производство
# invention - запуск инвентов
# copying - копирка
# research_material - запуск ME
# research_time - запуск TE
# reaction - реакции
if activity in ['manufacturing', 'invention', 'copying', 'research_material', 'research_time', 'reaction']:
if not (str(type_id) in blueprints):
return None
else:
bp = blueprints[str(type_id)]
bp1 = bp.get('activities')
if bp1 is None:
return None
bp2 = bp1.get(activity)
if bp2 is None:
return None
bp3 = bp2.get('materials')
if bp3 is None:
if activity in ['copying', 'research_material', 'research_time']:
return bp2
return None
return bp2
else:
return None
def get_blueprint_any_materials(blueprints, activity: str, type_id: int):
a = get_blueprint_any_activity(blueprints, activity, type_id)
if a is None:
return None
return a['materials']
def get_blueprint_copying_activity(sde_bp_materials, type_id: int):
return get_blueprint_any_activity(sde_bp_materials, 'copying', type_id)
def get_blueprint_manufacturing_activity(blueprints, type_id: int):
return get_blueprint_any_activity(blueprints, 'manufacturing', type_id)
def get_blueprint_manufacturing_materials(blueprints, type_id: int):
return get_blueprint_any_materials(blueprints, 'manufacturing', type_id)
def get_materials_for_blueprints(sde_bp_materials):
"""
Построение списка модулей и ресурсов, которые используются в производстве
"""
materials_for_bps = []
for bp in sde_bp_materials:
__bpm1 = sde_bp_materials[bp]["activities"]
if "manufacturing" in __bpm1:
__bpm2 = __bpm1["manufacturing"]
if "materials" in __bpm2:
__bpm3 = __bpm2["materials"]
for m in __bpm3:
if "typeID" in m:
type_id = int(m["typeID"])
if 0 == materials_for_bps.count(type_id):
materials_for_bps.append(type_id)
return materials_for_bps
def get_research_materials_for_blueprints(sde_bp_materials):
"""
Построение списка модулей и ресурсов, которые используются в производстве
"""
research_materials_for_bps = []
for bp in sde_bp_materials:
__bpm1 = sde_bp_materials[bp]["activities"]
if "research_material" in __bpm1:
__bpm2 = __bpm1["research_material"]
if "materials" in __bpm2:
__bpm3 = __bpm2["materials"]
for m in __bpm3:
if "typeID" in m:
type_id = int(m["typeID"])
if 0 == research_materials_for_bps.count(type_id):
research_materials_for_bps.append(type_id)
return research_materials_for_bps
def construct_products_for_blueprints_by_activity(sde_bp_materials, activity="manufacturing"):
"""
Построение списка продуктов, которые появляются в результате производства
"""
products_for_bps = []
for bp in sde_bp_materials:
__bpm2 = sde_bp_materials[bp]["activities"].get(activity)
if not __bpm2:
continue
__bpm3 = __bpm2.get("products")
if not __bpm3:
continue
for m in __bpm3:
type_id: int = m.get("typeID")
if 0 == products_for_bps.count(type_id):
products_for_bps.append(type_id)
return products_for_bps
class EveSDEProduct:
def __init__(self,
product_type_id: int,
blueprint_type_id: int,
blueprint_type: typing.Dict[str, typing.Any],
max_production_limit: int,
activity_data: typing.Dict[str, typing.Any],
products_per_single_run: int):
self.product_type_id: int = product_type_id
self.blueprint_type_id: int = blueprint_type_id
self.blueprint_type: typing.Dict[str, typing.Any] = blueprint_type
self.max_production_limit: int = max_production_limit
self.activity_data: typing.Dict[str, typing.Any] = activity_data
self.products_per_single_run: int = products_per_single_run
def construct_products_for_blueprints(
sde_bp_materials: typing.Dict[str, typing.Dict[str, typing.Any]],
sde_type_ids: typing.Dict[str, typing.Dict[str, typing.Any]]) \
-> typing.Dict[str, typing.Dict[int, typing.Union[EveSDEProduct, typing.List[EveSDEProduct]]]]:
products: typing.Dict[str, typing.Dict[int, typing.Any]] = {
'manufacturing': dict(),
'research_time': dict(),
'research_material': dict(),
'copying': dict(),
'invention': dict(),
'reaction': dict()}
for blueprint_type_id, blueprint_data in sde_bp_materials.items():
bp_tid_dict = sde_type_ids.get(str(blueprint_type_id))
if not bp_tid_dict or not bp_tid_dict.get('published', False):
continue
blueprint_type_id__int: int = int(blueprint_type_id)
for activity, activity_data in blueprint_data['activities'].items():
products_data = activity_data.get('products')
activity_of_products: typing.Dict[int, typing.Union[EveSDEProduct, typing.List[EveSDEProduct]]] = products[activity]
if products_data:
for p in products_data:
product_type_id: int = p['typeID']
product_obj: EveSDEProduct = EveSDEProduct(
product_type_id,
blueprint_type_id__int,
bp_tid_dict,
blueprint_data['maxProductionLimit'],
activity_data,
p['quantity'])
product_dict: typing.Union[EveSDEProduct, typing.List[EveSDEProduct]] = activity_of_products.get(product_type_id)
if product_dict is None:
activity_of_products[product_type_id] = product_obj
elif isinstance(product_dict, list):
product_dict.append(product_obj)
else:
activity_of_products[product_type_id] = [product_dict, product_obj]
elif activity in {'research_time', 'research_material', 'copying'}:
# Внимание! Coalesced Element Blueprint (36949) является published и имеет invent без продукта
product_type_id = int(blueprint_type_id)
activity_of_products[product_type_id] = EveSDEProduct(
product_type_id,
blueprint_type_id__int,
bp_tid_dict,
blueprint_data['maxProductionLimit'],
activity_data,
1)
return products
def get_any_blueprint_type_id_by_product_id(
product_id: int,
sde_bp_materials: typing.Dict[str, typing.Dict[str, typing.Any]],
sde_type_ids: typing.Optional[typing.Dict[str, typing.Dict[str, typing.Any]]],
activity: typing.Optional[str] = "manufacturing") -> \
typing.Optional[typing.Tuple[int, typing.Any, typing.Any]]:
"""
Внимание! это вредный метод, он очень медленно работает, перебирая ВСЕ чертежи и ВСЕ продукты по ВСЕМ activity.
Чтобы ускориться предварительную переиндексацию с помощью construct_products_for_blueprints.
----
Поиск идентификатора чертежа по известному идентификатору manufacturing-продукта
Внимание!
* в игре можно найти неопубликованный предмет, который можно произвести (чёртеж существует)
* в игре нельзя найти неопубликованный чертёж (его не существует)
"""
for blueprint_type_id, blueprint_data in sde_bp_materials.items():
if sde_type_ids is not None:
bp_tid_dict = sde_type_ids.get(str(blueprint_type_id))
if not bp_tid_dict or not bp_tid_dict.get("published", False):
continue
if activity is not None:
bpm2 = blueprint_data["activities"].get(activity)
if not bpm2:
continue
bpm3 = bpm2.get("products")
if bpm3:
for m in bpm3:
type_id: int = m["typeID"]
if product_id == type_id:
return int(blueprint_type_id), blueprint_data, bpm2
else:
for bpm2 in blueprint_data["activities"]:
bpm3 = bpm2.get("products")
if bpm3:
for m in bpm3:
type_id: int = m["typeID"]
if product_id == type_id:
return int(blueprint_type_id), blueprint_data, bpm2
return None
def get_blueprint_type_id_by_product_id(
product_id: int,
sde_bp_materials: typing.Dict[str, typing.Dict[str, typing.Any]],
sde_type_ids: typing.Dict[str, typing.Dict[str, typing.Any]],
activity: str = "manufacturing") -> \
typing.Tuple[typing.Optional[int], typing.Optional[typing.Any]]:
"""
Внимание! это вредный метод, он очень медленно работает, перебирая ВСЕ чертежи и ВСЕ продукты по ВСЕМ activity.
Чтобы ускориться предварительную переиндексацию с помощью construct_products_for_blueprints.
----
Поиск идентификатора чертежа по известному идентификатору manufacturing-продукта
Внимание!
* в игре можно найти неопубликованный предмет, который можно произвести (чёртеж существует)
* в игре нельзя найти неопубликованный чертёж (его не существует)
"""
res: typing.Optional[typing.Tuple[int, typing.Any, typing.Any]] = \
get_any_blueprint_type_id_by_product_id(
product_id,
sde_bp_materials,
sde_type_ids,
activity)
if res is None:
return None, None
return res[0], res[1]
def get_blueprint_type_id_by_manufacturing_product_id(
product_id: int,
sde_bp_materials,
sde_type_ids) -> typing.Tuple[typing.Optional[int], typing.Optional[typing.Any]]:
a, b = get_blueprint_type_id_by_product_id(product_id, sde_bp_materials, sde_type_ids, activity="manufacturing")
return a, b
def get_blueprint_type_id_by_invention_product_id(
product_id: int,
sde_bp_materials,
sde_type_ids) -> typing.Tuple[typing.Optional[int], typing.Optional[typing.Any]]:
a, b = get_blueprint_type_id_by_product_id(product_id, sde_bp_materials, sde_type_ids, activity="invention")
return a, b
def get_products_by_blueprint_type_id(
blueprint_type_id: int,
activity_id,
sde_bp_materials) -> typing.Optional[typing.List[typing.Tuple[int, int]]]:
"""
Поиск идентификатора manufacturing/reaction-продукта по известному идентификатору чертежа
"""
__bpm0 = sde_bp_materials.get(str(blueprint_type_id), None)
if __bpm0 is None:
return None
__bpm1 = __bpm0.get("activities", None)
if __bpm1 is None:
return None
__bpm2 = None
if activity_id == 1:
__bpm2 = __bpm1.get('manufacturing')
elif activity_id == 8:
__bpm2 = __bpm1.get('invention')
elif activity_id in (9, 11):
__bpm2 = __bpm1.get('reaction')
if __bpm2 is None:
return None
__bpm3 = __bpm2.get('products')
if __bpm3:
products = [(int(m['typeID']), int(m['quantity'])) for m in __bpm3]
return products
return None
def get_manufacturing_product_by_blueprint_type_id(blueprint_type_id, sde_bp_materials):
"""
Поиск идентификатора manufacturing-продукта по известному идентификатору чертежа
"""
if str(blueprint_type_id) in sde_bp_materials:
__bpm1 = sde_bp_materials[str(blueprint_type_id)]["activities"]
if "manufacturing" in __bpm1:
__bpm2 = __bpm1["manufacturing"]
if "products" in __bpm2:
__bpm3 = __bpm2["products"]
for m in __bpm3:
product_id = int(m["typeID"])
quantity = int(m["quantity"])
return product_id, quantity, __bpm2["materials"]
return None, None, None
def get_market_groups_tree_root(groups_tree, group_id):
if not (str(group_id) in groups_tree):
return group_id
itm = groups_tree[str(group_id)]
if not ("parent_id" in itm):
return group_id
return get_market_groups_tree_root(groups_tree, itm["parent_id"])
def get_market_groups_tree(sde_market_groups):
"""
Строит дерево в виде:
{ group1: [sub1,sub2,...], group2: [sub3,sub4,...] }
"""
groups_tree = {}
sde_market_groups_keys = sde_market_groups.keys()
for group_id in sde_market_groups_keys:
mg = sde_market_groups[str(group_id)]
if "parentGroupID" in mg:
parent_id = mg["parentGroupID"]
if (str(parent_id) in groups_tree) and ("items" in groups_tree[str(parent_id)]):
groups_tree[str(parent_id)]["items"].append(int(group_id))
else:
groups_tree.update({str(parent_id): {"items": []}})
groups_tree.update({str(group_id): {"parent_id": int(parent_id)}})
else:
groups_tree.update({str(group_id): {}})
groups_tree_keys = groups_tree.keys()
if len(groups_tree_keys) > 0:
roots = []
for k in groups_tree_keys:
root = get_market_groups_tree_root(groups_tree, k)
if 0 == roots.count(int(root)):
roots.append(int(root))
groups_tree["roots"] = roots
return groups_tree
# только для работы с текстовыми фитами, где возможно хранятся устаревшие названия модулей
def __try_to_get_type_id_by_item_name(name, sde_named_type_ids):
__type_id = __item = None
__item_name = name
for i in range(10):
# шаг №0 : поиск item-а в справочнике, актуальном на дату обновления EVE static data resources
# шаг №1 : поиск item-а в pyfa_conversions-справочнике переименованных модулей
# шаг №2..9 : повторный поиск item-а в pyfa_conversions, возможны множественные переименования
__type_id, __item = find_type_id_by_item_name_ex(sde_named_type_ids, name)
if not (__type_id is None):
if bool(__item["published"]):
break
# пытаемся найти item в pyfa_conversions, возможно он устарел и переименован?
__converted_name = conversions.all.get(name)
if __converted_name is None:
return None, None, None
# если найден item с другим названием, то пытаемся снова определить его type_id
__item_name = name = __converted_name
return __type_id, __item, __item_name
# описание формата см. на этой странице https://www.eveonline.com/ru/article/import-export-fittings
def get_items_list_from_eft(
eft,
sde_named_type_ids,
exclude_specified_meta_groups=None,
include_only_meta_groups=None):
__converted = {
"ship": None,
"comment": None,
"eft": eft,
"items": [],
"problems": []
}
items = __converted["items"]
problems = __converted["problems"]
def push_into_problems(name, quantity, is_blueprint_copy, problem):
__problem_dict = next((p for p in problems if (p["name"] == name) and (p["problem"] == problem)), None)
if __problem_dict is None:
__problem_dict = {"name": name, "quantity": int(quantity), "problem": problem}
if not (is_blueprint_copy is None):
__problem_dict.update({"is_blueprint_copy": bool(is_blueprint_copy)})
problems.append(__problem_dict)
else:
__problem_dict["quantity"] += int(quantity)
def push_item_into_problems(item, problem):
push_into_problems(
item["name"],
item["quantity"],
item["is_blueprint_copy"] if "is_blueprint_copy" in item else None,
problem
)
# начинаем обработку входных данных
item_names = eft.split("\n")
for __line in enumerate(item_names):
__original_name = __line[1].strip()
# пропускаем пустые строки, и даже не считаем позиции для определения к чему относится
# модуль, к разъёму малой или большой мощности? т.к. нам надо получить лишь список
# модулей, из которых состоит фит,... лежат ли они в карго, тоже не имеет значения
if not __original_name:
continue
# пропускаем строки вида [Empty Low slot], [Empty High slot], [Empty Rig slot],...
if (__original_name[:7] == '[Empty ') and (__original_name[-6:] == ' slot]'):
continue
# распаковываем название корабля из первой строки с квадратными скобками,
# например: [Stratios, Vinnegar Douche's Stratios]
__quantity = 1
__ship_flag = False
__is_blueprint_copy = None
if __line[0] == 0:
if (__original_name[:1] == '[') and (__original_name[-1:] == ']'):
# выполняем поиск названия корабля в строке
__end = __line[1].find(",")
if __end < 0:
continue
__converted["comment"] = __original_name[__end+1:-1].strip()
__original_name = __original_name[1:__end]
if not __original_name:
continue
__ship_flag = True
else:
# попытка найти в конце строке сочетание x?, например: Nanite Repair Paste x50
__quantity_pos = __original_name.rfind(" x")
if __quantity_pos > 1:
__num = __original_name[__quantity_pos + 2:]
if __num.isnumeric():
__quantity = __num
__original_name = __original_name[:__quantity_pos]
# попытка найти в строке сочетание (Copy), например: Vespa I Blueprint (Copy) x2
__copy_pos = __original_name.rfind(" (Copy)")
if __copy_pos >= 1:
__original_name = __original_name.replace(" (Copy)", "")
__is_blueprint_copy = True
# попытка получить сведения об item-е по его наименованию
__item_dicts = None
__type_id, __item, __name = __try_to_get_type_id_by_item_name(__original_name, sde_named_type_ids)
# Внимание! если известен __type_id, то с __name и __original_name могут не совпадать!!!
if not (__type_id is None):
__item_dicts = [{"name": __name,
"type_id": __type_id,
"quantity": int(__quantity),
"details": __item}]
if not (__is_blueprint_copy is None) and __is_blueprint_copy:
__item_dicts[0].update({"is_blueprint_copy": True})
if __original_name != __name:
__item_dicts[0].update({"renamed": True})
else:
# возможно встретилась ситуация: Sisters Core Probe Launcher,Sisters Core Scanner Probe
pair = __original_name.split(",")
if len(pair) == 2:
__type_id0, __item0, pair[0] = __try_to_get_type_id_by_item_name(pair[0], sde_named_type_ids)
__type_id1, __item1, pair[1] = __try_to_get_type_id_by_item_name(pair[1], sde_named_type_ids)
if not (__type_id0 is None) and not (__type_id1 is None):
__quantity = 1
if ("capacity" in __item0) and ("volume" in __item1):
__quantity = int(__item0["capacity"]/__item1["volume"])
__item_dicts = [ # флаг __is_blueprint_copy здесь не может быть выставлен
{"name": pair[0], "type_id": __type_id0, "quantity": 1, "details": __item0},
{"name": pair[1], "type_id": __type_id1, "quantity": __quantity, "details": __item1}
]
# в случае, если элемент не найден, то сохраняем об этом информацию в список проблем
if __item_dicts is None:
push_into_problems(__original_name, __quantity, __is_blueprint_copy, "obsolete")
elif __ship_flag:
# хул корабля всегда существует в одном экземпляре (не путать с тем, что валяется в карго)
__converted["ship"] = __item_dicts[0]
else:
for __item_dict in __item_dicts:
if not bool(__item_dict["details"]["published"]):
push_item_into_problems(__item_dict, "suppressed")
continue
# Внимание! Хул корабля сохранён не в items, а в ship, т.о. если корабль перевозит
# в карго такие-же хулы, то их там будет ровно столько, сколько и должно быть
__exists = next((i for i in items if i["name"] == __item_dict["name"]), None)
if __exists is None:
if "metaGroupID" in __item_dict["details"]:
__mg_num = __item_dict["details"]["metaGroupID"]
# если указано не включать модуль неподходящей мета-группы в
# список item-ов, то пропускаем его
if not (exclude_specified_meta_groups is None) and (__mg_num in exclude_specified_meta_groups):
continue
# если указано, что включать модули только указанной мета-группы в
# список item-ов, то добавляем только его
if not (include_only_meta_groups is None) and not (__mg_num is include_only_meta_groups):
continue
elif not (exclude_specified_meta_groups is None) or not (include_only_meta_groups is None):
push_item_into_problems(__item_dict, "unknown meta group")
continue
items.append(__item_dict)
else:
__exists["quantity"] += int(__item_dict["quantity"])
return __converted
def __rebuild_icons(ws_dir, name):
icons = read_converted(ws_dir, name)
icon_keys = icons.keys()
for ik in icon_keys:
icon_file = icons[str(ik)]["iconFile"]
if icon_file[:22].lower() == "res:/ui/texture/icons/":
icon_file = '{}/{}'.format("Icons/items", icon_file[22:])
icons[str(ik)]["iconFile"] = icon_file
# json
f_name_json = __get_converted_name(ws_dir, name)
s = json.dumps(icons, indent=1, sort_keys=False)
f = open(f_name_json, "wt+", encoding='utf8')
f.write(s)
del icon_keys
del icons
def __clean_positions(ws_dir, name):
positions = read_converted(ws_dir, name)
positions = [i for i in positions if (i["x"] != 0.0) and (i["y"] != 0.0) and (i["z"] != 0.0)]
# json
f_name_json = __get_converted_name(ws_dir, name)
s = json.dumps(positions, indent=1, sort_keys=False)
f = open(f_name_json, "wt+", encoding='utf8')
f.write(s)
del positions
def __sort_blueprint_materials(ws_dir, name):
blueprints = read_converted(ws_dir, name)
for b in blueprints.values():
if 'activities' not in b:
continue
for a in b['activities'].values():
if 'materials' in a:
a['materials'].sort(key=lambda bp: bp['quantity'], reverse=True)
# json
f_name_json = __get_converted_name(ws_dir, name)
s = json.dumps(blueprints, indent=1, sort_keys=False)
f = open(f_name_json, "wt+", encoding='utf8')
f.write(s)
del blueprints
def __generate_long_term_industry(ws_dir, name):
"""
:param ws_dir: каталог, где хранятся все кешированные .json файлы
:param name: название файла, которые будет сгенерирован
:return: None
Информация была получена следующим образом:
select
x.cnt,
x.id,
t.sdet_type_name as name,
g.sdecg_group_name as group,
c.sdec_category_name as category,
g.sdecg_group_id as g_id,
c.sdec_category_id as c_id,
x.min,
x.max,
jita.sell as js,
jita.buy as jb,
tm.time
from (
select
x.sdebm_material_id as id,
count(1) as cnt,
min(x.sdebm_quantity) as min,
max(x.sdebm_quantity) as max
from eve_sde_blueprint_materials x
where
x.sdebm_activity in (1,9,11) and
x.sdebm_material_id in (select z.sdebp_product_id from eve_sde_blueprint_products z where z.sdebp_activity=1)
group by 1
) x
left outer join qi.eve_sde_type_ids t on (t.sdet_type_id=x.id)
left outer join qi.eve_sde_group_ids g on (t.sdet_group_id=g.sdecg_group_id)
left outer join qi.eve_sde_category_ids c on (g.sdecg_category_id=c.sdec_category_id)
-- цены в жите прямо сейчас
left outer join (
select ethp_type_id, ethp_sell as sell, ethp_buy as buy
from qi.esi_trade_hub_prices
where ethp_location_id = 60003760
) jita on (x.id = jita.ethp_type_id)
-- длительность производства продукта
left outer join (
select
--p.sdebp_blueprint_type_id,
--p.sdebp_activity,
p.sdebp_product_id as id,
min(b.sdeb_time) as time
from qi.eve_sde_blueprint_products p, qi.eve_sde_blueprints b
where
b.sdeb_blueprint_type_id=p.sdebp_blueprint_type_id and
b.sdeb_activity=p.sdebp_activity and
b.sdeb_activity=1
group by 1
having count(1)=1) tm on (x.id=tm.id)
where
x.cnt >= 5 and
g.sdecg_group_id not in (
873, -- Capital Construction Components
536, -- Structure Components
913 -- Advanced Capital Construction Components
) and
c.sdec_category_id not in (
6, -- Ship
23, -- Starbase
18, -- Drone
8, -- Charge
66 -- Structure Module
)
order by x.cnt;
"""
sde_type_ids = read_converted(ws_dir, "typeIDs")
sde_bp_materials = read_converted(ws_dir, "blueprints")
sde_group_ids = read_converted(ws_dir, "groupIDs")
manufacturing_products = set()
manufacturing_materials = {}
for bpid in sde_bp_materials:
bp = sde_bp_materials.get(bpid)
if not bp: continue
aa = bp.get('activities')
if not aa: continue
m = aa.get('manufacturing')
if m:
p = m.get('products')
if p:
t = p[0].get('typeID')
if t: manufacturing_products.add(int(t))
for a in aa:
if a == 'manufacturing' or a == 'reaction':
cc = aa[a].get('materials')
if not cc: continue
for c in cc:
t = int(c['typeID'])
tt = manufacturing_materials.get(t)
if tt:
manufacturing_materials[t] += 1
else:
manufacturing_materials.update({t: 1})
# print(manufacturing_products)
# print(manufacturing_materials)
# print(len([x for x in manufacturing_materials if x in manufacturing_products and manufacturing_materials[x]>=5]))
# всего материалов, которые можно произвести и которые используются в производстве минимум в 5 разных продуктах,
# в июле 2023 года было 123 шт, из них 87 шт не являются капитальными компонентами, из них 78 не являются дронами,
# кораблями, патронами и прочими материалами, которые плодят оверсток
long_term_industry = []
for x in manufacturing_materials:
if x in manufacturing_products and manufacturing_materials[x] >= 5:
t = sde_type_ids.get(str(x))
if not t: continue
g = t.get('groupID')
if not g: continue
if g in [873, # Capital Construction Components
536, # Structure Components
913]: continue # Advanced Capital Construction Components]:
gg = sde_group_ids.get(str(g))
if not gg: continue
c = gg.get('categoryID')
if not c: continue
if c in [6, # Ship
23, # Starbase
18, # Drone
8, # Charge
66]: continue # Structure Module]
# print(sde_type_ids[str(x)]['name']['en'])
long_term_industry.append(int(x))
# json
f_name_json = __get_converted_name(ws_dir, name)