Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/vs-enhencements/src/world_entities/WorldEntities.am @ 10649

Last change on this file since 10649 was 10649, checked in by nicolasc, 17 years ago

added nadion blast
fine tuned weapon timing / prepared projectiles

File size: 11.0 KB
Line 
1
2## THE SUBCLASSES. THESE MUST BE DYNAMICALLY LINKED OR COMPILED IN DIRECTLY
3WorldEntities_SOURCES_ = \
4                world_entities/npcs/npc_test1.cc \
5                world_entities/npcs/npc_test.cc \
6                world_entities/npcs/ground_turret.cc \
7                world_entities/npcs/space_turret.cc \
8                world_entities/npcs/network_turret.cc \
9                world_entities/npcs/generic_npc.cc \
10                world_entities/npcs/door.cc \
11                world_entities/npcs/gate.cc \
12                world_entities/npcs/repair_station.cc \
13                world_entities/npcs/attractor_mine.cc \
14                world_entities/npcs/mover.cc \
15                \
16                \
17                world_entities/weapons/weapon_slot.cc \
18                world_entities/weapons/test_gun.cc \
19                world_entities/weapons/laser_cannon.cc \
20                world_entities/weapons/turret.cc \
21                world_entities/weapons/aiming_turret.cc \
22                world_entities/weapons/targeting_turret.cc \
23                world_entities/weapons/cannon.cc \
24                world_entities/weapons/hyperblaster.cc \
25                world_entities/weapons/aim.cc \
26                world_entities/weapons/aiming_system.cc \
27                world_entities/weapons/fps_sniper_rifle.cc \
28                world_entities/weapons/boomerang_gun.cc \
29                world_entities/weapons/light_blaster.cc \
30                world_entities/weapons/medium_blaster.cc \
31                world_entities/weapons/heavy_blaster.cc \
32                world_entities/weapons/swarm_launcher.cc \
33                world_entities/weapons/spike_thrower.cc \
34                world_entities/weapons/acid_launcher.cc \
35                world_entities/weapons/rf_cannon.cc \
36                world_entities/weapons/disruptor.cc \
37                world_entities/weapons/nadion_laser.cc \
38                \
39                world_entities/projectiles/lbolt.cc \
40                world_entities/projectiles/mbolt.cc \
41                world_entities/projectiles/hbolt.cc \
42                world_entities/projectiles/swarm_projectile.cc \
43                world_entities/projectiles/bomb.cc \
44                world_entities/projectiles/laser.cc \
45                world_entities/projectiles/rail_projectile.cc \
46                world_entities/projectiles/test_bullet.cc \
47                world_entities/projectiles/rocket.cc \
48                world_entities/projectiles/guided_missile.cc \
49                world_entities/projectiles/boomerang_projectile.cc \
50                world_entities/projectiles/hyperblast.cc \
51                world_entities/projectiles/spike.cc \
52                world_entities/projectiles/acid_splash.cc \
53                world_entities/projectiles/plasma_pulse.cc \
54                world_entities/projectiles/nadion_blast.cc \
55                \
56                world_entities/projectiles/projectile_weapon.cc \
57                world_entities/projectiles/spike_ball.cc \
58                \
59                world_entities/items/power_ups/turret_power_up.cc \
60                world_entities/items/power_ups/laser_power_up.cc \
61                \
62                world_entities/space_ships/space_ship.cc \
63                world_entities/space_ships/helicopter.cc \
64                world_entities/space_ships/hover.cc \
65                world_entities/space_ships/turbine_hover.cc \
66                world_entities/space_ships/spacecraft_2d.cc \
67                world_entities/space_ships/collision_probe.cc \
68                world_entities/space_ships/cruizer.cc \
69                world_entities/creatures/md2_creature.cc \
70                world_entities/creatures/fps_player.cc \
71                world_entities/spectator.cc \
72                \
73                \
74                world_entities/environments/water.cc \
75                world_entities/environments/model_entity.cc \
76                world_entities/environments/building.cc \
77                world_entities/environments/rotor.cc \
78                world_entities/environments/mapped_water.cc \
79                world_entities/environments/environment.cc \
80                world_entities/environments/skysphere.cc \
81                world_entities/environments/skybox.cc \
82                world_entities/environments/skydome.cc \
83                world_entities/environments/terrain.cc \
84                world_entities/environments/planet.cc \
85                world_entities/environments/bsp_entity.cc \
86                \
87                \
88                world_entities/weather_effects/atmospheric_engine.cc \
89                world_entities/weather_effects/weather_effect.cc \
90                world_entities/weather_effects/cloud_effect.cc \
91                world_entities/weather_effects/sun_effect.cc \
92                world_entities/weather_effects/fog_effect.cc \
93                world_entities/weather_effects/volfog_effect.cc \
94                world_entities/weather_effects/rain_effect.cc \
95                world_entities/weather_effects/snow_effect.cc \
96                world_entities/weather_effects/lightning_effect.cc \
97                world_entities/weather_effects/lense_flare.cc \
98                world_entities/elements/image_entity.cc \
99                \
100                world_entities/elements/text_element.cc \
101                world_entities/elements/glgui_radar.cc \
102                \
103                world_entities/effects/lightning_bolt.cc \
104                world_entities/effects/blink.cc \
105                \
106                world_entities/tools/movie_entity.cc \
107                world_entities/tools/recorder.cc \
108                world_entities/tools/blackscreen.cc \
109                world_entities/tools/scrolling_screen.cc \
110                world_entities/tools/mount_point.cc \
111                world_entities/tools/sound_entity.cc \
112                world_entities/tools/camera.cc \
113                \
114                world_entities/script_triggers/script_trigger.cc \
115                world_entities/script_triggers/space_trigger.cc \
116                world_entities/script_triggers/tick_trigger.cc \
117                world_entities/script_triggers/time_trigger.cc \
118                \
119                \
120                world_entities/particles/particle_emitter.cc \
121                world_entities/particles/dot_emitter.cc \
122                world_entities/particles/box_emitter.cc \
123                world_entities/particles/plane_emitter.cc \
124                world_entities/particles/emitter_node.cc \
125                world_entities/particles/particle_system.cc \
126                world_entities/particles/sprite_particles.cc \
127                world_entities/particles/spark_particles.cc \
128                world_entities/particles/model_particles.cc \
129                world_entities/particles/dot_particles.cc \
130                world_entities/particles/quick_animation.cc \
131                \
132                \
133                \
134                world_entities/questGUI/quest_gui.cc \
135                world_entities/questGUI/quest.cc
136
137
138
139
140
141
142
143WorldEntities_HEADERS_ = \
144                npcs/npc_test.h \
145                npcs/npc_test1.h \
146                npcs/ground_turret.h \
147                npcs/space_turret.h \
148                npcs/network_turret.h \
149                npcs/door.cc \
150                npcs/repair_station.h \
151                npcs/attractor_mine.h \
152                npcs/mover.h \
153                \
154                environments/environment.h \
155                environments/skysphere.h \
156                environments/skybox.h \
157                environments/skydome.h \
158                environments/terrain.h \
159                tools/movie_entity.h \
160                tools/recorder.h \
161                character_attributes.h \
162                tools/blackscreen.h \
163                tools/scrolling_screen.h \
164                environments/planet.h \
165                environments/bsp_entity.h \
166                tools/mount_point.h \
167                tools/sound_entity.h \
168                tools/camera.h \
169                \
170                questGUI/quest_gui.h \
171                questGUI/quest.h \
172                \
173                weapons/weapon_slot.h \
174                weapons/test_gun.h \
175                weapons/laser_cannon.cc \
176                weapons/cannon.h \
177                weapons/hyperblaster.h \
178                weapons/turret.h \
179                weapons/aiming_turret.h \
180                weapons/targeting_turret.h \
181                weapons/boomerang_gun.h \
182                weapons/aim.h \
183                weapons/aiming_system.h \
184                weapons/fps_sniper_rifle.h \
185                weapons/light_blaster.h \
186                weapons/medium_blaster.h \
187                weapons/heavy_blaster.h \
188                weapons/swarm_launcher.h \
189                weapons/spike_thrower.h \
190                weapons/acid_launcher.h \
191                weapons/rf_cannon.h \
192                weapons/disruptor.h \
193                weapons/nadion_laser.h \
194                \
195                projectiles/lbolt.h \
196                projectiles/mbolt.h \
197                projectiles/hbolt.h \
198                projectiles/swarm_projectile.h \
199                projectiles/bomb.h \
200                projectiles/laser.h \
201                projectiles/rail_projectile.h \
202                projectiles/test_bullet.h \
203                projectiles/rocket.h \
204                projectiles/guided_missile.h \
205                projectiles/boomerang_projectile.h \
206                projectiles/hyperblast.h \
207                projectiles/spike.h \
208                projectiles/spike_ball.h \
209                projectiles/acid_splash.h \
210                projectiles/plasma_pulse.h \
211                projectiles/nadion_blast.h \
212               \
213                projectiles/projectile_weapon.h \
214                projectiles/spike_ball.h \
215                \
216                items/power_ups/turret_power_up.h \
217                items/power_ups/laser_power_up.h \
218                \
219                space_ships/space_ship.h \
220                space_ships/helicopter.h \
221                space_ships/hover.h \
222                space_ships/turbine_hover.h \
223                space_ships/spacecraft_2d.h \
224                space_ships/collision_probe.h \
225                space_ships/cruizer.h \
226                creatures/md2_creature.h \
227                creatures/fps_player.h \
228                spectator.h \
229                \
230                environments/water.h \
231                environments/model_entity.h \
232                environments/building.h \
233                environments/mapped_water.h \
234                environments/rotor.h \
235                \
236                elements/image_entity.h \
237                elements/text_element.h \
238                elements/glgui_radar.h \
239                \
240                effects/lightning_bolt.h \
241                effects/blink.h \
242                \
243                script_triggers/space_trigger.h \
244                script_triggers/tick_trigger.h \
245                script_triggers/time_trigger.h \
246                \
247                \
248                particles/particle_emitter.h \
249                particles/dot_emitter.h \
250                particles/box_emitter.h \
251                particles/plane_emitter.h \
252                particles/emitter_node.h \
253                \
254                particles/particle_system.h \
255                particles/sprite_particles.h \
256                particles/spark_particles.h \
257                particles/model_particles.h \
258                particles/dot_particles.h \
259                \
260                particles/quick_animation.h \
261                \
262                \
263                weather_effects/atmospheric_engine.h \
264                weather_effects/weather_effect.h \
265                weather_effects/sun_effect.h \
266                weather_effects/fog_effect.h \
267                weather_effects/volfog_effect.h \
268                weather_effects/rain_effect.h \
269                weather_effects/snow_effect.h \
270                weather_effects/cloud_effect.h \
271                weather_effects/lightning_effect.h \
272                weather_effects/lense_flare.h
273
274
Note: See TracBrowser for help on using the repository browser.