Changeset 4506 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Jun 4, 2005, 12:49:24 AM (19 years ago)
- Location:
- orxonox/trunk
- Files:
-
- 20 edited
- 2 copied
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/configure
r4504 r4506 8732 8732 ## OUTPUT CONFIGURE ## 8733 8733 ###################### 8734 ac_config_files="$ac_config_files Makefile src/Makefile src/lib/Makefile src/lib/graphics/Makefile src/lib/graphics/importer/Makefile src/lib/event/Makefile src/lib/physics/Makefile src/lib/particles/Makefile src/lib/gui/Makefile src/lib/tinyxml/Makefile src/subprojects/Makefile src/subprojects/testmain/Makefile src/subprojects/importer/Makefile src/subprojects/particles/Makefile src/subprojects/gui/Makefile"8734 ac_config_files="$ac_config_files Makefile src/Makefile src/lib/Makefile src/lib/graphics/Makefile src/lib/graphics/importer/Makefile src/lib/sound/Makefile src/lib/event/Makefile src/lib/physics/Makefile src/lib/particles/Makefile src/lib/gui/Makefile src/lib/tinyxml/Makefile src/subprojects/Makefile src/subprojects/testmain/Makefile src/subprojects/importer/Makefile src/subprojects/particles/Makefile src/subprojects/gui/Makefile" 8735 8735 8736 8736 … … 9331 9331 "src/lib/graphics/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/graphics/Makefile" ;; 9332 9332 "src/lib/graphics/importer/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/graphics/importer/Makefile" ;; 9333 "src/lib/sound/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/sound/Makefile" ;; 9333 9334 "src/lib/event/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/event/Makefile" ;; 9334 9335 "src/lib/physics/Makefile" ) CONFIG_FILES="$CONFIG_FILES src/lib/physics/Makefile" ;; -
orxonox/trunk/configure.ac
r4504 r4506 589 589 src/lib/graphics/Makefile 590 590 src/lib/graphics/importer/Makefile 591 src/lib/sound/Makefile 591 592 src/lib/event/Makefile 592 593 src/lib/physics/Makefile -
orxonox/trunk/src/Makefile.am
r4504 r4506 9 9 10 10 orxonox_DEPENDENCIES = lib/gui/libORXgui.a \ 11 lib/sound/libORXsound.a \ 11 12 lib/event/libORXevent.a \ 12 13 lib/physics/libORXphysics.a \ … … 15 16 16 17 orxonox_LDADD = lib/gui/libORXgui.a \ 18 lib/sound/libORXsound.a \ 17 19 lib/event/libORXevent.a \ 18 20 lib/physics/libORXphysics.a \ … … 66 68 lib/graphics/importer/material.cc \ 67 69 lib/graphics/importer/texture.cc \ 68 lib/sound/sound_engine.cc \69 70 lib/lang/base_object.cc \ 70 71 lib/util/ini_parser.cc \ … … 138 139 lib/graphics/importer/material.h \ 139 140 lib/graphics/importer/texture.h \ 140 lib/sound/sound_engine.h \141 141 lib/lang/base_object.h \ 142 142 lib/util/ini_parser.h \ -
orxonox/trunk/src/Makefile.in
r4504 r4506 69 69 text_engine.$(OBJEXT) array.$(OBJEXT) objModel.$(OBJEXT) \ 70 70 md2Model.$(OBJEXT) primitive_model.$(OBJEXT) model.$(OBJEXT) \ 71 material.$(OBJEXT) texture.$(OBJEXT) sound_engine.$(OBJEXT) \72 base_object.$(OBJEXT) ini_parser.$(OBJEXT) substring.$(OBJEXT) \73 vector.$(OBJEXT)curve.$(OBJEXT) glmenu_imagescreen.$(OBJEXT) \71 material.$(OBJEXT) texture.$(OBJEXT) base_object.$(OBJEXT) \ 72 ini_parser.$(OBJEXT) substring.$(OBJEXT) vector.$(OBJEXT) \ 73 curve.$(OBJEXT) glmenu_imagescreen.$(OBJEXT) \ 74 74 benchmark.$(OBJEXT) 75 75 orxonox_OBJECTS = $(am_orxonox_OBJECTS) … … 102 102 @AMDEP_TRUE@ ./$(DEPDIR)/resource_manager.Po \ 103 103 @AMDEP_TRUE@ ./$(DEPDIR)/satellite.Po ./$(DEPDIR)/skybox.Po \ 104 @AMDEP_TRUE@ ./$(DEPDIR)/skysphere.Po \ 105 @AMDEP_TRUE@ ./$(DEPDIR)/sound_engine.Po ./$(DEPDIR)/state.Po \ 104 @AMDEP_TRUE@ ./$(DEPDIR)/skysphere.Po ./$(DEPDIR)/state.Po \ 106 105 @AMDEP_TRUE@ ./$(DEPDIR)/story_entity.Po \ 107 106 @AMDEP_TRUE@ ./$(DEPDIR)/substring.Po ./$(DEPDIR)/terrain.Po \ … … 241 240 MAINSRCDIR = . 242 241 orxonox_DEPENDENCIES = lib/gui/libORXgui.a \ 242 lib/sound/libORXsound.a \ 243 243 lib/event/libORXevent.a \ 244 244 lib/physics/libORXphysics.a \ … … 247 247 248 248 orxonox_LDADD = lib/gui/libORXgui.a \ 249 lib/sound/libORXsound.a \ 249 250 lib/event/libORXevent.a \ 250 251 lib/physics/libORXphysics.a \ … … 297 298 lib/graphics/importer/material.cc \ 298 299 lib/graphics/importer/texture.cc \ 299 lib/sound/sound_engine.cc \300 300 lib/lang/base_object.cc \ 301 301 lib/util/ini_parser.cc \ … … 369 369 lib/graphics/importer/material.h \ 370 370 lib/graphics/importer/texture.h \ 371 lib/sound/sound_engine.h \372 371 lib/lang/base_object.h \ 373 372 lib/util/ini_parser.h \ … … 406 405 esac; \ 407 406 done; \ 408 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/Makefile'; \407 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/Makefile'; \ 409 408 cd $(top_srcdir) && \ 410 $(AUTOMAKE) -- gnusrc/Makefile409 $(AUTOMAKE) --foreign src/Makefile 411 410 .PRECIOUS: Makefile 412 411 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 495 494 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/skybox.Po@am__quote@ 496 495 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/skysphere.Po@am__quote@ 497 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sound_engine.Po@am__quote@498 496 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/state.Po@am__quote@ 499 497 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/story_entity.Po@am__quote@ … … 1215 1213 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 1216 1214 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o texture.obj `if test -f 'lib/graphics/importer/texture.cc'; then $(CYGPATH_W) 'lib/graphics/importer/texture.cc'; else $(CYGPATH_W) '$(srcdir)/lib/graphics/importer/texture.cc'; fi` 1217 1218 sound_engine.o: lib/sound/sound_engine.cc1219 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sound_engine.o -MD -MP -MF "$(DEPDIR)/sound_engine.Tpo" -c -o sound_engine.o `test -f 'lib/sound/sound_engine.cc' || echo '$(srcdir)/'`lib/sound/sound_engine.cc; \1220 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/sound_engine.Tpo" "$(DEPDIR)/sound_engine.Po"; else rm -f "$(DEPDIR)/sound_engine.Tpo"; exit 1; fi1221 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/sound/sound_engine.cc' object='sound_engine.o' libtool=no @AMDEPBACKSLASH@1222 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/sound_engine.Po' tmpdepfile='$(DEPDIR)/sound_engine.TPo' @AMDEPBACKSLASH@1223 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@1224 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sound_engine.o `test -f 'lib/sound/sound_engine.cc' || echo '$(srcdir)/'`lib/sound/sound_engine.cc1225 1226 sound_engine.obj: lib/sound/sound_engine.cc1227 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sound_engine.obj -MD -MP -MF "$(DEPDIR)/sound_engine.Tpo" -c -o sound_engine.obj `if test -f 'lib/sound/sound_engine.cc'; then $(CYGPATH_W) 'lib/sound/sound_engine.cc'; else $(CYGPATH_W) '$(srcdir)/lib/sound/sound_engine.cc'; fi`; \1228 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/sound_engine.Tpo" "$(DEPDIR)/sound_engine.Po"; else rm -f "$(DEPDIR)/sound_engine.Tpo"; exit 1; fi1229 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='lib/sound/sound_engine.cc' object='sound_engine.obj' libtool=no @AMDEPBACKSLASH@1230 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/sound_engine.Po' tmpdepfile='$(DEPDIR)/sound_engine.TPo' @AMDEPBACKSLASH@1231 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@1232 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sound_engine.obj `if test -f 'lib/sound/sound_engine.cc'; then $(CYGPATH_W) 'lib/sound/sound_engine.cc'; else $(CYGPATH_W) '$(srcdir)/lib/sound/sound_engine.cc'; fi`1233 1215 1234 1216 base_object.o: lib/lang/base_object.cc … … 1466 1448 1467 1449 distdir: $(DISTFILES) 1468 $(mkdir_p) $(distdir)/defs $(distdir)/glmenu $(distdir)/lib/coord $(distdir)/lib/graphics $(distdir)/lib/graphics/importer $(distdir)/lib/lang $(distdir)/lib/math $(distdir)/lib/ sound $(distdir)/lib/util $(distdir)/proto $(distdir)/story_entities $(distdir)/subprojects $(distdir)/util $(distdir)/util/animation $(distdir)/util/loading $(distdir)/util/track $(distdir)/world_entities1450 $(mkdir_p) $(distdir)/defs $(distdir)/glmenu $(distdir)/lib/coord $(distdir)/lib/graphics $(distdir)/lib/graphics/importer $(distdir)/lib/lang $(distdir)/lib/math $(distdir)/lib/util $(distdir)/proto $(distdir)/story_entities $(distdir)/subprojects $(distdir)/util $(distdir)/util/animation $(distdir)/util/loading $(distdir)/util/track $(distdir)/world_entities 1469 1451 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 1470 1452 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ -
orxonox/trunk/src/lib/Makefile.am
r4484 r4506 3 3 4 4 SUBDIRS = graphics \ 5 sound \ 5 6 event \ 6 7 physics \ -
orxonox/trunk/src/lib/Makefile.in
r4504 r4506 168 168 GTK_PROGS = gui 169 169 SUBDIRS = graphics \ 170 sound \ 170 171 event \ 171 172 physics \ … … 186 187 esac; \ 187 188 done; \ 188 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/Makefile'; \189 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/Makefile'; \ 189 190 cd $(top_srcdir) && \ 190 $(AUTOMAKE) -- gnusrc/lib/Makefile191 $(AUTOMAKE) --foreign src/lib/Makefile 191 192 .PRECIOUS: Makefile 192 193 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/event/Makefile.in
r4504 r4506 212 212 esac; \ 213 213 done; \ 214 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/event/Makefile'; \214 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/event/Makefile'; \ 215 215 cd $(top_srcdir) && \ 216 $(AUTOMAKE) -- gnusrc/lib/event/Makefile216 $(AUTOMAKE) --foreign src/lib/event/Makefile 217 217 .PRECIOUS: Makefile 218 218 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/graphics/Makefile.in
r4504 r4506 177 177 esac; \ 178 178 done; \ 179 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/graphics/Makefile'; \179 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/graphics/Makefile'; \ 180 180 cd $(top_srcdir) && \ 181 $(AUTOMAKE) -- gnusrc/lib/graphics/Makefile181 $(AUTOMAKE) --foreign src/lib/graphics/Makefile 182 182 .PRECIOUS: Makefile 183 183 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/graphics/importer/Makefile.in
r4504 r4506 181 181 esac; \ 182 182 done; \ 183 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/graphics/importer/Makefile'; \183 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/graphics/importer/Makefile'; \ 184 184 cd $(top_srcdir) && \ 185 $(AUTOMAKE) -- gnusrc/lib/graphics/importer/Makefile185 $(AUTOMAKE) --foreign src/lib/graphics/importer/Makefile 186 186 .PRECIOUS: Makefile 187 187 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/gui/Makefile.in
r4504 r4506 241 241 esac; \ 242 242 done; \ 243 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/gui/Makefile'; \243 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/gui/Makefile'; \ 244 244 cd $(top_srcdir) && \ 245 $(AUTOMAKE) -- gnusrc/lib/gui/Makefile245 $(AUTOMAKE) --foreign src/lib/gui/Makefile 246 246 .PRECIOUS: Makefile 247 247 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/particles/Makefile.in
r4504 r4506 209 209 esac; \ 210 210 done; \ 211 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/particles/Makefile'; \211 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/particles/Makefile'; \ 212 212 cd $(top_srcdir) && \ 213 $(AUTOMAKE) -- gnusrc/lib/particles/Makefile213 $(AUTOMAKE) --foreign src/lib/particles/Makefile 214 214 .PRECIOUS: Makefile 215 215 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/physics/Makefile.in
r4504 r4506 217 217 esac; \ 218 218 done; \ 219 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/physics/Makefile'; \219 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/physics/Makefile'; \ 220 220 cd $(top_srcdir) && \ 221 $(AUTOMAKE) -- gnusrc/lib/physics/Makefile221 $(AUTOMAKE) --foreign src/lib/physics/Makefile 222 222 .PRECIOUS: Makefile 223 223 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/lib/sound/Makefile.am
r4505 r4506 2 2 include $(MAINSRCDIR)/defs/include_paths.am 3 3 4 noinst_LIBRARIES = libORX physics.a4 noinst_LIBRARIES = libORXsound.a 5 5 6 libORXphysics_a_SOURCES = physics_interface.cc \ 7 physics_connection.cc \ 8 physics_engine.cc \ 9 fields/field.cc \ 10 fields/gravity.cc \ 11 fields/point_gravity.cc \ 12 fields/twirl.cc 6 libORXsound_a_SOURCES = sound_engine.cc 13 7 14 noinst_HEADERS= physics_interface.h \ 15 physics_connection.h \ 16 physics_engine.h \ 17 fields/field.h \ 18 fields/gravity.h \ 19 fields/point_gravity.h \ 20 fields/twirl.h 8 noinst_HEADERS= sound_engine.h -
orxonox/trunk/src/lib/sound/Makefile.in
r4505 r4506 16 16 17 17 18 SOURCES = $(libORX physics_a_SOURCES)18 SOURCES = $(libORXsound_a_SOURCES) 19 19 20 20 srcdir = @srcdir@ … … 39 39 POST_UNINSTALL = : 40 40 host_triplet = @host@ 41 subdir = src/lib/ physics41 subdir = src/lib/sound 42 42 DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \ 43 43 $(srcdir)/Makefile.in … … 52 52 AR = ar 53 53 ARFLAGS = cru 54 libORXphysics_a_AR = $(AR) $(ARFLAGS) 55 libORXphysics_a_LIBADD = 56 am_libORXphysics_a_OBJECTS = physics_interface.$(OBJEXT) \ 57 physics_connection.$(OBJEXT) physics_engine.$(OBJEXT) \ 58 field.$(OBJEXT) gravity.$(OBJEXT) point_gravity.$(OBJEXT) \ 59 twirl.$(OBJEXT) 60 libORXphysics_a_OBJECTS = $(am_libORXphysics_a_OBJECTS) 54 libORXsound_a_AR = $(AR) $(ARFLAGS) 55 libORXsound_a_LIBADD = 56 am_libORXsound_a_OBJECTS = sound_engine.$(OBJEXT) 57 libORXsound_a_OBJECTS = $(am_libORXsound_a_OBJECTS) 61 58 DEFAULT_INCLUDES = -I. -I$(srcdir) -I$(top_builddir) 62 59 depcomp = $(SHELL) $(top_srcdir)/depcomp 63 60 am__depfiles_maybe = depfiles 64 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/field.Po ./$(DEPDIR)/gravity.Po \ 65 @AMDEP_TRUE@ ./$(DEPDIR)/physics_connection.Po \ 66 @AMDEP_TRUE@ ./$(DEPDIR)/physics_engine.Po \ 67 @AMDEP_TRUE@ ./$(DEPDIR)/physics_interface.Po \ 68 @AMDEP_TRUE@ ./$(DEPDIR)/point_gravity.Po ./$(DEPDIR)/twirl.Po 61 @AMDEP_TRUE@DEP_FILES = ./$(DEPDIR)/sound_engine.Po 69 62 CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ 70 63 $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) … … 72 65 CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ 73 66 -o $@ 74 SOURCES = $(libORX physics_a_SOURCES)75 DIST_SOURCES = $(libORX physics_a_SOURCES)67 SOURCES = $(libORXsound_a_SOURCES) 68 DIST_SOURCES = $(libORXsound_a_SOURCES) 76 69 HEADERS = $(noinst_HEADERS) 77 70 ETAGS = etags … … 187 180 target_vendor = @target_vendor@ 188 181 MAINSRCDIR = ../.. 189 noinst_LIBRARIES = libORXphysics.a 190 libORXphysics_a_SOURCES = physics_interface.cc \ 191 physics_connection.cc \ 192 physics_engine.cc \ 193 fields/field.cc \ 194 fields/gravity.cc \ 195 fields/point_gravity.cc \ 196 fields/twirl.cc 197 198 noinst_HEADERS = physics_interface.h \ 199 physics_connection.h \ 200 physics_engine.h \ 201 fields/field.h \ 202 fields/gravity.h \ 203 fields/point_gravity.h \ 204 fields/twirl.h 205 182 noinst_LIBRARIES = libORXsound.a 183 libORXsound_a_SOURCES = sound_engine.cc 184 noinst_HEADERS = sound_engine.h 206 185 all: all-am 207 186 … … 217 196 esac; \ 218 197 done; \ 219 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnu src/lib/physics/Makefile'; \198 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/sound/Makefile'; \ 220 199 cd $(top_srcdir) && \ 221 $(AUTOMAKE) -- gnu src/lib/physics/Makefile200 $(AUTOMAKE) --foreign src/lib/sound/Makefile 222 201 .PRECIOUS: Makefile 223 202 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status … … 240 219 clean-noinstLIBRARIES: 241 220 -test -z "$(noinst_LIBRARIES)" || rm -f $(noinst_LIBRARIES) 242 libORX physics.a: $(libORXphysics_a_OBJECTS) $(libORXphysics_a_DEPENDENCIES)243 -rm -f libORX physics.a244 $(libORX physics_a_AR) libORXphysics.a $(libORXphysics_a_OBJECTS) $(libORXphysics_a_LIBADD)245 $(RANLIB) libORX physics.a221 libORXsound.a: $(libORXsound_a_OBJECTS) $(libORXsound_a_DEPENDENCIES) 222 -rm -f libORXsound.a 223 $(libORXsound_a_AR) libORXsound.a $(libORXsound_a_OBJECTS) $(libORXsound_a_LIBADD) 224 $(RANLIB) libORXsound.a 246 225 247 226 mostlyclean-compile: … … 251 230 -rm -f *.tab.c 252 231 253 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/field.Po@am__quote@ 254 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gravity.Po@am__quote@ 255 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/physics_connection.Po@am__quote@ 256 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/physics_engine.Po@am__quote@ 257 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/physics_interface.Po@am__quote@ 258 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/point_gravity.Po@am__quote@ 259 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/twirl.Po@am__quote@ 232 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sound_engine.Po@am__quote@ 260 233 261 234 .cc.o: … … 274 247 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ 275 248 @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` 276 277 field.o: fields/field.cc278 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT field.o -MD -MP -MF "$(DEPDIR)/field.Tpo" -c -o field.o `test -f 'fields/field.cc' || echo '$(srcdir)/'`fields/field.cc; \279 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/field.Tpo" "$(DEPDIR)/field.Po"; else rm -f "$(DEPDIR)/field.Tpo"; exit 1; fi280 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/field.cc' object='field.o' libtool=no @AMDEPBACKSLASH@281 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/field.Po' tmpdepfile='$(DEPDIR)/field.TPo' @AMDEPBACKSLASH@282 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@283 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o field.o `test -f 'fields/field.cc' || echo '$(srcdir)/'`fields/field.cc284 285 field.obj: fields/field.cc286 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT field.obj -MD -MP -MF "$(DEPDIR)/field.Tpo" -c -o field.obj `if test -f 'fields/field.cc'; then $(CYGPATH_W) 'fields/field.cc'; else $(CYGPATH_W) '$(srcdir)/fields/field.cc'; fi`; \287 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/field.Tpo" "$(DEPDIR)/field.Po"; else rm -f "$(DEPDIR)/field.Tpo"; exit 1; fi288 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/field.cc' object='field.obj' libtool=no @AMDEPBACKSLASH@289 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/field.Po' tmpdepfile='$(DEPDIR)/field.TPo' @AMDEPBACKSLASH@290 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@291 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o field.obj `if test -f 'fields/field.cc'; then $(CYGPATH_W) 'fields/field.cc'; else $(CYGPATH_W) '$(srcdir)/fields/field.cc'; fi`292 293 gravity.o: fields/gravity.cc294 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gravity.o -MD -MP -MF "$(DEPDIR)/gravity.Tpo" -c -o gravity.o `test -f 'fields/gravity.cc' || echo '$(srcdir)/'`fields/gravity.cc; \295 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/gravity.Tpo" "$(DEPDIR)/gravity.Po"; else rm -f "$(DEPDIR)/gravity.Tpo"; exit 1; fi296 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/gravity.cc' object='gravity.o' libtool=no @AMDEPBACKSLASH@297 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/gravity.Po' tmpdepfile='$(DEPDIR)/gravity.TPo' @AMDEPBACKSLASH@298 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@299 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gravity.o `test -f 'fields/gravity.cc' || echo '$(srcdir)/'`fields/gravity.cc300 301 gravity.obj: fields/gravity.cc302 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT gravity.obj -MD -MP -MF "$(DEPDIR)/gravity.Tpo" -c -o gravity.obj `if test -f 'fields/gravity.cc'; then $(CYGPATH_W) 'fields/gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/gravity.cc'; fi`; \303 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/gravity.Tpo" "$(DEPDIR)/gravity.Po"; else rm -f "$(DEPDIR)/gravity.Tpo"; exit 1; fi304 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/gravity.cc' object='gravity.obj' libtool=no @AMDEPBACKSLASH@305 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/gravity.Po' tmpdepfile='$(DEPDIR)/gravity.TPo' @AMDEPBACKSLASH@306 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@307 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o gravity.obj `if test -f 'fields/gravity.cc'; then $(CYGPATH_W) 'fields/gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/gravity.cc'; fi`308 309 point_gravity.o: fields/point_gravity.cc310 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT point_gravity.o -MD -MP -MF "$(DEPDIR)/point_gravity.Tpo" -c -o point_gravity.o `test -f 'fields/point_gravity.cc' || echo '$(srcdir)/'`fields/point_gravity.cc; \311 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/point_gravity.Tpo" "$(DEPDIR)/point_gravity.Po"; else rm -f "$(DEPDIR)/point_gravity.Tpo"; exit 1; fi312 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/point_gravity.cc' object='point_gravity.o' libtool=no @AMDEPBACKSLASH@313 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/point_gravity.Po' tmpdepfile='$(DEPDIR)/point_gravity.TPo' @AMDEPBACKSLASH@314 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@315 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o point_gravity.o `test -f 'fields/point_gravity.cc' || echo '$(srcdir)/'`fields/point_gravity.cc316 317 point_gravity.obj: fields/point_gravity.cc318 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT point_gravity.obj -MD -MP -MF "$(DEPDIR)/point_gravity.Tpo" -c -o point_gravity.obj `if test -f 'fields/point_gravity.cc'; then $(CYGPATH_W) 'fields/point_gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/point_gravity.cc'; fi`; \319 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/point_gravity.Tpo" "$(DEPDIR)/point_gravity.Po"; else rm -f "$(DEPDIR)/point_gravity.Tpo"; exit 1; fi320 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/point_gravity.cc' object='point_gravity.obj' libtool=no @AMDEPBACKSLASH@321 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/point_gravity.Po' tmpdepfile='$(DEPDIR)/point_gravity.TPo' @AMDEPBACKSLASH@322 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@323 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o point_gravity.obj `if test -f 'fields/point_gravity.cc'; then $(CYGPATH_W) 'fields/point_gravity.cc'; else $(CYGPATH_W) '$(srcdir)/fields/point_gravity.cc'; fi`324 325 twirl.o: fields/twirl.cc326 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT twirl.o -MD -MP -MF "$(DEPDIR)/twirl.Tpo" -c -o twirl.o `test -f 'fields/twirl.cc' || echo '$(srcdir)/'`fields/twirl.cc; \327 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/twirl.Tpo" "$(DEPDIR)/twirl.Po"; else rm -f "$(DEPDIR)/twirl.Tpo"; exit 1; fi328 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/twirl.cc' object='twirl.o' libtool=no @AMDEPBACKSLASH@329 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/twirl.Po' tmpdepfile='$(DEPDIR)/twirl.TPo' @AMDEPBACKSLASH@330 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@331 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o twirl.o `test -f 'fields/twirl.cc' || echo '$(srcdir)/'`fields/twirl.cc332 333 twirl.obj: fields/twirl.cc334 @am__fastdepCXX_TRUE@ if $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT twirl.obj -MD -MP -MF "$(DEPDIR)/twirl.Tpo" -c -o twirl.obj `if test -f 'fields/twirl.cc'; then $(CYGPATH_W) 'fields/twirl.cc'; else $(CYGPATH_W) '$(srcdir)/fields/twirl.cc'; fi`; \335 @am__fastdepCXX_TRUE@ then mv -f "$(DEPDIR)/twirl.Tpo" "$(DEPDIR)/twirl.Po"; else rm -f "$(DEPDIR)/twirl.Tpo"; exit 1; fi336 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='fields/twirl.cc' object='twirl.obj' libtool=no @AMDEPBACKSLASH@337 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ depfile='$(DEPDIR)/twirl.Po' tmpdepfile='$(DEPDIR)/twirl.TPo' @AMDEPBACKSLASH@338 @AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@339 @am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o twirl.obj `if test -f 'fields/twirl.cc'; then $(CYGPATH_W) 'fields/twirl.cc'; else $(CYGPATH_W) '$(srcdir)/fields/twirl.cc'; fi`340 249 uninstall-info-am: 341 250 … … 389 298 390 299 distdir: $(DISTFILES) 391 $(mkdir_p) $(distdir)/fields392 300 @srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \ 393 301 topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \ -
orxonox/trunk/src/lib/sound/sound_engine.cc
r4504 r4506 242 242 \brief Sets the doppler values of openAL 243 243 \param dopplerFactor the extent of the doppler-effect 244 \param the Speed the sound travels244 \param dopplerVelocity the Speed the sound travels 245 245 */ 246 246 void SoundEngine::setDopplerValues(ALfloat dopplerFactor, ALfloat dopplerVelocity) -
orxonox/trunk/src/lib/sound/sound_engine.h
r4504 r4506 11 11 12 12 13 #define SOUND_DOPPLER_FACTOR 0.001 //!< A factor for the audible doppler effect14 #define SOUND_DOPPLER_VELOCITY 5000000//!< A factor for the TravelSpeed of sound13 #define SOUND_DOPPLER_FACTOR 0.001 //!< A factor for the audible doppler effect 14 #define SOUND_DOPPLER_VELOCITY 5000000 //!< A factor for the TravelSpeed of sound 15 15 16 16 // FORWARD DEFINITION … … 26 26 ~SoundBuffer(void); 27 27 28 /** \returns the ID of the buffer */28 /** \returns the ID of the buffer used in this SoundBuffer */ 29 29 inline ALuint getID(void) { return this->bufferID; } 30 30 31 31 private: 32 ALuint bufferID;//!< The address of the Buffer.32 ALuint bufferID; //!< The address of the Buffer. 33 33 34 ALsizei size; //!< The size of the Buffer.35 ALboolean loop;//!< loop information.34 ALsizei size; //!< The size of the Buffer. 35 ALboolean loop; //!< loop information. 36 36 }; 37 37 … … 42 42 SoundSource(SoundBuffer* buffer, PNode* sourceNode = NULL); 43 43 ~SoundSource(void); 44 44 45 45 // user interaction 46 46 void play(); … … 48 48 void pause(); 49 49 void rewind(); 50 50 51 51 // development functions 52 52 /** \returns The ID of this Source */ … … 60 60 61 61 private: 62 ALuint sourceID; //!< The ID of the Source63 SoundBuffer* buffer;//!< The buffer to play in this source.64 PNode* sourceNode; //!< The SourceNode represente the position/velocity... of this source.62 ALuint sourceID; //!< The ID of the Source 63 SoundBuffer* buffer; //!< The buffer to play in this source. 64 PNode* sourceNode; //!< The SourceNode represente the position/velocity... of this source. 65 65 }; 66 66 … … 99 99 private: 100 100 SoundEngine(void); 101 static SoundEngine* singletonRef;101 static SoundEngine* singletonRef; //!< Reference to this class 102 102 103 103 104 PNode* listener; //!< The listener of the Scene105 tList<SoundBuffer>* bufferList;//!< A list of buffers106 tList<SoundSource>* sourceList;//!< A list for all the sources in the scene.104 PNode* listener; //!< The listener of the Scene 105 tList<SoundBuffer>* bufferList; //!< A list of buffers 106 tList<SoundSource>* sourceList; //!< A list for all the sources in the scene. 107 107 108 108 }; -
orxonox/trunk/src/lib/tinyxml/Makefile.in
r4504 r4506 204 204 esac; \ 205 205 done; \ 206 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/lib/tinyxml/Makefile'; \206 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/lib/tinyxml/Makefile'; \ 207 207 cd $(top_srcdir) && \ 208 $(AUTOMAKE) -- gnusrc/lib/tinyxml/Makefile208 $(AUTOMAKE) --foreign src/lib/tinyxml/Makefile 209 209 .PRECIOUS: Makefile 210 210 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/Makefile.in
r4504 r4506 186 186 esac; \ 187 187 done; \ 188 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/Makefile'; \188 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/Makefile'; \ 189 189 cd $(top_srcdir) && \ 190 $(AUTOMAKE) -- gnusrc/subprojects/Makefile190 $(AUTOMAKE) --foreign src/subprojects/Makefile 191 191 .PRECIOUS: Makefile 192 192 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/gui/Makefile.in
r4504 r4506 228 228 esac; \ 229 229 done; \ 230 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/gui/Makefile'; \230 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/gui/Makefile'; \ 231 231 cd $(top_srcdir) && \ 232 $(AUTOMAKE) -- gnusrc/subprojects/gui/Makefile232 $(AUTOMAKE) --foreign src/subprojects/gui/Makefile 233 233 .PRECIOUS: Makefile 234 234 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/importer/Makefile.in
r4504 r4506 237 237 esac; \ 238 238 done; \ 239 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/importer/Makefile'; \239 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/importer/Makefile'; \ 240 240 cd $(top_srcdir) && \ 241 $(AUTOMAKE) -- gnusrc/subprojects/importer/Makefile241 $(AUTOMAKE) --foreign src/subprojects/importer/Makefile 242 242 .PRECIOUS: Makefile 243 243 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/particles/Makefile.in
r4504 r4506 260 260 esac; \ 261 261 done; \ 262 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/particles/Makefile'; \262 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/particles/Makefile'; \ 263 263 cd $(top_srcdir) && \ 264 $(AUTOMAKE) -- gnusrc/subprojects/particles/Makefile264 $(AUTOMAKE) --foreign src/subprojects/particles/Makefile 265 265 .PRECIOUS: Makefile 266 266 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status -
orxonox/trunk/src/subprojects/testmain/Makefile.in
r4504 r4506 196 196 esac; \ 197 197 done; \ 198 echo ' cd $(top_srcdir) && $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile'; \198 echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile'; \ 199 199 cd $(top_srcdir) && \ 200 $(AUTOMAKE) -- gnusrc/subprojects/testmain/Makefile200 $(AUTOMAKE) --foreign src/subprojects/testmain/Makefile 201 201 .PRECIOUS: Makefile 202 202 Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
Note: See TracChangeset
for help on using the changeset viewer.