Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/playability.new/src/world_entities/WorldEntities.am @ 10362

Last change on this file since 10362 was 10362, checked in by patrick, 17 years ago

merged playability. but got strange bug

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