OSDN Git Service

[added] rudimentary sound support. add gwt-voices.swf to the folder containing assets...
authorbadlogicgames <badlogicgames@6c4fd544-2939-11df-bb46-9574ba5d0bfa>
Wed, 14 Mar 2012 10:50:44 +0000 (10:50 +0000)
committerbadlogicgames <badlogicgames@6c4fd544-2939-11df-bb46-9574ba5d0bfa>
Wed, 14 Mar 2012 10:50:44 +0000 (10:50 +0000)
commit791234c4cd9505375f4defcfe97a9f61b9e0132a
treeac018a66d70661998819af34096b6c6b6d0a86c1
parent8f37f2fec0f1342ad1ec345b2ae53189155a0325
[added] rudimentary sound support. add gwt-voices.swf to the folder containing assets.txt, see superjumper-html/war. Experimental/incomplete.
44 files changed:
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/AbstractSound.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/FlashSound.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/Html5Sound.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/NativeSound.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/Sound.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/SoundController.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/SoundType.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/WebAudioSound.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/handler/FiresSoundEvents.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/handler/PlaybackCompleteEvent.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/handler/SoundHandler.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/handler/SoundHandlerCollection.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/handler/SoundLoadStateChangeEvent.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/handler/package.html [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/package.html [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/FlashMovie.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/VoicesMovie.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/FlashMovieImpl.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/FlashMovieImplIE6.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/FlashMovieImplMozilla.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/FlashMovieImplMozillaOld.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/FlashMovieImplOpera.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/FlashMovieImplSafari.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/FlashMovieImplStandard.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/NativeSoundImpl.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/NativeSoundImplIE6.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/NativeSoundImplMozilla.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/NativeSoundImplMozillaOld.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/NativeSoundImplOpera.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/NativeSoundImplSafari.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/NativeSoundImplStandard.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/impl/package.html [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/ui/package.html [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/util/DOMUtil.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/util/StringUtil.java [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/client/util/package.html [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/gwt-voices.gwt.xml [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/allen_sauer/gwt/voices/public/Voices.as [new file with mode: 0644]
backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gdx_backends_gwt.gwt.xml
backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtApplication.java
backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtAudio.java
backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtMusic.java
backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/GwtSound.java
backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/preloader/Preloader.java