forked from FAForever/FA-Binary-Patches
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathselectionPriority.cpp
49 lines (43 loc) · 1.11 KB
/
selectionPriority.cpp
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
char LOWSELECTPRIO[] = "LOWSELECTPRIO";
char buf[48];
void selectionPriority()
{
asm(
"cmp byte ptr [ebx-0xD8],0x1;"
"je label1;"
"label2:;"
"mov eax,dword ptr [eax+0x1FC];"
"jmp 0x00863C19;"
"label1:;"
"push eax;"
"push ecx;"
"push edx;"
"push %[LOWSELECTPRIO];"
"mov ecx, %[buf];"
"call 0x00405550;"
"mov eax, %[buf];"
"lea ecx,dword ptr [ebx-0x148];"
"call 0x008B97C0;"
"test al, al;"
"pop edx;"
"pop ecx;"
"pop eax;"
"je label2;"
"mov eax, 0x6;"
"jmp 0x00863C19;"
:
: [LOWSELECTPRIO] "i" (LOWSELECTPRIO), [buf] "i" (buf)
:
);
}
/* This patch changes the drag selection code so unfinished units
with "LOWSELECTPRIO" category get lowest priority - 6.
Before patch:
selectionPriority = unitBlueprint.General.SelectionPriority
After:
if (unit::IsBeingBuilt() && unit::IsInCatgory("LOWSELECTPRIO")) {
selectionPriority = 6
} else {
selectionPriority = unitBP.General.SelectionPriority
}
*/