summaryrefslogtreecommitdiff
path: root/actions.c
blob: f5a06f1117ad1c1990f3569906ee00d8948c8294 (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
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
#include <stdlib.h>

#include "structures.h"

#include "constantes.h"

#include "target.h"
#include "character.h"

static int compute_damages(const struct chr_t *src, const struct chr_t *dest,
        enum damages_type_t type, enum element_t element)
{
    int avg;
    int min;
    int max;

    /* we optimize if the target is invulnerable */
    if (element != ELEM_NONE && dest->affinities[element] == AFFIN_INVULN)
        return 0;

    if (type == DAMAGES_PHYSICAL) {
        avg = src->strength * 60 - dest->defense * 50;
    } else if (type == DAMAGES_MAGICAL) {
        avg = src->magic * 60 - dest->spirit * 50;
    }

    if (avg <= 0)
        return 0;

    if (element != ELEM_NONE) {
        switch (dest->affinities[element]) {
            case AFFIN_SENSITIVE:
                avg *= 2;
                break;
            case AFFIN_RESISTANCE:
                avg /= 2;
                break;
            case AFFIN_ABSORPTION:
                avg = -avg;
                break;
            case AFFIN_NONE:
                break;
            default:
                abort();
        }
    }

    if (dest->defensive) {
        avg /= 2;
    }

    min = avg - avg / 4;
    max = avg + avg / 4;

    return rand() % (max - min + 1) + min;
}

static int compute_cure(const struct chr_t *src, const struct chr_t *dest)
{
    int avg, max, min;

    /* TODO maybe we should use the dest to compute the cure ? */
    (void) dest;

    avg = src->magic * 20;
    min = avg - avg / 4;
    max = avg + avg / 4;

    return rand() % (max - min + 1) + min;
}

static void __attack(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct chr_t *dest)
{
    int damages;

    damages = compute_damages(src, dest, DAMAGES_PHYSICAL, ELEM_NONE);
    damage_target_hp(surfaces, positions, dest, damages);
}

void attack(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    (void) data;

    __attack(surfaces, positions, src, dest->chr);
}

void defend(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    (void) data;
    (void) dest;
    (void) surfaces;
    (void) positions;

    src->defensive = true;
}

void cast_element(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    int damages;
    enum element_t elem = *((enum element_t *)data);

    /* TODO remove the MP */

    if (dest->is_chr) {
        damages = compute_damages(src, dest->chr, DAMAGES_MAGICAL, elem);
        damage_target_hp(surfaces, positions, dest->chr, damages);
    } else {
        for (int i = 0; i < dest->team->chr_cnt; ++i) {
            struct chr_t *target = &dest->team->chrs[i];

            if (!target->alive)
                continue;

            damages = compute_damages(src, target, DAMAGES_MAGICAL, elem);
            damage_target_hp(surfaces, positions, target, damages / 3);
        }
    }
}

void cast_cure(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    int cure;

    (void) data;

    if (dest->is_chr) {
        cure = compute_cure(src, dest->chr);
        cure_target_hp(surfaces, positions, dest->chr, cure);
    } else {
        for (int i = 0; i < dest->team->chr_cnt; ++i) {
            struct chr_t *target = &dest->team->chrs[i];

            if (!target->alive)
                continue;

            cure = compute_cure(src, target);
            cure_target_hp(surfaces, positions, target, cure / 3);
        }
    }
}


static void __use_potion(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct chr_t *dest, int type)
{
    int cure;

    switch (type) {
        case POTION:
            cure = 1000;
            src->team->objects.potions--;
            break;
        case POTIONPLUS:
            cure = 4000;
            src->team->objects.potionsplus--;
            break;
        default:
            abort();
    }

    cure_target_hp(surfaces, positions, dest, cure);
}

void use_potion(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    __use_potion(surfaces, positions, src, dest->chr, *((int *)data));
}

static void __use_ether(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct chr_t *dest, int type)
{
    int cure;

    switch (type) {
        case ETHER:
            cure = 10;
            src->team->objects.ethers--;
            break;
        case ETHERPLUS:
            cure = 40;
            src->team->objects.ethersplus--;
            break;
        default:
            abort();
    }

    cure_target_mp(surfaces, positions, dest, cure);
}

void use_ether(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    __use_ether(surfaces, positions, src, dest->chr, *((int *)data));
}

void cyanure(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    struct chr_t *target = dest->chr;

    (void) data;
    (void) src;

    damage_target_hp(surfaces, positions, target, target->max_hp / 4);
    target->poisoned = true;
}

void esuna(SURFACES *surfaces, POSITIONS *positions,
        struct chr_t *src, struct target_t *dest, void *data)
{
    (void) surfaces;
    (void) positions;
    (void) src;
    (void) data;

    /* TODO cure every state and not only poison */
    dest->chr->poisoned = false;
}