-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathboss.c
160 lines (133 loc) · 4.11 KB
/
boss.c
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
/*
Copyright (C) 2005, 2010 - Cryptic Sea
This file is part of Gish.
Gish is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "../config.h"
#include <string.h>
#include "../game/boss.h"
#include "../game/animation.h"
#include "../game/gameobject.h"
#include "../game/render.h"
#include "../math/vector.h"
int numofbosses;
_boss boss[16];
void createboss(int type,float position[3])
{
memset(&boss[numofbosses],0,sizeof(boss[0]));
boss[numofbosses].type=type;
boss[numofbosses].timetolive=10000;
copyvector(boss[numofbosses].position,position);
boss[numofbosses].animationnum=14;
boss[numofbosses].size[0]=3.0f;
boss[numofbosses].size[1]=3.0f;
numofbosses++;
}
void bosssimulation(void)
{
int count/*,count2*/;
float vec[3];
for (count=0;count<numofbosses;count++)
{
if (boss[count].timetolive>100)
{
subtractvectors(vec,object[0].position,boss[count].position);
if (boss[count].animationtype!=2)
if (vectorlength(vec)<3.0f)
{
boss[count].animationtype=2;
boss[count].frame=0;
boss[count].framedelay=0.0f;
}
if (boss[count].animationtype==2)
if (vectorlength(vec)>=3.0f)
{
boss[count].animationtype=1;
boss[count].frame=0;
boss[count].framedelay=0.0f;
}
if (vectorlength(vec)>2.5f)
scaleaddvectors(boss[count].velocity,boss[count].velocity,vec,0.003f);
scalevector(boss[count].velocity,boss[count].velocity,0.75f);
addvectors(boss[count].position,boss[count].position,boss[count].velocity);
if (boss[count].animationtype!=2)
{
boss[count].framedelay+=0.1f;
if (boss[count].framedelay>=1.0f)
{
boss[count].framedelay=0.0f;
boss[count].frame++;
if (boss[count].frame>=animation[boss[count].animationnum].walk[1])
boss[count].frame=0;
}
boss[count].texturenum=animation[boss[count].animationnum].walk[0]+boss[count].frame;
}
else
{
boss[count].framedelay+=0.15f;
if (boss[count].framedelay>=1.0f)
{
boss[count].framedelay=0.0f;
boss[count].frame++;
if (boss[count].frame>=animation[boss[count].animationnum].attack[1])
boss[count].frame=0;
}
boss[count].texturenum=animation[boss[count].animationnum].attack[0]+boss[count].frame;
if (boss[count].frame==3)
object[0].hitpoints-=10;
}
if (boss[count].velocity[0]>0.0f)
boss[count].direction=0;
else
boss[count].direction=1;
if (frame.numoflights>1)
if (boss[count].timetolive>150)
boss[count].timetolive=150;
}
if (boss[count].timetolive<45)
{
boss[count].animationtype=3;
boss[count].frame=0;
boss[count].framedelay=0.0f;
boss[count].texturenum=animation[boss[count].animationnum].die[0]+8-boss[count].timetolive/5;
}
}
}
void bosstimetolive(void)
{
int count;
count=0;
while (count<numofbosses)
{
if (boss[count].timetolive<10000)
boss[count].timetolive--;
while (count<numofbosses && boss[count].timetolive<0)
{
deleteboss(count);
if (boss[count].timetolive<10000)
boss[count].timetolive--;
}
count++;
}
}
void deleteboss(int bossnum)
{
if (bossnum<0)
return;
if (bossnum>=numofbosses)
return;
numofbosses--;
if (bossnum==numofbosses)
return;
memcpy(&boss[bossnum],&boss[numofbosses],sizeof(boss[0]));
}