mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-08-19 21:32:31 -04:00
Decompile ciGetNumUnlockedChrBios
This commit is contained in:
+14
-28
@@ -4607,33 +4607,19 @@ char *ciGetChrBioDescription(void)
|
||||
return langGet(bio->description);
|
||||
}
|
||||
|
||||
GLOBAL_ASM(
|
||||
glabel func0f1a11b8
|
||||
/* f1a11b8: 27bdffd8 */ addiu $sp,$sp,-40
|
||||
/* f1a11bc: afb20020 */ sw $s2,0x20($sp)
|
||||
/* f1a11c0: afb1001c */ sw $s1,0x1c($sp)
|
||||
/* f1a11c4: afb00018 */ sw $s0,0x18($sp)
|
||||
/* f1a11c8: afbf0024 */ sw $ra,0x24($sp)
|
||||
/* f1a11cc: 00008825 */ or $s1,$zero,$zero
|
||||
/* f1a11d0: 00008025 */ or $s0,$zero,$zero
|
||||
/* f1a11d4: 24120097 */ addiu $s2,$zero,0x97
|
||||
.L0f1a11d8:
|
||||
/* f1a11d8: 0fc683fb */ jal ciIsChrBioUnlocked
|
||||
/* f1a11dc: 02002025 */ or $a0,$s0,$zero
|
||||
/* f1a11e0: 10400002 */ beqz $v0,.L0f1a11ec
|
||||
/* f1a11e4: 26100001 */ addiu $s0,$s0,0x1
|
||||
/* f1a11e8: 26310001 */ addiu $s1,$s1,0x1
|
||||
.L0f1a11ec:
|
||||
/* f1a11ec: 1612fffa */ bne $s0,$s2,.L0f1a11d8
|
||||
/* f1a11f0: 00000000 */ sll $zero,$zero,0x0
|
||||
/* f1a11f4: 8fbf0024 */ lw $ra,0x24($sp)
|
||||
/* f1a11f8: 02201025 */ or $v0,$s1,$zero
|
||||
/* f1a11fc: 8fb1001c */ lw $s1,0x1c($sp)
|
||||
/* f1a1200: 8fb00018 */ lw $s0,0x18($sp)
|
||||
/* f1a1204: 8fb20020 */ lw $s2,0x20($sp)
|
||||
/* f1a1208: 03e00008 */ jr $ra
|
||||
/* f1a120c: 27bd0028 */ addiu $sp,$sp,0x28
|
||||
);
|
||||
s32 ciGetNumUnlockedChrBios(void)
|
||||
{
|
||||
s32 count = 0;
|
||||
s32 bodynum;
|
||||
|
||||
for (bodynum = 0; bodynum < NUM_BODIES; bodynum++) {
|
||||
if (ciIsChrBioUnlocked(bodynum)) {
|
||||
count++;
|
||||
}
|
||||
}
|
||||
|
||||
return count;
|
||||
}
|
||||
|
||||
GLOBAL_ASM(
|
||||
glabel func0f1a1210
|
||||
@@ -4742,7 +4728,7 @@ s32 ciGetMiscBioIndexBySlot(s32 slot)
|
||||
|
||||
char *ciGetMiscBioDescription(void)
|
||||
{
|
||||
s32 index = ciGetMiscBioIndexBySlot(var800888a0 - func0f1a11b8());
|
||||
s32 index = ciGetMiscBioIndexBySlot(var800888a0 - ciGetNumUnlockedChrBios());
|
||||
struct miscbio *bio = ciGetMiscBio(index);
|
||||
|
||||
return langGet(bio->description);
|
||||
|
||||
@@ -2633,7 +2633,7 @@ glabel var7f1b9960
|
||||
/* f1a5df0: 8de10008 */ lw $at,0x8($t7)
|
||||
/* f1a5df4: adc8000c */ sw $t0,0xc($t6)
|
||||
/* f1a5df8: adc10008 */ sw $at,0x8($t6)
|
||||
/* f1a5dfc: 0fc6846e */ jal func0f1a11b8
|
||||
/* f1a5dfc: 0fc6846e */ jal ciGetNumUnlockedChrBios
|
||||
/* f1a5e00: afa60048 */ sw $a2,0x48($sp)
|
||||
/* f1a5e04: 0fc684e6 */ jal ciGetNumUnlockedMiscBios
|
||||
/* f1a5e08: afa2002c */ sw $v0,0x2c($sp)
|
||||
@@ -3009,7 +3009,7 @@ GLOBAL_ASM(
|
||||
glabel func0f1a6388
|
||||
/* f1a6388: 27bdffe8 */ addiu $sp,$sp,-24
|
||||
/* f1a638c: afbf0014 */ sw $ra,0x14($sp)
|
||||
/* f1a6390: 0fc6846e */ jal func0f1a11b8
|
||||
/* f1a6390: 0fc6846e */ jal ciGetNumUnlockedChrBios
|
||||
/* f1a6394: afa40018 */ sw $a0,0x18($sp)
|
||||
/* f1a6398: 3c0e8009 */ lui $t6,%hi(var800888a0)
|
||||
/* f1a639c: 91ce88a0 */ lbu $t6,%lo(var800888a0)($t6)
|
||||
|
||||
@@ -1562,6 +1562,7 @@
|
||||
#define MUSIC_ESCAPE_OUTRO_SHORT 0x76
|
||||
|
||||
#define NUM_AICOMMANDS 481
|
||||
#define NUM_BODIES 151
|
||||
#define NUM_CHALLENGES 30
|
||||
#define NUM_CHEATS 42
|
||||
#define NUM_EXPLOSIONTYPES 26
|
||||
|
||||
@@ -64,7 +64,7 @@ void func0f1a0fc8(void);
|
||||
bool ciIsChrBioUnlocked(u32 bodynum);
|
||||
struct chrbio *ciGetChrBioByBodynum(u32 bodynum);
|
||||
char *ciGetChrBioDescription(void);
|
||||
u32 func0f1a11b8(void);
|
||||
s32 ciGetNumUnlockedChrBios(void);
|
||||
u32 func0f1a1210(u32 arg0);
|
||||
struct miscbio *ciGetMiscBio(s32 index);
|
||||
bool ciIsMiscBioUnlocked(s32 index);
|
||||
|
||||
Reference in New Issue
Block a user