-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathAtualizar.h
75 lines (64 loc) · 1.5 KB
/
Atualizar.h
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
Passaros* getMelhorPassaro()
{
double Maior = 0;
int Indice = 0;
for(int i=0; i<POPULACAO_TAMANHO; i++)
{
if(Passaro[i].Estado != 3 && Passaro[i].X > Maior)
{
Maior = Passaro[i].X;
Indice = i;
}
}
return &Passaro[Indice];
}
void AtualizarMelhorPassaro()
{
if(MODO_JOGO == TESTE)
{
MelhorPassaro = &Passaro[0];
}
if(MODO_JOGO == DUELO)
{
MelhorPassaro = &Passaro[1];
}
if(MODO_JOGO == EVOLUCAO)
{
if(MelhorPassaro->Estado == 3)
{
MelhorPassaro = getMelhorPassaro();
}
}
}
void AtualizarAnguloPassaro()
{
double Decremento = 0.8;
for(int i=0; i<QuantidadePassaros; i++)
{
if(Passaro[i].Estado != 3 && Passaro[i].Estado != 2)
{
if(Passaro[i].Angulo - Decremento > -75.0)
{
Passaro[i].Angulo = Passaro[i].Angulo - Decremento;
}
}
}
}
void AtualizarFramePassaro()
{
for(int i=0; i<QuantidadePassaros; i++)
{
if(Passaro[i].Estado != 3)
{
if(TempoDecorrido(Passaro[i].TimerFrame) >= 0.1)
{
Passaro[i].SpriteAtual = (Passaro[i].SpriteAtual + 1)%3;
ReiniciarTimer(Passaro[i].TimerFrame);
}
if(Passaro[i].Estado == 2)
{
Passaro[i].SpriteAtual = 1;
}
}
}
}