summaryrefslogtreecommitdiff
path: root/src/code_080A29BC.c
blob: c8476217f72cffbc6b9c0876424d6a247d8898d2 (plain)
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
#include "global.h"
#include "entity.h"
#include "room.h"

void sub_080A29BC(Entity* parent) { // TODO this is CreateDust, why is it here again? Fogot to delete file?
    CreateFx(parent, 2, 0);
}

void sub_080A29C8(s32 xOff, s32 yOff, u32 layer) {
    Entity* pEVar1;

    pEVar1 = CreateObject(0xf, 2, 0);
    if (pEVar1 != NULL) {
        pEVar1->x.HALF.HI = gRoomControls.roomOriginX + xOff;
        pEVar1->y.HALF.HI = gRoomControls.roomOriginY + yOff;
        pEVar1->collisionLayer = layer;
    }
}

void sub_080A29FC(Entity* parent) {
    CreateFx(parent, 0x11, 0);
}

void sub_080A2A08(Entity* parent) {
    CreateFx(parent, 0x6, 0);
}

void sub_080A2A14(Entity* parent) {
    CreateFx(parent, 0xb, 0);
}

Entity* sub_080A2A20(Entity* parent, u32 form, u32 parameter) {
    Entity* pEVar1;

    pEVar1 = CreateObjectWithParent(parent, 0, form, parameter);
    if (pEVar1 != NULL) {
        pEVar1->actionDelay = 5;
    }
    return pEVar1;
}

Entity* sub_080A2A3C(Entity* parent, u32 form, u32 subtype, u32 param_4) {
    Entity* ent;

    ent = CreateObjectWithParent(parent, 0, form, subtype);
    if (ent != NULL) {
        ent->actionDelay = 5;
        *(u32*)(&ent->field_0x86) = param_4;
    }
    return ent;
}

Entity* sub_080A2A64(Entity* parent) {
    Entity* pEVar1;

    pEVar1 = CreateFx(parent, 0x20, 0);
    if (pEVar1 != NULL) {
        pEVar1->spritePriority.b0 = 7;
    }
    return pEVar1;
}