├── 9781430239789.jpg ├── Ch02_complexity_simplicity ├── 0.ogg ├── 0.wav ├── 1.ogg ├── 1.wav ├── 2.ogg ├── 2.wav ├── 3.ogg ├── 3.wav ├── 4.ogg ├── 4.wav ├── 5.ogg ├── 5.wav ├── ball.png ├── beginScore.php ├── flip.png ├── help.png ├── highscorelist.php ├── index.html ├── init.js ├── insertNewScore.php ├── instructions1.html ├── instructions2.html ├── instructions3.html ├── instructions4.html ├── instructions5.html ├── instructions6.html ├── jquery-1.4.2.min.js ├── processing-0.9.7.min.js ├── slide1.png ├── slide2.png ├── slide3.png ├── slide4.png ├── slide5.png ├── slide6.png ├── slow.png ├── song.mp3 ├── song.ogg ├── speed.png ├── style.css ├── title.html ├── title.png ├── tramp.png ├── wall.png ├── win0.ogg ├── win0.wav ├── win1.ogg ├── win1.wav ├── win10.ogg ├── win10.wav ├── win11.ogg ├── win11.wav ├── win12.ogg ├── win12.wav ├── win13.ogg ├── win13.wav ├── win2.ogg ├── win2.wav ├── win3.ogg ├── win3.wav ├── win4.ogg ├── win4.wav ├── win5.ogg ├── win5.wav ├── win6.ogg ├── win6.wav ├── win7.ogg ├── win7.wav ├── win8.ogg ├── win8.wav ├── win9.ogg └── win9.wav ├── Ch03_multiplatform ├── .gitignore ├── .gitmodules ├── Makefile ├── README.md ├── WebAppBuilder │ ├── Makefile.example │ ├── README │ ├── build │ │ ├── compile_scripts.sh │ │ ├── compile_styles.sh │ │ ├── compile_views.sh │ │ ├── copy_resources.sh │ │ ├── lib │ │ │ ├── jslint.js │ │ │ ├── mu.js │ │ │ ├── mu │ │ │ │ ├── compiler.js │ │ │ │ ├── parser.js │ │ │ │ └── preprocessor.js │ │ │ ├── parse-js.js │ │ │ ├── process.js │ │ │ └── squeeze-more.js │ │ ├── post-compile.js │ │ ├── templater.js │ │ ├── uglify.js │ │ └── welcome.sh │ └── sample │ │ └── coming_soon ├── android │ ├── Makefile │ └── assets │ │ ├── Chewy.ttf │ │ ├── background.jpg │ │ ├── game.css │ │ ├── game.min.js │ │ ├── icon.png │ │ ├── images │ │ ├── black_bishop.png │ │ ├── black_king.png │ │ ├── black_knight.png │ │ ├── black_pawn.png │ │ ├── black_queen.png │ │ ├── black_rook.png │ │ ├── white_bishop.png │ │ ├── white_king.png │ │ ├── white_knight.png │ │ ├── white_pawn.png │ │ ├── white_queen.png │ │ └── white_rook.png │ │ ├── index.html │ │ └── lib.min.js ├── artwork │ ├── ChessSet.xcf │ └── icon.svg ├── desktop │ ├── Makefile │ └── www │ │ ├── Chewy.ttf │ │ ├── background.jpg │ │ ├── game.css │ │ ├── game.html │ │ ├── game.min.js │ │ ├── icon.png │ │ ├── images │ │ ├── black_bishop.png │ │ ├── black_king.png │ │ ├── black_knight.png │ │ ├── black_pawn.png │ │ ├── black_queen.png │ │ ├── black_rook.png │ │ ├── white_bishop.png │ │ ├── white_king.png │ │ ├── white_knight.png │ │ ├── white_pawn.png │ │ ├── white_queen.png │ │ └── white_rook.png │ │ ├── index.html │ │ └── lib.min.js └── src │ ├── Chewy.ttf │ ├── background.jpg │ ├── common.sass │ ├── config.xml │ ├── desktop.html │ ├── desktop.sass │ ├── game.html │ ├── game.js │ ├── icon.png │ ├── images │ ├── black_bishop.png │ ├── black_king.png │ ├── black_knight.png │ ├── black_pawn.png │ ├── black_queen.png │ ├── black_rook.png │ ├── white_bishop.png │ ├── white_king.png │ ├── white_knight.png │ ├── white_pawn.png │ ├── white_queen.png │ └── white_rook.png │ ├── jquery.min.js │ ├── mobile.sass │ ├── underscore-min.js │ └── zepto.min.js ├── Ch04_creating_levels ├── index.html ├── javascripts │ ├── application.js │ ├── bricks │ │ ├── circle.js │ │ ├── curve.js │ │ ├── square.js │ │ └── triangle.js │ ├── grid.js │ ├── jquery.js │ └── store.js └── stylesheets │ └── style.css ├── Ch05_3DCSS ├── BurstGame │ ├── Burst.html │ ├── README │ ├── img │ │ ├── orangeParticle.png │ │ ├── orangefish01.png │ │ ├── orangefish02.png │ │ ├── orangefish03.png │ │ ├── orangefish04.png │ │ ├── parallaxBack.jpg │ │ └── parallaxFront.png │ ├── js │ │ ├── Fish.js │ │ └── Particles.js │ ├── licence.txt │ └── sounds │ │ └── burstsml2.aif ├── README └── three │ ├── Part1_particles │ ├── Three.js │ └── ThreeParticles.html │ ├── README │ └── licence.txt ├── Ch06_particle_systems ├── LICENSE ├── README ├── fire │ ├── fire.0.html │ ├── fire.0.js │ ├── fire.1.html │ ├── fire.1.js │ ├── fire.2.html │ ├── fire.2.js │ ├── fire.png │ ├── flame.png │ ├── flame.xcf │ ├── flame0.png │ ├── flame1.png │ ├── flame2.png │ ├── flame3.png │ ├── flames.png │ └── smallspark.png ├── fireworks │ ├── fireworks.0.html │ ├── fireworks.0.js │ ├── fireworks.1.html │ ├── fireworks.1.js │ ├── fireworks.2.html │ ├── fireworks.2.js │ ├── fireworks.3.html │ ├── fireworks.3.js │ ├── fireworks.4.html │ ├── fireworks.4.js │ ├── fireworks.html │ ├── fireworks.js │ ├── fireworks.png │ └── spark.png ├── input.js ├── jquery-1.6.4.js ├── optimizations │ ├── fastfireworks.html │ ├── fastfireworks.js │ └── fastfireworks.png ├── particles.js └── smoke │ ├── smoke.0.html │ ├── smoke.0.js │ ├── smoke.0.png │ ├── smoke.0.xcf │ ├── smoke.1.png │ ├── smoke.2.png │ ├── smoke.3.png │ ├── smoke.4.png │ ├── smoke.png │ ├── smoke2.png │ └── smokes.png ├── Ch07_Beginning_WebGL ├── darts │ ├── dartboard.gif │ ├── dartboard.png │ ├── darts.html │ ├── jquery-1.6.js │ ├── shader.fs │ ├── shader.vs │ ├── tex_shader.fs │ └── tex_shader.vs ├── demo_1-2.html ├── demo_1.html ├── gl-matrix-min.js ├── listing-7-1.html ├── listing-7-10.txt ├── listing-7-11.txt ├── listing-7-13.txt ├── listing-7-14.txt ├── listing-7-15.txt ├── listing-7-16.txt ├── listing-7-17.txt ├── listing-7-18.txt ├── listing-7-19.txt ├── listing-7-2.txt ├── listing-7-20.txt ├── listing-7-21.txt ├── listing-7-22.txt ├── listing-7-23.txt ├── listing-7-24.txt ├── listing-7-25.txt ├── listing-7-26.txt ├── listing-7-27.txt ├── listing-7-28.txt ├── listing-7-29.txt ├── listing-7-3.txt ├── listing-7-30.txt ├── listing-7-31.txt ├── listing-7-32.txt ├── listing-7-4.txt ├── listing-7-5.txt ├── listing-7-6.txt ├── listing-7-7.txt ├── listing-7-8.txt ├── listing-7-9.txt ├── octahedron │ ├── octahedron.html │ ├── octahedron_color_bleeding.html │ ├── shader.fs │ └── shader.vs ├── shader.fs └── shader.vs ├── Ch08_Cycleblob ├── .htaccess ├── README.txt ├── about.php ├── aiControl.js ├── browserDetect.js ├── build │ ├── README.txt │ ├── build_release.sh │ ├── compress_models.sh │ ├── exp_replace.sed │ └── test_num.sh ├── build_number.js ├── colorwheel │ ├── colorwheel.js │ ├── raphael-1.3.1-min.js │ └── raphael-1.5.2-min.js ├── contact.php ├── debug.js ├── favicon.ico ├── gameControl.js ├── geomProcess.js ├── glMatrix-0.9.4.min.js ├── glUtils.js ├── img │ ├── .htaccess │ ├── chromelogo128.png │ ├── download_chrome.png │ ├── firefox_icon128.png │ ├── icon_Desktop.png │ ├── icon_Desktop_Alt.png │ ├── icon_Forward.png │ ├── icon_Play.png │ ├── icon_Playb.png │ ├── icon_Refresh.png │ ├── inkscape_pasted_image_20110301_221751.png │ ├── inkscape_pasted_image_20110301_221904.png │ ├── instructions.svg │ ├── instructions2.svg │ ├── instructions2_t1.svgz │ ├── instructions2_t2.svgz │ ├── instructions2_t3.svgz │ ├── instructions2_t4.svgz │ ├── instructions3.svg │ ├── instructions3.svgz │ ├── instructions3_p.svg │ ├── instructions_header.png │ ├── m_cube.png │ ├── m_dbl_sofa.png │ ├── m_diamond.png │ ├── m_inside_cube.png │ ├── m_mobius.png │ ├── m_plus.png │ ├── m_sofa.png │ ├── m_softsofa.png │ ├── m_tetra.png │ ├── m_torus.png │ ├── m_triCorner.png │ ├── models_icons.psd │ ├── rep_image.png │ ├── speaker_off.svg │ ├── speaker_on.svg │ ├── test.html │ ├── title_text.svg │ ├── title_text2.svg │ ├── title_text3.svg │ ├── title_text4.svg │ ├── title_text5.svg │ ├── title_text6.svg │ ├── title_text7.svg │ └── title_text8.svg ├── jquery-1.4.2.min.js ├── jquery-1.4.4.min.js ├── jquery.cookie.js ├── jscolor │ ├── arrow.gif │ ├── cross.gif │ ├── demo.html │ ├── hs.png │ ├── hv.png │ └── jscolor.js ├── loadManager.js ├── main.js ├── models │ ├── .htaccess │ ├── bikePlayer2.json │ ├── cube0.json │ ├── cube1.json │ ├── cube2.json │ ├── cube3.json │ ├── cube5quads.json │ ├── dbl_sofa_soft_4q.json │ ├── distortDiamond5q.json │ ├── lifeWheel.json │ ├── mobius_10r_3q.json │ ├── other │ │ ├── Teapot.json │ │ ├── bikePlayer1.json │ │ ├── cube4lines.json │ │ ├── cube4tri.json │ │ ├── cube5.obj │ │ ├── cube5lines.json │ │ ├── cube5tri.json │ │ ├── dbl_sofa_soft_4q.kw │ │ ├── distortDiamond.kw │ │ ├── mobius.obj │ │ ├── mobius_10_3q.json │ │ ├── mobius_10_4q.json │ │ ├── mobius_quad.kw │ │ ├── oneQuad.json │ │ ├── player1.json │ │ ├── plus.kw │ │ ├── rot_dounut.json │ │ ├── rot_dounut.obj │ │ ├── rot_dounut2.json │ │ ├── sandClock.kw │ │ ├── sandClock4.json │ │ ├── sandClock5.json │ │ ├── sandClock5.obj │ │ ├── simple_cube.json │ │ ├── sofa.kw │ │ ├── sofa_sub.kw │ │ ├── squashSofa5q.json │ │ ├── squrePita5q.json │ │ ├── subTetra.kw │ │ ├── tetra1_5q.json │ │ ├── torus_100_50.json │ │ └── triCorner.kw │ ├── plus4q.json │ ├── rot_dounut2.json │ ├── sofa4q.json │ ├── sofa4q_soft.json │ ├── tetra1_4q.json │ ├── torus_100_50s.json │ ├── triCorner4.json │ └── triCornerOut4.json ├── modelsz │ ├── .htaccess │ ├── cube5quads.jsonz │ ├── dbl_sofa_soft_4q.jsonz │ ├── distortDiamond5q.jsonz │ ├── mobius_10r_3q.jsonz │ ├── plus4q.jsonz │ ├── sofa4q.jsonz │ ├── sofa4q_soft.jsonz │ ├── tetra1_4q.jsonz │ ├── torus_100_50s.jsonz │ ├── triCorner4.jsonz │ └── triCornerOut4.jsonz ├── old_snips.txt ├── pUtils.js ├── page.css ├── page.html ├── player.js ├── release.html ├── screens2d.js ├── sfx.js ├── shaders.html ├── shaders.js ├── sound │ ├── coin_up.ogg │ ├── coin_up2.ogg │ ├── coin_up3.ogg │ ├── crash.ogg │ ├── crash2.ogg │ ├── not │ │ ├── beep_c.ogg │ │ ├── dust1.ogg │ │ ├── dust2.ogg │ │ ├── horn.mp3 │ │ ├── horn_cut.ogg │ │ ├── laser1.ogg │ │ ├── laser2.ogg │ │ ├── laser4.ogg │ │ ├── lazer.wav │ │ ├── powerup2mono.ogg │ │ ├── turn1.ogg │ │ └── turn2.ogg │ ├── orig │ │ ├── A_laser5.wav │ │ ├── A_laser6.wav │ │ ├── A_laser7.wav │ │ └── crash.wav │ ├── powerup1.ogg │ ├── powerup2.ogg │ ├── turn1.ogg │ ├── turn2.ogg │ ├── turn3.ogg │ ├── turn4.ogg │ └── turn5.ogg ├── sprintf-0.6.js ├── sylvester.js ├── testdbl.html ├── transform.js ├── ui │ ├── jquery.ui.core.min.js │ ├── jquery.ui.mouse.min.js │ ├── jquery.ui.slider.min.js │ ├── jquery.ui.widget.min.js │ └── themes │ │ └── base │ │ ├── images │ │ ├── ui-bg_flat_0_aaaaaa_40x100.png │ │ ├── ui-bg_flat_75_ffffff_40x100.png │ │ ├── ui-bg_glass_55_fbf9ee_1x400.png │ │ ├── ui-bg_glass_65_ffffff_1x400.png │ │ ├── ui-bg_glass_75_dadada_1x400.png │ │ ├── ui-bg_glass_75_e6e6e6_1x400.png │ │ ├── ui-bg_glass_95_fef1ec_1x400.png │ │ ├── ui-bg_highlight-soft_75_cccccc_1x100.png │ │ ├── ui-icons_222222_256x240.png │ │ ├── ui-icons_2e83ff_256x240.png │ │ ├── ui-icons_454545_256x240.png │ │ ├── ui-icons_888888_256x240.png │ │ └── ui-icons_cd0a0a_256x240.png │ │ ├── jquery.ui.accordion.css │ │ ├── jquery.ui.all.css │ │ ├── jquery.ui.autocomplete.css │ │ ├── jquery.ui.base.css │ │ ├── jquery.ui.button.css │ │ ├── jquery.ui.core.css │ │ ├── jquery.ui.datepicker.css │ │ ├── jquery.ui.dialog.css │ │ ├── jquery.ui.progressbar.css │ │ ├── jquery.ui.resizable.css │ │ ├── jquery.ui.selectable.css │ │ ├── jquery.ui.slider.css │ │ ├── jquery.ui.tabs.css │ │ └── jquery.ui.theme.css ├── userInput.js ├── viewPoint.js ├── webgl-utils.js └── worker.js ├── Ch09_websockets ├── bumper.htm ├── car.png ├── client-local.js ├── client-multiplayer.js ├── collision.png ├── game.js ├── server.js ├── ss-localclient.png └── ss-mpclient.png ├── Ch10_combining_technologies ├── canvas.html ├── ship.png └── svg.html ├── LICENSE.txt ├── README.md └── contributing.md /9781430239789.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/9781430239789.jpg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/0.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/0.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/1.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/1.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/2.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/2.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/3.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/3.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/4.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/4.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/5.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/5.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/ball.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/beginScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/beginScore.php -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/flip.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/flip.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/help.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/highscorelist.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/highscorelist.php -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/index.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/init.js -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/insertNewScore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/insertNewScore.php -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/instructions1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/instructions1.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/instructions2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/instructions2.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/instructions3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/instructions3.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/instructions4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/instructions4.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/instructions5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/instructions5.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/instructions6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/instructions6.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/processing-0.9.7.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/processing-0.9.7.min.js -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/slide1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/slide1.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/slide2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/slide2.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/slide3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/slide3.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/slide4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/slide4.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/slide5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/slide5.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/slide6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/slide6.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/slow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/slow.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/song.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/song.mp3 -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/song.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/song.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/speed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/speed.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/style.css -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/title.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/title.html -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/title.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/tramp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/tramp.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/wall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/wall.png -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win0.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win0.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win0.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win0.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win1.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win1.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win10.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win10.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win10.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win10.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win11.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win11.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win11.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win11.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win12.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win12.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win12.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win12.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win13.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win13.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win13.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win13.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win2.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win2.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win3.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win3.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win4.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win4.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win5.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win5.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win6.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win6.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win6.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win7.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win7.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win7.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win8.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win8.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win8.wav -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win9.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win9.ogg -------------------------------------------------------------------------------- /Ch02_complexity_simplicity/win9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch02_complexity_simplicity/win9.wav -------------------------------------------------------------------------------- /Ch03_multiplatform/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /Ch03_multiplatform/.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/.gitmodules -------------------------------------------------------------------------------- /Ch03_multiplatform/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/Makefile -------------------------------------------------------------------------------- /Ch03_multiplatform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/README.md -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/Makefile.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/Makefile.example -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/README -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/compile_scripts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/compile_scripts.sh -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/compile_styles.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/compile_styles.sh -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/compile_views.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/compile_views.sh -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/copy_resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/copy_resources.sh -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/jslint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/jslint.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/mu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/mu.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/mu/compiler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/mu/compiler.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/mu/parser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/mu/parser.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/mu/preprocessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/mu/preprocessor.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/parse-js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/parse-js.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/process.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/lib/squeeze-more.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/lib/squeeze-more.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/post-compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/post-compile.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/templater.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/templater.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/uglify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/uglify.js -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/build/welcome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/WebAppBuilder/build/welcome.sh -------------------------------------------------------------------------------- /Ch03_multiplatform/WebAppBuilder/sample/coming_soon: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Ch03_multiplatform/android/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/Makefile -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/Chewy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/Chewy.ttf -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/background.jpg -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/game.css -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/game.min.js -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/icon.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/black_bishop.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/black_king.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/black_knight.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/black_pawn.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/black_queen.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/black_rook.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/white_bishop.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/white_king.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/white_knight.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/white_pawn.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/white_queen.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/images/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/images/white_rook.png -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/index.html -------------------------------------------------------------------------------- /Ch03_multiplatform/android/assets/lib.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/android/assets/lib.min.js -------------------------------------------------------------------------------- /Ch03_multiplatform/artwork/ChessSet.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/artwork/ChessSet.xcf -------------------------------------------------------------------------------- /Ch03_multiplatform/artwork/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/artwork/icon.svg -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/Makefile -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/Chewy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/Chewy.ttf -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/background.jpg -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/game.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/game.css -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/game.html -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/game.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/game.min.js -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/icon.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/black_bishop.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/black_king.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/black_knight.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/black_pawn.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/black_queen.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/black_rook.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/white_bishop.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/white_king.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/white_knight.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/white_pawn.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/white_queen.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/images/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/images/white_rook.png -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/index.html -------------------------------------------------------------------------------- /Ch03_multiplatform/desktop/www/lib.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/desktop/www/lib.min.js -------------------------------------------------------------------------------- /Ch03_multiplatform/src/Chewy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/Chewy.ttf -------------------------------------------------------------------------------- /Ch03_multiplatform/src/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/background.jpg -------------------------------------------------------------------------------- /Ch03_multiplatform/src/common.sass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/common.sass -------------------------------------------------------------------------------- /Ch03_multiplatform/src/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/config.xml -------------------------------------------------------------------------------- /Ch03_multiplatform/src/desktop.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/desktop.html -------------------------------------------------------------------------------- /Ch03_multiplatform/src/desktop.sass: -------------------------------------------------------------------------------- 1 | $pieceSize: 50px 2 | 3 | @import common 4 | -------------------------------------------------------------------------------- /Ch03_multiplatform/src/game.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/game.html -------------------------------------------------------------------------------- /Ch03_multiplatform/src/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/game.js -------------------------------------------------------------------------------- /Ch03_multiplatform/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/icon.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/black_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/black_bishop.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/black_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/black_king.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/black_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/black_knight.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/black_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/black_pawn.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/black_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/black_queen.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/black_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/black_rook.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/white_bishop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/white_bishop.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/white_king.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/white_king.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/white_knight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/white_knight.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/white_pawn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/white_pawn.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/white_queen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/white_queen.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/images/white_rook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/images/white_rook.png -------------------------------------------------------------------------------- /Ch03_multiplatform/src/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/jquery.min.js -------------------------------------------------------------------------------- /Ch03_multiplatform/src/mobile.sass: -------------------------------------------------------------------------------- 1 | $pieceSize: 40px 2 | 3 | @import common 4 | 5 | -------------------------------------------------------------------------------- /Ch03_multiplatform/src/underscore-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/underscore-min.js -------------------------------------------------------------------------------- /Ch03_multiplatform/src/zepto.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch03_multiplatform/src/zepto.min.js -------------------------------------------------------------------------------- /Ch04_creating_levels/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/index.html -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/application.js -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/bricks/circle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/bricks/circle.js -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/bricks/curve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/bricks/curve.js -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/bricks/square.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/bricks/square.js -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/bricks/triangle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/bricks/triangle.js -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/grid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/grid.js -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/jquery.js -------------------------------------------------------------------------------- /Ch04_creating_levels/javascripts/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/javascripts/store.js -------------------------------------------------------------------------------- /Ch04_creating_levels/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch04_creating_levels/stylesheets/style.css -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/Burst.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/Burst.html -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/README -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/img/orangeParticle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/img/orangeParticle.png -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/img/orangefish01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/img/orangefish01.png -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/img/orangefish02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/img/orangefish02.png -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/img/orangefish03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/img/orangefish03.png -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/img/orangefish04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/img/orangefish04.png -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/img/parallaxBack.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/img/parallaxBack.jpg -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/img/parallaxFront.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/img/parallaxFront.png -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/js/Fish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/js/Fish.js -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/js/Particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/js/Particles.js -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/licence.txt -------------------------------------------------------------------------------- /Ch05_3DCSS/BurstGame/sounds/burstsml2.aif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/BurstGame/sounds/burstsml2.aif -------------------------------------------------------------------------------- /Ch05_3DCSS/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/README -------------------------------------------------------------------------------- /Ch05_3DCSS/three/Part1_particles/Three.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/three/Part1_particles/Three.js -------------------------------------------------------------------------------- /Ch05_3DCSS/three/Part1_particles/ThreeParticles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/three/Part1_particles/ThreeParticles.html -------------------------------------------------------------------------------- /Ch05_3DCSS/three/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/three/README -------------------------------------------------------------------------------- /Ch05_3DCSS/three/licence.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch05_3DCSS/three/licence.txt -------------------------------------------------------------------------------- /Ch06_particle_systems/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/LICENSE -------------------------------------------------------------------------------- /Ch06_particle_systems/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/README -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/fire.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/fire.0.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/fire.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/fire.0.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/fire.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/fire.1.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/fire.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/fire.1.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/fire.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/fire.2.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/fire.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/fire.2.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/fire.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/flame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/flame.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/flame.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/flame.xcf -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/flame0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/flame0.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/flame1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/flame1.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/flame2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/flame2.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/flame3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/flame3.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/flames.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/flames.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fire/smallspark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fire/smallspark.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.0.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.0.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.1.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.1.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.2.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.2.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.3.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.3.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.4.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.4.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.html -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.js -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/fireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/fireworks.png -------------------------------------------------------------------------------- /Ch06_particle_systems/fireworks/spark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/fireworks/spark.png -------------------------------------------------------------------------------- /Ch06_particle_systems/input.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/input.js -------------------------------------------------------------------------------- /Ch06_particle_systems/jquery-1.6.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/jquery-1.6.4.js -------------------------------------------------------------------------------- /Ch06_particle_systems/optimizations/fastfireworks.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/optimizations/fastfireworks.html -------------------------------------------------------------------------------- /Ch06_particle_systems/optimizations/fastfireworks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/optimizations/fastfireworks.js -------------------------------------------------------------------------------- /Ch06_particle_systems/optimizations/fastfireworks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/optimizations/fastfireworks.png -------------------------------------------------------------------------------- /Ch06_particle_systems/particles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/particles.js -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.0.html -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.0.js -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.0.png -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.0.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.0.xcf -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.1.png -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.2.png -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.3.png -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.4.png -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke.png -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smoke2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smoke2.png -------------------------------------------------------------------------------- /Ch06_particle_systems/smoke/smokes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch06_particle_systems/smoke/smokes.png -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/dartboard.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/dartboard.gif -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/dartboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/dartboard.png -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/darts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/darts.html -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/jquery-1.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/jquery-1.6.js -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/shader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/shader.fs -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/shader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/shader.vs -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/tex_shader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/tex_shader.fs -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/darts/tex_shader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/darts/tex_shader.vs -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/demo_1-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/demo_1-2.html -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/demo_1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/demo_1.html -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/gl-matrix-min.js -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-1.html -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-10.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-11.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-13.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-14.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-15.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-16.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-17.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-17.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-18.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-18.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-19.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-19.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-2.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-20.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-20.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-21.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-21.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-22.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-22.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-23.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-23.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-24.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-24.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-25.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-25.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-26.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-26.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-27.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-27.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-28.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-28.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-29.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-29.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-3.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-30.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-30.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-31.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-31.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-32.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-4.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-5.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-6.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-7.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-8.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/listing-7-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/listing-7-9.txt -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/octahedron/octahedron.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/octahedron/octahedron.html -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/octahedron/octahedron_color_bleeding.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/octahedron/octahedron_color_bleeding.html -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/octahedron/shader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/octahedron/shader.fs -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/octahedron/shader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/octahedron/shader.vs -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/shader.fs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/shader.fs -------------------------------------------------------------------------------- /Ch07_Beginning_WebGL/shader.vs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch07_Beginning_WebGL/shader.vs -------------------------------------------------------------------------------- /Ch08_Cycleblob/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/.htaccess -------------------------------------------------------------------------------- /Ch08_Cycleblob/README.txt: -------------------------------------------------------------------------------- 1 | hello -------------------------------------------------------------------------------- /Ch08_Cycleblob/about.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/about.php -------------------------------------------------------------------------------- /Ch08_Cycleblob/aiControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/aiControl.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/browserDetect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/browserDetect.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/build/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/build/README.txt -------------------------------------------------------------------------------- /Ch08_Cycleblob/build/build_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/build/build_release.sh -------------------------------------------------------------------------------- /Ch08_Cycleblob/build/compress_models.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/build/compress_models.sh -------------------------------------------------------------------------------- /Ch08_Cycleblob/build/exp_replace.sed: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/build/exp_replace.sed -------------------------------------------------------------------------------- /Ch08_Cycleblob/build/test_num.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/build/test_num.sh -------------------------------------------------------------------------------- /Ch08_Cycleblob/build_number.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/build_number.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/colorwheel/colorwheel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/colorwheel/colorwheel.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/colorwheel/raphael-1.3.1-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/colorwheel/raphael-1.3.1-min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/colorwheel/raphael-1.5.2-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/colorwheel/raphael-1.5.2-min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/contact.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/contact.php -------------------------------------------------------------------------------- /Ch08_Cycleblob/debug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/debug.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/favicon.ico -------------------------------------------------------------------------------- /Ch08_Cycleblob/gameControl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/gameControl.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/geomProcess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/geomProcess.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/glMatrix-0.9.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/glMatrix-0.9.4.min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/glUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/glUtils.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/.htaccess -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/chromelogo128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/chromelogo128.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/download_chrome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/download_chrome.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/firefox_icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/firefox_icon128.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/icon_Desktop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/icon_Desktop.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/icon_Desktop_Alt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/icon_Desktop_Alt.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/icon_Forward.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/icon_Forward.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/icon_Play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/icon_Play.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/icon_Playb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/icon_Playb.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/icon_Refresh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/icon_Refresh.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/inkscape_pasted_image_20110301_221751.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/inkscape_pasted_image_20110301_221751.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/inkscape_pasted_image_20110301_221904.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/inkscape_pasted_image_20110301_221904.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions2.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions2_t1.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions2_t1.svgz -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions2_t2.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions2_t2.svgz -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions2_t3.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions2_t3.svgz -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions2_t4.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions2_t4.svgz -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions3.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions3.svgz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions3.svgz -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions3_p.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions3_p.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/instructions_header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/instructions_header.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_cube.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_dbl_sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_dbl_sofa.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_diamond.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_inside_cube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_inside_cube.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_mobius.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_mobius.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_plus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_plus.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_sofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_sofa.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_softsofa.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_softsofa.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_tetra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_tetra.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_torus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_torus.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/m_triCorner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/m_triCorner.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/models_icons.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/models_icons.psd -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/rep_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/rep_image.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/speaker_off.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/speaker_off.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/speaker_on.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/speaker_on.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/test.html -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text2.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text3.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text4.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text5.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text6.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text7.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/img/title_text8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/img/title_text8.svg -------------------------------------------------------------------------------- /Ch08_Cycleblob/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/jquery-1.4.4.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jquery-1.4.4.min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/jquery.cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jquery.cookie.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/jscolor/arrow.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jscolor/arrow.gif -------------------------------------------------------------------------------- /Ch08_Cycleblob/jscolor/cross.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jscolor/cross.gif -------------------------------------------------------------------------------- /Ch08_Cycleblob/jscolor/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jscolor/demo.html -------------------------------------------------------------------------------- /Ch08_Cycleblob/jscolor/hs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jscolor/hs.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/jscolor/hv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jscolor/hv.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/jscolor/jscolor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/jscolor/jscolor.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/loadManager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/loadManager.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/main.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/.htaccess -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/bikePlayer2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/bikePlayer2.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/cube0.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/cube0.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/cube1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/cube1.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/cube2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/cube2.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/cube3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/cube3.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/cube5quads.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/cube5quads.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/dbl_sofa_soft_4q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/dbl_sofa_soft_4q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/distortDiamond5q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/distortDiamond5q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/lifeWheel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/lifeWheel.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/mobius_10r_3q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/mobius_10r_3q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/Teapot.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/Teapot.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/bikePlayer1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/bikePlayer1.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/cube4lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/cube4lines.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/cube4tri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/cube4tri.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/cube5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/cube5.obj -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/cube5lines.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/cube5lines.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/cube5tri.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/cube5tri.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/dbl_sofa_soft_4q.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/dbl_sofa_soft_4q.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/distortDiamond.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/distortDiamond.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/mobius.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/mobius.obj -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/mobius_10_3q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/mobius_10_3q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/mobius_10_4q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/mobius_10_4q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/mobius_quad.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/mobius_quad.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/oneQuad.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/oneQuad.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/player1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/player1.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/plus.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/plus.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/rot_dounut.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/rot_dounut.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/rot_dounut.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/rot_dounut.obj -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/rot_dounut2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/rot_dounut2.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/sandClock.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/sandClock.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/sandClock4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/sandClock4.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/sandClock5.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/sandClock5.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/sandClock5.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/sandClock5.obj -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/simple_cube.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/simple_cube.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/sofa.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/sofa.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/sofa_sub.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/sofa_sub.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/squashSofa5q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/squashSofa5q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/squrePita5q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/squrePita5q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/subTetra.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/subTetra.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/tetra1_5q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/tetra1_5q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/torus_100_50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/torus_100_50.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/other/triCorner.kw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/other/triCorner.kw -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/plus4q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/plus4q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/rot_dounut2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/rot_dounut2.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/sofa4q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/sofa4q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/sofa4q_soft.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/sofa4q_soft.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/tetra1_4q.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/tetra1_4q.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/torus_100_50s.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/torus_100_50s.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/triCorner4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/triCorner4.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/models/triCornerOut4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/models/triCornerOut4.json -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/.htaccess -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/cube5quads.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/cube5quads.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/dbl_sofa_soft_4q.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/dbl_sofa_soft_4q.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/distortDiamond5q.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/distortDiamond5q.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/mobius_10r_3q.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/mobius_10r_3q.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/plus4q.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/plus4q.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/sofa4q.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/sofa4q.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/sofa4q_soft.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/sofa4q_soft.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/tetra1_4q.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/tetra1_4q.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/torus_100_50s.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/torus_100_50s.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/triCorner4.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/triCorner4.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/modelsz/triCornerOut4.jsonz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/modelsz/triCornerOut4.jsonz -------------------------------------------------------------------------------- /Ch08_Cycleblob/old_snips.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/old_snips.txt -------------------------------------------------------------------------------- /Ch08_Cycleblob/pUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/pUtils.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/page.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/page.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/page.html -------------------------------------------------------------------------------- /Ch08_Cycleblob/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/player.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/release.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/release.html -------------------------------------------------------------------------------- /Ch08_Cycleblob/screens2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/screens2d.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/sfx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sfx.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/shaders.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/shaders.html -------------------------------------------------------------------------------- /Ch08_Cycleblob/shaders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/shaders.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/coin_up.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/coin_up.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/coin_up2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/coin_up2.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/coin_up3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/coin_up3.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/crash.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/crash.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/crash2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/crash2.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/beep_c.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/beep_c.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/dust1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/dust1.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/dust2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/dust2.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/horn.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/horn.mp3 -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/horn_cut.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/horn_cut.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/laser1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/laser1.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/laser2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/laser2.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/laser4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/laser4.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/lazer.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/lazer.wav -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/powerup2mono.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/powerup2mono.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/turn1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/turn1.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/not/turn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/not/turn2.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/orig/A_laser5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/orig/A_laser5.wav -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/orig/A_laser6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/orig/A_laser6.wav -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/orig/A_laser7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/orig/A_laser7.wav -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/orig/crash.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/orig/crash.wav -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/powerup1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/powerup1.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/powerup2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/powerup2.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/turn1.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/turn1.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/turn2.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/turn2.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/turn3.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/turn3.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/turn4.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/turn4.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sound/turn5.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sound/turn5.ogg -------------------------------------------------------------------------------- /Ch08_Cycleblob/sprintf-0.6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sprintf-0.6.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/sylvester.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/sylvester.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/testdbl.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/testdbl.html -------------------------------------------------------------------------------- /Ch08_Cycleblob/transform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/transform.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/jquery.ui.core.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/jquery.ui.core.min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/jquery.ui.mouse.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/jquery.ui.mouse.min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/jquery.ui.slider.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/jquery.ui.slider.min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/jquery.ui.widget.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/jquery.ui.widget.min.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_flat_0_aaaaaa_40x100.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_flat_75_ffffff_40x100.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_55_fbf9ee_1x400.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_65_ffffff_1x400.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_75_dadada_1x400.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_75_e6e6e6_1x400.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_glass_95_fef1ec_1x400.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-bg_highlight-soft_75_cccccc_1x100.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-icons_222222_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-icons_222222_256x240.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-icons_2e83ff_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-icons_2e83ff_256x240.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-icons_454545_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-icons_454545_256x240.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-icons_888888_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-icons_888888_256x240.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/images/ui-icons_cd0a0a_256x240.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/images/ui-icons_cd0a0a_256x240.png -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.accordion.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.accordion.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.all.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.all.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.autocomplete.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.autocomplete.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.base.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.base.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.button.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.button.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.core.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.datepicker.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.dialog.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.dialog.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.progressbar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.progressbar.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.resizable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.resizable.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.selectable.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.selectable.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.slider.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.slider.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.tabs.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.tabs.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/ui/themes/base/jquery.ui.theme.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/ui/themes/base/jquery.ui.theme.css -------------------------------------------------------------------------------- /Ch08_Cycleblob/userInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/userInput.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/viewPoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/viewPoint.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/webgl-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/webgl-utils.js -------------------------------------------------------------------------------- /Ch08_Cycleblob/worker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch08_Cycleblob/worker.js -------------------------------------------------------------------------------- /Ch09_websockets/bumper.htm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/bumper.htm -------------------------------------------------------------------------------- /Ch09_websockets/car.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/car.png -------------------------------------------------------------------------------- /Ch09_websockets/client-local.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/client-local.js -------------------------------------------------------------------------------- /Ch09_websockets/client-multiplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/client-multiplayer.js -------------------------------------------------------------------------------- /Ch09_websockets/collision.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/collision.png -------------------------------------------------------------------------------- /Ch09_websockets/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/game.js -------------------------------------------------------------------------------- /Ch09_websockets/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/server.js -------------------------------------------------------------------------------- /Ch09_websockets/ss-localclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/ss-localclient.png -------------------------------------------------------------------------------- /Ch09_websockets/ss-mpclient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch09_websockets/ss-mpclient.png -------------------------------------------------------------------------------- /Ch10_combining_technologies/canvas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch10_combining_technologies/canvas.html -------------------------------------------------------------------------------- /Ch10_combining_technologies/ship.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch10_combining_technologies/ship.png -------------------------------------------------------------------------------- /Ch10_combining_technologies/svg.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/Ch10_combining_technologies/svg.html -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/README.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Apress/html5-games-most-wanted/HEAD/contributing.md --------------------------------------------------------------------------------