Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/adm/src/world_entities/WorldEntities.am @ 10664

Last change on this file since 10664 was 10664, checked in by retolu, 17 years ago

compiles

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