This repository was archived by the owner on Jun 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathinterface_utils.py
More file actions
57 lines (44 loc) · 1.42 KB
/
interface_utils.py
File metadata and controls
57 lines (44 loc) · 1.42 KB
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
from aoc_object_clist import *
# functions used in interface_bar.py
def int_to_str(number, allow_zero=True):
if number == float('inf'):
return "inf"
if number == 0:
return "0" if allow_zero else ""
tostr = lambda x: str(int(x))
if number < 1:
# Get tenths
tenths = tostr(number * 10)
return "." + tenths
if number >= 10000:
number /= 1000
return tostr(number) + "k"
elif number >= 1000:
number2 = (number % 1000) / 100
number /= 1000
return tostr(number) + "." + tostr(number2) + "k"
return tostr(number)
def get_attack(obj, type="4 - Base Melee"):
attack_type = Attack.BONUS_CLASS.index(type)
for type, amount in obj.udata.attack:
if attack_type == type:
return amount
return 0
def get_armor(obj, type="4 - Base Melee"):
armor_type = Armor.BONUS_CLASS.index(type)
for type, amount in obj.udata.armor:
if armor_type == type:
return amount
return 0
def get_pierce_armor(obj, type="3 - Base Pierce"):
armor_type = Armor.BONUS_CLASS.index(type)
for type, amount in obj.udata.armor:
if armor_type == type:
return amount
return 0
def get_armors(obj):
return str(get_armor(obj)) + "/" + str(get_pierce_armor(obj))
def get_res_type_from_list(obj_list):
for o in obj_list:
if o.resource_type:
return o.resource_type[0]