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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
|
#include <stdlib.h>
#include <stdio.h>
#include <SDL/SDL.h>
#include <SDL/SDL_ttf.h>
#include <SDL/SDL_image.h>
#include <string.h>
#include "constantes.h"
#include "players.h"
#include "entry.h"
static void blit_chr_infos(SURFACES *surfaces, struct character_t *chr)
{
TTF_Font *police=NULL;
SDL_Color fg={132,215,107,0},bg={100,0,0,0};
char string[256];
SDL_Surface *surf_hp;
SDL_Surface *surf_mp;
police=TTF_OpenFont("TIMESBI.TTF",18);
sprintf(string, "PV %d/%d ", chr->hp, chr->max_hp);
surf_hp = TTF_RenderText_Shaded(police, string, fg, bg);
sprintf(string, "PM %d/%d ", chr->mp, chr->max_mp);
surf_mp = TTF_RenderText_Shaded(police, string, fg, bg);
chr->pos_hp.x = chr->pos.x + chr->def_surf->w / 2 - surf_hp->w / 2;
chr->pos_mp.x = chr->pos.x + chr->def_surf->w / 2 - surf_mp->w / 2;
chr->pos_hp.y = chr->pos.y + chr->def_surf->h - surf_hp->h - surf_mp->h;
chr->pos_mp.y = chr->pos_hp.y + surf_mp->h;
SDL_BlitSurface(surf_hp, NULL, surfaces->Pecran, &chr->pos_hp);
SDL_BlitSurface(surf_mp, NULL, surfaces->Pecran, &chr->pos_mp);
chr->pos_hp.w = surf_hp->w;
chr->pos_hp.h = surf_hp->h;
chr->pos_mp.w = surf_mp->w;
chr->pos_mp.h = surf_mp->h;
SDL_FreeSurface(surf_hp);
SDL_FreeSurface(surf_mp);
TTF_CloseFont(police);
}
void blit_character(SURFACES *surfaces, struct character_t *chr)
{
SDL_BlitSurface(chr->surf, NULL, surfaces->Pecran, &chr->pos);
if (!chr->alive) {
SDL_Rect pos_dead;
pos_dead.x = chr->pos.x + chr->surf->w / 2 - surfaces->Pmort->w / 2;
pos_dead.y = chr->pos.y + chr->surf->h / 2 - surfaces->Pmort->h / 2;
SDL_BlitSurface(surfaces->Pmort, NULL, surfaces->Pecran, &pos_dead);
}
blit_chr_infos(surfaces, chr);
}
void blit_team(SURFACES *surfaces, struct team_t *team)
{
for (int i = 0; i < team->chr_cnt; i++) {
blit_character(surfaces, &team->chrs[i]);
}
}
static void blit_character_affinities(SURFACES *surfaces, POSITIONS *positions, const struct character_t *chr)
{
static const enum affinity_t affinities[] = {
AFFINITY_SENSITIVE,
AFFINITY_RESISTANCE,
AFFINITY_INVULNERABILITY,
AFFINITY_ABSORPTION,
};
for (int i = 0; i < countof(affinities); ++i) {
for (enum element_t elmt = 0; elmt < ELEMENT_COUNT; ++elmt) {
if (chr->affinities[elmt] == affinities[i]) {
SDL_BlitSurface (surfaces->Pactive,NULL,surfaces->Pecran,&positions->Vpositionactivedesactive[i * ELEMENT_COUNT + elmt]);
} else {
SDL_BlitSurface (surfaces->Pdesactive,NULL,surfaces->Pecran,&positions->Vpositionactivedesactive[i * ELEMENT_COUNT + elmt]);
}
}
}
}
static
void Fblitterpvcible (SURFACES *surfaces,POSITIONS *positions, const struct character_t *chr)
{
TTF_Font *police = NULL;
SDL_Color couleur = {132,215,107,0};
char chaine[50];
if (surfaces->Ppvcible != NULL)
{
SDL_FreeSurface (surfaces->Ppvcible);
surfaces->Ppvcible=NULL;
}
sprintf (chaine,"%d/%d", chr->hp, chr->max_hp);
police=TTF_OpenFont ("TIMESBI.TTF",18);
surfaces->Ppvcible=TTF_RenderText_Blended (police,chaine,couleur);
SDL_BlitSurface (surfaces->Ppvcible,NULL,surfaces->Pecran,&positions->Vpositionpvcible);
TTF_CloseFont (police);
}
static
void Fblitterpmcible (SURFACES *surfaces,POSITIONS *positions, const struct character_t *chr)
{
TTF_Font *police = NULL;
SDL_Color couleur = {132,215,107,0};
char chaine[50];
if (surfaces->Ppmcible != NULL)
{
SDL_FreeSurface (surfaces->Ppmcible);
surfaces->Ppmcible=NULL;
}
sprintf (chaine,"%d/%d", chr->mp, chr->max_mp);
police=TTF_OpenFont ("TIMESBI.TTF",18);
surfaces->Ppmcible=TTF_RenderText_Blended (police,chaine,couleur);
SDL_BlitSurface (surfaces->Ppmcible,NULL,surfaces->Pecran,&positions->Vpositionpmcible);
TTF_CloseFont (police);
}
static void display_target_infos(SURFACES *surfaces, POSITIONS *positions, struct target_t *target)
{
SDL_Color color = {0x8a, 0x00, 0x00, 0x00};
TTF_Font *font = TTF_OpenFont("times.ttf", 20);
SDL_Surface *surf_name;
SDL_Rect pos_name;;
/* display the information frame */
SDL_BlitSurface(surfaces->Pcadrecible, NULL, surfaces->Pecran, &positions->Vpositioncadrecible);
if (target->is_chr) {
/* display the name of the character */
surf_name = TTF_RenderText_Blended(font, target->chr->name, color);
/* display the affinities of the character */
blit_character_affinities(surfaces, positions, target->chr);
/* display its HP / MP */
Fblitterpvcible (surfaces,positions, target->chr);
Fblitterpmcible (surfaces,positions, target->chr);
} else {
surf_name = TTF_RenderText_Blended(font, target->team->name, color);
}
pos_name.x = positions->Vpositioncadrecible.x + surfaces->Pcadrecible->w / 2 - surf_name->w / 2;
pos_name.y = positions->Vpositioncadrecible.y + 10;
SDL_BlitSurface(surf_name, NULL, surfaces->Pecran, &pos_name);
SDL_FreeSurface(surf_name);
TTF_CloseFont(font);
}
void update_selected_target(SURFACES *surfaces, POSITIONS *positions, struct target_t *target)
{
/* clear cursor */
SDL_BlitSurface(surfaces->Pfondjeu, &positions->last_cursor, surfaces->Pecran, &positions->last_cursor);
if (target == NULL) {
/* clear the target informations frame */
SDL_BlitSurface(surfaces->Pfondjeu, &positions->Vpositioncadrecible, surfaces->Pecran, &positions->Vpositioncadrecible);
} else {
/* display the new cursor */
if (target->is_chr) {
positions->last_cursor.x = target->chr->pos_curs.x;
positions->last_cursor.y = target->chr->pos_curs.y;
positions->last_cursor.w = target->chr->curs->w;
positions->last_cursor.h = target->chr->curs->h;
SDL_BlitSurface(target->chr->curs, NULL, surfaces->Pecran, &target->chr->pos_curs);
} else {
for (int i = 0; i < target->team->chr_cnt; ++i) {
struct character_t *chr = &target->team->chrs[i];
positions->last_cursor.x = chr->pos_curs.x;
positions->last_cursor.y = chr->pos_curs.y;
positions->last_cursor.w = chr->curs->w;
positions->last_cursor.h = chr->curs->h;
SDL_BlitSurface(chr->curs, NULL, surfaces->Pecran, &chr->pos_curs);
}
}
display_target_infos(surfaces, positions, target);
}
}
void update_list_entries(SURFACES *surfaces, POSITIONS *positions, const struct entry_t *entries, int cnt, int selected)
{
SDL_Color color = {0, 0, 0, 0};
TTF_Font *font;
SDL_Surface *surf;
int off;
if (selected == -1) {
SDL_BlitSurface(surfaces->Pfondjeu, &positions->Vpositioncadreactions, surfaces->Pecran, &positions->Vpositioncadreactions);
SDL_Flip(surfaces->Pecran);
return;
}
SDL_BlitSurface(surfaces->Pcadreactions, NULL, surfaces->Pecran, &positions->Vpositioncadreactions);
font = TTF_OpenFont("TIMESBI.TTF", 20);
off = selected / 3 * 3;
/* display at most three actions */
for (int i = 0; i < 3; ++i) {
if (off + i >= cnt) {
SDL_BlitSurface(surfaces->Pactiondesactivee, NULL, surfaces->Pecran, &positions->Vpositionactionselectionnee[i]);
continue;
}
/* if the current entry is the selected one */
if (selected == off + i) {
SDL_BlitSurface(surfaces->Pactionselectionnee, NULL, surfaces->Pecran, &positions->Vpositionactionselectionnee[i]);
}
surf = TTF_RenderText_Blended(font, entries[off + i].name, color);
SDL_BlitSurface(surf, NULL, surfaces->Pecran, &positions->Vpositionnomactions[i]);
SDL_FreeSurface(surf);
}
TTF_CloseFont(font);
SDL_Flip(surfaces->Pecran);
}
void display_incr(SURFACES *surfaces, POSITIONS *positions, struct character_t *target, unsigned int incr, SDL_Color color)
{
TTF_Font *font = TTF_OpenFont("TIMES.TTF", 30);
char string[256];
SDL_Surface *surf;
sprintf(string, "%d", incr);
TTF_SetFontStyle(font, TTF_STYLE_BOLD);
surf = TTF_RenderText_Blended(font, string, color);
blit_character(surfaces, target);
SDL_BlitSurface(surf, NULL, surfaces->Pecran, &target->pos_curs);
positions->Vpositiondegats.x = target->pos_curs.x;
positions->Vpositiondegats.y = target->pos_curs.y;
positions->Vpositiondegats.w = surf->w;
positions->Vpositiondegats.h = surf->h;
SDL_FreeSurface(surf);
TTF_CloseFont(font);
}
|