├── .gitignore ├── README.md ├── chapter10code ├── PhoneGapApp │ ├── .idea │ │ ├── .name │ │ ├── ant.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── AndroidManifest.xml │ ├── PhoneGapApp.iml │ ├── assets │ │ └── www │ │ │ ├── index.html │ │ │ ├── phonegap-0.9.3.js │ │ │ └── zepto.min.js │ ├── bin │ │ ├── PhoneGapApp-debug-unaligned.apk │ │ ├── PhoneGapApp-debug.apk │ │ ├── PhoneGapApp-unsigned.apk │ │ ├── PhoneGapApp.ap_ │ │ └── classes.dex │ ├── build.properties │ ├── build.xml │ ├── default.properties │ ├── gen │ │ └── com │ │ │ └── html5book │ │ │ └── R.java │ ├── libs │ │ └── phonegap-0.9.3.jar │ ├── local.properties │ ├── proguard.cfg │ ├── res │ │ ├── drawable-hdpi │ │ │ └── icon.png │ │ ├── drawable-ldpi │ │ │ └── icon.png │ │ ├── drawable-mdpi │ │ │ └── icon.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── html5book │ │ └── App.java └── TitaniumApp │ ├── .gitignore │ ├── CHANGELOG.txt │ ├── LICENSE │ ├── LICENSE.txt │ ├── README │ ├── Resources │ ├── android │ │ ├── appicon.png │ │ ├── default.png │ │ └── images │ │ │ ├── res-long-land-hdpi │ │ │ └── default.png │ │ │ ├── res-long-land-ldpi │ │ │ └── default.png │ │ │ ├── res-long-port-hdpi │ │ │ └── default.png │ │ │ ├── res-long-port-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-ldpi │ │ │ └── default.png │ │ │ ├── res-notlong-land-mdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-hdpi │ │ │ └── default.png │ │ │ ├── res-notlong-port-ldpi │ │ │ └── default.png │ │ │ └── res-notlong-port-mdpi │ │ │ └── default.png │ ├── app.js │ ├── index.html │ └── zepto.min.js │ ├── manifest │ └── tiapp.xml ├── chapter11code ├── README ├── copy-me-game-chrome │ ├── css │ │ └── fonts.css │ ├── icons │ │ ├── icon_128.png │ │ └── icon_16.png │ ├── index.html │ ├── js │ │ ├── Game.js │ │ └── trident.js │ ├── manifest.json │ ├── sounds │ │ ├── A2h.mp3 │ │ ├── A3h.mp3 │ │ ├── D3h.mp3 │ │ └── G3h.mp3 │ └── ttf │ │ ├── Lobster.ttf │ │ └── ReenieBeanie.ttf └── copy-me-game-tapjs │ ├── .index.html.swp │ ├── css │ └── fonts.css │ ├── index.html │ ├── js │ ├── Game.js │ └── trident.js │ ├── sounds │ ├── A2h.mp3 │ ├── A3h.mp3 │ ├── D3h.mp3 │ └── G3h.mp3 │ └── ttf │ ├── Lobster.ttf │ └── ReenieBeanie.ttf ├── chapter1code ├── geolocation-map.html ├── webworker.html └── worker.js ├── chapter4code ├── Asteroids-Tech-Demo │ ├── Asteroids │ │ ├── Asteroid.js │ │ ├── images │ │ │ └── asteroid.png │ │ └── main.js │ ├── index.html │ ├── js │ │ ├── SGF.debug.js │ │ ├── SGF.js │ │ └── lib │ │ │ ├── FABridge.js │ │ │ ├── Sound.min.js │ │ │ ├── Sound.swf │ │ │ ├── WebSocketMain.swf │ │ │ ├── prototype.js │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ └── styles.css ├── LinkedList │ ├── LinkedList.js │ └── prototype.js ├── Pong │ ├── Pong │ │ ├── Ball.js │ │ ├── Direction.js │ │ ├── Paddle.js │ │ ├── ScoreBoard.js │ │ ├── ScoreLabel.js │ │ └── main.js │ ├── fonts │ │ ├── AnnieUseYourTelescope.ttf │ │ └── OFL.txt │ ├── index.html │ ├── js │ │ ├── SGF.debug.js │ │ ├── SGF.js │ │ └── lib │ │ │ ├── FABridge.js │ │ │ ├── Sound.min.js │ │ │ ├── Sound.swf │ │ │ ├── WebSocketMain.swf │ │ │ ├── prototype.js │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ └── styles.css ├── PongAI │ ├── Pong │ │ ├── Ball.js │ │ ├── Direction.js │ │ ├── Paddle.js │ │ ├── ScoreBoard.js │ │ ├── ScoreLabel.js │ │ └── main.js │ ├── fonts │ │ ├── AnnieUseYourTelescope.ttf │ │ └── OFL.txt │ ├── index.html │ ├── js │ │ ├── SGF.debug.js │ │ ├── SGF.js │ │ └── lib │ │ │ ├── FABridge.js │ │ │ ├── Sound.min.js │ │ │ ├── Sound.swf │ │ │ ├── WebSocketMain.swf │ │ │ ├── prototype.js │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ └── styles.css ├── Set │ ├── Set.js │ └── prototype.js └── TicTacToe-SGF │ ├── TicTacToe │ ├── Cell.js │ ├── CellContainer.js │ ├── MiniMax.js │ └── main.js │ ├── index.html │ ├── js │ ├── SGF.debug.js │ ├── SGF.js │ └── lib │ │ ├── FABridge.js │ │ ├── Sound.min.js │ │ ├── Sound.swf │ │ ├── WebSocketMain.swf │ │ ├── prototype.js │ │ ├── swfobject.js │ │ └── web_socket.js │ └── styles.css ├── chapter5code ├── copy-me-game │ ├── css │ │ └── fonts.css │ ├── index.html │ ├── js │ │ ├── Game.js │ │ └── trident.js │ ├── sounds │ │ ├── A2h.mp3 │ │ ├── A3h.mp3 │ │ ├── D3h.mp3 │ │ └── G3h.mp3 │ └── ttf │ │ ├── Lobster.ttf │ │ └── ReenieBeanie.ttf ├── multi-channel-sound │ ├── README │ ├── index.html │ ├── js │ │ └── playSounds.js │ └── sounds │ │ ├── 16171__harri__accoustic_loop_2_120bpm.mp3 │ │ ├── 4048__RealRhodesSounds__ambientloop83bpm.wav │ │ └── 4197__RealRhodesSounds__Cminor7.wav ├── parallax-effect-demo │ ├── README │ ├── images │ │ ├── Parallax-scroll-example-layer-0.gif │ │ ├── Parallax-scroll-example-layer-1.gif │ │ ├── Parallax-scroll-example-layer-2.gif │ │ └── Parallax-scroll-example-layer-3.gif │ ├── index.html │ └── js │ │ ├── Parallax.js │ │ └── trident.js ├── sprite-sheet-demo │ ├── README │ ├── images │ │ └── zombie_0.png │ ├── index.html │ └── js │ │ ├── Sprites.js │ │ └── trident.js ├── tic-tac-toe │ ├── index.html │ └── js │ │ └── Game.js └── trident-js-demo │ ├── index.html │ └── js │ └── trident.js ├── chapter6code ├── cufon-demo │ ├── index.html │ └── js │ │ ├── Vegur.font.js │ │ ├── cufon.js │ │ └── raphael-min.js ├── linking │ ├── index.html │ └── js │ │ └── raphael-min.js ├── memorycardgame │ ├── images │ │ └── 90dpi │ │ │ ├── 10_club.png │ │ │ ├── 10_diamond.png │ │ │ ├── 10_heart.png │ │ │ ├── 10_spade.png │ │ │ ├── 1_club.png │ │ │ ├── 1_diamond.png │ │ │ ├── 1_heart.png │ │ │ ├── 1_spade.png │ │ │ ├── 2_club.png │ │ │ ├── 2_diamond.png │ │ │ ├── 2_heart.png │ │ │ ├── 2_spade.png │ │ │ ├── 3_club.png │ │ │ ├── 3_diamond.png │ │ │ ├── 3_heart.png │ │ │ ├── 3_spade.png │ │ │ ├── 4_club.png │ │ │ ├── 4_diamond.png │ │ │ ├── 4_heart.png │ │ │ ├── 4_spade.png │ │ │ ├── 5_club.png │ │ │ ├── 5_diamond.png │ │ │ ├── 5_heart.png │ │ │ ├── 5_spade.png │ │ │ ├── 6_club.png │ │ │ ├── 6_diamond.png │ │ │ ├── 6_heart.png │ │ │ ├── 6_spade.png │ │ │ ├── 7_club.png │ │ │ ├── 7_diamond.png │ │ │ ├── 7_heart.png │ │ │ ├── 7_spade.png │ │ │ ├── 8_club.png │ │ │ ├── 8_diamond.png │ │ │ ├── 8_heart.png │ │ │ ├── 8_spade.png │ │ │ ├── 9_club.png │ │ │ ├── 9_diamond.png │ │ │ ├── 9_heart.png │ │ │ ├── 9_spade.png │ │ │ ├── COPYING │ │ │ ├── back.png │ │ │ ├── jack_club.png │ │ │ ├── jack_diamond.png │ │ │ ├── jack_heart.png │ │ │ ├── jack_spade.png │ │ │ ├── king_club.png │ │ │ ├── king_diamond.png │ │ │ ├── king_heart.png │ │ │ ├── king_spade.png │ │ │ ├── queen_club.png │ │ │ ├── queen_diamond.png │ │ │ ├── queen_heart.png │ │ │ ├── queen_spade.png │ │ │ ├── svg-cards-90.bat │ │ │ ├── svg-cards-90.sh │ │ │ └── svg-cards.svg │ ├── index.html │ └── js │ │ ├── Card.js │ │ ├── Deck.js │ │ ├── Droid_Sans_400.font.js │ │ ├── Game.js │ │ ├── Set.js │ │ ├── raphael-min.js │ │ └── utils.js └── svg-card-generator.groovy ├── chapter7code ├── RequestAnimationFrame.js ├── Three.js ├── gameOfLife │ ├── Cell.js │ ├── CellsGrid.js │ ├── LifeProperties.js │ ├── Props.js │ ├── game-of-life.html │ ├── prototype.js │ └── suzanne.js ├── loadingModels │ ├── cube.js │ ├── loadingModels.html │ └── loadingModels.html~ ├── physics-demo │ ├── jiglibjs.0.9.0.2.js │ └── physics-demo.html ├── snowman │ └── snowman.html ├── texturing │ ├── 200407-bluemarble.jpg │ ├── README │ └── texturing.html └── triangle │ └── geometric-face.html ├── chapter8code ├── GWTMemoryCards │ ├── .classpath │ ├── .idea │ │ ├── .name │ │ ├── ant.xml │ │ ├── artifacts │ │ │ └── GWTMemoryCards_GWT.xml │ │ ├── compiler.xml │ │ ├── copyright │ │ │ └── profiles_settings.xml │ │ ├── encodings.xml │ │ ├── gradle.xml │ │ ├── libraries │ │ │ └── gwt_user.xml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── uiDesigner.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── .project │ ├── .settings │ │ └── com.google.gwt.eclipse.core.prefs │ ├── GWTMemoryCards.eml │ ├── GWTMemoryCards.iml │ ├── GWTMemoryCards.userlibraries │ ├── README │ ├── bin │ │ ├── Game.gwt.xml │ │ ├── client │ │ │ ├── Canvas$Card.class │ │ │ ├── Canvas$Deck.class │ │ │ ├── Canvas$RImage.class │ │ │ ├── Canvas.class │ │ │ ├── CardSet.class │ │ │ └── Game.class │ │ ├── com │ │ │ ├── google │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── code │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ │ └── gwt │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ │ └── html5 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ │ └── media │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── HTML5Media.gwt.xml.svn-base │ │ │ │ │ ├── HTML5Media.gwt.xml │ │ │ │ │ └── client │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Audio.java.svn-base │ │ │ │ │ │ ├── AudioElement.java.svn-base │ │ │ │ │ │ ├── Media.java.svn-base │ │ │ │ │ │ ├── MediaElement.java.svn-base │ │ │ │ │ │ ├── MediaError.java.svn-base │ │ │ │ │ │ ├── NetworkState.java.svn-base │ │ │ │ │ │ ├── ReadyState.java.svn-base │ │ │ │ │ │ ├── TimeRanges.java.svn-base │ │ │ │ │ │ ├── Video.java.svn-base │ │ │ │ │ │ └── VideoElement.java.svn-base │ │ │ │ │ ├── Audio.class │ │ │ │ │ ├── AudioElement.class │ │ │ │ │ ├── Media.class │ │ │ │ │ ├── MediaElement.class │ │ │ │ │ ├── MediaError.class │ │ │ │ │ ├── NetworkState.class │ │ │ │ │ ├── ReadyState.class │ │ │ │ │ ├── TimeRanges.class │ │ │ │ │ ├── Video.class │ │ │ │ │ ├── VideoElement.class │ │ │ │ │ └── event │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── AbortEvent.java.svn-base │ │ │ │ │ │ ├── AbortHandler.java.svn-base │ │ │ │ │ │ ├── CanPlayEvent.java.svn-base │ │ │ │ │ │ ├── CanPlayHandler.java.svn-base │ │ │ │ │ │ ├── CanPlayThroughEvent.java.svn-base │ │ │ │ │ │ ├── CanPlayThroughHandler.java.svn-base │ │ │ │ │ │ ├── DurationChangeEvent.java.svn-base │ │ │ │ │ │ ├── DurationChangeHandler.java.svn-base │ │ │ │ │ │ ├── EmptiedEvent.java.svn-base │ │ │ │ │ │ ├── EmptiedHandler.java.svn-base │ │ │ │ │ │ ├── EndedEvent.java.svn-base │ │ │ │ │ │ ├── EndedHandler.java.svn-base │ │ │ │ │ │ ├── ErrorEvent.java.svn-base │ │ │ │ │ │ ├── ErrorHandler.java.svn-base │ │ │ │ │ │ ├── HasAbortHandlers.java.svn-base │ │ │ │ │ │ ├── HasCanPlayHandlers.java.svn-base │ │ │ │ │ │ ├── HasCanPlayThroughHandlers.java.svn-base │ │ │ │ │ │ ├── HasDurationChangeHandlers.java.svn-base │ │ │ │ │ │ ├── HasEmptiedHandlers.java.svn-base │ │ │ │ │ │ ├── HasEndedHandlers.java.svn-base │ │ │ │ │ │ ├── HasErrorHandlers.java.svn-base │ │ │ │ │ │ ├── HasLoadStartHandlers.java.svn-base │ │ │ │ │ │ ├── HasLoadedDataHandlers.java.svn-base │ │ │ │ │ │ ├── HasLoadedMetadataHandlers.java.svn-base │ │ │ │ │ │ ├── HasPauseHandlers.java.svn-base │ │ │ │ │ │ ├── HasPlayHandlers.java.svn-base │ │ │ │ │ │ ├── HasPlayingHandlers.java.svn-base │ │ │ │ │ │ ├── HasProgressHandlers.java.svn-base │ │ │ │ │ │ ├── HasRateChangeHandlers.java.svn-base │ │ │ │ │ │ ├── HasSeekedHandlers.java.svn-base │ │ │ │ │ │ ├── HasSeekingHandlers.java.svn-base │ │ │ │ │ │ ├── HasStalledHandlers.java.svn-base │ │ │ │ │ │ ├── HasSuspendHandlers.java.svn-base │ │ │ │ │ │ ├── HasTimeUpdateHandlers.java.svn-base │ │ │ │ │ │ ├── HasVolumeChangeHandlers.java.svn-base │ │ │ │ │ │ ├── HasWaitingHandlers.java.svn-base │ │ │ │ │ │ ├── LoadStartEvent.java.svn-base │ │ │ │ │ │ ├── LoadStartHandler.java.svn-base │ │ │ │ │ │ ├── LoadedDataEvent.java.svn-base │ │ │ │ │ │ ├── LoadedDataHandler.java.svn-base │ │ │ │ │ │ ├── LoadedMetadataEvent.java.svn-base │ │ │ │ │ │ ├── LoadedMetadataHandler.java.svn-base │ │ │ │ │ │ ├── PauseEvent.java.svn-base │ │ │ │ │ │ ├── PauseHandler.java.svn-base │ │ │ │ │ │ ├── PlayEvent.java.svn-base │ │ │ │ │ │ ├── PlayHandler.java.svn-base │ │ │ │ │ │ ├── PlayingEvent.java.svn-base │ │ │ │ │ │ ├── PlayingHandler.java.svn-base │ │ │ │ │ │ ├── ProgressEvent.java.svn-base │ │ │ │ │ │ ├── ProgressHandler.java.svn-base │ │ │ │ │ │ ├── RateChangeEvent.java.svn-base │ │ │ │ │ │ ├── RateChangeHandler.java.svn-base │ │ │ │ │ │ ├── SeekedEvent.java.svn-base │ │ │ │ │ │ ├── SeekedHandler.java.svn-base │ │ │ │ │ │ ├── SeekingEvent.java.svn-base │ │ │ │ │ │ ├── SeekingHandler.java.svn-base │ │ │ │ │ │ ├── StalledEvent.java.svn-base │ │ │ │ │ │ ├── StalledHandler.java.svn-base │ │ │ │ │ │ ├── SuspendEvent.java.svn-base │ │ │ │ │ │ ├── SuspendHandler.java.svn-base │ │ │ │ │ │ ├── TimeUpdateEvent.java.svn-base │ │ │ │ │ │ ├── TimeUpdateHandler.java.svn-base │ │ │ │ │ │ ├── VolumeChangeEvent.java.svn-base │ │ │ │ │ │ ├── VolumeChangeHandler.java.svn-base │ │ │ │ │ │ ├── WaitingEvent.java.svn-base │ │ │ │ │ │ └── WaitingHandler.java.svn-base │ │ │ │ │ ├── AbortEvent.class │ │ │ │ │ ├── AbortHandler.class │ │ │ │ │ ├── CanPlayEvent.class │ │ │ │ │ ├── CanPlayHandler.class │ │ │ │ │ ├── CanPlayThroughEvent.class │ │ │ │ │ ├── CanPlayThroughHandler.class │ │ │ │ │ ├── DurationChangeEvent.class │ │ │ │ │ ├── DurationChangeHandler.class │ │ │ │ │ ├── EmptiedEvent.class │ │ │ │ │ ├── EmptiedHandler.class │ │ │ │ │ ├── EndedEvent.class │ │ │ │ │ ├── EndedHandler.class │ │ │ │ │ ├── ErrorEvent.class │ │ │ │ │ ├── ErrorHandler.class │ │ │ │ │ ├── HasAbortHandlers.class │ │ │ │ │ ├── HasCanPlayHandlers.class │ │ │ │ │ ├── HasCanPlayThroughHandlers.class │ │ │ │ │ ├── HasDurationChangeHandlers.class │ │ │ │ │ ├── HasEmptiedHandlers.class │ │ │ │ │ ├── HasEndedHandlers.class │ │ │ │ │ ├── HasErrorHandlers.class │ │ │ │ │ ├── HasLoadStartHandlers.class │ │ │ │ │ ├── HasLoadedDataHandlers.class │ │ │ │ │ ├── HasLoadedMetadataHandlers.class │ │ │ │ │ ├── HasPauseHandlers.class │ │ │ │ │ ├── HasPlayHandlers.class │ │ │ │ │ ├── HasPlayingHandlers.class │ │ │ │ │ ├── HasProgressHandlers.class │ │ │ │ │ ├── HasRateChangeHandlers.class │ │ │ │ │ ├── HasSeekedHandlers.class │ │ │ │ │ ├── HasSeekingHandlers.class │ │ │ │ │ ├── HasStalledHandlers.class │ │ │ │ │ ├── HasSuspendHandlers.class │ │ │ │ │ ├── HasTimeUpdateHandlers.class │ │ │ │ │ ├── HasVolumeChangeHandlers.class │ │ │ │ │ ├── HasWaitingHandlers.class │ │ │ │ │ ├── LoadStartEvent.class │ │ │ │ │ ├── LoadStartHandler.class │ │ │ │ │ ├── LoadedDataEvent.class │ │ │ │ │ ├── LoadedDataHandler.class │ │ │ │ │ ├── LoadedMetadataEvent.class │ │ │ │ │ ├── LoadedMetadataHandler.class │ │ │ │ │ ├── PauseEvent.class │ │ │ │ │ ├── PauseHandler.class │ │ │ │ │ ├── PlayEvent.class │ │ │ │ │ ├── PlayHandler.class │ │ │ │ │ ├── PlayingEvent.class │ │ │ │ │ ├── PlayingHandler.class │ │ │ │ │ ├── ProgressEvent.class │ │ │ │ │ ├── ProgressHandler.class │ │ │ │ │ ├── RateChangeEvent.class │ │ │ │ │ ├── RateChangeHandler.class │ │ │ │ │ ├── SeekedEvent.class │ │ │ │ │ ├── SeekedHandler.class │ │ │ │ │ ├── SeekingEvent.class │ │ │ │ │ ├── SeekingHandler.class │ │ │ │ │ ├── StalledEvent.class │ │ │ │ │ ├── StalledHandler.class │ │ │ │ │ ├── SuspendEvent.class │ │ │ │ │ ├── SuspendHandler.class │ │ │ │ │ ├── TimeUpdateEvent.class │ │ │ │ │ ├── TimeUpdateHandler.class │ │ │ │ │ ├── VolumeChangeEvent.class │ │ │ │ │ ├── VolumeChangeHandler.class │ │ │ │ │ ├── WaitingEvent.class │ │ │ │ │ └── WaitingHandler.class │ │ │ ├── html5gamebook │ │ │ │ └── client │ │ │ │ │ ├── Canvas$Card.class │ │ │ │ │ ├── Canvas$Deck.class │ │ │ │ │ ├── Canvas$RImage.class │ │ │ │ │ ├── Canvas.class │ │ │ │ │ ├── CardSet.class │ │ │ │ │ ├── Game.class │ │ │ │ │ ├── Game.gwt.xml │ │ │ │ │ └── public │ │ │ │ │ ├── images │ │ │ │ │ └── 90dpi │ │ │ │ │ │ ├── 10_club.png │ │ │ │ │ │ ├── 10_diamond.png │ │ │ │ │ │ ├── 10_heart.png │ │ │ │ │ │ ├── 10_spade.png │ │ │ │ │ │ ├── 1_club.png │ │ │ │ │ │ ├── 1_diamond.png │ │ │ │ │ │ ├── 1_heart.png │ │ │ │ │ │ ├── 1_spade.png │ │ │ │ │ │ ├── 2_club.png │ │ │ │ │ │ ├── 2_diamond.png │ │ │ │ │ │ ├── 2_heart.png │ │ │ │ │ │ ├── 2_spade.png │ │ │ │ │ │ ├── 3_club.png │ │ │ │ │ │ ├── 3_diamond.png │ │ │ │ │ │ ├── 3_heart.png │ │ │ │ │ │ ├── 3_spade.png │ │ │ │ │ │ ├── 4_club.png │ │ │ │ │ │ ├── 4_diamond.png │ │ │ │ │ │ ├── 4_heart.png │ │ │ │ │ │ ├── 4_spade.png │ │ │ │ │ │ ├── 5_club.png │ │ │ │ │ │ ├── 5_diamond.png │ │ │ │ │ │ ├── 5_heart.png │ │ │ │ │ │ ├── 5_spade.png │ │ │ │ │ │ ├── 6_club.png │ │ │ │ │ │ ├── 6_diamond.png │ │ │ │ │ │ ├── 6_heart.png │ │ │ │ │ │ ├── 6_spade.png │ │ │ │ │ │ ├── 7_club.png │ │ │ │ │ │ ├── 7_diamond.png │ │ │ │ │ │ ├── 7_heart.png │ │ │ │ │ │ ├── 7_spade.png │ │ │ │ │ │ ├── 8_club.png │ │ │ │ │ │ ├── 8_diamond.png │ │ │ │ │ │ ├── 8_heart.png │ │ │ │ │ │ ├── 8_spade.png │ │ │ │ │ │ ├── 9_club.png │ │ │ │ │ │ ├── 9_diamond.png │ │ │ │ │ │ ├── 9_heart.png │ │ │ │ │ │ ├── 9_spade.png │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── jack_club.png │ │ │ │ │ │ ├── jack_diamond.png │ │ │ │ │ │ ├── jack_heart.png │ │ │ │ │ │ ├── jack_spade.png │ │ │ │ │ │ ├── king_club.png │ │ │ │ │ │ ├── king_diamond.png │ │ │ │ │ │ ├── king_heart.png │ │ │ │ │ │ ├── king_spade.png │ │ │ │ │ │ ├── queen_club.png │ │ │ │ │ │ ├── queen_diamond.png │ │ │ │ │ │ ├── queen_heart.png │ │ │ │ │ │ ├── queen_spade.png │ │ │ │ │ │ ├── svg-cards-90.bat │ │ │ │ │ │ ├── svg-cards-90.sh │ │ │ │ │ │ └── svg-cards.svg │ │ │ │ │ └── sounds │ │ │ │ │ ├── cardshuffle.mp3 │ │ │ │ │ ├── cardshuffle.ogg │ │ │ │ │ ├── cardshuffle.wav │ │ │ │ │ ├── fanfare.mp3 │ │ │ │ │ ├── fanfare.ogg │ │ │ │ │ ├── fanfare.wav │ │ │ │ │ ├── flipcard.mp3 │ │ │ │ │ ├── flipcard.ogg │ │ │ │ │ └── flipcard.wav │ │ │ └── hydro4ge │ │ │ │ └── raphaelgwt │ │ │ │ ├── RaphaelGWT.gwt.xml │ │ │ │ ├── client │ │ │ │ ├── AnimationCallback.class │ │ │ │ ├── BBox.class │ │ │ │ ├── PathBuilder.class │ │ │ │ ├── Point.class │ │ │ │ ├── Raphael$Circle.class │ │ │ │ ├── Raphael$Ellipse.class │ │ │ │ ├── Raphael$Image.class │ │ │ │ ├── Raphael$Path.class │ │ │ │ ├── Raphael$Rect.class │ │ │ │ ├── Raphael$Set.class │ │ │ │ ├── Raphael$Shape.class │ │ │ │ ├── Raphael$Text.class │ │ │ │ ├── Raphael.class │ │ │ │ ├── RaphaelJS$Color.class │ │ │ │ ├── RaphaelJS$Element.class │ │ │ │ ├── RaphaelJS$Font.class │ │ │ │ ├── RaphaelJS$Path.class │ │ │ │ ├── RaphaelJS$Set.class │ │ │ │ └── RaphaelJS.class │ │ │ │ └── public │ │ │ │ ├── raphael-min.js │ │ │ │ └── raphael.js │ │ └── public │ │ │ ├── images │ │ │ └── 90dpi │ │ │ │ ├── 10_club.png │ │ │ │ ├── 10_diamond.png │ │ │ │ ├── 10_heart.png │ │ │ │ ├── 10_spade.png │ │ │ │ ├── 1_club.png │ │ │ │ ├── 1_diamond.png │ │ │ │ ├── 1_heart.png │ │ │ │ ├── 1_spade.png │ │ │ │ ├── 2_club.png │ │ │ │ ├── 2_diamond.png │ │ │ │ ├── 2_heart.png │ │ │ │ ├── 2_spade.png │ │ │ │ ├── 3_club.png │ │ │ │ ├── 3_diamond.png │ │ │ │ ├── 3_heart.png │ │ │ │ ├── 3_spade.png │ │ │ │ ├── 4_club.png │ │ │ │ ├── 4_diamond.png │ │ │ │ ├── 4_heart.png │ │ │ │ ├── 4_spade.png │ │ │ │ ├── 5_club.png │ │ │ │ ├── 5_diamond.png │ │ │ │ ├── 5_heart.png │ │ │ │ ├── 5_spade.png │ │ │ │ ├── 6_club.png │ │ │ │ ├── 6_diamond.png │ │ │ │ ├── 6_heart.png │ │ │ │ ├── 6_spade.png │ │ │ │ ├── 7_club.png │ │ │ │ ├── 7_diamond.png │ │ │ │ ├── 7_heart.png │ │ │ │ ├── 7_spade.png │ │ │ │ ├── 8_club.png │ │ │ │ ├── 8_diamond.png │ │ │ │ ├── 8_heart.png │ │ │ │ ├── 8_spade.png │ │ │ │ ├── 9_club.png │ │ │ │ ├── 9_diamond.png │ │ │ │ ├── 9_heart.png │ │ │ │ ├── 9_spade.png │ │ │ │ ├── COPYING │ │ │ │ ├── back.png │ │ │ │ ├── jack_club.png │ │ │ │ ├── jack_diamond.png │ │ │ │ ├── jack_heart.png │ │ │ │ ├── jack_spade.png │ │ │ │ ├── king_club.png │ │ │ │ ├── king_diamond.png │ │ │ │ ├── king_heart.png │ │ │ │ ├── king_spade.png │ │ │ │ ├── queen_club.png │ │ │ │ ├── queen_diamond.png │ │ │ │ ├── queen_heart.png │ │ │ │ ├── queen_spade.png │ │ │ │ ├── svg-cards-90.bat │ │ │ │ ├── svg-cards-90.sh │ │ │ │ └── svg-cards.svg │ │ │ └── sounds │ │ │ ├── cardshuffle.mp3 │ │ │ ├── cardshuffle.ogg │ │ │ ├── cardshuffle.wav │ │ │ ├── fanfare.mp3 │ │ │ ├── fanfare.ogg │ │ │ ├── fanfare.wav │ │ │ ├── flipcard.mp3 │ │ │ ├── flipcard.ogg │ │ │ └── flipcard.wav │ ├── out │ │ └── production │ │ │ └── GWTMemoryCards │ │ │ ├── Game.gwt.xml │ │ │ ├── client │ │ │ ├── Canvas$Card$1$1.class │ │ │ ├── Canvas$Card$1.class │ │ │ ├── Canvas$Card$2.class │ │ │ ├── Canvas$Card.class │ │ │ ├── Canvas$Deck.class │ │ │ ├── Canvas$RImage.class │ │ │ ├── Canvas.class │ │ │ ├── CardSet.class │ │ │ └── Game.class │ │ │ ├── com │ │ │ ├── google │ │ │ │ └── code │ │ │ │ │ └── gwt │ │ │ │ │ └── html5 │ │ │ │ │ └── media │ │ │ │ │ ├── HTML5Media.gwt.xml │ │ │ │ │ └── client │ │ │ │ │ ├── Audio.class │ │ │ │ │ ├── AudioElement.class │ │ │ │ │ ├── Media.class │ │ │ │ │ ├── MediaElement.class │ │ │ │ │ ├── MediaError.class │ │ │ │ │ ├── NetworkState.class │ │ │ │ │ ├── ReadyState.class │ │ │ │ │ ├── TimeRanges.class │ │ │ │ │ ├── Video.class │ │ │ │ │ ├── VideoElement.class │ │ │ │ │ └── event │ │ │ │ │ ├── AbortEvent.class │ │ │ │ │ ├── AbortHandler.class │ │ │ │ │ ├── CanPlayEvent.class │ │ │ │ │ ├── CanPlayHandler.class │ │ │ │ │ ├── CanPlayThroughEvent.class │ │ │ │ │ ├── CanPlayThroughHandler.class │ │ │ │ │ ├── DurationChangeEvent.class │ │ │ │ │ ├── DurationChangeHandler.class │ │ │ │ │ ├── EmptiedEvent.class │ │ │ │ │ ├── EmptiedHandler.class │ │ │ │ │ ├── EndedEvent.class │ │ │ │ │ ├── EndedHandler.class │ │ │ │ │ ├── ErrorEvent.class │ │ │ │ │ ├── ErrorHandler.class │ │ │ │ │ ├── HasAbortHandlers.class │ │ │ │ │ ├── HasCanPlayHandlers.class │ │ │ │ │ ├── HasCanPlayThroughHandlers.class │ │ │ │ │ ├── HasDurationChangeHandlers.class │ │ │ │ │ ├── HasEmptiedHandlers.class │ │ │ │ │ ├── HasEndedHandlers.class │ │ │ │ │ ├── HasErrorHandlers.class │ │ │ │ │ ├── HasLoadStartHandlers.class │ │ │ │ │ ├── HasLoadedDataHandlers.class │ │ │ │ │ ├── HasLoadedMetadataHandlers.class │ │ │ │ │ ├── HasPauseHandlers.class │ │ │ │ │ ├── HasPlayHandlers.class │ │ │ │ │ ├── HasPlayingHandlers.class │ │ │ │ │ ├── HasProgressHandlers.class │ │ │ │ │ ├── HasRateChangeHandlers.class │ │ │ │ │ ├── HasSeekedHandlers.class │ │ │ │ │ ├── HasSeekingHandlers.class │ │ │ │ │ ├── HasStalledHandlers.class │ │ │ │ │ ├── HasSuspendHandlers.class │ │ │ │ │ ├── HasTimeUpdateHandlers.class │ │ │ │ │ ├── HasVolumeChangeHandlers.class │ │ │ │ │ ├── HasWaitingHandlers.class │ │ │ │ │ ├── LoadStartEvent.class │ │ │ │ │ ├── LoadStartHandler.class │ │ │ │ │ ├── LoadedDataEvent.class │ │ │ │ │ ├── LoadedDataHandler.class │ │ │ │ │ ├── LoadedMetadataEvent.class │ │ │ │ │ ├── LoadedMetadataHandler.class │ │ │ │ │ ├── PauseEvent.class │ │ │ │ │ ├── PauseHandler.class │ │ │ │ │ ├── PlayEvent.class │ │ │ │ │ ├── PlayHandler.class │ │ │ │ │ ├── PlayingEvent.class │ │ │ │ │ ├── PlayingHandler.class │ │ │ │ │ ├── ProgressEvent.class │ │ │ │ │ ├── ProgressHandler.class │ │ │ │ │ ├── RateChangeEvent.class │ │ │ │ │ ├── RateChangeHandler.class │ │ │ │ │ ├── SeekedEvent.class │ │ │ │ │ ├── SeekedHandler.class │ │ │ │ │ ├── SeekingEvent.class │ │ │ │ │ ├── SeekingHandler.class │ │ │ │ │ ├── StalledEvent.class │ │ │ │ │ ├── StalledHandler.class │ │ │ │ │ ├── SuspendEvent.class │ │ │ │ │ ├── SuspendHandler.class │ │ │ │ │ ├── TimeUpdateEvent.class │ │ │ │ │ ├── TimeUpdateHandler.class │ │ │ │ │ ├── VolumeChangeEvent.class │ │ │ │ │ ├── VolumeChangeHandler.class │ │ │ │ │ ├── WaitingEvent.class │ │ │ │ │ └── WaitingHandler.class │ │ │ ├── html5gamebook │ │ │ │ └── client │ │ │ │ │ ├── Canvas$Card$1$1.class │ │ │ │ │ ├── Canvas$Card$1.class │ │ │ │ │ ├── Canvas$Card$2.class │ │ │ │ │ ├── Canvas$Card.class │ │ │ │ │ ├── Canvas$Deck.class │ │ │ │ │ ├── Canvas$RImage.class │ │ │ │ │ ├── Canvas.class │ │ │ │ │ ├── CardSet.class │ │ │ │ │ ├── Game.class │ │ │ │ │ ├── Game.gwt.xml │ │ │ │ │ └── public │ │ │ │ │ └── images │ │ │ │ │ └── 90dpi │ │ │ │ │ ├── 10_club.png │ │ │ │ │ ├── 10_diamond.png │ │ │ │ │ ├── 10_heart.png │ │ │ │ │ ├── 10_spade.png │ │ │ │ │ ├── 1_club.png │ │ │ │ │ ├── 1_diamond.png │ │ │ │ │ ├── 1_heart.png │ │ │ │ │ ├── 1_spade.png │ │ │ │ │ ├── 2_club.png │ │ │ │ │ ├── 2_diamond.png │ │ │ │ │ ├── 2_heart.png │ │ │ │ │ ├── 2_spade.png │ │ │ │ │ ├── 3_club.png │ │ │ │ │ ├── 3_diamond.png │ │ │ │ │ ├── 3_heart.png │ │ │ │ │ ├── 3_spade.png │ │ │ │ │ ├── 4_club.png │ │ │ │ │ ├── 4_diamond.png │ │ │ │ │ ├── 4_heart.png │ │ │ │ │ ├── 4_spade.png │ │ │ │ │ ├── 5_club.png │ │ │ │ │ ├── 5_diamond.png │ │ │ │ │ ├── 5_heart.png │ │ │ │ │ ├── 5_spade.png │ │ │ │ │ ├── 6_club.png │ │ │ │ │ ├── 6_diamond.png │ │ │ │ │ ├── 6_heart.png │ │ │ │ │ ├── 6_spade.png │ │ │ │ │ ├── 7_club.png │ │ │ │ │ ├── 7_diamond.png │ │ │ │ │ ├── 7_heart.png │ │ │ │ │ ├── 7_spade.png │ │ │ │ │ ├── 8_club.png │ │ │ │ │ ├── 8_diamond.png │ │ │ │ │ ├── 8_heart.png │ │ │ │ │ ├── 8_spade.png │ │ │ │ │ ├── 9_club.png │ │ │ │ │ ├── 9_diamond.png │ │ │ │ │ ├── 9_heart.png │ │ │ │ │ ├── 9_spade.png │ │ │ │ │ ├── back.png │ │ │ │ │ ├── jack_club.png │ │ │ │ │ ├── jack_diamond.png │ │ │ │ │ ├── jack_heart.png │ │ │ │ │ ├── jack_spade.png │ │ │ │ │ ├── king_club.png │ │ │ │ │ ├── king_diamond.png │ │ │ │ │ ├── king_heart.png │ │ │ │ │ ├── king_spade.png │ │ │ │ │ ├── queen_club.png │ │ │ │ │ ├── queen_diamond.png │ │ │ │ │ ├── queen_heart.png │ │ │ │ │ └── queen_spade.png │ │ │ └── hydro4ge │ │ │ │ └── raphaelgwt │ │ │ │ ├── RaphaelGWT.gwt.xml │ │ │ │ └── client │ │ │ │ ├── AnimationCallback.class │ │ │ │ ├── BBox.class │ │ │ │ ├── PathBuilder.class │ │ │ │ ├── Point.class │ │ │ │ ├── Raphael$Circle.class │ │ │ │ ├── Raphael$Ellipse.class │ │ │ │ ├── Raphael$Image.class │ │ │ │ ├── Raphael$Path.class │ │ │ │ ├── Raphael$Rect.class │ │ │ │ ├── Raphael$Set.class │ │ │ │ ├── Raphael$Shape.class │ │ │ │ ├── Raphael$Text.class │ │ │ │ ├── Raphael.class │ │ │ │ ├── RaphaelJS$Color.class │ │ │ │ ├── RaphaelJS$Element.class │ │ │ │ ├── RaphaelJS$Font.class │ │ │ │ ├── RaphaelJS$Path.class │ │ │ │ ├── RaphaelJS$Set.class │ │ │ │ └── RaphaelJS.class │ │ │ └── public │ │ │ └── images │ │ │ └── 90dpi │ │ │ ├── 10_club.png │ │ │ ├── 10_diamond.png │ │ │ ├── 10_heart.png │ │ │ ├── 10_spade.png │ │ │ ├── 1_club.png │ │ │ ├── 1_diamond.png │ │ │ ├── 1_heart.png │ │ │ ├── 1_spade.png │ │ │ ├── 2_club.png │ │ │ ├── 2_diamond.png │ │ │ ├── 2_heart.png │ │ │ ├── 2_spade.png │ │ │ ├── 3_club.png │ │ │ ├── 3_diamond.png │ │ │ ├── 3_heart.png │ │ │ ├── 3_spade.png │ │ │ ├── 4_club.png │ │ │ ├── 4_diamond.png │ │ │ ├── 4_heart.png │ │ │ ├── 4_spade.png │ │ │ ├── 5_club.png │ │ │ ├── 5_diamond.png │ │ │ ├── 5_heart.png │ │ │ ├── 5_spade.png │ │ │ ├── 6_club.png │ │ │ ├── 6_diamond.png │ │ │ ├── 6_heart.png │ │ │ ├── 6_spade.png │ │ │ ├── 7_club.png │ │ │ ├── 7_diamond.png │ │ │ ├── 7_heart.png │ │ │ ├── 7_spade.png │ │ │ ├── 8_club.png │ │ │ ├── 8_diamond.png │ │ │ ├── 8_heart.png │ │ │ ├── 8_spade.png │ │ │ ├── 9_club.png │ │ │ ├── 9_diamond.png │ │ │ ├── 9_heart.png │ │ │ ├── 9_spade.png │ │ │ ├── back.png │ │ │ ├── jack_club.png │ │ │ ├── jack_diamond.png │ │ │ ├── jack_heart.png │ │ │ ├── jack_spade.png │ │ │ ├── king_club.png │ │ │ ├── king_diamond.png │ │ │ ├── king_heart.png │ │ │ ├── king_spade.png │ │ │ ├── queen_club.png │ │ │ ├── queen_diamond.png │ │ │ ├── queen_heart.png │ │ │ └── queen_spade.png │ ├── src │ │ ├── Game.gwt.xml │ │ ├── client │ │ │ ├── Canvas.java │ │ │ ├── CardSet.java │ │ │ └── Game.java │ │ ├── com │ │ │ ├── google │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ └── code │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ │ └── gwt │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ │ └── html5 │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ └── entries │ │ │ │ │ └── media │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ └── HTML5Media.gwt.xml.svn-base │ │ │ │ │ ├── HTML5Media.gwt.xml │ │ │ │ │ └── client │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── Audio.java.svn-base │ │ │ │ │ │ ├── AudioElement.java.svn-base │ │ │ │ │ │ ├── Media.java.svn-base │ │ │ │ │ │ ├── MediaElement.java.svn-base │ │ │ │ │ │ ├── MediaError.java.svn-base │ │ │ │ │ │ ├── NetworkState.java.svn-base │ │ │ │ │ │ ├── ReadyState.java.svn-base │ │ │ │ │ │ ├── TimeRanges.java.svn-base │ │ │ │ │ │ ├── Video.java.svn-base │ │ │ │ │ │ └── VideoElement.java.svn-base │ │ │ │ │ ├── Audio.java │ │ │ │ │ ├── AudioElement.java │ │ │ │ │ ├── Media.java │ │ │ │ │ ├── MediaElement.java │ │ │ │ │ ├── MediaError.java │ │ │ │ │ ├── NetworkState.java │ │ │ │ │ ├── ReadyState.java │ │ │ │ │ ├── TimeRanges.java │ │ │ │ │ ├── Video.java │ │ │ │ │ ├── VideoElement.java │ │ │ │ │ └── event │ │ │ │ │ ├── .svn │ │ │ │ │ ├── all-wcprops │ │ │ │ │ ├── entries │ │ │ │ │ └── text-base │ │ │ │ │ │ ├── AbortEvent.java.svn-base │ │ │ │ │ │ ├── AbortHandler.java.svn-base │ │ │ │ │ │ ├── CanPlayEvent.java.svn-base │ │ │ │ │ │ ├── CanPlayHandler.java.svn-base │ │ │ │ │ │ ├── CanPlayThroughEvent.java.svn-base │ │ │ │ │ │ ├── CanPlayThroughHandler.java.svn-base │ │ │ │ │ │ ├── DurationChangeEvent.java.svn-base │ │ │ │ │ │ ├── DurationChangeHandler.java.svn-base │ │ │ │ │ │ ├── EmptiedEvent.java.svn-base │ │ │ │ │ │ ├── EmptiedHandler.java.svn-base │ │ │ │ │ │ ├── EndedEvent.java.svn-base │ │ │ │ │ │ ├── EndedHandler.java.svn-base │ │ │ │ │ │ ├── ErrorEvent.java.svn-base │ │ │ │ │ │ ├── ErrorHandler.java.svn-base │ │ │ │ │ │ ├── HasAbortHandlers.java.svn-base │ │ │ │ │ │ ├── HasCanPlayHandlers.java.svn-base │ │ │ │ │ │ ├── HasCanPlayThroughHandlers.java.svn-base │ │ │ │ │ │ ├── HasDurationChangeHandlers.java.svn-base │ │ │ │ │ │ ├── HasEmptiedHandlers.java.svn-base │ │ │ │ │ │ ├── HasEndedHandlers.java.svn-base │ │ │ │ │ │ ├── HasErrorHandlers.java.svn-base │ │ │ │ │ │ ├── HasLoadStartHandlers.java.svn-base │ │ │ │ │ │ ├── HasLoadedDataHandlers.java.svn-base │ │ │ │ │ │ ├── HasLoadedMetadataHandlers.java.svn-base │ │ │ │ │ │ ├── HasPauseHandlers.java.svn-base │ │ │ │ │ │ ├── HasPlayHandlers.java.svn-base │ │ │ │ │ │ ├── HasPlayingHandlers.java.svn-base │ │ │ │ │ │ ├── HasProgressHandlers.java.svn-base │ │ │ │ │ │ ├── HasRateChangeHandlers.java.svn-base │ │ │ │ │ │ ├── HasSeekedHandlers.java.svn-base │ │ │ │ │ │ ├── HasSeekingHandlers.java.svn-base │ │ │ │ │ │ ├── HasStalledHandlers.java.svn-base │ │ │ │ │ │ ├── HasSuspendHandlers.java.svn-base │ │ │ │ │ │ ├── HasTimeUpdateHandlers.java.svn-base │ │ │ │ │ │ ├── HasVolumeChangeHandlers.java.svn-base │ │ │ │ │ │ ├── HasWaitingHandlers.java.svn-base │ │ │ │ │ │ ├── LoadStartEvent.java.svn-base │ │ │ │ │ │ ├── LoadStartHandler.java.svn-base │ │ │ │ │ │ ├── LoadedDataEvent.java.svn-base │ │ │ │ │ │ ├── LoadedDataHandler.java.svn-base │ │ │ │ │ │ ├── LoadedMetadataEvent.java.svn-base │ │ │ │ │ │ ├── LoadedMetadataHandler.java.svn-base │ │ │ │ │ │ ├── PauseEvent.java.svn-base │ │ │ │ │ │ ├── PauseHandler.java.svn-base │ │ │ │ │ │ ├── PlayEvent.java.svn-base │ │ │ │ │ │ ├── PlayHandler.java.svn-base │ │ │ │ │ │ ├── PlayingEvent.java.svn-base │ │ │ │ │ │ ├── PlayingHandler.java.svn-base │ │ │ │ │ │ ├── ProgressEvent.java.svn-base │ │ │ │ │ │ ├── ProgressHandler.java.svn-base │ │ │ │ │ │ ├── RateChangeEvent.java.svn-base │ │ │ │ │ │ ├── RateChangeHandler.java.svn-base │ │ │ │ │ │ ├── SeekedEvent.java.svn-base │ │ │ │ │ │ ├── SeekedHandler.java.svn-base │ │ │ │ │ │ ├── SeekingEvent.java.svn-base │ │ │ │ │ │ ├── SeekingHandler.java.svn-base │ │ │ │ │ │ ├── StalledEvent.java.svn-base │ │ │ │ │ │ ├── StalledHandler.java.svn-base │ │ │ │ │ │ ├── SuspendEvent.java.svn-base │ │ │ │ │ │ ├── SuspendHandler.java.svn-base │ │ │ │ │ │ ├── TimeUpdateEvent.java.svn-base │ │ │ │ │ │ ├── TimeUpdateHandler.java.svn-base │ │ │ │ │ │ ├── VolumeChangeEvent.java.svn-base │ │ │ │ │ │ ├── VolumeChangeHandler.java.svn-base │ │ │ │ │ │ ├── WaitingEvent.java.svn-base │ │ │ │ │ │ └── WaitingHandler.java.svn-base │ │ │ │ │ ├── AbortEvent.java │ │ │ │ │ ├── AbortHandler.java │ │ │ │ │ ├── CanPlayEvent.java │ │ │ │ │ ├── CanPlayHandler.java │ │ │ │ │ ├── CanPlayThroughEvent.java │ │ │ │ │ ├── CanPlayThroughHandler.java │ │ │ │ │ ├── DurationChangeEvent.java │ │ │ │ │ ├── DurationChangeHandler.java │ │ │ │ │ ├── EmptiedEvent.java │ │ │ │ │ ├── EmptiedHandler.java │ │ │ │ │ ├── EndedEvent.java │ │ │ │ │ ├── EndedHandler.java │ │ │ │ │ ├── ErrorEvent.java │ │ │ │ │ ├── ErrorHandler.java │ │ │ │ │ ├── HasAbortHandlers.java │ │ │ │ │ ├── HasCanPlayHandlers.java │ │ │ │ │ ├── HasCanPlayThroughHandlers.java │ │ │ │ │ ├── HasDurationChangeHandlers.java │ │ │ │ │ ├── HasEmptiedHandlers.java │ │ │ │ │ ├── HasEndedHandlers.java │ │ │ │ │ ├── HasErrorHandlers.java │ │ │ │ │ ├── HasLoadStartHandlers.java │ │ │ │ │ ├── HasLoadedDataHandlers.java │ │ │ │ │ ├── HasLoadedMetadataHandlers.java │ │ │ │ │ ├── HasPauseHandlers.java │ │ │ │ │ ├── HasPlayHandlers.java │ │ │ │ │ ├── HasPlayingHandlers.java │ │ │ │ │ ├── HasProgressHandlers.java │ │ │ │ │ ├── HasRateChangeHandlers.java │ │ │ │ │ ├── HasSeekedHandlers.java │ │ │ │ │ ├── HasSeekingHandlers.java │ │ │ │ │ ├── HasStalledHandlers.java │ │ │ │ │ ├── HasSuspendHandlers.java │ │ │ │ │ ├── HasTimeUpdateHandlers.java │ │ │ │ │ ├── HasVolumeChangeHandlers.java │ │ │ │ │ ├── HasWaitingHandlers.java │ │ │ │ │ ├── LoadStartEvent.java │ │ │ │ │ ├── LoadStartHandler.java │ │ │ │ │ ├── LoadedDataEvent.java │ │ │ │ │ ├── LoadedDataHandler.java │ │ │ │ │ ├── LoadedMetadataEvent.java │ │ │ │ │ ├── LoadedMetadataHandler.java │ │ │ │ │ ├── PauseEvent.java │ │ │ │ │ ├── PauseHandler.java │ │ │ │ │ ├── PlayEvent.java │ │ │ │ │ ├── PlayHandler.java │ │ │ │ │ ├── PlayingEvent.java │ │ │ │ │ ├── PlayingHandler.java │ │ │ │ │ ├── ProgressEvent.java │ │ │ │ │ ├── ProgressHandler.java │ │ │ │ │ ├── RateChangeEvent.java │ │ │ │ │ ├── RateChangeHandler.java │ │ │ │ │ ├── SeekedEvent.java │ │ │ │ │ ├── SeekedHandler.java │ │ │ │ │ ├── SeekingEvent.java │ │ │ │ │ ├── SeekingHandler.java │ │ │ │ │ ├── StalledEvent.java │ │ │ │ │ ├── StalledHandler.java │ │ │ │ │ ├── SuspendEvent.java │ │ │ │ │ ├── SuspendHandler.java │ │ │ │ │ ├── TimeUpdateEvent.java │ │ │ │ │ ├── TimeUpdateHandler.java │ │ │ │ │ ├── VolumeChangeEvent.java │ │ │ │ │ ├── VolumeChangeHandler.java │ │ │ │ │ ├── WaitingEvent.java │ │ │ │ │ └── WaitingHandler.java │ │ │ ├── html5gamebook │ │ │ │ └── client │ │ │ │ │ ├── Canvas.java │ │ │ │ │ ├── CardSet.java │ │ │ │ │ ├── Game.gwt.xml │ │ │ │ │ ├── Game.java │ │ │ │ │ └── public │ │ │ │ │ ├── images │ │ │ │ │ └── 90dpi │ │ │ │ │ │ ├── 10_club.png │ │ │ │ │ │ ├── 10_diamond.png │ │ │ │ │ │ ├── 10_heart.png │ │ │ │ │ │ ├── 10_spade.png │ │ │ │ │ │ ├── 1_club.png │ │ │ │ │ │ ├── 1_diamond.png │ │ │ │ │ │ ├── 1_heart.png │ │ │ │ │ │ ├── 1_spade.png │ │ │ │ │ │ ├── 2_club.png │ │ │ │ │ │ ├── 2_diamond.png │ │ │ │ │ │ ├── 2_heart.png │ │ │ │ │ │ ├── 2_spade.png │ │ │ │ │ │ ├── 3_club.png │ │ │ │ │ │ ├── 3_diamond.png │ │ │ │ │ │ ├── 3_heart.png │ │ │ │ │ │ ├── 3_spade.png │ │ │ │ │ │ ├── 4_club.png │ │ │ │ │ │ ├── 4_diamond.png │ │ │ │ │ │ ├── 4_heart.png │ │ │ │ │ │ ├── 4_spade.png │ │ │ │ │ │ ├── 5_club.png │ │ │ │ │ │ ├── 5_diamond.png │ │ │ │ │ │ ├── 5_heart.png │ │ │ │ │ │ ├── 5_spade.png │ │ │ │ │ │ ├── 6_club.png │ │ │ │ │ │ ├── 6_diamond.png │ │ │ │ │ │ ├── 6_heart.png │ │ │ │ │ │ ├── 6_spade.png │ │ │ │ │ │ ├── 7_club.png │ │ │ │ │ │ ├── 7_diamond.png │ │ │ │ │ │ ├── 7_heart.png │ │ │ │ │ │ ├── 7_spade.png │ │ │ │ │ │ ├── 8_club.png │ │ │ │ │ │ ├── 8_diamond.png │ │ │ │ │ │ ├── 8_heart.png │ │ │ │ │ │ ├── 8_spade.png │ │ │ │ │ │ ├── 9_club.png │ │ │ │ │ │ ├── 9_diamond.png │ │ │ │ │ │ ├── 9_heart.png │ │ │ │ │ │ ├── 9_spade.png │ │ │ │ │ │ ├── COPYING │ │ │ │ │ │ ├── back.png │ │ │ │ │ │ ├── jack_club.png │ │ │ │ │ │ ├── jack_diamond.png │ │ │ │ │ │ ├── jack_heart.png │ │ │ │ │ │ ├── jack_spade.png │ │ │ │ │ │ ├── king_club.png │ │ │ │ │ │ ├── king_diamond.png │ │ │ │ │ │ ├── king_heart.png │ │ │ │ │ │ ├── king_spade.png │ │ │ │ │ │ ├── queen_club.png │ │ │ │ │ │ ├── queen_diamond.png │ │ │ │ │ │ ├── queen_heart.png │ │ │ │ │ │ ├── queen_spade.png │ │ │ │ │ │ ├── svg-cards-90.bat │ │ │ │ │ │ ├── svg-cards-90.sh │ │ │ │ │ │ └── svg-cards.svg │ │ │ │ │ └── sounds │ │ │ │ │ ├── cardshuffle.mp3 │ │ │ │ │ ├── cardshuffle.ogg │ │ │ │ │ ├── cardshuffle.wav │ │ │ │ │ ├── fanfare.mp3 │ │ │ │ │ ├── fanfare.ogg │ │ │ │ │ ├── fanfare.wav │ │ │ │ │ ├── flipcard.mp3 │ │ │ │ │ ├── flipcard.ogg │ │ │ │ │ └── flipcard.wav │ │ │ └── hydro4ge │ │ │ │ └── raphaelgwt │ │ │ │ ├── RaphaelGWT.gwt.xml │ │ │ │ ├── client │ │ │ │ ├── AnimationCallback.java │ │ │ │ ├── BBox.java │ │ │ │ ├── PathBuilder.java │ │ │ │ ├── Point.java │ │ │ │ ├── Raphael.java │ │ │ │ └── RaphaelJS.java │ │ │ │ └── public │ │ │ │ ├── raphael-min.js │ │ │ │ └── raphael.js │ │ └── public │ │ │ ├── images │ │ │ └── 90dpi │ │ │ │ ├── 10_club.png │ │ │ │ ├── 10_diamond.png │ │ │ │ ├── 10_heart.png │ │ │ │ ├── 10_spade.png │ │ │ │ ├── 1_club.png │ │ │ │ ├── 1_diamond.png │ │ │ │ ├── 1_heart.png │ │ │ │ ├── 1_spade.png │ │ │ │ ├── 2_club.png │ │ │ │ ├── 2_diamond.png │ │ │ │ ├── 2_heart.png │ │ │ │ ├── 2_spade.png │ │ │ │ ├── 3_club.png │ │ │ │ ├── 3_diamond.png │ │ │ │ ├── 3_heart.png │ │ │ │ ├── 3_spade.png │ │ │ │ ├── 4_club.png │ │ │ │ ├── 4_diamond.png │ │ │ │ ├── 4_heart.png │ │ │ │ ├── 4_spade.png │ │ │ │ ├── 5_club.png │ │ │ │ ├── 5_diamond.png │ │ │ │ ├── 5_heart.png │ │ │ │ ├── 5_spade.png │ │ │ │ ├── 6_club.png │ │ │ │ ├── 6_diamond.png │ │ │ │ ├── 6_heart.png │ │ │ │ ├── 6_spade.png │ │ │ │ ├── 7_club.png │ │ │ │ ├── 7_diamond.png │ │ │ │ ├── 7_heart.png │ │ │ │ ├── 7_spade.png │ │ │ │ ├── 8_club.png │ │ │ │ ├── 8_diamond.png │ │ │ │ ├── 8_heart.png │ │ │ │ ├── 8_spade.png │ │ │ │ ├── 9_club.png │ │ │ │ ├── 9_diamond.png │ │ │ │ ├── 9_heart.png │ │ │ │ ├── 9_spade.png │ │ │ │ ├── COPYING │ │ │ │ ├── back.png │ │ │ │ ├── jack_club.png │ │ │ │ ├── jack_diamond.png │ │ │ │ ├── jack_heart.png │ │ │ │ ├── jack_spade.png │ │ │ │ ├── king_club.png │ │ │ │ ├── king_diamond.png │ │ │ │ ├── king_heart.png │ │ │ │ ├── king_spade.png │ │ │ │ ├── queen_club.png │ │ │ │ ├── queen_diamond.png │ │ │ │ ├── queen_heart.png │ │ │ │ ├── queen_spade.png │ │ │ │ ├── svg-cards-90.bat │ │ │ │ ├── svg-cards-90.sh │ │ │ │ └── svg-cards.svg │ │ │ └── sounds │ │ │ ├── cardshuffle.mp3 │ │ │ ├── cardshuffle.ogg │ │ │ ├── cardshuffle.wav │ │ │ ├── fanfare.mp3 │ │ │ ├── fanfare.ogg │ │ │ ├── fanfare.wav │ │ │ ├── flipcard.mp3 │ │ │ ├── flipcard.ogg │ │ │ └── flipcard.wav │ └── war │ │ ├── Game.css │ │ ├── Game.html │ │ ├── WEB-INF │ │ ├── deploy │ │ │ ├── com.html5gamebook.client.Game │ │ │ │ └── rpcPolicyManifest │ │ │ │ │ └── manifest.txt │ │ │ └── html5_media │ │ │ │ └── rpcPolicyManifest │ │ │ │ └── manifest.txt │ │ ├── lib │ │ │ └── gwt-servlet.jar │ │ └── web.xml │ │ ├── com.html5gamebook.client.Game │ │ ├── clear.cache.gif │ │ ├── com.html5gamebook.client.Game.nocache.js │ │ ├── gwt │ │ │ └── standard │ │ │ │ ├── images │ │ │ │ ├── corner.png │ │ │ │ ├── corner_ie6.png │ │ │ │ ├── hborder.png │ │ │ │ ├── hborder_ie6.png │ │ │ │ ├── ie6 │ │ │ │ │ ├── corner_dialog_topleft.png │ │ │ │ │ ├── corner_dialog_topright.png │ │ │ │ │ ├── hborder_blue_shadow.png │ │ │ │ │ ├── hborder_gray_shadow.png │ │ │ │ │ ├── vborder_blue_shadow.png │ │ │ │ │ └── vborder_gray_shadow.png │ │ │ │ ├── splitPanelThumb.png │ │ │ │ ├── vborder.png │ │ │ │ └── vborder_ie6.png │ │ │ │ ├── standard.css │ │ │ │ └── standard_rtl.css │ │ ├── hosted.html │ │ ├── images │ │ │ └── 90dpi │ │ │ │ ├── 10_club.png │ │ │ │ ├── 10_diamond.png │ │ │ │ ├── 10_heart.png │ │ │ │ ├── 10_spade.png │ │ │ │ ├── 1_club.png │ │ │ │ ├── 1_diamond.png │ │ │ │ ├── 1_heart.png │ │ │ │ ├── 1_spade.png │ │ │ │ ├── 2_club.png │ │ │ │ ├── 2_diamond.png │ │ │ │ ├── 2_heart.png │ │ │ │ ├── 2_spade.png │ │ │ │ ├── 3_club.png │ │ │ │ ├── 3_diamond.png │ │ │ │ ├── 3_heart.png │ │ │ │ ├── 3_spade.png │ │ │ │ ├── 4_club.png │ │ │ │ ├── 4_diamond.png │ │ │ │ ├── 4_heart.png │ │ │ │ ├── 4_spade.png │ │ │ │ ├── 5_club.png │ │ │ │ ├── 5_diamond.png │ │ │ │ ├── 5_heart.png │ │ │ │ ├── 5_spade.png │ │ │ │ ├── 6_club.png │ │ │ │ ├── 6_diamond.png │ │ │ │ ├── 6_heart.png │ │ │ │ ├── 6_spade.png │ │ │ │ ├── 7_club.png │ │ │ │ ├── 7_diamond.png │ │ │ │ ├── 7_heart.png │ │ │ │ ├── 7_spade.png │ │ │ │ ├── 8_club.png │ │ │ │ ├── 8_diamond.png │ │ │ │ ├── 8_heart.png │ │ │ │ ├── 8_spade.png │ │ │ │ ├── 9_club.png │ │ │ │ ├── 9_diamond.png │ │ │ │ ├── 9_heart.png │ │ │ │ ├── 9_spade.png │ │ │ │ ├── COPYING │ │ │ │ ├── back.png │ │ │ │ ├── jack_club.png │ │ │ │ ├── jack_diamond.png │ │ │ │ ├── jack_heart.png │ │ │ │ ├── jack_spade.png │ │ │ │ ├── king_club.png │ │ │ │ ├── king_diamond.png │ │ │ │ ├── king_heart.png │ │ │ │ ├── king_spade.png │ │ │ │ ├── queen_club.png │ │ │ │ ├── queen_diamond.png │ │ │ │ ├── queen_heart.png │ │ │ │ ├── queen_spade.png │ │ │ │ ├── svg-cards-90.bat │ │ │ │ ├── svg-cards-90.sh │ │ │ │ └── svg-cards.svg │ │ ├── raphael-min.js │ │ ├── raphael.js │ │ └── sounds │ │ │ ├── cardshuffle.mp3 │ │ │ ├── cardshuffle.ogg │ │ │ ├── cardshuffle.wav │ │ │ ├── fanfare.mp3 │ │ │ ├── fanfare.ogg │ │ │ ├── fanfare.wav │ │ │ ├── flipcard.mp3 │ │ │ ├── flipcard.ogg │ │ │ └── flipcard.wav │ │ ├── com.hydro4ge.raphaelgwt.RaphaelGWT │ │ ├── com.hydro4ge.raphaelgwt.RaphaelGWT.nocache.js │ │ ├── hosted.html │ │ ├── raphael-min.js │ │ └── raphael.js │ │ └── html5_media │ │ ├── clear.cache.gif │ │ ├── gwt │ │ └── standard │ │ │ ├── images │ │ │ ├── corner.png │ │ │ ├── corner_ie6.png │ │ │ ├── hborder.png │ │ │ ├── hborder_ie6.png │ │ │ ├── ie6 │ │ │ │ ├── corner_dialog_topleft.png │ │ │ │ ├── corner_dialog_topright.png │ │ │ │ ├── hborder_blue_shadow.png │ │ │ │ ├── hborder_gray_shadow.png │ │ │ │ ├── vborder_blue_shadow.png │ │ │ │ └── vborder_gray_shadow.png │ │ │ ├── splitPanelThumb.png │ │ │ ├── vborder.png │ │ │ └── vborder_ie6.png │ │ │ ├── standard.css │ │ │ └── standard_rtl.css │ │ ├── hosted.html │ │ └── html5_media.nocache.js └── gwtsamples │ ├── .classpath │ ├── .idea │ ├── .name │ ├── ant.xml │ ├── compiler.xml │ ├── copyright │ │ └── profiles_settings.xml │ ├── encodings.xml │ ├── libraries │ │ └── gwt_user.xml │ ├── misc.xml │ ├── modules.xml │ ├── uiDesigner.xml │ ├── vcs.xml │ └── workspace.xml │ ├── .project │ ├── .settings │ ├── com.google.gdt.eclipse.core.prefs │ └── com.google.gwt.eclipse.core.prefs │ ├── gwtsamples.eml │ ├── gwtsamples.iml │ ├── gwtsamples.userlibraries │ ├── lib │ └── gwt-g3d-v006.jar │ ├── out │ └── com │ │ └── informit │ │ └── chapter8 │ │ └── canvas2d │ │ ├── ShapeBuilderExample.gwt.xml │ │ ├── SurfaceExample.gwt.xml │ │ ├── client │ │ ├── ShapeBuilderExample.class │ │ └── SurfaceExample.class │ │ └── public │ │ ├── ShapeBuilderExample.css │ │ ├── ShapeBuilderExample.html │ │ ├── SurfaceExample.css │ │ └── SurfaceExample.html │ ├── src │ └── com │ │ └── informit │ │ └── chapter8 │ │ └── canvas2d │ │ ├── ShapeBuilderExample.gwt.xml │ │ ├── SurfaceExample.gwt.xml │ │ ├── client │ │ ├── ShapeBuilderExample.java │ │ └── SurfaceExample.java │ │ └── public │ │ ├── ShapeBuilderExample.css │ │ ├── ShapeBuilderExample.html │ │ ├── SurfaceExample.css │ │ └── SurfaceExample.html │ └── tomcat │ ├── conf │ └── web.xml │ ├── webapps │ └── ROOT │ │ └── WEB-INF │ │ └── web.xml │ └── work │ └── gwt │ └── localhost │ └── _ │ └── tldCache.ser ├── chapter9code ├── gameserver │ ├── GameFlow.txt │ ├── README │ ├── app.coffee │ ├── controllers │ │ ├── GameRoom.coffee │ │ └── Player.coffee │ ├── game-server-mockups.ep │ ├── logic │ │ ├── TicTacToe │ │ │ └── TicTacToe.coffee │ │ └── War │ │ │ ├── Card.js │ │ │ ├── Deck.js │ │ │ └── War.coffee │ ├── public │ │ ├── TicTacToe │ │ │ └── TicTacToe.js │ │ ├── War │ │ │ ├── images │ │ │ │ └── 90dpi │ │ │ │ │ ├── 10_club.png │ │ │ │ │ ├── 10_diamond.png │ │ │ │ │ ├── 10_heart.png │ │ │ │ │ ├── 10_spade.png │ │ │ │ │ ├── 1_club.png │ │ │ │ │ ├── 1_diamond.png │ │ │ │ │ ├── 1_heart.png │ │ │ │ │ ├── 1_spade.png │ │ │ │ │ ├── 2_club.png │ │ │ │ │ ├── 2_diamond.png │ │ │ │ │ ├── 2_heart.png │ │ │ │ │ ├── 2_spade.png │ │ │ │ │ ├── 3_club.png │ │ │ │ │ ├── 3_diamond.png │ │ │ │ │ ├── 3_heart.png │ │ │ │ │ ├── 3_spade.png │ │ │ │ │ ├── 4_club.png │ │ │ │ │ ├── 4_diamond.png │ │ │ │ │ ├── 4_heart.png │ │ │ │ │ ├── 4_spade.png │ │ │ │ │ ├── 5_club.png │ │ │ │ │ ├── 5_diamond.png │ │ │ │ │ ├── 5_heart.png │ │ │ │ │ ├── 5_spade.png │ │ │ │ │ ├── 6_club.png │ │ │ │ │ ├── 6_diamond.png │ │ │ │ │ ├── 6_heart.png │ │ │ │ │ ├── 6_spade.png │ │ │ │ │ ├── 7_club.png │ │ │ │ │ ├── 7_diamond.png │ │ │ │ │ ├── 7_heart.png │ │ │ │ │ ├── 7_spade.png │ │ │ │ │ ├── 8_club.png │ │ │ │ │ ├── 8_diamond.png │ │ │ │ │ ├── 8_heart.png │ │ │ │ │ ├── 8_spade.png │ │ │ │ │ ├── 9_club.png │ │ │ │ │ ├── 9_diamond.png │ │ │ │ │ ├── 9_heart.png │ │ │ │ │ ├── 9_spade.png │ │ │ │ │ ├── COPYING │ │ │ │ │ ├── back.png │ │ │ │ │ ├── jack_club.png │ │ │ │ │ ├── jack_diamond.png │ │ │ │ │ ├── jack_heart.png │ │ │ │ │ ├── jack_spade.png │ │ │ │ │ ├── king_club.png │ │ │ │ │ ├── king_diamond.png │ │ │ │ │ ├── king_heart.png │ │ │ │ │ ├── king_spade.png │ │ │ │ │ ├── queen_club.png │ │ │ │ │ ├── queen_diamond.png │ │ │ │ │ ├── queen_heart.png │ │ │ │ │ ├── queen_spade.png │ │ │ │ │ ├── svg-cards-90.bat │ │ │ │ │ ├── svg-cards-90.sh │ │ │ │ │ └── svg-cards.svg │ │ │ └── js │ │ │ │ ├── Card.js │ │ │ │ ├── Deck.js │ │ │ │ ├── Droid_Sans_400.font.js │ │ │ │ ├── Game.js │ │ │ │ ├── Set.js │ │ │ │ ├── War.js │ │ │ │ ├── raphael-min.js │ │ │ │ └── utils.js │ │ ├── css │ │ │ └── main.css │ │ ├── images │ │ │ └── 90dpi │ │ │ │ ├── 10_club.png │ │ │ │ ├── 10_diamond.png │ │ │ │ ├── 10_heart.png │ │ │ │ ├── 10_spade.png │ │ │ │ ├── 1_club.png │ │ │ │ ├── 1_diamond.png │ │ │ │ ├── 1_heart.png │ │ │ │ ├── 1_spade.png │ │ │ │ ├── 2_club.png │ │ │ │ ├── 2_diamond.png │ │ │ │ ├── 2_heart.png │ │ │ │ ├── 2_spade.png │ │ │ │ ├── 3_club.png │ │ │ │ ├── 3_diamond.png │ │ │ │ ├── 3_heart.png │ │ │ │ ├── 3_spade.png │ │ │ │ ├── 4_club.png │ │ │ │ ├── 4_diamond.png │ │ │ │ ├── 4_heart.png │ │ │ │ ├── 4_spade.png │ │ │ │ ├── 5_club.png │ │ │ │ ├── 5_diamond.png │ │ │ │ ├── 5_heart.png │ │ │ │ ├── 5_spade.png │ │ │ │ ├── 6_club.png │ │ │ │ ├── 6_diamond.png │ │ │ │ ├── 6_heart.png │ │ │ │ ├── 6_spade.png │ │ │ │ ├── 7_club.png │ │ │ │ ├── 7_diamond.png │ │ │ │ ├── 7_heart.png │ │ │ │ ├── 7_spade.png │ │ │ │ ├── 8_club.png │ │ │ │ ├── 8_diamond.png │ │ │ │ ├── 8_heart.png │ │ │ │ ├── 8_spade.png │ │ │ │ ├── 9_club.png │ │ │ │ ├── 9_diamond.png │ │ │ │ ├── 9_heart.png │ │ │ │ ├── 9_spade.png │ │ │ │ ├── COPYING │ │ │ │ ├── back.png │ │ │ │ ├── jack_club.png │ │ │ │ ├── jack_diamond.png │ │ │ │ ├── jack_heart.png │ │ │ │ ├── jack_spade.png │ │ │ │ ├── king_club.png │ │ │ │ ├── king_diamond.png │ │ │ │ ├── king_heart.png │ │ │ │ ├── king_spade.png │ │ │ │ ├── queen_club.png │ │ │ │ ├── queen_diamond.png │ │ │ │ ├── queen_heart.png │ │ │ │ ├── queen_spade.png │ │ │ │ ├── svg-cards-90.bat │ │ │ │ ├── svg-cards-90.sh │ │ │ │ └── svg-cards.svg │ │ └── js │ │ │ ├── coffee-script.js │ │ │ ├── socket.js │ │ │ └── zepto.min.js │ ├── socket packets.txt │ ├── utils │ │ ├── coffeekup.coffee │ │ ├── coffeekup.js │ │ ├── handleData.coffee │ │ ├── node-cache.js │ │ └── underscore-min.js │ └── views │ │ ├── index.coffee │ │ ├── layout.coffee │ │ └── register.coffee ├── helloworld │ ├── app.coffee │ ├── app.js │ ├── public │ │ └── js │ │ │ └── socket.js │ └── views │ │ ├── index.coffee │ │ └── layout.coffee ├── nowjs-demo │ ├── app.coffee │ ├── app.js │ ├── utils │ │ ├── coffeekup.coffee │ │ └── coffeekup.js │ └── views │ │ ├── index.coffee │ │ └── layout.coffee ├── simple-expressjs │ ├── README │ ├── advanced.coffee │ ├── advanced.js │ ├── simple.coffee │ └── simple.js └── simple-nodejs │ ├── samplenodeapp.coffee │ └── samplenodeapp.js ├── dartpong ├── .children ├── .project ├── Ball.dart ├── DartPong.dart ├── Direction.dart ├── Directions.dart ├── Paddle.dart └── ScoreBoard.dart ├── extras ├── Connect4 │ ├── Connect4 │ │ ├── Cell.js │ │ ├── CellContainer.js │ │ └── main.js │ ├── index.html │ ├── js │ │ ├── SGF.debug.js │ │ ├── SGF.js │ │ └── lib │ │ │ ├── FABridge.js │ │ │ ├── Sound.min.js │ │ │ ├── Sound.swf │ │ │ ├── WebSocketMain.swf │ │ │ ├── prototype.js │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ └── styles.css ├── README.md ├── binaryclock-java-amino │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── lib │ │ └── amino.jar │ └── src │ │ └── main │ │ └── java │ │ ├── BinaryClock.java │ │ └── ClockLine.java ├── binaryclock-js-amino │ ├── index.html │ └── js │ │ ├── amino-1.0b1.js │ │ └── game.js ├── breakout-level-tool │ ├── index.html │ ├── init.js │ ├── jquery-1.4.3.js │ └── js │ │ ├── init.js │ │ └── jquery-1.4.3.js ├── breakout │ ├── index.html │ └── js │ │ └── jquery-1.4.3.js ├── coffeescript-match3 │ ├── README │ ├── coffee │ │ ├── Cell.coffee │ │ ├── Game.coffee │ │ ├── GameBoard.coffee │ │ └── Set.coffee │ ├── generate-js.bat │ ├── generate-js.sh │ ├── js │ │ ├── coffeescript.js │ │ ├── trident.js │ │ └── zepto.min.js │ ├── linux-mac-generate-js.sh │ ├── match3.html │ └── match3.html~ ├── hangman │ ├── coffee │ │ └── game.coffee │ ├── index.html │ └── js │ │ └── coffeescript.js ├── poker │ ├── HTML5_Badge_128.png │ ├── HTML5_Badge_16.png │ ├── HTML5_Badge_32.png │ ├── README.md │ ├── coffee │ │ ├── Button.coffee │ │ ├── Evaluator.coffee │ │ ├── Game.coffee │ │ ├── Hand.coffee │ │ ├── Label.coffee │ │ └── PayoutPane.coffee │ ├── images │ │ └── 90dpi │ │ │ ├── 10_club.png │ │ │ ├── 10_diamond.png │ │ │ ├── 10_heart.png │ │ │ ├── 10_spade.png │ │ │ ├── 1_club.png │ │ │ ├── 1_diamond.png │ │ │ ├── 1_heart.png │ │ │ ├── 1_spade.png │ │ │ ├── 2_club.png │ │ │ ├── 2_diamond.png │ │ │ ├── 2_heart.png │ │ │ ├── 2_spade.png │ │ │ ├── 3_club.png │ │ │ ├── 3_diamond.png │ │ │ ├── 3_heart.png │ │ │ ├── 3_spade.png │ │ │ ├── 4_club.png │ │ │ ├── 4_diamond.png │ │ │ ├── 4_heart.png │ │ │ ├── 4_spade.png │ │ │ ├── 5_club.png │ │ │ ├── 5_diamond.png │ │ │ ├── 5_heart.png │ │ │ ├── 5_spade.png │ │ │ ├── 6_club.png │ │ │ ├── 6_diamond.png │ │ │ ├── 6_heart.png │ │ │ ├── 6_spade.png │ │ │ ├── 7_club.png │ │ │ ├── 7_diamond.png │ │ │ ├── 7_heart.png │ │ │ ├── 7_spade.png │ │ │ ├── 8_club.png │ │ │ ├── 8_diamond.png │ │ │ ├── 8_heart.png │ │ │ ├── 8_spade.png │ │ │ ├── 9_club.png │ │ │ ├── 9_diamond.png │ │ │ ├── 9_heart.png │ │ │ ├── 9_spade.png │ │ │ ├── COPYING │ │ │ ├── back.png │ │ │ ├── jack_club.png │ │ │ ├── jack_diamond.png │ │ │ ├── jack_heart.png │ │ │ ├── jack_spade.png │ │ │ ├── king_club.png │ │ │ ├── king_diamond.png │ │ │ ├── king_heart.png │ │ │ ├── king_spade.png │ │ │ ├── queen_club.png │ │ │ ├── queen_diamond.png │ │ │ ├── queen_heart.png │ │ │ ├── queen_spade.png │ │ │ ├── svg-cards-90.bat │ │ │ ├── svg-cards-90.sh │ │ │ └── svg-cards.svg │ ├── index.html │ ├── js │ │ ├── Card.js │ │ ├── Deck.js │ │ ├── Droid_Sans_400.font.js │ │ ├── coffee-script.js │ │ ├── jquery-1.4.3.js │ │ ├── raphael-min.js │ │ ├── underscore.js │ │ └── utils.js │ ├── manifest.json │ └── sounds │ │ └── winn_up.wav ├── war-cardgame │ ├── images │ │ └── 90dpi │ │ │ ├── 10_club.png │ │ │ ├── 10_diamond.png │ │ │ ├── 10_heart.png │ │ │ ├── 10_spade.png │ │ │ ├── 1_club.png │ │ │ ├── 1_diamond.png │ │ │ ├── 1_heart.png │ │ │ ├── 1_spade.png │ │ │ ├── 2_club.png │ │ │ ├── 2_diamond.png │ │ │ ├── 2_heart.png │ │ │ ├── 2_spade.png │ │ │ ├── 3_club.png │ │ │ ├── 3_diamond.png │ │ │ ├── 3_heart.png │ │ │ ├── 3_spade.png │ │ │ ├── 4_club.png │ │ │ ├── 4_diamond.png │ │ │ ├── 4_heart.png │ │ │ ├── 4_spade.png │ │ │ ├── 5_club.png │ │ │ ├── 5_diamond.png │ │ │ ├── 5_heart.png │ │ │ ├── 5_spade.png │ │ │ ├── 6_club.png │ │ │ ├── 6_diamond.png │ │ │ ├── 6_heart.png │ │ │ ├── 6_spade.png │ │ │ ├── 7_club.png │ │ │ ├── 7_diamond.png │ │ │ ├── 7_heart.png │ │ │ ├── 7_spade.png │ │ │ ├── 8_club.png │ │ │ ├── 8_diamond.png │ │ │ ├── 8_heart.png │ │ │ ├── 8_spade.png │ │ │ ├── 9_club.png │ │ │ ├── 9_diamond.png │ │ │ ├── 9_heart.png │ │ │ ├── 9_spade.png │ │ │ ├── COPYING │ │ │ ├── back.png │ │ │ ├── jack_club.png │ │ │ ├── jack_diamond.png │ │ │ ├── jack_heart.png │ │ │ ├── jack_spade.png │ │ │ ├── king_club.png │ │ │ ├── king_diamond.png │ │ │ ├── king_heart.png │ │ │ ├── king_spade.png │ │ │ ├── queen_club.png │ │ │ ├── queen_diamond.png │ │ │ ├── queen_heart.png │ │ │ ├── queen_spade.png │ │ │ ├── svg-cards-90.bat │ │ │ ├── svg-cards-90.sh │ │ │ └── svg-cards.svg │ ├── index.html │ ├── js │ │ ├── CachedImageView.js │ │ ├── Card.js │ │ ├── Deck.js │ │ ├── Hand.js │ │ ├── amino-1.0b1.js │ │ ├── game.js │ │ ├── trident.js │ │ └── underscore.js │ └── trident.html └── wordsearch │ ├── coffee │ ├── Button.coffee │ ├── Letter.coffee │ ├── Line.coffee │ ├── Position.coffee │ ├── PuzzleData.coffee │ ├── Set.coffee │ ├── WordSearchGame.coffee │ └── WordSearchPuzzle.coffee │ ├── images │ └── bg.png │ ├── index.html │ ├── js │ ├── Droid_Sans_400.font.js │ ├── coffee-script.js │ ├── lawnchair │ │ ├── DOMStorageAdaptor.js │ │ ├── Lawnchair.js │ │ ├── LawnchairAdaptorHelpers.js │ │ └── WebkitSQLiteAdaptor.js │ └── raphael-min.js │ └── puzzles.json ├── node_modules ├── .bin │ └── express └── express │ ├── .npmignore │ ├── History.md │ ├── LICENSE │ ├── Makefile │ ├── Readme.md │ ├── bin │ └── express │ ├── index.js │ ├── lib │ ├── express.js │ ├── http.js │ ├── https.js │ ├── request.js │ ├── response.js │ ├── router │ │ ├── collection.js │ │ ├── index.js │ │ ├── methods.js │ │ └── route.js │ ├── utils.js │ ├── view.js │ └── view │ │ ├── partial.js │ │ └── view.js │ ├── node_modules │ ├── connect │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── index.js │ │ ├── lib │ │ │ ├── connect.js │ │ │ ├── http.js │ │ │ ├── https.js │ │ │ ├── index.js │ │ │ ├── middleware │ │ │ │ ├── basicAuth.js │ │ │ │ ├── bodyParser.js │ │ │ │ ├── compiler.js │ │ │ │ ├── cookieParser.js │ │ │ │ ├── csrf.js │ │ │ │ ├── directory.js │ │ │ │ ├── errorHandler.js │ │ │ │ ├── favicon.js │ │ │ │ ├── limit.js │ │ │ │ ├── logger.js │ │ │ │ ├── methodOverride.js │ │ │ │ ├── profiler.js │ │ │ │ ├── query.js │ │ │ │ ├── responseTime.js │ │ │ │ ├── router.js │ │ │ │ ├── session.js │ │ │ │ ├── session │ │ │ │ │ ├── cookie.js │ │ │ │ │ ├── memory.js │ │ │ │ │ ├── session.js │ │ │ │ │ └── store.js │ │ │ │ ├── static.js │ │ │ │ └── vhost.js │ │ │ ├── patch.js │ │ │ ├── public │ │ │ │ ├── directory.html │ │ │ │ ├── error.html │ │ │ │ ├── favicon.ico │ │ │ │ ├── icons │ │ │ │ │ ├── page.png │ │ │ │ │ ├── page_add.png │ │ │ │ │ ├── page_attach.png │ │ │ │ │ ├── page_code.png │ │ │ │ │ ├── page_copy.png │ │ │ │ │ ├── page_delete.png │ │ │ │ │ ├── page_edit.png │ │ │ │ │ ├── page_error.png │ │ │ │ │ ├── page_excel.png │ │ │ │ │ ├── page_find.png │ │ │ │ │ ├── page_gear.png │ │ │ │ │ ├── page_go.png │ │ │ │ │ ├── page_green.png │ │ │ │ │ ├── page_key.png │ │ │ │ │ ├── page_lightning.png │ │ │ │ │ ├── page_link.png │ │ │ │ │ ├── page_paintbrush.png │ │ │ │ │ ├── page_paste.png │ │ │ │ │ ├── page_red.png │ │ │ │ │ ├── page_refresh.png │ │ │ │ │ ├── page_save.png │ │ │ │ │ ├── page_white.png │ │ │ │ │ ├── page_white_acrobat.png │ │ │ │ │ ├── page_white_actionscript.png │ │ │ │ │ ├── page_white_add.png │ │ │ │ │ ├── page_white_c.png │ │ │ │ │ ├── page_white_camera.png │ │ │ │ │ ├── page_white_cd.png │ │ │ │ │ ├── page_white_code.png │ │ │ │ │ ├── page_white_code_red.png │ │ │ │ │ ├── page_white_coldfusion.png │ │ │ │ │ ├── page_white_compressed.png │ │ │ │ │ ├── page_white_copy.png │ │ │ │ │ ├── page_white_cplusplus.png │ │ │ │ │ ├── page_white_csharp.png │ │ │ │ │ ├── page_white_cup.png │ │ │ │ │ ├── page_white_database.png │ │ │ │ │ ├── page_white_delete.png │ │ │ │ │ ├── page_white_dvd.png │ │ │ │ │ ├── page_white_edit.png │ │ │ │ │ ├── page_white_error.png │ │ │ │ │ ├── page_white_excel.png │ │ │ │ │ ├── page_white_find.png │ │ │ │ │ ├── page_white_flash.png │ │ │ │ │ ├── page_white_freehand.png │ │ │ │ │ ├── page_white_gear.png │ │ │ │ │ ├── page_white_get.png │ │ │ │ │ ├── page_white_go.png │ │ │ │ │ ├── page_white_h.png │ │ │ │ │ ├── page_white_horizontal.png │ │ │ │ │ ├── page_white_key.png │ │ │ │ │ ├── page_white_lightning.png │ │ │ │ │ ├── page_white_link.png │ │ │ │ │ ├── page_white_magnify.png │ │ │ │ │ ├── page_white_medal.png │ │ │ │ │ ├── page_white_office.png │ │ │ │ │ ├── page_white_paint.png │ │ │ │ │ ├── page_white_paintbrush.png │ │ │ │ │ ├── page_white_paste.png │ │ │ │ │ ├── page_white_php.png │ │ │ │ │ ├── page_white_picture.png │ │ │ │ │ ├── page_white_powerpoint.png │ │ │ │ │ ├── page_white_put.png │ │ │ │ │ ├── page_white_ruby.png │ │ │ │ │ ├── page_white_stack.png │ │ │ │ │ ├── page_white_star.png │ │ │ │ │ ├── page_white_swoosh.png │ │ │ │ │ ├── page_white_text.png │ │ │ │ │ ├── page_white_text_width.png │ │ │ │ │ ├── page_white_tux.png │ │ │ │ │ ├── page_white_vector.png │ │ │ │ │ ├── page_white_visualstudio.png │ │ │ │ │ ├── page_white_width.png │ │ │ │ │ ├── page_white_word.png │ │ │ │ │ ├── page_white_world.png │ │ │ │ │ ├── page_white_wrench.png │ │ │ │ │ ├── page_white_zip.png │ │ │ │ │ ├── page_word.png │ │ │ │ │ └── page_world.png │ │ │ │ └── style.css │ │ │ └── utils.js │ │ ├── meta.json │ │ ├── node_modules │ │ │ ├── mime │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── mime.js │ │ │ │ ├── mime.types │ │ │ │ ├── node.types │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ └── qs │ │ │ │ ├── .gitmodules │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── benchmark.js │ │ │ │ ├── examples.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ └── querystring.js │ │ │ │ ├── package.json │ │ │ │ ├── support │ │ │ │ ├── expresso │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── bin │ │ │ │ │ │ └── expresso │ │ │ │ │ ├── docs │ │ │ │ │ │ ├── api.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── index.md │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ ├── foot.html │ │ │ │ │ │ │ └── head.html │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── bar.js │ │ │ │ │ │ └── foo.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── assert.test.js │ │ │ │ │ │ ├── async.test.js │ │ │ │ │ │ ├── bar.test.js │ │ │ │ │ │ ├── foo.test.js │ │ │ │ │ │ ├── http.test.js │ │ │ │ │ │ └── serial │ │ │ │ │ │ ├── async.test.js │ │ │ │ │ │ └── http.test.js │ │ │ │ └── should │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── examples │ │ │ │ │ └── runner.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ ├── eql.js │ │ │ │ │ └── should.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ └── should.test.js │ │ │ │ └── test │ │ │ │ ├── parse.test.js │ │ │ │ └── stringify.test.js │ │ ├── package.json │ │ └── test.js │ ├── mime │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── mime.js │ │ ├── mime.types │ │ ├── node.types │ │ ├── package.json │ │ └── test.js │ └── qs │ │ ├── .gitmodules │ │ ├── History.md │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── benchmark.js │ │ ├── examples.js │ │ ├── index.js │ │ ├── lib │ │ └── querystring.js │ │ ├── package.json │ │ ├── support │ │ ├── expresso │ │ │ ├── .gitignore │ │ │ ├── .gitmodules │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── bin │ │ │ │ └── expresso │ │ │ ├── docs │ │ │ │ ├── api.html │ │ │ │ ├── index.html │ │ │ │ ├── index.md │ │ │ │ └── layout │ │ │ │ │ ├── foot.html │ │ │ │ │ └── head.html │ │ │ ├── lib │ │ │ │ ├── bar.js │ │ │ │ └── foo.js │ │ │ ├── package.json │ │ │ └── test │ │ │ │ ├── assert.test.js │ │ │ │ ├── async.test.js │ │ │ │ ├── bar.test.js │ │ │ │ ├── foo.test.js │ │ │ │ ├── http.test.js │ │ │ │ └── serial │ │ │ │ ├── async.test.js │ │ │ │ └── http.test.js │ │ └── should │ │ │ ├── .gitmodules │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── examples │ │ │ └── runner.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── eql.js │ │ │ └── should.js │ │ │ ├── package.json │ │ │ └── test │ │ │ └── should.test.js │ │ └── test │ │ ├── parse.test.js │ │ └── stringify.test.js │ └── package.json └── webserver ├── COPYING.txt ├── config.html ├── lib ├── jetty-6.1.19.jar ├── jetty-util-6.1.19.jar └── servlet-api-2.5-20081211.jar └── webserver.jar /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | chapter7code/gameOfLife/Cell.js~ 3 | 4 | chapter7code/gameOfLife/CellsGrid.js~ 5 | 6 | chapter7code/gameOfLife/Props.js~ 7 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | Code samples, Demos, and Extras for Learning HTML5 Game Programming 2 | 3 | http://amzn.to/HTML5-Game-Book -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/.idea/.name: -------------------------------------------------------------------------------- 1 | App -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/bin/PhoneGapApp-debug-unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/bin/PhoneGapApp-debug-unaligned.apk -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/bin/PhoneGapApp-debug.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/bin/PhoneGapApp-debug.apk -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/bin/PhoneGapApp-unsigned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/bin/PhoneGapApp-unsigned.apk -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/bin/PhoneGapApp.ap_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/bin/PhoneGapApp.ap_ -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/bin/classes.dex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/bin/classes.dex -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/libs/phonegap-0.9.3.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/libs/phonegap-0.9.3.jar -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/PhoneGapApp/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /chapter10code/PhoneGapApp/res/values/strings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | App 4 | 5 | -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/.gitignore: -------------------------------------------------------------------------------- 1 | tmp 2 | -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/CHANGELOG.txt: -------------------------------------------------------------------------------- 1 | Place your change log text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/LICENSE.txt: -------------------------------------------------------------------------------- 1 | Place your license text here. This file will be incorporated with your app at package time. -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/Resources/android/appicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/TitaniumApp/Resources/android/appicon.png -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/Resources/android/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/TitaniumApp/Resources/android/default.png -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/Resources/android/images/res-long-land-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/TitaniumApp/Resources/android/images/res-long-land-hdpi/default.png -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/Resources/android/images/res-long-land-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/TitaniumApp/Resources/android/images/res-long-land-ldpi/default.png -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/Resources/android/images/res-long-port-hdpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/TitaniumApp/Resources/android/images/res-long-port-hdpi/default.png -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/Resources/android/images/res-long-port-ldpi/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter10code/TitaniumApp/Resources/android/images/res-long-port-ldpi/default.png -------------------------------------------------------------------------------- /chapter10code/TitaniumApp/manifest: -------------------------------------------------------------------------------- 1 | #appname: TitaniumApp 2 | #publisher: jwill 3 | #url: http:// 4 | #image: appicon.png 5 | #appid: com.html5book 6 | #desc: undefined 7 | #type: mobile 8 | #guid: 23c26abc-d565-43b3-9eab-e9c269bf5682 9 | -------------------------------------------------------------------------------- /chapter11code/README: -------------------------------------------------------------------------------- 1 | Link to game on TapJS: copyme.tapjs.com 2 | Link to FB version: http://apps.facebook.com/copymegame/ 3 | -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/icons/icon_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/icons/icon_128.png -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/icons/icon_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/icons/icon_16.png -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/sounds/A2h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/sounds/A2h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/sounds/A3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/sounds/A3h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/sounds/D3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/sounds/D3h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/sounds/G3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/sounds/G3h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/ttf/Lobster.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/ttf/Lobster.ttf -------------------------------------------------------------------------------- /chapter11code/copy-me-game-chrome/ttf/ReenieBeanie.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-chrome/ttf/ReenieBeanie.ttf -------------------------------------------------------------------------------- /chapter11code/copy-me-game-tapjs/.index.html.swp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-tapjs/.index.html.swp -------------------------------------------------------------------------------- /chapter11code/copy-me-game-tapjs/sounds/A2h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-tapjs/sounds/A2h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-tapjs/sounds/A3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-tapjs/sounds/A3h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-tapjs/sounds/D3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-tapjs/sounds/D3h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-tapjs/sounds/G3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-tapjs/sounds/G3h.mp3 -------------------------------------------------------------------------------- /chapter11code/copy-me-game-tapjs/ttf/Lobster.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-tapjs/ttf/Lobster.ttf -------------------------------------------------------------------------------- /chapter11code/copy-me-game-tapjs/ttf/ReenieBeanie.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter11code/copy-me-game-tapjs/ttf/ReenieBeanie.ttf -------------------------------------------------------------------------------- /chapter1code/worker.js: -------------------------------------------------------------------------------- 1 | setInterval( function() { 2 | postMessage(new Date()); 3 | }, 2000); -------------------------------------------------------------------------------- /chapter4code/Asteroids-Tech-Demo/Asteroids/images/asteroid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/Asteroids-Tech-Demo/Asteroids/images/asteroid.png -------------------------------------------------------------------------------- /chapter4code/Asteroids-Tech-Demo/js/lib/Sound.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/Asteroids-Tech-Demo/js/lib/Sound.swf -------------------------------------------------------------------------------- /chapter4code/Asteroids-Tech-Demo/js/lib/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/Asteroids-Tech-Demo/js/lib/WebSocketMain.swf -------------------------------------------------------------------------------- /chapter4code/Pong/fonts/AnnieUseYourTelescope.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/Pong/fonts/AnnieUseYourTelescope.ttf -------------------------------------------------------------------------------- /chapter4code/Pong/js/lib/Sound.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/Pong/js/lib/Sound.swf -------------------------------------------------------------------------------- /chapter4code/Pong/js/lib/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/Pong/js/lib/WebSocketMain.swf -------------------------------------------------------------------------------- /chapter4code/PongAI/fonts/AnnieUseYourTelescope.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/PongAI/fonts/AnnieUseYourTelescope.ttf -------------------------------------------------------------------------------- /chapter4code/PongAI/js/lib/Sound.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/PongAI/js/lib/Sound.swf -------------------------------------------------------------------------------- /chapter4code/PongAI/js/lib/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/PongAI/js/lib/WebSocketMain.swf -------------------------------------------------------------------------------- /chapter4code/TicTacToe-SGF/js/lib/Sound.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/TicTacToe-SGF/js/lib/Sound.swf -------------------------------------------------------------------------------- /chapter4code/TicTacToe-SGF/js/lib/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter4code/TicTacToe-SGF/js/lib/WebSocketMain.swf -------------------------------------------------------------------------------- /chapter5code/copy-me-game/sounds/A2h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/copy-me-game/sounds/A2h.mp3 -------------------------------------------------------------------------------- /chapter5code/copy-me-game/sounds/A3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/copy-me-game/sounds/A3h.mp3 -------------------------------------------------------------------------------- /chapter5code/copy-me-game/sounds/D3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/copy-me-game/sounds/D3h.mp3 -------------------------------------------------------------------------------- /chapter5code/copy-me-game/sounds/G3h.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/copy-me-game/sounds/G3h.mp3 -------------------------------------------------------------------------------- /chapter5code/copy-me-game/ttf/Lobster.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/copy-me-game/ttf/Lobster.ttf -------------------------------------------------------------------------------- /chapter5code/copy-me-game/ttf/ReenieBeanie.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/copy-me-game/ttf/ReenieBeanie.ttf -------------------------------------------------------------------------------- /chapter5code/multi-channel-sound/sounds/16171__harri__accoustic_loop_2_120bpm.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/multi-channel-sound/sounds/16171__harri__accoustic_loop_2_120bpm.mp3 -------------------------------------------------------------------------------- /chapter5code/multi-channel-sound/sounds/4197__RealRhodesSounds__Cminor7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/multi-channel-sound/sounds/4197__RealRhodesSounds__Cminor7.wav -------------------------------------------------------------------------------- /chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-0.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-0.gif -------------------------------------------------------------------------------- /chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-1.gif -------------------------------------------------------------------------------- /chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-2.gif -------------------------------------------------------------------------------- /chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/parallax-effect-demo/images/Parallax-scroll-example-layer-3.gif -------------------------------------------------------------------------------- /chapter5code/sprite-sheet-demo/images/zombie_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter5code/sprite-sheet-demo/images/zombie_0.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/10_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/10_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/10_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/10_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/10_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/10_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/10_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/10_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/1_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/1_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/1_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/1_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/1_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/1_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/1_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/1_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/2_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/2_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/2_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/2_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/2_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/2_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/2_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/2_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/3_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/3_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/3_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/3_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/3_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/3_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/3_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/3_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/4_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/4_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/4_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/4_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/4_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/4_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/4_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/4_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/5_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/5_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/5_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/5_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/5_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/5_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/5_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/5_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/6_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/6_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/6_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/6_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/6_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/6_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/6_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/6_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/7_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/7_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/7_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/7_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/7_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/7_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/7_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/7_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/8_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/8_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/8_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/8_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/8_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/8_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/8_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/8_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/9_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/9_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/9_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/9_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/9_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/9_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/9_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/9_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/back.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/jack_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/jack_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/jack_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/jack_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/jack_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/jack_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/jack_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/jack_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/king_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/king_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/king_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/king_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/king_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/king_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/king_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/king_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/queen_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/queen_club.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/queen_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/queen_diamond.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/queen_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/queen_heart.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/images/90dpi/queen_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/images/90dpi/queen_spade.png -------------------------------------------------------------------------------- /chapter6code/memorycardgame/js/Droid_Sans_400.font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter6code/memorycardgame/js/Droid_Sans_400.font.js -------------------------------------------------------------------------------- /chapter7code/texturing/200407-bluemarble.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter7code/texturing/200407-bluemarble.jpg -------------------------------------------------------------------------------- /chapter7code/texturing/README: -------------------------------------------------------------------------------- 1 | README 2 | 3 | July "Blue Marble" Earth image was retrieved from http://earthobservatory.nasa.gov/Features/BlueMarble/ 4 | on 29May2011, NASA's Earth Observatory. 5 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/.idea/.name: -------------------------------------------------------------------------------- 1 | GWTMemoryCards -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/.idea/gradle.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/.settings/com.google.gwt.eclipse.core.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 17 05:03:58 PDT 2011 2 | eclipse.preferences.version=1 3 | entryPointModules= 4 | filesCopiedToWebInfLib=gwt-servlet.jar 5 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/client/Canvas$Card.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/client/Canvas$Card.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/client/Canvas$Deck.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/client/Canvas$Deck.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/client/Canvas$RImage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/client/Canvas$RImage.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/client/Canvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/client/Canvas.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/client/CardSet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/client/CardSet.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/client/Game.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/client/Game.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/google/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 46 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/google/code/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 51 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google/code 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/google/code/gwt/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 55 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google/code/gwt 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/google/code/gwt/html5/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 61 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google/code/gwt/html5 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/google/code/gwt/html5/media/client/Audio.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/google/code/gwt/html5/media/client/Audio.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/google/code/gwt/html5/media/client/Media.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/google/code/gwt/html5/media/client/Media.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/google/code/gwt/html5/media/client/Video.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/google/code/gwt/html5/media/client/Video.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas$Card.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas$Card.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas$Deck.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas$Deck.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas$RImage.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas$RImage.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Canvas.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/CardSet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/CardSet.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Game.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/Game.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/public/sounds/fanfare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/public/sounds/fanfare.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/public/sounds/fanfare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/public/sounds/fanfare.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/public/sounds/fanfare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/html5gamebook/client/public/sounds/fanfare.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/BBox.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/BBox.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/PathBuilder.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/PathBuilder.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Point.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Point.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Image.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Image.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Path.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Path.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Rect.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Rect.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Set.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Set.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Shape.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Shape.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Text.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael$Text.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/Raphael.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/RaphaelJS$Set.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/RaphaelJS$Set.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/RaphaelJS.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/com/hydro4ge/raphaelgwt/client/RaphaelJS.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/10_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/1_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/2_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/3_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/4_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/5_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/6_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/7_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/8_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/9_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/back.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/jack_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/king_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/images/90dpi/queen_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/cardshuffle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/cardshuffle.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/cardshuffle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/cardshuffle.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/cardshuffle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/cardshuffle.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/fanfare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/fanfare.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/fanfare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/fanfare.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/fanfare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/fanfare.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/flipcard.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/flipcard.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/flipcard.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/flipcard.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/bin/public/sounds/flipcard.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/bin/public/sounds/flipcard.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Canvas$Card.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Canvas$Card.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Canvas$Deck.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Canvas$Deck.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Canvas.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Canvas.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/CardSet.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/CardSet.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Game.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/out/production/GWTMemoryCards/client/Game.class -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/com/google/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 46 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/com/google/code/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 51 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google/code 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/com/google/code/gwt/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 55 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google/code/gwt 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/com/google/code/gwt/html5/.svn/all-wcprops: -------------------------------------------------------------------------------- 1 | K 25 2 | svn:wc:ra_dav:version-url 3 | V 61 4 | /svn/!svn/ver/3/trunk/src/main/java/com/google/code/gwt/html5 5 | END 6 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/com/html5gamebook/client/public/sounds/fanfare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/com/html5gamebook/client/public/sounds/fanfare.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/com/html5gamebook/client/public/sounds/fanfare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/com/html5gamebook/client/public/sounds/fanfare.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/com/html5gamebook/client/public/sounds/fanfare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/com/html5gamebook/client/public/sounds/fanfare.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/10_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/10_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/10_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/10_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/10_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/10_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/10_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/10_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/1_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/1_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/1_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/1_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/1_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/1_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/1_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/1_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/2_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/2_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/2_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/2_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/2_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/2_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/2_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/2_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/3_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/3_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/3_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/3_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/3_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/3_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/3_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/3_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/4_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/4_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/4_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/4_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/4_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/4_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/4_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/4_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/5_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/5_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/5_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/5_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/5_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/5_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/5_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/5_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/6_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/6_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/6_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/6_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/6_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/6_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/6_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/6_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/7_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/7_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/7_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/7_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/7_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/7_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/7_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/7_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/8_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/8_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/8_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/8_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/8_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/8_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/8_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/8_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/9_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/9_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/9_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/9_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/9_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/9_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/9_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/9_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/back.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/jack_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/king_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/king_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/king_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/king_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/king_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/king_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/king_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/king_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_club.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_diamond.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_heart.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/images/90dpi/queen_spade.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/cardshuffle.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/cardshuffle.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/cardshuffle.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/cardshuffle.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/cardshuffle.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/cardshuffle.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/fanfare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/fanfare.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/fanfare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/fanfare.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/fanfare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/fanfare.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/flipcard.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/flipcard.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/flipcard.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/flipcard.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/src/public/sounds/flipcard.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/src/public/sounds/flipcard.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/Game.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | color: black; 4 | font-family: Arial, sans-serif; 5 | font-size: small; 6 | margin: 8px; 7 | } 8 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/WEB-INF/deploy/com.html5gamebook.client.Game/rpcPolicyManifest/manifest.txt: -------------------------------------------------------------------------------- 1 | # Module com.html5gamebook.client.Game 2 | # RPC service class, partial path of RPC policy file 3 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/WEB-INF/deploy/html5_media/rpcPolicyManifest/manifest.txt: -------------------------------------------------------------------------------- 1 | # Module html5_media 2 | # RPC service class, partial path of RPC policy file 3 | -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/WEB-INF/lib/gwt-servlet.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/WEB-INF/lib/gwt-servlet.jar -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/clear.cache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/clear.cache.gif -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/fanfare.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/fanfare.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/fanfare.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/fanfare.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/fanfare.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/fanfare.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/flipcard.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/flipcard.mp3 -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/flipcard.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/flipcard.ogg -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/flipcard.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/com.html5gamebook.client.Game/sounds/flipcard.wav -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/html5_media/clear.cache.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/html5_media/clear.cache.gif -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/corner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/corner.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/corner_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/corner_ie6.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/hborder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/hborder.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/hborder_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/hborder_ie6.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/vborder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/vborder.png -------------------------------------------------------------------------------- /chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/vborder_ie6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/GWTMemoryCards/war/html5_media/gwt/standard/images/vborder_ie6.png -------------------------------------------------------------------------------- /chapter8code/gwtsamples/.idea/.name: -------------------------------------------------------------------------------- 1 | gwtsamples -------------------------------------------------------------------------------- /chapter8code/gwtsamples/.idea/ant.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/.settings/com.google.gdt.eclipse.core.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 17 05:29:36 PDT 2011 2 | eclipse.preferences.version=1 3 | launchConfigExternalUrlPrefix= 4 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/.settings/com.google.gwt.eclipse.core.prefs: -------------------------------------------------------------------------------- 1 | #Fri Jun 17 05:29:16 PDT 2011 2 | eclipse.preferences.version=1 3 | entryPointModules= 4 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/lib/gwt-g3d-v006.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/gwtsamples/lib/gwt-g3d-v006.jar -------------------------------------------------------------------------------- /chapter8code/gwtsamples/out/com/informit/chapter8/canvas2d/public/ShapeBuilderExample.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | color: black; 4 | font-family: Arial, sans-serif; 5 | font-size: small; 6 | margin: 8px; 7 | } 8 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/out/com/informit/chapter8/canvas2d/public/SurfaceExample.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | color: black; 4 | font-family: Arial, sans-serif; 5 | font-size: small; 6 | margin: 8px; 7 | } 8 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/src/com/informit/chapter8/canvas2d/public/ShapeBuilderExample.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | color: black; 4 | font-family: Arial, sans-serif; 5 | font-size: small; 6 | margin: 8px; 7 | } 8 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/src/com/informit/chapter8/canvas2d/public/SurfaceExample.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: white; 3 | color: black; 4 | font-family: Arial, sans-serif; 5 | font-size: small; 6 | margin: 8px; 7 | } 8 | -------------------------------------------------------------------------------- /chapter8code/gwtsamples/tomcat/work/gwt/localhost/_/tldCache.ser: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter8code/gwtsamples/tomcat/work/gwt/localhost/_/tldCache.ser -------------------------------------------------------------------------------- /chapter9code/gameserver/README: -------------------------------------------------------------------------------- 1 | Installed Modules: 2 | 3 | mongoose 4 | node-uuid 5 | express 6 | underscore 7 | connect-mongodb 8 | async 9 | twitter-js (oauth) 10 | -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/10_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/10_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/10_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/10_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/10_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/10_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/10_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/10_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/1_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/1_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/1_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/1_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/1_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/1_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/1_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/1_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/2_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/2_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/2_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/2_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/2_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/2_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/2_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/2_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/3_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/3_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/3_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/3_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/3_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/3_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/3_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/3_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/4_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/4_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/4_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/4_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/4_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/4_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/4_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/4_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/5_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/5_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/5_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/5_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/5_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/5_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/5_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/5_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/6_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/6_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/6_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/6_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/6_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/6_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/6_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/6_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/7_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/7_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/7_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/7_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/7_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/7_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/7_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/7_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/8_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/8_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/8_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/8_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/8_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/8_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/8_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/8_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/9_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/9_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/9_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/9_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/9_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/9_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/9_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/9_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/back.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/jack_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/jack_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/jack_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/jack_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/jack_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/jack_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/jack_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/jack_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/king_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/king_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/king_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/king_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/king_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/king_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/king_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/king_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/queen_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/queen_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/queen_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/queen_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/queen_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/queen_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/images/90dpi/queen_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/images/90dpi/queen_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/War/js/Droid_Sans_400.font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/War/js/Droid_Sans_400.font.js -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/10_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/10_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/10_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/10_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/10_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/10_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/10_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/10_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/1_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/1_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/1_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/1_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/1_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/1_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/1_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/1_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/2_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/2_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/2_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/2_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/2_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/2_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/2_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/2_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/3_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/3_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/3_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/3_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/3_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/3_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/3_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/3_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/4_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/4_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/4_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/4_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/4_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/4_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/4_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/4_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/5_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/5_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/5_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/5_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/5_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/5_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/5_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/5_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/6_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/6_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/6_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/6_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/6_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/6_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/6_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/6_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/7_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/7_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/7_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/7_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/7_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/7_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/7_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/7_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/8_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/8_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/8_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/8_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/8_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/8_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/8_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/8_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/9_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/9_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/9_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/9_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/9_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/9_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/9_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/9_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/back.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/jack_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/jack_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/jack_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/jack_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/jack_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/jack_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/jack_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/jack_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/king_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/king_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/king_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/king_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/king_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/king_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/king_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/king_spade.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/queen_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/queen_club.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/queen_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/queen_diamond.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/queen_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/queen_heart.png -------------------------------------------------------------------------------- /chapter9code/gameserver/public/images/90dpi/queen_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/chapter9code/gameserver/public/images/90dpi/queen_spade.png -------------------------------------------------------------------------------- /chapter9code/helloworld/views/index.coffee: -------------------------------------------------------------------------------- 1 | div -> 2 | "Hi there guy" -------------------------------------------------------------------------------- /chapter9code/nowjs-demo/views/layout.coffee: -------------------------------------------------------------------------------- 1 | doctype 5 2 | html -> 3 | head -> 4 | title "#{@title || 'NowJS Demo'}" 5 | script src: '/nowjs/now.js' 6 | 7 | body -> 8 | @body 9 | -------------------------------------------------------------------------------- /chapter9code/simple-expressjs/README: -------------------------------------------------------------------------------- 1 | Start the server by running 2 | 3 | coffee simple.coffee 4 | 5 | or 6 | 7 | coffee advanced.coffee -------------------------------------------------------------------------------- /dartpong/.children: -------------------------------------------------------------------------------- 1 | ScoreBoard.dart 2 | Ball.dart 3 | Paddle.dart 4 | DartPong.dart 5 | Direction.dart 6 | -------------------------------------------------------------------------------- /dartpong/Direction.dart: -------------------------------------------------------------------------------- 1 | #library("direction"); 2 | class Direction { 3 | var code; 4 | num x; 5 | num y; 6 | 7 | Direction(this.code, this.x, this.y); 8 | } -------------------------------------------------------------------------------- /extras/Connect4/js/lib/Sound.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/Connect4/js/lib/Sound.swf -------------------------------------------------------------------------------- /extras/Connect4/js/lib/WebSocketMain.swf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/Connect4/js/lib/WebSocketMain.swf -------------------------------------------------------------------------------- /extras/README.md: -------------------------------------------------------------------------------- 1 | Status: 2 | 3 | Binary Clock: Complete 4 | 5 | Poker: Complete 6 | 7 | Word Search: Complete 8 | 9 | Breakout: 0% 10 | 11 | Connect4: 0% 12 | 13 | Hangman: 40% 14 | -------------------------------------------------------------------------------- /extras/binaryclock-java-amino/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/binaryclock-java-amino/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /extras/binaryclock-java-amino/lib/amino.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/binaryclock-java-amino/lib/amino.jar -------------------------------------------------------------------------------- /extras/coffeescript-match3/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/coffeescript-match3/README -------------------------------------------------------------------------------- /extras/coffeescript-match3/generate-js.bat: -------------------------------------------------------------------------------- 1 | coffee -c coffee/*.coffee -o gen-js/ -------------------------------------------------------------------------------- /extras/coffeescript-match3/generate-js.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf gen-js/*.js 4 | coffee -c coffee/*.coffee -o gen-js/ 5 | -------------------------------------------------------------------------------- /extras/coffeescript-match3/linux-mac-generate-js.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | rm -rf gen-js/*.js 4 | coffee -o gen-js/ -c coffee/*.coffee 5 | -------------------------------------------------------------------------------- /extras/poker/HTML5_Badge_128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/HTML5_Badge_128.png -------------------------------------------------------------------------------- /extras/poker/HTML5_Badge_16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/HTML5_Badge_16.png -------------------------------------------------------------------------------- /extras/poker/HTML5_Badge_32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/HTML5_Badge_32.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/10_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/10_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/10_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/10_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/10_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/10_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/10_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/10_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/1_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/1_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/1_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/1_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/1_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/1_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/1_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/1_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/2_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/2_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/2_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/2_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/2_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/2_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/2_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/2_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/3_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/3_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/3_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/3_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/3_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/3_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/3_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/3_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/4_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/4_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/4_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/4_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/4_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/4_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/4_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/4_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/5_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/5_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/5_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/5_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/5_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/5_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/5_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/5_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/6_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/6_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/6_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/6_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/6_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/6_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/6_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/6_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/7_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/7_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/7_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/7_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/7_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/7_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/7_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/7_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/8_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/8_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/8_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/8_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/8_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/8_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/8_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/8_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/9_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/9_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/9_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/9_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/9_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/9_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/9_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/9_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/back.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/jack_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/jack_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/jack_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/jack_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/jack_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/jack_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/jack_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/jack_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/king_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/king_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/king_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/king_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/king_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/king_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/king_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/king_spade.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/queen_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/queen_club.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/queen_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/queen_diamond.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/queen_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/queen_heart.png -------------------------------------------------------------------------------- /extras/poker/images/90dpi/queen_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/images/90dpi/queen_spade.png -------------------------------------------------------------------------------- /extras/poker/js/Droid_Sans_400.font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/js/Droid_Sans_400.font.js -------------------------------------------------------------------------------- /extras/poker/sounds/winn_up.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/poker/sounds/winn_up.wav -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/10_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/10_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/10_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/10_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/10_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/10_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/10_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/10_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/1_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/1_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/1_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/1_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/1_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/1_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/1_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/1_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/2_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/2_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/2_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/2_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/2_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/2_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/2_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/2_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/3_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/3_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/3_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/3_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/3_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/3_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/3_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/3_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/4_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/4_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/4_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/4_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/4_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/4_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/4_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/4_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/5_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/5_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/5_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/5_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/5_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/5_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/5_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/5_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/6_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/6_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/6_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/6_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/6_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/6_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/6_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/6_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/7_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/7_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/7_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/7_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/7_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/7_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/7_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/7_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/8_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/8_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/8_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/8_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/8_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/8_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/8_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/8_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/9_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/9_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/9_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/9_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/9_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/9_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/9_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/9_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/back.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/jack_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/jack_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/jack_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/jack_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/jack_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/jack_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/jack_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/jack_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/king_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/king_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/king_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/king_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/king_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/king_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/king_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/king_spade.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/queen_club.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/queen_club.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/queen_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/queen_diamond.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/queen_heart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/queen_heart.png -------------------------------------------------------------------------------- /extras/war-cardgame/images/90dpi/queen_spade.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/war-cardgame/images/90dpi/queen_spade.png -------------------------------------------------------------------------------- /extras/wordsearch/images/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/wordsearch/images/bg.png -------------------------------------------------------------------------------- /extras/wordsearch/js/Droid_Sans_400.font.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/extras/wordsearch/js/Droid_Sans_400.font.js -------------------------------------------------------------------------------- /node_modules/.bin/express: -------------------------------------------------------------------------------- 1 | ../express/bin/express -------------------------------------------------------------------------------- /node_modules/express/.npmignore: -------------------------------------------------------------------------------- 1 | .git* 2 | docs/ 3 | examples/ 4 | support/ 5 | test/ 6 | testing.js 7 | .DS_Store 8 | -------------------------------------------------------------------------------- /node_modules/express/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/express'); -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/.npmignore: -------------------------------------------------------------------------------- 1 | *.markdown 2 | *.md 3 | .git* 4 | Makefile 5 | benchmarks/ 6 | docs/ 7 | examples/ 8 | install.sh 9 | support/ 10 | test/ 11 | .DS_Store 12 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/connect'); -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/favicon.ico -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_add.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_attach.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_attach.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_code.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_copy.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_delete.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_edit.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_error.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_excel.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_find.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_gear.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_go.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_green.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_key.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_lightning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_lightning.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_link.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_paintbrush.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_paintbrush.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_paste.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_red.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_refresh.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_save.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_save.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_acrobat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_acrobat.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_add.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_add.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_c.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_camera.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_cd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_cd.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_code.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_code_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_code_red.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_copy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_copy.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_csharp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_csharp.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_cup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_cup.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_delete.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_dvd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_dvd.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_edit.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_error.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_excel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_excel.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_find.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_flash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_flash.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_gear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_gear.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_get.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_get.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_go.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_h.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_h.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_key.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_link.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_link.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_medal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_medal.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_office.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_office.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_paint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_paint.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_paste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_paste.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_php.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_php.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_put.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_put.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_ruby.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_ruby.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_stack.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_star.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_swoosh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_swoosh.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_text.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_tux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_tux.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_vector.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_width.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_width.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_word.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_world.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_wrench.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_wrench.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_white_zip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_white_zip.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_word.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_word.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/lib/public/icons/page_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/node_modules/express/node_modules/connect/lib/public/icons/page_world.png -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/mime/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./mime'); 2 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./support/expresso/bin/expresso \ 4 | -I support \ 5 | -I lib 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/querystring'); -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/support/expresso/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lib-cov 3 | *.seed -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/support/expresso/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "deps/jscoverage"] 2 | path = deps/jscoverage 3 | url = git://github.com/visionmedia/node-jscoverage.git 4 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/support/expresso/docs/layout/foot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/support/expresso/lib/bar.js: -------------------------------------------------------------------------------- 1 | 2 | exports.bar = function(msg){ 3 | return msg || 'bar'; 4 | }; -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/support/should/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/support/should/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./support/expresso/bin/expresso \ 4 | -I lib 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /node_modules/express/node_modules/connect/node_modules/qs/support/should/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/should'); -------------------------------------------------------------------------------- /node_modules/express/node_modules/mime/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./mime'); 2 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./support/expresso/bin/expresso \ 4 | -I support \ 5 | -I lib 6 | 7 | .PHONY: test -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/querystring'); -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/support/expresso/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | lib-cov 3 | *.seed -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/support/expresso/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "deps/jscoverage"] 2 | path = deps/jscoverage 3 | url = git://github.com/visionmedia/node-jscoverage.git 4 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/support/expresso/docs/layout/foot.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/support/expresso/lib/bar.js: -------------------------------------------------------------------------------- 1 | 2 | exports.bar = function(msg){ 3 | return msg || 'bar'; 4 | }; -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/support/should/.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "support/expresso"] 2 | path = support/expresso 3 | url = git://github.com/visionmedia/expresso.git 4 | -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/support/should/Makefile: -------------------------------------------------------------------------------- 1 | 2 | test: 3 | @./support/expresso/bin/expresso \ 4 | -I lib 5 | 6 | .PHONY: test -------------------------------------------------------------------------------- /node_modules/express/node_modules/qs/support/should/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/should'); -------------------------------------------------------------------------------- /webserver/lib/jetty-6.1.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/webserver/lib/jetty-6.1.19.jar -------------------------------------------------------------------------------- /webserver/lib/jetty-util-6.1.19.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/webserver/lib/jetty-util-6.1.19.jar -------------------------------------------------------------------------------- /webserver/lib/servlet-api-2.5-20081211.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/webserver/lib/servlet-api-2.5-20081211.jar -------------------------------------------------------------------------------- /webserver/webserver.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwill/html5-game-book/198f0bf3f7e07c427cc97715ee80a8ddcb7d0124/webserver/webserver.jar --------------------------------------------------------------------------------