├── .gitignore ├── Breakout1 ├── Breakout.html ├── beep1.mp3 └── blackstar.mp3 ├── Breakout3 └── Breakout.html ├── LICENSE ├── MultiPong ├── Player.js ├── Pong │ ├── ball.js │ ├── barra.js │ ├── cocos2d.js │ ├── controls.js │ ├── credits.js │ ├── game.js │ ├── img │ │ ├── atari1.ttf │ │ ├── backButton.png │ │ ├── background.png │ │ ├── ball.png │ │ ├── barra.png │ │ ├── controls.png │ │ ├── controlsButton.png │ │ ├── credits.png │ │ ├── creditsButton.png │ │ ├── lose.png │ │ ├── menu.png │ │ ├── playButton.png │ │ ├── quitButton.png │ │ ├── splash.png │ │ ├── title.png │ │ └── win.png │ ├── index.html │ ├── lose.js │ ├── main.js │ ├── menu.js │ └── win.js ├── Test │ └── robhawkes-mozilla-festival-92336f2 │ │ ├── game.js │ │ ├── node_modules │ │ └── socket.io │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── Readme.md │ │ │ ├── benchmarks │ │ │ ├── decode.bench.js │ │ │ ├── encode.bench.js │ │ │ └── runner.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ ├── logger.js │ │ │ ├── manager.js │ │ │ ├── namespace.js │ │ │ ├── parser.js │ │ │ ├── socket.io.js │ │ │ ├── socket.js │ │ │ ├── static.js │ │ │ ├── store.js │ │ │ ├── stores │ │ │ │ ├── memory.js │ │ │ │ └── redis.js │ │ │ ├── transport.js │ │ │ ├── transports │ │ │ │ ├── flashsocket.js │ │ │ │ ├── htmlfile.js │ │ │ │ ├── http-polling.js │ │ │ │ ├── http.js │ │ │ │ ├── index.js │ │ │ │ ├── jsonp-polling.js │ │ │ │ ├── websocket.js │ │ │ │ ├── websocket │ │ │ │ │ ├── default.js │ │ │ │ │ ├── hybi-07-12.js │ │ │ │ │ ├── hybi-16.js │ │ │ │ │ └── index.js │ │ │ │ └── xhr-polling.js │ │ │ └── util.js │ │ │ ├── node_modules │ │ │ ├── base64id │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── lib │ │ │ │ │ └── base64id.js │ │ │ │ └── package.json │ │ │ ├── policyfile │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── doc │ │ │ │ │ └── index.html │ │ │ │ ├── examples │ │ │ │ │ ├── basic.fallback.js │ │ │ │ │ └── basic.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── server.js │ │ │ │ ├── package.json │ │ │ │ └── tests │ │ │ │ │ ├── ssl │ │ │ │ │ ├── ssl.crt │ │ │ │ │ └── ssl.private.key │ │ │ │ │ └── unit.test.js │ │ │ ├── redis │ │ │ │ ├── .npmignore │ │ │ │ ├── README.md │ │ │ │ ├── benches │ │ │ │ │ ├── buffer_bench.js │ │ │ │ │ ├── hiredis_parser.js │ │ │ │ │ ├── re_sub_test.js │ │ │ │ │ ├── reconnect_test.js │ │ │ │ │ ├── stress │ │ │ │ │ │ ├── codec.js │ │ │ │ │ │ ├── pubsub │ │ │ │ │ │ │ ├── pub.js │ │ │ │ │ │ │ ├── run │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ ├── rpushblpop │ │ │ │ │ │ │ ├── pub.js │ │ │ │ │ │ │ ├── run │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ └── speed │ │ │ │ │ │ │ ├── 00 │ │ │ │ │ │ │ ├── plot │ │ │ │ │ │ │ ├── size-rate.png │ │ │ │ │ │ │ └── speed.js │ │ │ │ │ └── sub_quit_test.js │ │ │ │ ├── changelog.md │ │ │ │ ├── diff_multi_bench_output.js │ │ │ │ ├── examples │ │ │ │ │ ├── auth.js │ │ │ │ │ ├── backpressure_drain.js │ │ │ │ │ ├── eval.js │ │ │ │ │ ├── extend.js │ │ │ │ │ ├── file.js │ │ │ │ │ ├── mget.js │ │ │ │ │ ├── monitor.js │ │ │ │ │ ├── multi.js │ │ │ │ │ ├── multi2.js │ │ │ │ │ ├── psubscribe.js │ │ │ │ │ ├── pub_sub.js │ │ │ │ │ ├── simple.js │ │ │ │ │ ├── sort.js │ │ │ │ │ ├── subqueries.js │ │ │ │ │ ├── subquery.js │ │ │ │ │ ├── unix_socket.js │ │ │ │ │ └── web_server.js │ │ │ │ ├── generate_commands.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── commands.js │ │ │ │ │ ├── parser │ │ │ │ │ │ ├── hiredis.js │ │ │ │ │ │ └── javascript.js │ │ │ │ │ ├── queue.js │ │ │ │ │ ├── to_array.js │ │ │ │ │ └── util.js │ │ │ │ ├── mem.js │ │ │ │ ├── multi_bench.js │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ └── socket.io-client │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── bin │ │ │ │ └── builder.js │ │ │ │ ├── components │ │ │ │ ├── component-bind │ │ │ │ │ ├── component.json │ │ │ │ │ └── index.js │ │ │ │ ├── component-emitter │ │ │ │ │ ├── component.json │ │ │ │ │ └── index.js │ │ │ │ ├── component-json-fallback │ │ │ │ │ ├── component.json │ │ │ │ │ └── index.js │ │ │ │ ├── component-json │ │ │ │ │ ├── component.json │ │ │ │ │ └── index.js │ │ │ │ ├── learnboost-engine.io-client │ │ │ │ │ ├── component.json │ │ │ │ │ └── lib │ │ │ │ │ │ ├── emitter.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── parser.js │ │ │ │ │ │ ├── socket.js │ │ │ │ │ │ ├── transport.js │ │ │ │ │ │ ├── transports │ │ │ │ │ │ ├── flashsocket.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── polling-jsonp.js │ │ │ │ │ │ ├── polling-xhr.js │ │ │ │ │ │ ├── polling.js │ │ │ │ │ │ └── websocket.js │ │ │ │ │ │ └── util.js │ │ │ │ ├── learnboost-socket.io-protocol │ │ │ │ │ ├── component.json │ │ │ │ │ └── index.js │ │ │ │ ├── timoxley-to-array │ │ │ │ │ ├── component.json │ │ │ │ │ └── index.js │ │ │ │ └── visionmedia-debug │ │ │ │ │ ├── component.json │ │ │ │ │ ├── debug.js │ │ │ │ │ └── index.js │ │ │ │ ├── dist │ │ │ │ ├── WebSocketMain.swf │ │ │ │ ├── WebSocketMainInsecure.swf │ │ │ │ ├── socket.io.js │ │ │ │ └── socket.io.min.js │ │ │ │ ├── lib │ │ │ │ ├── events.js │ │ │ │ ├── io.js │ │ │ │ ├── json.js │ │ │ │ ├── namespace.js │ │ │ │ ├── parser.js │ │ │ │ ├── socket.js │ │ │ │ ├── transport.js │ │ │ │ ├── transports │ │ │ │ │ ├── flashsocket.js │ │ │ │ │ ├── htmlfile.js │ │ │ │ │ ├── jsonp-polling.js │ │ │ │ │ ├── websocket.js │ │ │ │ │ ├── xhr-polling.js │ │ │ │ │ └── xhr.js │ │ │ │ ├── util.js │ │ │ │ └── vendor │ │ │ │ │ └── web-socket-js │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── WebSocketMain.swf │ │ │ │ │ ├── WebSocketMainInsecure.zip │ │ │ │ │ ├── flash-src │ │ │ │ │ ├── IWebSocketLogger.as │ │ │ │ │ ├── WebSocket.as │ │ │ │ │ ├── WebSocketEvent.as │ │ │ │ │ ├── WebSocketMain.as │ │ │ │ │ ├── WebSocketMainInsecure.as │ │ │ │ │ ├── build.sh │ │ │ │ │ └── com │ │ │ │ │ │ ├── adobe │ │ │ │ │ │ └── net │ │ │ │ │ │ │ └── proxies │ │ │ │ │ │ │ └── RFC2817Socket.as │ │ │ │ │ │ ├── gsolo │ │ │ │ │ │ └── encryption │ │ │ │ │ │ │ └── MD5.as │ │ │ │ │ │ └── hurlant │ │ │ │ │ │ ├── crypto │ │ │ │ │ │ ├── Crypto.as │ │ │ │ │ │ ├── cert │ │ │ │ │ │ │ ├── MozillaRootCertificates.as │ │ │ │ │ │ │ ├── X509Certificate.as │ │ │ │ │ │ │ └── X509CertificateCollection.as │ │ │ │ │ │ ├── hash │ │ │ │ │ │ │ ├── HMAC.as │ │ │ │ │ │ │ ├── IHMAC.as │ │ │ │ │ │ │ ├── IHash.as │ │ │ │ │ │ │ ├── MAC.as │ │ │ │ │ │ │ ├── MD2.as │ │ │ │ │ │ │ ├── MD5.as │ │ │ │ │ │ │ ├── SHA1.as │ │ │ │ │ │ │ ├── SHA224.as │ │ │ │ │ │ │ ├── SHA256.as │ │ │ │ │ │ │ └── SHABase.as │ │ │ │ │ │ ├── prng │ │ │ │ │ │ │ ├── ARC4.as │ │ │ │ │ │ │ ├── IPRNG.as │ │ │ │ │ │ │ ├── Random.as │ │ │ │ │ │ │ └── TLSPRF.as │ │ │ │ │ │ ├── rsa │ │ │ │ │ │ │ └── RSAKey.as │ │ │ │ │ │ ├── symmetric │ │ │ │ │ │ │ ├── AESKey.as │ │ │ │ │ │ │ ├── BlowFishKey.as │ │ │ │ │ │ │ ├── CBCMode.as │ │ │ │ │ │ │ ├── CFB8Mode.as │ │ │ │ │ │ │ ├── CFBMode.as │ │ │ │ │ │ │ ├── CTRMode.as │ │ │ │ │ │ │ ├── DESKey.as │ │ │ │ │ │ │ ├── ECBMode.as │ │ │ │ │ │ │ ├── ICipher.as │ │ │ │ │ │ │ ├── IMode.as │ │ │ │ │ │ │ ├── IPad.as │ │ │ │ │ │ │ ├── IStreamCipher.as │ │ │ │ │ │ │ ├── ISymmetricKey.as │ │ │ │ │ │ │ ├── IVMode.as │ │ │ │ │ │ │ ├── NullPad.as │ │ │ │ │ │ │ ├── OFBMode.as │ │ │ │ │ │ │ ├── PKCS5.as │ │ │ │ │ │ │ ├── SSLPad.as │ │ │ │ │ │ │ ├── SimpleIVMode.as │ │ │ │ │ │ │ ├── TLSPad.as │ │ │ │ │ │ │ ├── TripleDESKey.as │ │ │ │ │ │ │ ├── XTeaKey.as │ │ │ │ │ │ │ ├── aeskey.pl │ │ │ │ │ │ │ └── dump.txt │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ ├── AESKeyTest.as │ │ │ │ │ │ │ ├── ARC4Test.as │ │ │ │ │ │ │ ├── BigIntegerTest.as │ │ │ │ │ │ │ ├── BlowFishKeyTest.as │ │ │ │ │ │ │ ├── CBCModeTest.as │ │ │ │ │ │ │ ├── CFB8ModeTest.as │ │ │ │ │ │ │ ├── CFBModeTest.as │ │ │ │ │ │ │ ├── CTRModeTest.as │ │ │ │ │ │ │ ├── DESKeyTest.as │ │ │ │ │ │ │ ├── ECBModeTest.as │ │ │ │ │ │ │ ├── HMACTest.as │ │ │ │ │ │ │ ├── ITestHarness.as │ │ │ │ │ │ │ ├── MD2Test.as │ │ │ │ │ │ │ ├── MD5Test.as │ │ │ │ │ │ │ ├── OFBModeTest.as │ │ │ │ │ │ │ ├── RSAKeyTest.as │ │ │ │ │ │ │ ├── SHA1Test.as │ │ │ │ │ │ │ ├── SHA224Test.as │ │ │ │ │ │ │ ├── SHA256Test.as │ │ │ │ │ │ │ ├── TLSPRFTest.as │ │ │ │ │ │ │ ├── TestCase.as │ │ │ │ │ │ │ ├── TripleDESKeyTest.as │ │ │ │ │ │ │ └── XTeaKeyTest.as │ │ │ │ │ │ └── tls │ │ │ │ │ │ │ ├── BulkCiphers.as │ │ │ │ │ │ │ ├── CipherSuites.as │ │ │ │ │ │ │ ├── IConnectionState.as │ │ │ │ │ │ │ ├── ISecurityParameters.as │ │ │ │ │ │ │ ├── KeyExchanges.as │ │ │ │ │ │ │ ├── MACs.as │ │ │ │ │ │ │ ├── SSLConnectionState.as │ │ │ │ │ │ │ ├── SSLEvent.as │ │ │ │ │ │ │ ├── SSLSecurityParameters.as │ │ │ │ │ │ │ ├── TLSConfig.as │ │ │ │ │ │ │ ├── TLSConnectionState.as │ │ │ │ │ │ │ ├── TLSEngine.as │ │ │ │ │ │ │ ├── TLSError.as │ │ │ │ │ │ │ ├── TLSEvent.as │ │ │ │ │ │ │ ├── TLSSecurityParameters.as │ │ │ │ │ │ │ ├── TLSSocket.as │ │ │ │ │ │ │ ├── TLSSocketEvent.as │ │ │ │ │ │ │ └── TLSTest.as │ │ │ │ │ │ ├── math │ │ │ │ │ │ ├── BarrettReduction.as │ │ │ │ │ │ ├── BigInteger.as │ │ │ │ │ │ ├── ClassicReduction.as │ │ │ │ │ │ ├── IReduction.as │ │ │ │ │ │ ├── MontgomeryReduction.as │ │ │ │ │ │ ├── NullReduction.as │ │ │ │ │ │ └── bi_internal.as │ │ │ │ │ │ └── util │ │ │ │ │ │ ├── ArrayUtil.as │ │ │ │ │ │ ├── Base64.as │ │ │ │ │ │ ├── Hex.as │ │ │ │ │ │ ├── Memory.as │ │ │ │ │ │ └── der │ │ │ │ │ │ ├── ByteString.as │ │ │ │ │ │ ├── DER.as │ │ │ │ │ │ ├── IAsn1Type.as │ │ │ │ │ │ ├── Integer.as │ │ │ │ │ │ ├── OID.as │ │ │ │ │ │ ├── ObjectIdentifier.as │ │ │ │ │ │ ├── PEM.as │ │ │ │ │ │ ├── PrintableString.as │ │ │ │ │ │ ├── Sequence.as │ │ │ │ │ │ ├── Set.as │ │ │ │ │ │ ├── Type.as │ │ │ │ │ │ └── UTCTime.as │ │ │ │ │ ├── sample.html │ │ │ │ │ ├── swfobject.js │ │ │ │ │ └── web_socket.js │ │ │ │ ├── node_modules │ │ │ │ ├── .bin │ │ │ │ │ ├── uglifyjs │ │ │ │ │ └── wscat │ │ │ │ ├── active-x-obfuscator │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── zeparser │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README │ │ │ │ │ │ │ ├── Tokenizer.js │ │ │ │ │ │ │ ├── ZeParser.js │ │ │ │ │ │ │ ├── benchmark.html │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── test-parser.html │ │ │ │ │ │ │ ├── test-tokenizer.html │ │ │ │ │ │ │ ├── tests.js │ │ │ │ │ │ │ └── unicodecategories.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── uglify-js │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── README.html │ │ │ │ │ ├── README.org │ │ │ │ │ ├── bin │ │ │ │ │ │ └── uglifyjs │ │ │ │ │ ├── docstyle.css │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── object-ast.js │ │ │ │ │ │ ├── parse-js.js │ │ │ │ │ │ ├── process.js │ │ │ │ │ │ └── squeeze-more.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test │ │ │ │ │ │ ├── beautify.js │ │ │ │ │ │ ├── testparser.js │ │ │ │ │ │ └── unit │ │ │ │ │ │ │ ├── compress │ │ │ │ │ │ │ ├── expected │ │ │ │ │ │ │ │ ├── array1.js │ │ │ │ │ │ │ │ ├── array2.js │ │ │ │ │ │ │ │ ├── array3.js │ │ │ │ │ │ │ │ ├── array4.js │ │ │ │ │ │ │ │ ├── assignment.js │ │ │ │ │ │ │ │ ├── concatstring.js │ │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ │ ├── empty-blocks.js │ │ │ │ │ │ │ │ ├── forstatement.js │ │ │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ │ │ ├── ifreturn.js │ │ │ │ │ │ │ │ ├── ifreturn2.js │ │ │ │ │ │ │ │ ├── issue10.js │ │ │ │ │ │ │ │ ├── issue11.js │ │ │ │ │ │ │ │ ├── issue13.js │ │ │ │ │ │ │ │ ├── issue14.js │ │ │ │ │ │ │ │ ├── issue16.js │ │ │ │ │ │ │ │ ├── issue17.js │ │ │ │ │ │ │ │ ├── issue20.js │ │ │ │ │ │ │ │ ├── issue21.js │ │ │ │ │ │ │ │ ├── issue25.js │ │ │ │ │ │ │ │ ├── issue27.js │ │ │ │ │ │ │ │ ├── issue278.js │ │ │ │ │ │ │ │ ├── issue28.js │ │ │ │ │ │ │ │ ├── issue29.js │ │ │ │ │ │ │ │ ├── issue30.js │ │ │ │ │ │ │ │ ├── issue34.js │ │ │ │ │ │ │ │ ├── issue4.js │ │ │ │ │ │ │ │ ├── issue48.js │ │ │ │ │ │ │ │ ├── issue50.js │ │ │ │ │ │ │ │ ├── issue53.js │ │ │ │ │ │ │ │ ├── issue54.1.js │ │ │ │ │ │ │ │ ├── issue68.js │ │ │ │ │ │ │ │ ├── issue69.js │ │ │ │ │ │ │ │ ├── issue9.js │ │ │ │ │ │ │ │ ├── mangle.js │ │ │ │ │ │ │ │ ├── null_string.js │ │ │ │ │ │ │ │ ├── strict-equals.js │ │ │ │ │ │ │ │ ├── var.js │ │ │ │ │ │ │ │ ├── whitespace.js │ │ │ │ │ │ │ │ └── with.js │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── array1.js │ │ │ │ │ │ │ │ ├── array2.js │ │ │ │ │ │ │ │ ├── array3.js │ │ │ │ │ │ │ │ ├── array4.js │ │ │ │ │ │ │ │ ├── assignment.js │ │ │ │ │ │ │ │ ├── concatstring.js │ │ │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ │ │ ├── empty-blocks.js │ │ │ │ │ │ │ │ ├── forstatement.js │ │ │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ │ │ ├── ifreturn.js │ │ │ │ │ │ │ │ ├── ifreturn2.js │ │ │ │ │ │ │ │ ├── issue10.js │ │ │ │ │ │ │ │ ├── issue11.js │ │ │ │ │ │ │ │ ├── issue13.js │ │ │ │ │ │ │ │ ├── issue14.js │ │ │ │ │ │ │ │ ├── issue16.js │ │ │ │ │ │ │ │ ├── issue17.js │ │ │ │ │ │ │ │ ├── issue20.js │ │ │ │ │ │ │ │ ├── issue21.js │ │ │ │ │ │ │ │ ├── issue25.js │ │ │ │ │ │ │ │ ├── issue27.js │ │ │ │ │ │ │ │ ├── issue278.js │ │ │ │ │ │ │ │ ├── issue28.js │ │ │ │ │ │ │ │ ├── issue29.js │ │ │ │ │ │ │ │ ├── issue30.js │ │ │ │ │ │ │ │ ├── issue34.js │ │ │ │ │ │ │ │ ├── issue4.js │ │ │ │ │ │ │ │ ├── issue48.js │ │ │ │ │ │ │ │ ├── issue50.js │ │ │ │ │ │ │ │ ├── issue53.js │ │ │ │ │ │ │ │ ├── issue54.1.js │ │ │ │ │ │ │ │ ├── issue68.js │ │ │ │ │ │ │ │ ├── issue69.js │ │ │ │ │ │ │ │ ├── issue9.js │ │ │ │ │ │ │ │ ├── mangle.js │ │ │ │ │ │ │ │ ├── null_string.js │ │ │ │ │ │ │ │ ├── strict-equals.js │ │ │ │ │ │ │ │ ├── var.js │ │ │ │ │ │ │ │ ├── whitespace.js │ │ │ │ │ │ │ │ └── with.js │ │ │ │ │ │ │ └── scripts.js │ │ │ │ │ ├── tmp │ │ │ │ │ │ ├── 269.js │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── embed-tokens.js │ │ │ │ │ │ ├── goto.js │ │ │ │ │ │ ├── goto2.js │ │ │ │ │ │ ├── hoist.js │ │ │ │ │ │ ├── instrument.js │ │ │ │ │ │ ├── instrument2.js │ │ │ │ │ │ ├── liftvars.js │ │ │ │ │ │ ├── test.js │ │ │ │ │ │ ├── uglify-hangs.js │ │ │ │ │ │ └── uglify-hangs2.js │ │ │ │ │ └── uglify-js.js │ │ │ │ ├── ws │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── bench │ │ │ │ │ │ ├── parser.benchmark.js │ │ │ │ │ │ ├── sender.benchmark.js │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ └── util.js │ │ │ │ │ ├── bin │ │ │ │ │ │ └── wscat │ │ │ │ │ ├── binding.gyp │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o.d │ │ │ │ │ │ │ │ │ ├── validation.node.d │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ └── validation.o.d │ │ │ │ │ │ │ │ │ └── validation.node.d │ │ │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ └── bufferutil.o │ │ │ │ │ │ │ │ ├── validation.node │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ └── validation.o │ │ │ │ │ │ │ └── validation.node │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── bufferutil.target.mk │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ └── validation.target.mk │ │ │ │ │ ├── builderror.log │ │ │ │ │ ├── doc │ │ │ │ │ │ └── ws.md │ │ │ │ │ ├── examples │ │ │ │ │ │ ├── fileapi │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── uploader.js │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ ├── serverstats-express_3 │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ ├── serverstats │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ └── ssl.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── BufferPool.js │ │ │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ │ │ ├── BufferUtil.js │ │ │ │ │ │ ├── ErrorCodes.js │ │ │ │ │ │ ├── Receiver.hixie.js │ │ │ │ │ │ ├── Receiver.js │ │ │ │ │ │ ├── Sender.hixie.js │ │ │ │ │ │ ├── Sender.js │ │ │ │ │ │ ├── Validation.fallback.js │ │ │ │ │ │ ├── Validation.js │ │ │ │ │ │ ├── WebSocket.js │ │ │ │ │ │ ├── WebSocketServer.js │ │ │ │ │ │ └── browser.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── commander │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── commander.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── nan │ │ │ │ │ │ │ ├── .index.js │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── options.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ └── test.conf │ │ │ │ │ │ │ │ └── options.test.js │ │ │ │ │ │ └── tinycolor │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── tinycolor.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── src │ │ │ │ │ │ ├── bufferutil.cc │ │ │ │ │ │ └── validation.cc │ │ │ │ │ └── test │ │ │ │ │ │ ├── BufferPool.test.js │ │ │ │ │ │ ├── Receiver.hixie.test.js │ │ │ │ │ │ ├── Receiver.test.js │ │ │ │ │ │ ├── Sender.hixie.test.js │ │ │ │ │ │ ├── Sender.test.js │ │ │ │ │ │ ├── Validation.test.js │ │ │ │ │ │ ├── WebSocket.integration.js │ │ │ │ │ │ ├── WebSocket.test.js │ │ │ │ │ │ ├── WebSocketServer.test.js │ │ │ │ │ │ ├── autobahn-server.js │ │ │ │ │ │ ├── autobahn.js │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ ├── agent1-cert.pem │ │ │ │ │ │ ├── agent1-key.pem │ │ │ │ │ │ ├── ca1-cert.pem │ │ │ │ │ │ ├── ca1-key.pem │ │ │ │ │ │ ├── certificate.pem │ │ │ │ │ │ ├── key.pem │ │ │ │ │ │ ├── request.pem │ │ │ │ │ │ └── textfile │ │ │ │ │ │ ├── hybi-common.js │ │ │ │ │ │ └── testserver.js │ │ │ │ └── xmlhttprequest │ │ │ │ │ ├── README.md │ │ │ │ │ ├── autotest.watchr │ │ │ │ │ ├── example │ │ │ │ │ └── demo.js │ │ │ │ │ ├── lib │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── tests │ │ │ │ │ ├── test-constants.js │ │ │ │ │ ├── test-events.js │ │ │ │ │ ├── test-exceptions.js │ │ │ │ │ ├── test-headers.js │ │ │ │ │ ├── test-request-methods.js │ │ │ │ │ ├── test-request-protocols.js │ │ │ │ │ └── testdata.txt │ │ │ │ ├── package.json │ │ │ │ └── test │ │ │ │ ├── events.test.js │ │ │ │ ├── io.test.js │ │ │ │ ├── node │ │ │ │ ├── builder.common.js │ │ │ │ └── builder.test.js │ │ │ │ ├── parser.test.js │ │ │ │ ├── socket.test.js │ │ │ │ ├── util.test.js │ │ │ │ └── worker.js │ │ │ └── package.json │ │ ├── player.js │ │ └── public │ │ ├── index.html │ │ ├── js │ │ ├── Keys.js │ │ ├── Player.js │ │ ├── game.js │ │ └── requestAnimationFrame.js │ │ └── style │ │ ├── game.css │ │ └── reset.css ├── game.js └── node_modules │ └── socket.io │ ├── .npmignore │ ├── .travis.yml │ ├── History.md │ ├── LICENSE │ ├── Makefile │ ├── Readme.md │ ├── benchmarks │ ├── decode.bench.js │ ├── encode.bench.js │ └── runner.js │ ├── index.js │ ├── lib │ ├── logger.js │ ├── manager.js │ ├── namespace.js │ ├── parser.js │ ├── socket.io.js │ ├── socket.js │ ├── static.js │ ├── store.js │ ├── stores │ │ ├── memory.js │ │ └── redis.js │ ├── transport.js │ ├── transports │ │ ├── flashsocket.js │ │ ├── htmlfile.js │ │ ├── http-polling.js │ │ ├── http.js │ │ ├── index.js │ │ ├── jsonp-polling.js │ │ ├── websocket.js │ │ ├── websocket │ │ │ ├── default.js │ │ │ ├── hybi-07-12.js │ │ │ ├── hybi-16.js │ │ │ └── index.js │ │ └── xhr-polling.js │ └── util.js │ ├── node_modules │ ├── base64id │ │ ├── .npmignore │ │ ├── README.md │ │ ├── lib │ │ │ └── base64id.js │ │ └── package.json │ ├── policyfile │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── README.md │ │ ├── doc │ │ │ └── index.html │ │ ├── examples │ │ │ ├── basic.fallback.js │ │ │ └── basic.js │ │ ├── index.js │ │ ├── lib │ │ │ └── server.js │ │ ├── package.json │ │ └── tests │ │ │ ├── ssl │ │ │ ├── ssl.crt │ │ │ └── ssl.private.key │ │ │ └── unit.test.js │ ├── redis │ │ ├── .npmignore │ │ ├── README.md │ │ ├── benches │ │ │ ├── buffer_bench.js │ │ │ ├── hiredis_parser.js │ │ │ ├── re_sub_test.js │ │ │ ├── reconnect_test.js │ │ │ ├── stress │ │ │ │ ├── codec.js │ │ │ │ ├── pubsub │ │ │ │ │ ├── pub.js │ │ │ │ │ ├── run │ │ │ │ │ └── server.js │ │ │ │ ├── rpushblpop │ │ │ │ │ ├── pub.js │ │ │ │ │ ├── run │ │ │ │ │ └── server.js │ │ │ │ └── speed │ │ │ │ │ ├── 00 │ │ │ │ │ ├── plot │ │ │ │ │ ├── size-rate.png │ │ │ │ │ └── speed.js │ │ │ └── sub_quit_test.js │ │ ├── changelog.md │ │ ├── diff_multi_bench_output.js │ │ ├── examples │ │ │ ├── auth.js │ │ │ ├── backpressure_drain.js │ │ │ ├── eval.js │ │ │ ├── extend.js │ │ │ ├── file.js │ │ │ ├── mget.js │ │ │ ├── monitor.js │ │ │ ├── multi.js │ │ │ ├── multi2.js │ │ │ ├── psubscribe.js │ │ │ ├── pub_sub.js │ │ │ ├── simple.js │ │ │ ├── sort.js │ │ │ ├── subqueries.js │ │ │ ├── subquery.js │ │ │ ├── unix_socket.js │ │ │ └── web_server.js │ │ ├── generate_commands.js │ │ ├── index.js │ │ ├── lib │ │ │ ├── commands.js │ │ │ ├── parser │ │ │ │ ├── hiredis.js │ │ │ │ └── javascript.js │ │ │ ├── queue.js │ │ │ ├── to_array.js │ │ │ └── util.js │ │ ├── mem.js │ │ ├── multi_bench.js │ │ ├── package.json │ │ └── test.js │ └── socket.io-client │ │ ├── .npmignore │ │ ├── History.md │ │ ├── Makefile │ │ ├── README.md │ │ ├── bin │ │ └── builder.js │ │ ├── components │ │ ├── component-bind │ │ │ ├── component.json │ │ │ └── index.js │ │ ├── component-emitter │ │ │ ├── component.json │ │ │ └── index.js │ │ ├── component-json-fallback │ │ │ ├── component.json │ │ │ └── index.js │ │ ├── component-json │ │ │ ├── component.json │ │ │ └── index.js │ │ ├── learnboost-engine.io-client │ │ │ ├── component.json │ │ │ └── lib │ │ │ │ ├── emitter.js │ │ │ │ ├── index.js │ │ │ │ ├── parser.js │ │ │ │ ├── socket.js │ │ │ │ ├── transport.js │ │ │ │ ├── transports │ │ │ │ ├── flashsocket.js │ │ │ │ ├── index.js │ │ │ │ ├── polling-jsonp.js │ │ │ │ ├── polling-xhr.js │ │ │ │ ├── polling.js │ │ │ │ └── websocket.js │ │ │ │ └── util.js │ │ ├── learnboost-socket.io-protocol │ │ │ ├── component.json │ │ │ └── index.js │ │ ├── timoxley-to-array │ │ │ ├── component.json │ │ │ └── index.js │ │ └── visionmedia-debug │ │ │ ├── component.json │ │ │ ├── debug.js │ │ │ └── index.js │ │ ├── dist │ │ ├── WebSocketMain.swf │ │ ├── WebSocketMainInsecure.swf │ │ ├── socket.io.js │ │ └── socket.io.min.js │ │ ├── lib │ │ ├── events.js │ │ ├── io.js │ │ ├── json.js │ │ ├── namespace.js │ │ ├── parser.js │ │ ├── socket.js │ │ ├── transport.js │ │ ├── transports │ │ │ ├── flashsocket.js │ │ │ ├── htmlfile.js │ │ │ ├── jsonp-polling.js │ │ │ ├── websocket.js │ │ │ ├── xhr-polling.js │ │ │ └── xhr.js │ │ ├── util.js │ │ └── vendor │ │ │ └── web-socket-js │ │ │ ├── .npmignore │ │ │ ├── README.md │ │ │ ├── WebSocketMain.swf │ │ │ ├── WebSocketMainInsecure.zip │ │ │ ├── flash-src │ │ │ ├── IWebSocketLogger.as │ │ │ ├── WebSocket.as │ │ │ ├── WebSocketEvent.as │ │ │ ├── WebSocketMain.as │ │ │ ├── WebSocketMainInsecure.as │ │ │ ├── build.sh │ │ │ └── com │ │ │ │ ├── adobe │ │ │ │ └── net │ │ │ │ │ └── proxies │ │ │ │ │ └── RFC2817Socket.as │ │ │ │ ├── gsolo │ │ │ │ └── encryption │ │ │ │ │ └── MD5.as │ │ │ │ └── hurlant │ │ │ │ ├── crypto │ │ │ │ ├── Crypto.as │ │ │ │ ├── cert │ │ │ │ │ ├── MozillaRootCertificates.as │ │ │ │ │ ├── X509Certificate.as │ │ │ │ │ └── X509CertificateCollection.as │ │ │ │ ├── hash │ │ │ │ │ ├── HMAC.as │ │ │ │ │ ├── IHMAC.as │ │ │ │ │ ├── IHash.as │ │ │ │ │ ├── MAC.as │ │ │ │ │ ├── MD2.as │ │ │ │ │ ├── MD5.as │ │ │ │ │ ├── SHA1.as │ │ │ │ │ ├── SHA224.as │ │ │ │ │ ├── SHA256.as │ │ │ │ │ └── SHABase.as │ │ │ │ ├── prng │ │ │ │ │ ├── ARC4.as │ │ │ │ │ ├── IPRNG.as │ │ │ │ │ ├── Random.as │ │ │ │ │ └── TLSPRF.as │ │ │ │ ├── rsa │ │ │ │ │ └── RSAKey.as │ │ │ │ ├── symmetric │ │ │ │ │ ├── AESKey.as │ │ │ │ │ ├── BlowFishKey.as │ │ │ │ │ ├── CBCMode.as │ │ │ │ │ ├── CFB8Mode.as │ │ │ │ │ ├── CFBMode.as │ │ │ │ │ ├── CTRMode.as │ │ │ │ │ ├── DESKey.as │ │ │ │ │ ├── ECBMode.as │ │ │ │ │ ├── ICipher.as │ │ │ │ │ ├── IMode.as │ │ │ │ │ ├── IPad.as │ │ │ │ │ ├── IStreamCipher.as │ │ │ │ │ ├── ISymmetricKey.as │ │ │ │ │ ├── IVMode.as │ │ │ │ │ ├── NullPad.as │ │ │ │ │ ├── OFBMode.as │ │ │ │ │ ├── PKCS5.as │ │ │ │ │ ├── SSLPad.as │ │ │ │ │ ├── SimpleIVMode.as │ │ │ │ │ ├── TLSPad.as │ │ │ │ │ ├── TripleDESKey.as │ │ │ │ │ ├── XTeaKey.as │ │ │ │ │ ├── aeskey.pl │ │ │ │ │ └── dump.txt │ │ │ │ ├── tests │ │ │ │ │ ├── AESKeyTest.as │ │ │ │ │ ├── ARC4Test.as │ │ │ │ │ ├── BigIntegerTest.as │ │ │ │ │ ├── BlowFishKeyTest.as │ │ │ │ │ ├── CBCModeTest.as │ │ │ │ │ ├── CFB8ModeTest.as │ │ │ │ │ ├── CFBModeTest.as │ │ │ │ │ ├── CTRModeTest.as │ │ │ │ │ ├── DESKeyTest.as │ │ │ │ │ ├── ECBModeTest.as │ │ │ │ │ ├── HMACTest.as │ │ │ │ │ ├── ITestHarness.as │ │ │ │ │ ├── MD2Test.as │ │ │ │ │ ├── MD5Test.as │ │ │ │ │ ├── OFBModeTest.as │ │ │ │ │ ├── RSAKeyTest.as │ │ │ │ │ ├── SHA1Test.as │ │ │ │ │ ├── SHA224Test.as │ │ │ │ │ ├── SHA256Test.as │ │ │ │ │ ├── TLSPRFTest.as │ │ │ │ │ ├── TestCase.as │ │ │ │ │ ├── TripleDESKeyTest.as │ │ │ │ │ └── XTeaKeyTest.as │ │ │ │ └── tls │ │ │ │ │ ├── BulkCiphers.as │ │ │ │ │ ├── CipherSuites.as │ │ │ │ │ ├── IConnectionState.as │ │ │ │ │ ├── ISecurityParameters.as │ │ │ │ │ ├── KeyExchanges.as │ │ │ │ │ ├── MACs.as │ │ │ │ │ ├── SSLConnectionState.as │ │ │ │ │ ├── SSLEvent.as │ │ │ │ │ ├── SSLSecurityParameters.as │ │ │ │ │ ├── TLSConfig.as │ │ │ │ │ ├── TLSConnectionState.as │ │ │ │ │ ├── TLSEngine.as │ │ │ │ │ ├── TLSError.as │ │ │ │ │ ├── TLSEvent.as │ │ │ │ │ ├── TLSSecurityParameters.as │ │ │ │ │ ├── TLSSocket.as │ │ │ │ │ ├── TLSSocketEvent.as │ │ │ │ │ └── TLSTest.as │ │ │ │ ├── math │ │ │ │ ├── BarrettReduction.as │ │ │ │ ├── BigInteger.as │ │ │ │ ├── ClassicReduction.as │ │ │ │ ├── IReduction.as │ │ │ │ ├── MontgomeryReduction.as │ │ │ │ ├── NullReduction.as │ │ │ │ └── bi_internal.as │ │ │ │ └── util │ │ │ │ ├── ArrayUtil.as │ │ │ │ ├── Base64.as │ │ │ │ ├── Hex.as │ │ │ │ ├── Memory.as │ │ │ │ └── der │ │ │ │ ├── ByteString.as │ │ │ │ ├── DER.as │ │ │ │ ├── IAsn1Type.as │ │ │ │ ├── Integer.as │ │ │ │ ├── OID.as │ │ │ │ ├── ObjectIdentifier.as │ │ │ │ ├── PEM.as │ │ │ │ ├── PrintableString.as │ │ │ │ ├── Sequence.as │ │ │ │ ├── Set.as │ │ │ │ ├── Type.as │ │ │ │ └── UTCTime.as │ │ │ ├── sample.html │ │ │ ├── swfobject.js │ │ │ └── web_socket.js │ │ ├── node_modules │ │ ├── .bin │ │ │ ├── uglifyjs │ │ │ └── wscat │ │ ├── active-x-obfuscator │ │ │ ├── .npmignore │ │ │ ├── Readme.md │ │ │ ├── index.js │ │ │ ├── node_modules │ │ │ │ └── zeparser │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README │ │ │ │ │ ├── Tokenizer.js │ │ │ │ │ ├── ZeParser.js │ │ │ │ │ ├── benchmark.html │ │ │ │ │ ├── index.js │ │ │ │ │ ├── package.json │ │ │ │ │ ├── test-parser.html │ │ │ │ │ ├── test-tokenizer.html │ │ │ │ │ ├── tests.js │ │ │ │ │ └── unicodecategories.js │ │ │ ├── package.json │ │ │ └── test.js │ │ ├── uglify-js │ │ │ ├── .npmignore │ │ │ ├── README.html │ │ │ ├── README.org │ │ │ ├── bin │ │ │ │ └── uglifyjs │ │ │ ├── docstyle.css │ │ │ ├── lib │ │ │ │ ├── object-ast.js │ │ │ │ ├── parse-js.js │ │ │ │ ├── process.js │ │ │ │ └── squeeze-more.js │ │ │ ├── package.json │ │ │ ├── test │ │ │ │ ├── beautify.js │ │ │ │ ├── testparser.js │ │ │ │ └── unit │ │ │ │ │ ├── compress │ │ │ │ │ ├── expected │ │ │ │ │ │ ├── array1.js │ │ │ │ │ │ ├── array2.js │ │ │ │ │ │ ├── array3.js │ │ │ │ │ │ ├── array4.js │ │ │ │ │ │ ├── assignment.js │ │ │ │ │ │ ├── concatstring.js │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ ├── empty-blocks.js │ │ │ │ │ │ ├── forstatement.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── ifreturn.js │ │ │ │ │ │ ├── ifreturn2.js │ │ │ │ │ │ ├── issue10.js │ │ │ │ │ │ ├── issue11.js │ │ │ │ │ │ ├── issue13.js │ │ │ │ │ │ ├── issue14.js │ │ │ │ │ │ ├── issue16.js │ │ │ │ │ │ ├── issue17.js │ │ │ │ │ │ ├── issue20.js │ │ │ │ │ │ ├── issue21.js │ │ │ │ │ │ ├── issue25.js │ │ │ │ │ │ ├── issue27.js │ │ │ │ │ │ ├── issue278.js │ │ │ │ │ │ ├── issue28.js │ │ │ │ │ │ ├── issue29.js │ │ │ │ │ │ ├── issue30.js │ │ │ │ │ │ ├── issue34.js │ │ │ │ │ │ ├── issue4.js │ │ │ │ │ │ ├── issue48.js │ │ │ │ │ │ ├── issue50.js │ │ │ │ │ │ ├── issue53.js │ │ │ │ │ │ ├── issue54.1.js │ │ │ │ │ │ ├── issue68.js │ │ │ │ │ │ ├── issue69.js │ │ │ │ │ │ ├── issue9.js │ │ │ │ │ │ ├── mangle.js │ │ │ │ │ │ ├── null_string.js │ │ │ │ │ │ ├── strict-equals.js │ │ │ │ │ │ ├── var.js │ │ │ │ │ │ ├── whitespace.js │ │ │ │ │ │ └── with.js │ │ │ │ │ └── test │ │ │ │ │ │ ├── array1.js │ │ │ │ │ │ ├── array2.js │ │ │ │ │ │ ├── array3.js │ │ │ │ │ │ ├── array4.js │ │ │ │ │ │ ├── assignment.js │ │ │ │ │ │ ├── concatstring.js │ │ │ │ │ │ ├── const.js │ │ │ │ │ │ ├── empty-blocks.js │ │ │ │ │ │ ├── forstatement.js │ │ │ │ │ │ ├── if.js │ │ │ │ │ │ ├── ifreturn.js │ │ │ │ │ │ ├── ifreturn2.js │ │ │ │ │ │ ├── issue10.js │ │ │ │ │ │ ├── issue11.js │ │ │ │ │ │ ├── issue13.js │ │ │ │ │ │ ├── issue14.js │ │ │ │ │ │ ├── issue16.js │ │ │ │ │ │ ├── issue17.js │ │ │ │ │ │ ├── issue20.js │ │ │ │ │ │ ├── issue21.js │ │ │ │ │ │ ├── issue25.js │ │ │ │ │ │ ├── issue27.js │ │ │ │ │ │ ├── issue278.js │ │ │ │ │ │ ├── issue28.js │ │ │ │ │ │ ├── issue29.js │ │ │ │ │ │ ├── issue30.js │ │ │ │ │ │ ├── issue34.js │ │ │ │ │ │ ├── issue4.js │ │ │ │ │ │ ├── issue48.js │ │ │ │ │ │ ├── issue50.js │ │ │ │ │ │ ├── issue53.js │ │ │ │ │ │ ├── issue54.1.js │ │ │ │ │ │ ├── issue68.js │ │ │ │ │ │ ├── issue69.js │ │ │ │ │ │ ├── issue9.js │ │ │ │ │ │ ├── mangle.js │ │ │ │ │ │ ├── null_string.js │ │ │ │ │ │ ├── strict-equals.js │ │ │ │ │ │ ├── var.js │ │ │ │ │ │ ├── whitespace.js │ │ │ │ │ │ └── with.js │ │ │ │ │ └── scripts.js │ │ │ ├── tmp │ │ │ │ ├── 269.js │ │ │ │ ├── app.js │ │ │ │ ├── embed-tokens.js │ │ │ │ ├── goto.js │ │ │ │ ├── goto2.js │ │ │ │ ├── hoist.js │ │ │ │ ├── instrument.js │ │ │ │ ├── instrument2.js │ │ │ │ ├── liftvars.js │ │ │ │ ├── test.js │ │ │ │ ├── uglify-hangs.js │ │ │ │ └── uglify-hangs2.js │ │ │ └── uglify-js.js │ │ ├── ws │ │ │ ├── .npmignore │ │ │ ├── .travis.yml │ │ │ ├── History.md │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── bench │ │ │ │ ├── parser.benchmark.js │ │ │ │ ├── sender.benchmark.js │ │ │ │ ├── speed.js │ │ │ │ └── util.js │ │ │ ├── bin │ │ │ │ └── wscat │ │ │ ├── binding.gyp │ │ │ ├── build │ │ │ │ ├── Makefile │ │ │ │ ├── Release │ │ │ │ │ ├── .deps │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ └── bufferutil.o.d │ │ │ │ │ │ │ ├── validation.node.d │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── validation.o.d │ │ │ │ │ │ │ └── validation.node.d │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ ├── linker.lock │ │ │ │ │ ├── obj.target │ │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ └── bufferutil.o │ │ │ │ │ │ ├── validation.node │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ └── validation.o │ │ │ │ │ └── validation.node │ │ │ │ ├── binding.Makefile │ │ │ │ ├── bufferutil.target.mk │ │ │ │ ├── config.gypi │ │ │ │ └── validation.target.mk │ │ │ ├── builderror.log │ │ │ ├── doc │ │ │ │ └── ws.md │ │ │ ├── examples │ │ │ │ ├── fileapi │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ └── uploader.js │ │ │ │ │ └── server.js │ │ │ │ ├── serverstats-express_3 │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ │ └── index.html │ │ │ │ │ └── server.js │ │ │ │ ├── serverstats │ │ │ │ │ ├── package.json │ │ │ │ │ ├── public │ │ │ │ │ │ └── index.html │ │ │ │ │ └── server.js │ │ │ │ └── ssl.js │ │ │ ├── index.js │ │ │ ├── lib │ │ │ │ ├── BufferPool.js │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ ├── BufferUtil.js │ │ │ │ ├── ErrorCodes.js │ │ │ │ ├── Receiver.hixie.js │ │ │ │ ├── Receiver.js │ │ │ │ ├── Sender.hixie.js │ │ │ │ ├── Sender.js │ │ │ │ ├── Validation.fallback.js │ │ │ │ ├── Validation.js │ │ │ │ ├── WebSocket.js │ │ │ │ ├── WebSocketServer.js │ │ │ │ └── browser.js │ │ │ ├── node_modules │ │ │ │ ├── commander │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── commander.js │ │ │ │ │ └── package.json │ │ │ │ ├── nan │ │ │ │ │ ├── .index.js │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── nan.h │ │ │ │ │ └── package.json │ │ │ │ ├── options │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── lib │ │ │ │ │ │ └── options.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ └── test.conf │ │ │ │ │ │ └── options.test.js │ │ │ │ └── tinycolor │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── example.js │ │ │ │ │ ├── package.json │ │ │ │ │ └── tinycolor.js │ │ │ ├── package.json │ │ │ ├── src │ │ │ │ ├── bufferutil.cc │ │ │ │ └── validation.cc │ │ │ └── test │ │ │ │ ├── BufferPool.test.js │ │ │ │ ├── Receiver.hixie.test.js │ │ │ │ ├── Receiver.test.js │ │ │ │ ├── Sender.hixie.test.js │ │ │ │ ├── Sender.test.js │ │ │ │ ├── Validation.test.js │ │ │ │ ├── WebSocket.integration.js │ │ │ │ ├── WebSocket.test.js │ │ │ │ ├── WebSocketServer.test.js │ │ │ │ ├── autobahn-server.js │ │ │ │ ├── autobahn.js │ │ │ │ ├── fixtures │ │ │ │ ├── agent1-cert.pem │ │ │ │ ├── agent1-key.pem │ │ │ │ ├── ca1-cert.pem │ │ │ │ ├── ca1-key.pem │ │ │ │ ├── certificate.pem │ │ │ │ ├── key.pem │ │ │ │ ├── request.pem │ │ │ │ └── textfile │ │ │ │ ├── hybi-common.js │ │ │ │ └── testserver.js │ │ └── xmlhttprequest │ │ │ ├── README.md │ │ │ ├── autotest.watchr │ │ │ ├── example │ │ │ └── demo.js │ │ │ ├── lib │ │ │ └── XMLHttpRequest.js │ │ │ ├── package.json │ │ │ └── tests │ │ │ ├── test-constants.js │ │ │ ├── test-events.js │ │ │ ├── test-exceptions.js │ │ │ ├── test-headers.js │ │ │ ├── test-request-methods.js │ │ │ ├── test-request-protocols.js │ │ │ └── testdata.txt │ │ ├── package.json │ │ └── test │ │ ├── events.test.js │ │ ├── io.test.js │ │ ├── node │ │ ├── builder.common.js │ │ └── builder.test.js │ │ ├── parser.test.js │ │ ├── socket.test.js │ │ ├── util.test.js │ │ └── worker.js │ └── package.json ├── Pong2 └── Pong2.html ├── README.md ├── SummerRun ├── cocos2d.js ├── index.html ├── res │ ├── RunnerFinal │ │ ├── RunnerFinal.ExportJson │ │ ├── RunnerFinal0 - Copy.png │ │ ├── RunnerFinal0.plist │ │ └── RunnerFinal0.png │ ├── audios │ │ ├── jump.wav │ │ ├── menuSelect.wav │ │ ├── run.wav │ │ ├── seaBackground.mp3 │ │ └── summerSong.mp3 │ ├── fonts │ │ ├── PipeDream.ttf │ │ └── Zian.ttf │ ├── images │ │ ├── LUDUS.ico │ │ ├── box.png │ │ ├── bumper.png │ │ ├── buttons │ │ │ ├── btnCreditsSelected_256-34.png │ │ │ ├── btnCredits_256-34.png │ │ │ ├── btnHowToPlaySelected_381-34.png │ │ │ ├── btnHowToPlay_381-34.png │ │ │ ├── btnPlayMultiSelected_155-34.png │ │ │ ├── btnPlayMulti_155-34.png │ │ │ ├── btnPlaySelected_155-34.png │ │ │ └── btnPlay_155-34.png │ │ ├── chain.png │ │ ├── title.png │ │ ├── woodCircle.png │ │ ├── woodExtraLarge.png │ │ ├── woodExtraSmallVertical.png │ │ ├── woodLarge.png │ │ ├── woodLargeVertical.png │ │ ├── woodMedium.png │ │ ├── woodMediumVertical.png │ │ ├── woodSmall.png │ │ └── woodSmallVertical.png │ ├── maps │ │ ├── background.png │ │ ├── background_summer.tmx │ │ ├── background_summer_clouds.tmx │ │ ├── cave.png │ │ ├── coco.png │ │ ├── cocoBlur.png │ │ ├── cocoBlur2.png │ │ ├── map0.tmx │ │ ├── map0background.tmx │ │ ├── map0background2.tmx │ │ ├── map1.tmx │ │ ├── map10.tmx │ │ ├── map2.tmx │ │ ├── map3.tmx │ │ ├── map4.tmx │ │ ├── map5.tmx │ │ ├── map6.tmx │ │ ├── map7.tmx │ │ ├── map8.tmx │ │ ├── map9.tmx │ │ ├── mapTransition.tmx │ │ ├── objectsTile.png │ │ ├── tilesSummer.png │ │ └── tiles_spring.png │ └── screenshots │ │ ├── credits_800-480.png │ │ ├── splashGame_800-480.png │ │ └── splashTeam_800-480.png └── summerRun.js ├── bandeira ├── Pong2 │ └── Pong2.html └── index.html ├── breakout2 ├── 1. Breakout (fundo branco com preto).html ├── 2. Breakout (fundo preto com branco).html ├── 3. Breakout (tudo preto com branco).html ├── Breakout.xlsx ├── beep.mp3 └── blackstar.mp3 ├── cocos2d ├── Aviao.rar ├── Aviao │ ├── Aviao │ │ ├── aviao.js │ │ ├── aviaogirando.js │ │ ├── cocos2d.js │ │ ├── index.html │ │ ├── jet.png │ │ └── main.js │ ├── aviao.js │ ├── aviaogirando.js │ ├── cocos2d.js │ ├── index.html │ ├── jet.png │ └── main.js ├── Cocos2d-html5 │ ├── AUTHORS.txt │ ├── CHANGELOG.txt │ ├── CocosDenshion │ │ └── SimpleAudioEngine.js │ ├── HelloHTML5World │ │ ├── build.xml │ │ ├── cocos2d.js │ │ ├── index.html │ │ ├── main.js │ │ ├── res │ │ │ ├── CloseNormal.png │ │ │ ├── CloseSelected.png │ │ │ ├── HelloWorld.png │ │ │ └── favicon.ico │ │ └── src │ │ │ ├── myApp.js │ │ │ └── resource.js │ ├── README.mdown │ ├── box2d │ │ └── box2d.js │ ├── chipmunk │ │ └── chipmunk.js │ ├── cocos2d │ │ ├── CCCamera.js │ │ ├── CCConfiguration.js │ │ ├── CCDirector.js │ │ ├── CCDrawingPrimitives.js │ │ ├── CCLoader.js │ │ ├── CCScheduler.js │ │ ├── actions │ │ │ ├── CCAction.js │ │ │ ├── CCActionCamera.js │ │ │ ├── CCActionCatmullRom.js │ │ │ ├── CCActionEase.js │ │ │ ├── CCActionGrid.js │ │ │ ├── CCActionGrid3D.js │ │ │ ├── CCActionInstant.js │ │ │ ├── CCActionInterval.js │ │ │ ├── CCActionManager.js │ │ │ ├── CCActionPageTurn3D.js │ │ │ ├── CCActionProgressTimer.js │ │ │ ├── CCActionTiledGrid.js │ │ │ └── CCActionTween.js │ │ ├── base_nodes │ │ │ ├── CCAtlasNode.js │ │ │ ├── CCNode.js │ │ │ └── CCdomNode.js │ │ ├── build.xml │ │ ├── cocoa │ │ │ ├── CCAffineTransform.js │ │ │ ├── CCGeometry.js │ │ │ ├── CCNS.js │ │ │ └── CCSet.js │ │ ├── cocos2d_externs.js │ │ ├── draw_nodes │ │ │ └── CCDrawNode.js │ │ ├── effects │ │ │ ├── CCGrabber.js │ │ │ └── CCGrid.js │ │ ├── kazmath │ │ │ ├── GL │ │ │ │ ├── mat4stack.js │ │ │ │ └── matrix.js │ │ │ ├── aabb.js │ │ │ ├── mat3.js │ │ │ ├── mat4.js │ │ │ ├── plane.js │ │ │ ├── quaternion.js │ │ │ ├── ray2.js │ │ │ ├── utility.js │ │ │ ├── vec2.js │ │ │ ├── vec3.js │ │ │ └── vec4.js │ │ ├── keyboard_dispatcher │ │ │ ├── CCKeyboardDelegate.js │ │ │ └── CCKeyboardDispatcher.js │ │ ├── label_nodes │ │ │ ├── CCLabelAtlas.js │ │ │ ├── CCLabelBMFont.js │ │ │ └── CCLabelTTF.js │ │ ├── layers_scenes_transitions_nodes │ │ │ ├── CCLayer.js │ │ │ ├── CCScene.js │ │ │ ├── CCTransition.js │ │ │ ├── CCTransitionPageTurn.js │ │ │ └── CCTransitionProgress.js │ │ ├── menu_nodes │ │ │ ├── CCMenu.js │ │ │ └── CCMenuItem.js │ │ ├── misc_nodes │ │ │ ├── CCClippingNode.js │ │ │ ├── CCMotionStreak.js │ │ │ ├── CCProgressTimer.js │ │ │ └── CCRenderTexture.js │ │ ├── particle_nodes │ │ │ ├── CCParticleBatchNode.js │ │ │ ├── CCParticleExamples.js │ │ │ └── CCParticleSystem.js │ │ ├── physics_nodes │ │ │ ├── CCPhysicsDebugNode.js │ │ │ └── CCPhysicsSprite.js │ │ ├── platform │ │ │ ├── AppControl.js │ │ │ ├── CCAccelerometer.js │ │ │ ├── CCApplication.js │ │ │ ├── CCClass.js │ │ │ ├── CCCommon.js │ │ │ ├── CCConfig.js │ │ │ ├── CCEGLView.js │ │ │ ├── CCFileUtils.js │ │ │ ├── CCImage.js │ │ │ ├── CCMacro.js │ │ │ ├── CCSAXParser.js │ │ │ ├── CCTypes.js │ │ │ ├── Sys.js │ │ │ ├── ZipUtils.js │ │ │ ├── base64.js │ │ │ ├── gzip.js │ │ │ ├── jsloader.js │ │ │ ├── miniFramework.js │ │ │ └── zlib.min.js │ │ ├── shaders │ │ │ ├── CCGLProgram.js │ │ │ ├── CCGLStateCache.js │ │ │ ├── CCShaderCache.js │ │ │ └── CCShaders.js │ │ ├── sprite_nodes │ │ │ ├── CCAnimation.js │ │ │ ├── CCAnimationCache.js │ │ │ ├── CCSprite.js │ │ │ ├── CCSpriteBatchNode.js │ │ │ ├── CCSpriteFrame.js │ │ │ └── CCSpriteFrameCache.js │ │ ├── support │ │ │ ├── CCNotificationCenter.js │ │ │ ├── CCPNGReader.js │ │ │ ├── CCPointExtension.js │ │ │ ├── CCTGAlib.js │ │ │ ├── CCTIFFReader.js │ │ │ ├── CCUserDefault.js │ │ │ ├── CCVertex.js │ │ │ ├── TransformUtils.js │ │ │ └── component │ │ │ │ ├── CCComponent.js │ │ │ │ └── CCComponentContainer.js │ │ ├── text_input_node │ │ │ ├── CCIMEDispatcher.js │ │ │ └── CCTextFieldTTF.js │ │ ├── textures │ │ │ ├── CCTexture2D.js │ │ │ ├── CCTextureAtlas.js │ │ │ └── CCTextureCache.js │ │ ├── tileMap_parallax_nodes │ │ │ ├── CCParallaxNode.js │ │ │ ├── CCTMXLayer.js │ │ │ ├── CCTMXObjectGroup.js │ │ │ ├── CCTMXTiledMap.js │ │ │ ├── CCTMXXMLParser.js │ │ │ └── CCTileMapAtlas.js │ │ └── touch_dispatcher │ │ │ ├── CCMouseDispatcher.js │ │ │ ├── CCTouchDelegateProtocol.js │ │ │ ├── CCTouchDispatcher.js │ │ │ └── CCTouchHandler.js │ ├── extensions │ │ ├── CCBReader │ │ │ ├── CCBAnimationManager.js │ │ │ ├── CCBKeyframe.js │ │ │ ├── CCBReader.js │ │ │ ├── CCBReaderUtil.js │ │ │ ├── CCBRelativePositioning.js │ │ │ ├── CCBSequence.js │ │ │ ├── CCBValue.js │ │ │ ├── CCControlLoader.js │ │ │ ├── CCNodeLoader.js │ │ │ ├── CCNodeLoaderLibrary.js │ │ │ └── CCSpriteLoader.js │ │ ├── CCEditBox.js │ │ ├── CocoStudio │ │ │ └── Armature │ │ │ │ ├── CCArmature.js │ │ │ │ ├── CCBone.js │ │ │ │ ├── animation │ │ │ │ ├── CCArmatureAnimation.js │ │ │ │ ├── CCProcessBase.js │ │ │ │ └── CCTween.js │ │ │ │ ├── datas │ │ │ │ └── CCDatas.js │ │ │ │ ├── display │ │ │ │ ├── CCBatchNode.js │ │ │ │ ├── CCDecorativeDisplay.js │ │ │ │ ├── CCDisplayFactory.js │ │ │ │ ├── CCDisplayManager.js │ │ │ │ └── CCSkin.js │ │ │ │ ├── physics │ │ │ │ └── CCColliderDetector.js │ │ │ │ └── utils │ │ │ │ ├── CCArmatureDefine.js │ │ │ │ ├── CCDataReaderHelper.js │ │ │ │ ├── CCSpriteFrameCacheHelper.js │ │ │ │ ├── CCTransformHelp.js │ │ │ │ ├── CCTweenFunction.js │ │ │ │ ├── CCUtilMath.js │ │ │ │ └── CSArmatureDataManager.js │ │ ├── GUI │ │ │ ├── CCControlExtension │ │ │ │ ├── CCControl.js │ │ │ │ ├── CCControlButton.js │ │ │ │ ├── CCControlColourPicker.js │ │ │ │ ├── CCControlHuePicker.js │ │ │ │ ├── CCControlPotentiometer.js │ │ │ │ ├── CCControlSaturationBrightnessPicker.js │ │ │ │ ├── CCControlSlider.js │ │ │ │ ├── CCControlStepper.js │ │ │ │ ├── CCControlSwitch.js │ │ │ │ ├── CCControlUtils.js │ │ │ │ ├── CCInvocation.js │ │ │ │ ├── CCMenuPassive.js │ │ │ │ └── CCScale9Sprite.js │ │ │ └── CCScrollView │ │ │ │ ├── CCScrollView.js │ │ │ │ ├── CCSorting.js │ │ │ │ └── CCTableView.js │ │ └── PluginX │ │ │ ├── plugins │ │ │ ├── SocialFacebook.js │ │ │ ├── SocialQQWeibo.js │ │ │ ├── SocialQzone.js │ │ │ ├── SocialTwitter.js │ │ │ └── SocialWeibo.js │ │ │ ├── protocols │ │ │ ├── Config.js │ │ │ ├── PluginFactory.js │ │ │ ├── PluginManager.js │ │ │ ├── PluginProtocol.js │ │ │ ├── PluginUtils.js │ │ │ └── ProtocolSocial.js │ │ │ └── samples │ │ │ └── HelloSocial │ │ │ ├── cocos2d.js │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── res │ │ │ ├── CloseNormal.png │ │ │ ├── CloseSelected.png │ │ │ ├── background.png │ │ │ ├── facebook.gif │ │ │ ├── qqweibo.gif │ │ │ ├── qzone.gif │ │ │ ├── snweibo.gif │ │ │ └── twitter.gif │ │ │ └── src │ │ │ ├── MySocialManager.js │ │ │ ├── myApp.js │ │ │ └── resource.js │ ├── index.html │ ├── lib │ │ └── Cocos2d-html5-v2.2.min.js │ ├── licenses │ │ ├── LICENSE_cocos2d-html5.txt │ │ ├── LICENSE_cocos2d-x.txt │ │ └── LICENSE_zlib.js.txt │ ├── samples │ │ ├── README.md │ │ ├── games │ │ │ ├── FruitAttack │ │ │ │ ├── audio │ │ │ │ │ ├── effect_bombPattern.mp3 │ │ │ │ │ ├── effect_bombPattern.ogg │ │ │ │ │ ├── effect_buttonClick.mp3 │ │ │ │ │ ├── effect_buttonClick.ogg │ │ │ │ │ ├── effect_clearPattern.mp3 │ │ │ │ │ ├── effect_clearPattern.ogg │ │ │ │ │ ├── effect_game_fail.mp3 │ │ │ │ │ ├── effect_game_fail.ogg │ │ │ │ │ ├── effect_game_pass.mp3 │ │ │ │ │ ├── effect_game_pass.ogg │ │ │ │ │ ├── effect_ice.mp3 │ │ │ │ │ ├── effect_ice.ogg │ │ │ │ │ ├── effect_noclear.mp3 │ │ │ │ │ ├── effect_noclear.ogg │ │ │ │ │ ├── effect_timewarning.mp3 │ │ │ │ │ ├── effect_timewarning.ogg │ │ │ │ │ ├── effect_unswap.mp3 │ │ │ │ │ ├── effect_unswap.ogg │ │ │ │ │ ├── musicByFoxSynergy.mp3 │ │ │ │ │ └── musicByFoxSynergy.ogg │ │ │ │ ├── cocos2d.js │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ ├── res │ │ │ │ │ ├── PatternBg.png │ │ │ │ │ ├── ProgressBarBack.png │ │ │ │ │ ├── ProgressBarFront.png │ │ │ │ │ ├── background.jpg │ │ │ │ │ ├── baseResource.plist │ │ │ │ │ ├── baseResource.png │ │ │ │ │ ├── btn │ │ │ │ │ │ ├── btnStartGameDown.png │ │ │ │ │ │ └── btnStartGameNor.png │ │ │ │ │ └── logo.png │ │ │ │ ├── resultLayer │ │ │ │ │ ├── btnResultRestart.png │ │ │ │ │ ├── btnResultRestartDown.png │ │ │ │ │ └── star.png │ │ │ │ └── src │ │ │ │ │ ├── CCNotificationCenter.js │ │ │ │ │ ├── GameData.js │ │ │ │ │ ├── Pattern.js │ │ │ │ │ ├── PatternMatrix.js │ │ │ │ │ ├── ResultLayer.js │ │ │ │ │ └── WelcomeLayer.js │ │ │ └── MoonWarriors │ │ │ │ ├── MoonWarriors-html5.js │ │ │ │ ├── MoonWarriors-jsb.js │ │ │ │ ├── Platform │ │ │ │ ├── OSX │ │ │ │ │ ├── English.lproj │ │ │ │ │ │ ├── InfoPlist.strings │ │ │ │ │ │ └── MoonWarriors.xib │ │ │ │ │ └── Info.plist │ │ │ │ └── iOS │ │ │ │ │ └── Info.plist │ │ │ │ ├── build.xml │ │ │ │ ├── index.html │ │ │ │ ├── main.js │ │ │ │ ├── res │ │ │ │ ├── Music │ │ │ │ │ ├── bgMusic.mp3 │ │ │ │ │ ├── bgMusic.ogg │ │ │ │ │ ├── buttonEffet.mp3 │ │ │ │ │ ├── buttonEffet.ogg │ │ │ │ │ ├── explodeEffect.mp3 │ │ │ │ │ ├── explodeEffect.ogg │ │ │ │ │ ├── fireEffect.mp3 │ │ │ │ │ ├── fireEffect.ogg │ │ │ │ │ ├── mainMainMusic.mp3 │ │ │ │ │ ├── mainMainMusic.ogg │ │ │ │ │ ├── shipDestroyEffect.mp3 │ │ │ │ │ └── shipDestroyEffect.ogg │ │ │ │ ├── arial-14.GlyphProject │ │ │ │ ├── arial-14.fnt │ │ │ │ ├── arial-14.png │ │ │ │ ├── b01.plist │ │ │ │ ├── b01.png │ │ │ │ ├── cocos2d-html5.png │ │ │ │ ├── explode.plist │ │ │ │ ├── explosion.plist │ │ │ │ ├── explosion.png │ │ │ │ ├── flare.jpg │ │ │ │ ├── gameOver.png │ │ │ │ ├── level01.tmx │ │ │ │ ├── loading.png │ │ │ │ ├── logo.png │ │ │ │ ├── menu.png │ │ │ │ ├── menuTitle.png │ │ │ │ ├── textureOpaquePack.plist │ │ │ │ ├── textureOpaquePack.png │ │ │ │ ├── textureTransparentPack.plist │ │ │ │ └── textureTransparentPack.png │ │ │ │ ├── simulator.html │ │ │ │ ├── simulator │ │ │ │ ├── imgs │ │ │ │ │ ├── 1024x768.png │ │ │ │ │ ├── 1136x640.png │ │ │ │ │ ├── 1280x720.png │ │ │ │ │ ├── 480x320.png │ │ │ │ │ ├── 800x480.png │ │ │ │ │ ├── 854x480.png │ │ │ │ │ ├── 960x540.png │ │ │ │ │ ├── 960x640.png │ │ │ │ │ ├── device.png │ │ │ │ │ ├── play.png │ │ │ │ │ └── rotate.png │ │ │ │ └── js │ │ │ │ │ └── miniFramework.js │ │ │ │ └── src │ │ │ │ ├── AboutLayer.js │ │ │ │ ├── Background.js │ │ │ │ ├── Bullet.js │ │ │ │ ├── Effect.js │ │ │ │ ├── Enemy.js │ │ │ │ ├── Explosion.js │ │ │ │ ├── GameControlMenu.js │ │ │ │ ├── GameController.js │ │ │ │ ├── GameLayer.js │ │ │ │ ├── GameOver.js │ │ │ │ ├── HitEffect.js │ │ │ │ ├── LevelManager.js │ │ │ │ ├── Resource.js │ │ │ │ ├── SettingsLayer.js │ │ │ │ ├── Ship.js │ │ │ │ ├── SparkEffect.js │ │ │ │ ├── SysMenu.js │ │ │ │ └── config │ │ │ │ ├── EnemyType.js │ │ │ │ ├── GameConfig.js │ │ │ │ └── Level.js │ │ └── tests │ │ │ ├── ActionManagerTest │ │ │ └── ActionManagerTest.js │ │ │ ├── ActionsTest │ │ │ └── ActionsTest.js │ │ │ ├── AdvanceCompiler │ │ │ ├── CocosBuilderCompiler.js │ │ │ └── test_custom_externs.js │ │ │ ├── BaseTestLayer │ │ │ └── BaseTestLayer.js │ │ │ ├── Box2dTest │ │ │ └── Box2dTest.js │ │ │ ├── ChipmunkTest │ │ │ └── ChipmunkTest.js │ │ │ ├── ClickAndMoveTest │ │ │ └── ClickAndMoveTest.js │ │ │ ├── ClippingNodeTest │ │ │ └── ClippingNodeTest.js │ │ │ ├── CocosDenshionTest │ │ │ └── CocosDenshionTest.js │ │ │ ├── CocosNodeTest │ │ │ └── CocosNodeTest.js │ │ │ ├── CurrentLanguageTest │ │ │ └── CurrentLanguageTest.js │ │ │ ├── DrawPrimitivesTest │ │ │ └── DrawPrimitivesTest.js │ │ │ ├── EaseActionsTest │ │ │ └── EaseActionsTest.js │ │ │ ├── EffectsAdvancedTest │ │ │ └── EffectsAdvancedTest.js │ │ │ ├── EffectsTest │ │ │ └── EffectsTest.js │ │ │ ├── EventTest │ │ │ └── EventTest.js │ │ │ ├── ExtensionsTest │ │ │ ├── CocoStudioArmatureTest │ │ │ │ └── ArmatureTest.js │ │ │ ├── CocosBuilderTest │ │ │ │ ├── AnimationsTest │ │ │ │ │ └── AnimationsTestLayer.js │ │ │ │ ├── ButtonTest │ │ │ │ │ └── ButtonTestLayer.js │ │ │ │ ├── CocosBuilderTest.js │ │ │ │ ├── HelloCocosBuilder │ │ │ │ │ └── HelloCocosBuilderLayer.js │ │ │ │ ├── LabelTest │ │ │ │ │ └── LabelTestLayer.js │ │ │ │ ├── MenuTest │ │ │ │ │ └── MenuTestLayer.js │ │ │ │ ├── ParticleSystemTest │ │ │ │ │ └── ParticleSystemTestLayer.js │ │ │ │ ├── ScrollViewTest │ │ │ │ │ └── ScrollViewTestLayer.js │ │ │ │ ├── SpriteTest │ │ │ │ │ └── SpriteTestLayer.js │ │ │ │ ├── TestHeader │ │ │ │ │ └── TestHeaderLayer.js │ │ │ │ └── TimelineCallbackTest │ │ │ │ │ └── TimelineCallbackTestLayer.js │ │ │ ├── ControlExtensionTest │ │ │ │ ├── CCControlButtonTest │ │ │ │ │ └── CCControlButtonTest.js │ │ │ │ ├── CCControlColourPickerTest │ │ │ │ │ └── CCControlColourPickerTest.js │ │ │ │ ├── CCControlPotentiometerTest │ │ │ │ │ └── CCControlPotentiometerTest.js │ │ │ │ ├── CCControlScene.js │ │ │ │ ├── CCControlSceneManager.js │ │ │ │ ├── CCControlSliderTest │ │ │ │ │ └── CCControlSliderTest.js │ │ │ │ ├── CCControlStepperTest │ │ │ │ │ └── CCControlStepperTest.js │ │ │ │ └── CCControlSwitchTest │ │ │ │ │ └── CCControlSwitchTest.js │ │ │ ├── EditBoxTest │ │ │ │ └── EditBoxTest.js │ │ │ ├── ExtensionsTest.js │ │ │ ├── NetworkTest │ │ │ │ └── WebSocketTest.js │ │ │ ├── S9SpriteTest │ │ │ │ └── S9SpriteTest.js │ │ │ └── TableViewTest │ │ │ │ └── TableViewTestScene.js │ │ │ ├── FileUtils │ │ │ ├── FileUtilsTest.js │ │ │ ├── lookup-desktop.plist │ │ │ ├── lookup-html5.plist │ │ │ └── lookup-mobile.plist │ │ │ ├── FontTest │ │ │ └── FontTest.js │ │ │ ├── IntervalTest │ │ │ └── IntervalTest.js │ │ │ ├── LabelTest │ │ │ └── LabelTest.js │ │ │ ├── LayerTest │ │ │ └── LayerTest.js │ │ │ ├── MenuTest │ │ │ └── MenuTest.js │ │ │ ├── MotionStreakTest │ │ │ └── MotionStreakTest.js │ │ │ ├── OpenGLTest │ │ │ └── OpenGLTest.js │ │ │ ├── ParallaxTest │ │ │ └── ParallaxTest.js │ │ │ ├── ParticleTest │ │ │ └── ParticleTest.js │ │ │ ├── PerformanceTest │ │ │ ├── PerformanceAnimationTest.js │ │ │ ├── PerformanceNodeChildrenTest.js │ │ │ ├── PerformanceParticleTest.js │ │ │ ├── PerformanceSpriteTest.js │ │ │ ├── PerformanceSpriteTest2.js │ │ │ ├── PerformanceTest.js │ │ │ ├── PerformanceTextureTest.js │ │ │ ├── PerformanceTouchesTest.js │ │ │ ├── PerformanceVirtualMachineTest.js │ │ │ └── seedrandom.js │ │ │ ├── Presentation │ │ │ └── Presentation.js │ │ │ ├── ProgressActionsTest │ │ │ └── ProgressActionsTest.js │ │ │ ├── RenderTextureTest │ │ │ └── RenderTextureTest.js │ │ │ ├── RotateWorldTest │ │ │ └── RotateWorldTest.js │ │ │ ├── SceneTest │ │ │ └── SceneTest.js │ │ │ ├── SchedulerTest │ │ │ └── SchedulerTest.js │ │ │ ├── SpriteTest │ │ │ └── SpriteTest.js │ │ │ ├── SysTest │ │ │ └── SysTest.js │ │ │ ├── TextInputTest │ │ │ └── TextInputTest.js │ │ │ ├── TextureCacheTest │ │ │ └── TextureCacheTest.js │ │ │ ├── TileMapTest │ │ │ └── TileMapTest.js │ │ │ ├── TouchesTest │ │ │ ├── Ball.js │ │ │ ├── Paddle.js │ │ │ └── TouchesTest.js │ │ │ ├── TransitionsTest │ │ │ └── TransitionsTest.js │ │ │ ├── UnitTest │ │ │ └── UnitTest.js │ │ │ ├── XHRTest │ │ │ └── XHRTest.js │ │ │ ├── build.xml │ │ │ ├── index.html │ │ │ ├── main.js │ │ │ ├── res │ │ │ ├── CloseNormal.png │ │ │ ├── CocosBuilderExample.ccbproj │ │ │ ├── Images │ │ │ │ ├── BoilingFoam.plist │ │ │ │ ├── Fog.png │ │ │ │ ├── HelloWorld.png │ │ │ │ ├── Icon.png │ │ │ │ ├── SendScoreButton.png │ │ │ │ ├── SendScoreButtonPressed.png │ │ │ │ ├── arrows-hd.png │ │ │ │ ├── arrows.png │ │ │ │ ├── arrowsBar-hd.png │ │ │ │ ├── arrowsBar.png │ │ │ │ ├── atlastest.png │ │ │ │ ├── b1.png │ │ │ │ ├── b2.png │ │ │ │ ├── background.png │ │ │ │ ├── background1.png │ │ │ │ ├── background2.png │ │ │ │ ├── background3.png │ │ │ │ ├── ball.png │ │ │ │ ├── blocks.png │ │ │ │ ├── blocks9.png │ │ │ │ ├── blocks9ss.plist │ │ │ │ ├── blocks9ss.png │ │ │ │ ├── btn-about-normal.png │ │ │ │ ├── btn-about-selected.png │ │ │ │ ├── btn-highscores-normal.png │ │ │ │ ├── btn-highscores-selected.png │ │ │ │ ├── btn-play-normal.png │ │ │ │ ├── btn-play-selected.png │ │ │ │ ├── bugs │ │ │ │ │ ├── RetinaDisplay.jpg │ │ │ │ │ ├── bug886.jpg │ │ │ │ │ ├── bug886.png │ │ │ │ │ ├── circle.plist │ │ │ │ │ ├── circle.png │ │ │ │ │ ├── corner.png │ │ │ │ │ ├── edge.png │ │ │ │ │ ├── fill.png │ │ │ │ │ └── picture.png │ │ │ │ ├── close.png │ │ │ │ ├── cocos2dbanner.png │ │ │ │ ├── f1.png │ │ │ │ ├── f2.png │ │ │ │ ├── favicon.ico │ │ │ │ ├── fire.png │ │ │ │ ├── fps_images.png │ │ │ │ ├── grossini.png │ │ │ │ ├── grossini_dance_01.png │ │ │ │ ├── grossini_dance_02.png │ │ │ │ ├── grossini_dance_03.png │ │ │ │ ├── grossini_dance_04.png │ │ │ │ ├── grossini_dance_05.png │ │ │ │ ├── grossini_dance_06.png │ │ │ │ ├── grossini_dance_07.png │ │ │ │ ├── grossini_dance_08.png │ │ │ │ ├── grossini_dance_09.png │ │ │ │ ├── grossini_dance_10.png │ │ │ │ ├── grossini_dance_11.png │ │ │ │ ├── grossini_dance_12.png │ │ │ │ ├── grossini_dance_13.png │ │ │ │ ├── grossini_dance_14.png │ │ │ │ ├── grossini_dance_atlas-mono.png │ │ │ │ ├── grossini_dance_atlas.png │ │ │ │ ├── grossini_pvr_rgba4444.pvr │ │ │ │ ├── grossini_pvr_rgba8888.pvr │ │ │ │ ├── grossinis_sister1.png │ │ │ │ ├── grossinis_sister2.png │ │ │ │ ├── hole_effect.png │ │ │ │ ├── hole_stencil.png │ │ │ │ ├── landscape-1024x1024.png │ │ │ │ ├── menuitemsprite.png │ │ │ │ ├── movement.png │ │ │ │ ├── paddle.png │ │ │ │ ├── particles-hd.png │ │ │ │ ├── particles.png │ │ │ │ ├── piece.png │ │ │ │ ├── powered.png │ │ │ │ ├── r1.png │ │ │ │ ├── r2.png │ │ │ │ ├── shapemode.png │ │ │ │ ├── snow.png │ │ │ │ ├── sprites_test │ │ │ │ │ ├── sprite-0-0.png │ │ │ │ │ ├── sprite-0-1.png │ │ │ │ │ ├── sprite-0-2.png │ │ │ │ │ ├── sprite-0-3.png │ │ │ │ │ ├── sprite-0-4.png │ │ │ │ │ ├── sprite-0-5.png │ │ │ │ │ ├── sprite-0-6.png │ │ │ │ │ ├── sprite-0-7.png │ │ │ │ │ ├── sprite-1-0.png │ │ │ │ │ ├── sprite-1-1.png │ │ │ │ │ ├── sprite-1-2.png │ │ │ │ │ ├── sprite-1-3.png │ │ │ │ │ ├── sprite-1-4.png │ │ │ │ │ ├── sprite-1-5.png │ │ │ │ │ ├── sprite-1-6.png │ │ │ │ │ ├── sprite-1-7.png │ │ │ │ │ ├── sprite-2-0.png │ │ │ │ │ ├── sprite-2-1.png │ │ │ │ │ ├── sprite-2-2.png │ │ │ │ │ ├── sprite-2-3.png │ │ │ │ │ ├── sprite-2-4.png │ │ │ │ │ ├── sprite-2-5.png │ │ │ │ │ ├── sprite-2-6.png │ │ │ │ │ ├── sprite-2-7.png │ │ │ │ │ ├── sprite-3-0.png │ │ │ │ │ ├── sprite-3-1.png │ │ │ │ │ ├── sprite-3-2.png │ │ │ │ │ ├── sprite-3-3.png │ │ │ │ │ ├── sprite-3-4.png │ │ │ │ │ ├── sprite-3-5.png │ │ │ │ │ ├── sprite-3-6.png │ │ │ │ │ ├── sprite-3-7.png │ │ │ │ │ ├── sprite-4-0.png │ │ │ │ │ ├── sprite-4-1.png │ │ │ │ │ ├── sprite-4-2.png │ │ │ │ │ ├── sprite-4-3.png │ │ │ │ │ ├── sprite-4-4.png │ │ │ │ │ ├── sprite-4-5.png │ │ │ │ │ ├── sprite-4-6.png │ │ │ │ │ ├── sprite-4-7.png │ │ │ │ │ ├── sprite-5-0.png │ │ │ │ │ ├── sprite-5-1.png │ │ │ │ │ ├── sprite-5-2.png │ │ │ │ │ ├── sprite-5-3.png │ │ │ │ │ ├── sprite-5-4.png │ │ │ │ │ ├── sprite-5-5.png │ │ │ │ │ ├── sprite-5-6.png │ │ │ │ │ ├── sprite-5-7.png │ │ │ │ │ ├── sprite-6-0.png │ │ │ │ │ ├── sprite-6-1.png │ │ │ │ │ ├── sprite-6-2.png │ │ │ │ │ ├── sprite-6-3.png │ │ │ │ │ ├── sprite-6-4.png │ │ │ │ │ ├── sprite-6-5.png │ │ │ │ │ ├── sprite-6-6.png │ │ │ │ │ ├── sprite-6-7.png │ │ │ │ │ ├── sprite-7-0.png │ │ │ │ │ ├── sprite-7-1.png │ │ │ │ │ ├── sprite-7-2.png │ │ │ │ │ ├── sprite-7-3.png │ │ │ │ │ ├── sprite-7-4.png │ │ │ │ │ ├── sprite-7-5.png │ │ │ │ │ ├── sprite-7-6.png │ │ │ │ │ └── sprite-7-7.png │ │ │ │ ├── spritesheet1.png │ │ │ │ ├── stars-grayscale.png │ │ │ │ ├── stars.png │ │ │ │ ├── stars2-grayscale.png │ │ │ │ ├── stars2.png │ │ │ │ ├── streak.png │ │ │ │ ├── test_image.png │ │ │ │ ├── texture1024x1024.png │ │ │ │ ├── texture512x512.png │ │ │ │ ├── texturemode.png │ │ │ │ ├── ui.plist │ │ │ │ └── ui.png │ │ │ ├── Particles │ │ │ │ ├── BoilingFoam.plist │ │ │ │ ├── BurstPipe.plist │ │ │ │ ├── Comet.plist │ │ │ │ ├── ExplodingRing.plist │ │ │ │ ├── Flower.plist │ │ │ │ ├── Galaxy.plist │ │ │ │ ├── LavaFlow.plist │ │ │ │ ├── Phoenix.plist │ │ │ │ ├── SmallSun.plist │ │ │ │ ├── SpinningPeas.plist │ │ │ │ ├── Spiral.plist │ │ │ │ ├── SpookyPeas.plist │ │ │ │ ├── TestPremultipliedAlpha.plist │ │ │ │ ├── Upsidedown.plist │ │ │ │ └── debian.plist │ │ │ ├── Presentation │ │ │ │ ├── chipmunk_status.png │ │ │ │ ├── cocos2d_status.png │ │ │ │ ├── cocosbuilder_status.png │ │ │ │ ├── comparison.png │ │ │ │ ├── gdkaccelerator.png │ │ │ │ ├── html5accelerator.png │ │ │ │ ├── proxy_model.png │ │ │ │ └── stack.graffle │ │ │ ├── Shaders │ │ │ │ ├── example_Blur.fsh │ │ │ │ ├── example_ColorBars.fsh │ │ │ │ ├── example_ColorBars.vsh │ │ │ │ ├── example_Flower.fsh │ │ │ │ ├── example_Flower.vsh │ │ │ │ ├── example_Heart.fsh │ │ │ │ ├── example_Heart.vsh │ │ │ │ ├── example_Julia.fsh │ │ │ │ ├── example_Julia.vsh │ │ │ │ ├── example_Mandelbrot.fsh │ │ │ │ ├── example_Mandelbrot.vsh │ │ │ │ ├── example_Monjori.fsh │ │ │ │ ├── example_Monjori.vsh │ │ │ │ ├── example_Plasma.fsh │ │ │ │ ├── example_Plasma.vsh │ │ │ │ ├── example_Twist.fsh │ │ │ │ └── example_Twist.vsh │ │ │ ├── Sound │ │ │ │ ├── background.mp3 │ │ │ │ ├── background.ogg │ │ │ │ ├── effect2.mp3 │ │ │ │ └── effect2.ogg │ │ │ ├── TileMaps │ │ │ │ ├── fixed-ortho-test2.png │ │ │ │ ├── hexa-test.tmx │ │ │ │ ├── hexa-tiles.png │ │ │ │ ├── iso-test-bug787.tmx │ │ │ │ ├── iso-test-movelayer.tmx │ │ │ │ ├── iso-test-objectgroup.tmx │ │ │ │ ├── iso-test-vertexz.tmx │ │ │ │ ├── iso-test-zorder.tmx │ │ │ │ ├── iso-test.png │ │ │ │ ├── iso-test.tmx │ │ │ │ ├── iso-test1.tmx │ │ │ │ ├── iso-test2-uncompressed.tmx │ │ │ │ ├── iso-test2.png │ │ │ │ ├── iso-test2.tmx │ │ │ │ ├── iso.png │ │ │ │ ├── levelmap.tga │ │ │ │ ├── ortho-objects.tmx │ │ │ │ ├── ortho-rotation-test.tmx │ │ │ │ ├── ortho-test1.png │ │ │ │ ├── ortho-test1_bw.png │ │ │ │ ├── ortho-test2.png │ │ │ │ ├── ortho-tile-property.tmx │ │ │ │ ├── orthogonal-test-movelayer.tmx │ │ │ │ ├── orthogonal-test-vertexz.tmx │ │ │ │ ├── orthogonal-test-zorder.tmx │ │ │ │ ├── orthogonal-test1.tmx │ │ │ │ ├── orthogonal-test1.tsx │ │ │ │ ├── orthogonal-test2.tmx │ │ │ │ ├── orthogonal-test3.tmx │ │ │ │ ├── orthogonal-test4-hd.tmx │ │ │ │ ├── orthogonal-test4.tmx │ │ │ │ ├── orthogonal-test5.tmx │ │ │ │ ├── orthogonal-test6-hd.tmx │ │ │ │ ├── orthogonal-test6.tmx │ │ │ │ ├── test-object-layer.tmx │ │ │ │ ├── tile_iso_offset.png │ │ │ │ ├── tile_iso_offset.tmx │ │ │ │ ├── tiles-hd.png │ │ │ │ ├── tiles.png │ │ │ │ ├── tmw_desert_spacing-hd.png │ │ │ │ └── tmw_desert_spacing.png │ │ │ ├── animations │ │ │ │ ├── animations-2.plist │ │ │ │ ├── animations.plist │ │ │ │ ├── crystals.plist │ │ │ │ ├── crystals.png │ │ │ │ ├── dragon_animation-hd.png │ │ │ │ ├── dragon_animation.png │ │ │ │ ├── ghosts.plist │ │ │ │ ├── ghosts.png │ │ │ │ ├── grossini-aliases.plist │ │ │ │ ├── grossini-aliases.png │ │ │ │ ├── grossini.plist │ │ │ │ ├── grossini.plist.xml │ │ │ │ ├── grossini.png │ │ │ │ ├── grossini.zss │ │ │ │ ├── grossini.ztp │ │ │ │ ├── grossini_blue.plist │ │ │ │ ├── grossini_blue.png │ │ │ │ ├── grossini_family.plist │ │ │ │ ├── grossini_family.png │ │ │ │ ├── grossini_gray.plist │ │ │ │ ├── grossini_gray.png │ │ │ │ ├── tcc_issue_1.plist │ │ │ │ ├── tcc_issue_1.png │ │ │ │ ├── tcc_issue_2.plist │ │ │ │ └── tcc_issue_2.png │ │ │ ├── armatures │ │ │ │ ├── Cowboy.ExportJson │ │ │ │ ├── Cowboy0.plist │ │ │ │ ├── Cowboy0.png │ │ │ │ ├── Dragon.plist │ │ │ │ ├── Dragon.png │ │ │ │ ├── Dragon.xml │ │ │ │ ├── TestBone.json │ │ │ │ ├── cyborg.plist │ │ │ │ ├── cyborg.png │ │ │ │ ├── cyborg.xml │ │ │ │ ├── knight.plist │ │ │ │ ├── knight.png │ │ │ │ ├── knight.xml │ │ │ │ ├── robot.plist │ │ │ │ ├── robot.png │ │ │ │ ├── robot.xml │ │ │ │ ├── weapon.plist │ │ │ │ ├── weapon.png │ │ │ │ └── weapon.xml │ │ │ ├── ccb │ │ │ │ ├── HelloCocosBuilder.ccb │ │ │ │ ├── HelloCocosBuilder.ccbi │ │ │ │ ├── animated-grossini.plist │ │ │ │ ├── animated-grossini.png │ │ │ │ ├── btn-a-0.png │ │ │ │ ├── btn-a-1.png │ │ │ │ ├── btn-a-2.png │ │ │ │ ├── btn-b-0.png │ │ │ │ ├── btn-b-1.png │ │ │ │ ├── btn-b-2.png │ │ │ │ ├── btn-back-0.png │ │ │ │ ├── btn-back-1.png │ │ │ │ ├── btn-test-0.png │ │ │ │ ├── btn-test-1.png │ │ │ │ ├── btn-test-2.png │ │ │ │ ├── burst.png │ │ │ │ ├── ccb │ │ │ │ │ ├── TestAnimations.ccb │ │ │ │ │ ├── TestAnimations.ccbi │ │ │ │ │ ├── TestAnimationsSub.ccb │ │ │ │ │ ├── TestAnimationsSub.ccbi │ │ │ │ │ ├── TestButtons.ccb │ │ │ │ │ ├── TestButtons.ccbi │ │ │ │ │ ├── TestHeader.ccb │ │ │ │ │ ├── TestHeader.ccbi │ │ │ │ │ ├── TestLabels.ccb │ │ │ │ │ ├── TestLabels.ccbi │ │ │ │ │ ├── TestMenus.ccb │ │ │ │ │ ├── TestMenus.ccbi │ │ │ │ │ ├── TestParticleSystems.ccb │ │ │ │ │ ├── TestParticleSystems.ccbi │ │ │ │ │ ├── TestScrollViews.ccb │ │ │ │ │ ├── TestScrollViews.ccbi │ │ │ │ │ ├── TestScrollViewsContentA.ccb │ │ │ │ │ ├── TestScrollViewsContentA.ccbi │ │ │ │ │ ├── TestSprites.ccb │ │ │ │ │ ├── TestSprites.ccbi │ │ │ │ │ ├── TestTimelineCallback.ccb │ │ │ │ │ └── TestTimelineCallback.ccbi │ │ │ │ ├── ccbParticleStars.png │ │ │ │ ├── comic andy.ttf │ │ │ │ ├── fileLookup.plist │ │ │ │ ├── flower.jpg │ │ │ │ ├── gem-0.wav │ │ │ │ ├── gem-1.wav │ │ │ │ ├── grossini-generic.plist │ │ │ │ ├── grossini-generic.png │ │ │ │ ├── jungle-left.png │ │ │ │ ├── jungle-right.png │ │ │ │ ├── jungle.png │ │ │ │ ├── logo-icon.png │ │ │ │ ├── logo.png │ │ │ │ ├── markerfelt24shadow.fnt │ │ │ │ ├── markerfelt24shadow.png │ │ │ │ ├── particle-fire.png │ │ │ │ ├── particle-smoke.png │ │ │ │ ├── particle-snow.png │ │ │ │ ├── particle-stars.png │ │ │ │ └── scale-9-demo.png │ │ │ ├── extensions │ │ │ │ ├── CCControlColourPickerSpriteSheet.plist │ │ │ │ ├── CCControlColourPickerSpriteSheet.png │ │ │ │ ├── background.png │ │ │ │ ├── button.png │ │ │ │ ├── buttonBackground.png │ │ │ │ ├── buttonHighlighted.png │ │ │ │ ├── green_edit.png │ │ │ │ ├── orange_edit.png │ │ │ │ ├── potentiometerButton.png │ │ │ │ ├── potentiometerProgress.png │ │ │ │ ├── potentiometerTrack.png │ │ │ │ ├── ribbon.png │ │ │ │ ├── sliderProgress.png │ │ │ │ ├── sliderProgress2.png │ │ │ │ ├── sliderThumb.png │ │ │ │ ├── sliderTrack.png │ │ │ │ ├── sliderTrack2.png │ │ │ │ ├── stepper-minus.png │ │ │ │ ├── stepper-plus.png │ │ │ │ ├── switch-mask.png │ │ │ │ ├── switch-off.png │ │ │ │ ├── switch-on.png │ │ │ │ ├── switch-thumb.png │ │ │ │ └── yellow_edit.png │ │ │ └── fonts │ │ │ │ ├── A Damn Mess.ttf │ │ │ │ ├── Abberancy.ttf │ │ │ │ ├── Abduction.ttf │ │ │ │ ├── American Typewriter.ttf │ │ │ │ ├── Courier New.eot │ │ │ │ ├── Courier New.ttf │ │ │ │ ├── Marker Felt.ttf │ │ │ │ ├── Paint Boy.ttf │ │ │ │ ├── Schwarzwald Regular.ttf │ │ │ │ ├── Schwarzwald_Regular.eot │ │ │ │ ├── Scissor Cuts.ttf │ │ │ │ ├── Thonburi.eot │ │ │ │ ├── Thonburi.ttf │ │ │ │ ├── ThonburiBold.eot │ │ │ │ ├── ThonburiBold.ttf │ │ │ │ ├── arial-unicode-26.fnt │ │ │ │ ├── arial-unicode-26.png │ │ │ │ ├── arial.ttf │ │ │ │ ├── arial16.fnt │ │ │ │ ├── arial16.png │ │ │ │ ├── bitmapFontChinese.fnt │ │ │ │ ├── bitmapFontChinese.png │ │ │ │ ├── bitmapFontTest.fnt │ │ │ │ ├── bitmapFontTest.png │ │ │ │ ├── bitmapFontTest2.fnt │ │ │ │ ├── bitmapFontTest2.png │ │ │ │ ├── bitmapFontTest3.fnt │ │ │ │ ├── bitmapFontTest3.png │ │ │ │ ├── bitmapFontTest4.fnt │ │ │ │ ├── bitmapFontTest4.png │ │ │ │ ├── bitmapFontTest5.fnt │ │ │ │ ├── bitmapFontTest5.png │ │ │ │ ├── font-issue1343-hd.fnt │ │ │ │ ├── font-issue1343.fnt │ │ │ │ ├── fps_images-hd.png │ │ │ │ ├── fps_images.png │ │ │ │ ├── futura-48.fnt │ │ │ │ ├── futura-48.png │ │ │ │ ├── geneva-32.fnt │ │ │ │ ├── helvetica-32.fnt │ │ │ │ ├── helvetica-geneva-32.png │ │ │ │ ├── konqa32-hd.fnt │ │ │ │ ├── konqa32-hd.png │ │ │ │ ├── konqa32.fnt │ │ │ │ ├── konqa32.png │ │ │ │ ├── larabie-16-hd.plist │ │ │ │ ├── larabie-16-hd.png │ │ │ │ ├── larabie-16.plist │ │ │ │ ├── larabie-16.png │ │ │ │ ├── markerFelt-hd.fnt │ │ │ │ ├── markerFelt-hd.png │ │ │ │ ├── markerFelt.fnt │ │ │ │ ├── markerFelt.png │ │ │ │ ├── strings.xml │ │ │ │ ├── tahoma.ttf │ │ │ │ ├── tuffy_bold_italic-charmap-hd.plist │ │ │ │ ├── tuffy_bold_italic-charmap-hd.png │ │ │ │ ├── tuffy_bold_italic-charmap.plist │ │ │ │ ├── tuffy_bold_italic-charmap.png │ │ │ │ ├── west_england-64.fnt │ │ │ │ └── west_england-64.png │ │ │ ├── tests-boot-html5.js │ │ │ ├── tests-boot-jsb-for-obfuscation.js │ │ │ ├── tests-boot-jsb.js │ │ │ ├── tests-main.js │ │ │ ├── tests_resources-html5.js │ │ │ └── tests_resources-jsb.js │ ├── template │ │ ├── build.xml │ │ ├── cocos2d-jsb.js │ │ ├── cocos2d.js │ │ ├── index.html │ │ ├── main.js │ │ ├── res │ │ │ ├── HD │ │ │ │ ├── CloseNormal.png │ │ │ │ ├── CloseSelected.png │ │ │ │ └── HelloWorld.jpg │ │ │ ├── Normal │ │ │ │ ├── CloseNormal.png │ │ │ │ ├── CloseSelected.png │ │ │ │ └── HelloWorld.jpg │ │ │ └── favicon.ico │ │ └── src │ │ │ ├── myApp.js │ │ │ └── resource.js │ └── tools │ │ ├── compiler │ │ └── compiler.jar │ │ ├── jsdoc_toolkit │ │ └── build.xml │ │ └── readme for tools.txt ├── CocosDenshion │ └── SimpleAudioEngine.js ├── HelloWorld │ ├── cocos2d.js │ ├── hello.js │ ├── index.html │ └── main.js ├── MissileCommand │ ├── .idea │ │ ├── .name │ │ ├── Missile Command.iml │ │ ├── encodings.xml │ │ ├── jsLibraryMappings.xml │ │ ├── mc.iml │ │ ├── misc.xml │ │ ├── modules.xml │ │ ├── scopes │ │ │ └── scope_settings.xml │ │ ├── vcs.xml │ │ └── workspace.xml │ ├── Aviso.js │ ├── Cidade.js │ ├── FimdeJogo.js │ ├── Missil.js │ ├── MissileCommand.js │ ├── Naves.js │ ├── Splash.js │ ├── assets │ │ ├── BurnigCity.jpg │ │ ├── Sem título.png │ │ ├── Sem título.png │ │ ├── Splash2.png │ │ ├── a.png │ │ ├── alarm.mp3 │ │ ├── aviso1.png │ │ ├── aviso2.png │ │ ├── b.png │ │ ├── bg1.png │ │ ├── bg2.png │ │ ├── bg3.png │ │ ├── bg4.png │ │ ├── bomb.mp3 │ │ ├── btBack.png │ │ ├── btCredits.png │ │ ├── btPause.png │ │ ├── btStart.png │ │ ├── c.png │ │ ├── canhaopart1.png │ │ ├── canhaopart2.png │ │ ├── chao.png │ │ ├── cidade.plist │ │ ├── cidade.png │ │ ├── d.png │ │ ├── e.png │ │ ├── explosao1.plist │ │ ├── explosao1.png │ │ ├── g.png │ │ ├── go.png │ │ ├── manaus ci.png │ │ ├── missil.mp3 │ │ ├── missil.png │ │ └── naves.png │ ├── cocos2d.js │ ├── credits.js │ ├── index.html │ └── main.js ├── No-Boo │ ├── Som │ │ ├── Ending.wav │ │ ├── Explosion.wav │ │ ├── Fail.wav │ │ ├── GhostBusters_.mp3 │ │ ├── Plop1.wav │ │ ├── Plop2.wav │ │ ├── Plop3.wav │ │ ├── Plop4.wav │ │ ├── Plop5.wav │ │ ├── Plop6.wav │ │ ├── Plop7.wav │ │ ├── Plop8.wav │ │ └── Plop9.wav │ ├── assets │ │ ├── Telas │ │ │ ├── LUDUS.ico │ │ │ ├── No-Boo.png │ │ │ ├── Tela_Menu_e_Splash.png │ │ │ ├── Tela_Splash.png │ │ │ ├── Wireframes │ │ │ │ ├── 3. instrucoes.png │ │ │ │ ├── 4. creditos.png │ │ │ │ ├── 5. ganhou.png │ │ │ │ ├── 6. perdeu.png │ │ │ │ ├── banner.png │ │ │ │ ├── como_jogar.png │ │ │ │ ├── personagens.png │ │ │ │ ├── splash do jogo.png │ │ │ │ └── wireframe_menu.png │ │ │ ├── botoes │ │ │ │ ├── btn_jogar.png │ │ │ │ ├── btnselecionado_jogar.png │ │ │ │ ├── creditos.png │ │ │ │ ├── creditos_selecionados.png │ │ │ │ ├── jogar.png │ │ │ │ ├── jogar_selecionado.png │ │ │ │ ├── play.png │ │ │ │ └── play_selecionado.png │ │ │ ├── creditos.png │ │ │ ├── ganhou.png │ │ │ ├── instrucoes.png │ │ │ ├── perdeu.png │ │ │ ├── som.png │ │ │ ├── som_desligado.png │ │ │ ├── splash do jogo.png │ │ │ ├── tela.png │ │ │ ├── wireframe_menu.png │ │ │ └── wireframe_splash_jogo.png │ │ ├── cinza.plist │ │ ├── cinza.png │ │ ├── coracao_cheio.png │ │ ├── coracao_vazio.png │ │ ├── divulgation_200-200.png │ │ ├── explosao.plist │ │ ├── explosao.png │ │ ├── fire.png │ │ ├── laranja.plist │ │ ├── laranja.png │ │ ├── lilas.plist │ │ ├── lilas.png │ │ ├── pac.plist │ │ ├── pac.png │ │ ├── pacFail.plist │ │ ├── pacFail.png │ │ ├── pacmanfail.png │ │ ├── verde.plist │ │ ├── verde.png │ │ ├── vermelho.plist │ │ └── vermelho.png │ ├── cocos2d-jsb.js │ ├── cocos2d.js │ ├── fonts │ │ ├── Grinched.ttf │ │ └── Halloween.ttf │ ├── index.html │ ├── js │ │ ├── Como_Jogar.js │ │ ├── Creditos.js │ │ ├── Jogo.js │ │ ├── Jogo_Comeco.js │ │ ├── Jogo_Fim.js │ │ ├── Jogo_Fim2.js │ │ ├── Menu.js │ │ ├── Splash.js │ │ ├── Splash_Inicial.js │ │ └── Splash_Jogo.js │ └── main.js ├── Pong1 │ ├── assets │ │ ├── Arcade Classic.ttf │ │ ├── BARRA.png │ │ ├── BARRAMAX.png │ │ ├── BARRAMED.png │ │ ├── BARRAMIN.png │ │ ├── BOLA.png │ │ ├── FUNDO.png │ │ ├── Hit.wav │ │ ├── LOGO1.png │ │ ├── LOGO2.png │ │ ├── MENU.jpg │ │ ├── PW1.png │ │ ├── PW2.png │ │ ├── PW3.png │ │ ├── PW4.png │ │ ├── PW5.png │ │ ├── PW6.png │ │ ├── SPLASH1.jpg │ │ ├── SPLASH10.jpg │ │ ├── SPLASH11.jpg │ │ ├── SPLASH12.jpg │ │ ├── SPLASH13.jpg │ │ ├── SPLASH14.jpg │ │ ├── SPLASH15.jpg │ │ ├── SPLASH16.jpg │ │ ├── SPLASH17.jpg │ │ ├── SPLASH18.jpg │ │ ├── SPLASH19.jpg │ │ ├── SPLASH2.jpg │ │ ├── SPLASH20.jpg │ │ ├── SPLASH21.jpg │ │ ├── SPLASH22.jpg │ │ ├── SPLASH23.jpg │ │ ├── SPLASH24.jpg │ │ ├── SPLASH25.jpg │ │ ├── SPLASH26.jpg │ │ ├── SPLASH27.jpg │ │ ├── SPLASH28.jpg │ │ ├── SPLASH29.jpg │ │ ├── SPLASH3.jpg │ │ ├── SPLASH30.jpg │ │ ├── SPLASH31.jpg │ │ ├── SPLASH32.jpg │ │ ├── SPLASH33.jpg │ │ ├── SPLASH34.jpg │ │ ├── SPLASH35.jpg │ │ ├── SPLASH36.jpg │ │ ├── SPLASH37.jpg │ │ ├── SPLASH38.jpg │ │ ├── SPLASH39.jpg │ │ ├── SPLASH4.jpg │ │ ├── SPLASH40.jpg │ │ ├── SPLASH41.jpg │ │ ├── SPLASH42.jpg │ │ ├── SPLASH43.jpg │ │ ├── SPLASH44.jpg │ │ ├── SPLASH45.jpg │ │ ├── SPLASH46.jpg │ │ ├── SPLASH47.jpg │ │ ├── SPLASH48.jpg │ │ ├── SPLASH49.jpg │ │ ├── SPLASH5.jpg │ │ ├── SPLASH50.jpg │ │ ├── SPLASH51.jpg │ │ ├── SPLASH52.jpg │ │ ├── SPLASH53.jpg │ │ ├── SPLASH54.jpg │ │ ├── SPLASH55.jpg │ │ ├── SPLASH56.jpg │ │ ├── SPLASH57.jpg │ │ ├── SPLASH58.jpg │ │ ├── SPLASH59.jpg │ │ ├── SPLASH6.jpg │ │ ├── SPLASH60.jpg │ │ ├── SPLASH61.jpg │ │ ├── SPLASH62.jpg │ │ ├── SPLASH63.jpg │ │ ├── SPLASH64.jpg │ │ ├── SPLASH65.jpg │ │ ├── SPLASH66.jpg │ │ ├── SPLASH67.jpg │ │ ├── SPLASH68.jpg │ │ ├── SPLASH69.jpg │ │ ├── SPLASH7.jpg │ │ ├── SPLASH70.jpg │ │ ├── SPLASH71.jpg │ │ ├── SPLASH72.jpg │ │ ├── SPLASH8.jpg │ │ ├── SPLASH9.jpg │ │ ├── TITLE.png │ │ ├── btBack.png │ │ ├── btControls.png │ │ ├── btCredits.png │ │ ├── btStart.png │ │ ├── btStart1.png │ │ ├── btStart2.png │ │ ├── controls.png │ │ ├── controlsAlt.png │ │ ├── credits_programers.png │ │ ├── credits_teacher.png │ │ ├── game_title.png │ │ ├── game_title2.png │ │ ├── playerWin.png │ │ ├── playerWin2.png │ │ ├── playerWin_OLD.png │ │ ├── sound1.wav │ │ └── sound2.wav │ ├── barra.js │ ├── bola.js │ ├── cocos2d.js │ ├── controls.js │ ├── credits.js │ ├── game.js │ ├── index.html │ ├── main.js │ ├── menu.js │ ├── powerup.js │ ├── splash.js │ ├── win.js │ └── win2.js ├── Pong2 │ ├── audio │ │ ├── inicio.mp3 │ │ ├── ping.wav │ │ └── pong.mp3 │ ├── cocos2d.js │ ├── font │ │ └── ArcadeNormal.ttf │ ├── index.html │ ├── main.js │ ├── res │ │ ├── barraDireita.png │ │ ├── barraEsquerda.png │ │ ├── bola.png │ │ ├── configuracoes.png │ │ ├── creditos.png │ │ ├── fundo.png │ │ ├── ganhouDireito.png │ │ ├── ganhouEsquerdo.png │ │ ├── imagens.pptx │ │ ├── instrucoes.png │ │ ├── jogo.png │ │ ├── splash.png │ │ ├── splash_juliane.png │ │ └── teste.png │ └── src │ │ ├── barra.js │ │ ├── bola.js │ │ ├── configuracoes.js │ │ ├── creditos.js │ │ ├── game.js │ │ ├── instrucoes.js │ │ ├── menu.js │ │ ├── outros │ │ ├── configuracoes.js │ │ ├── creditos.js │ │ ├── instrucoes.js │ │ ├── menu.js │ │ ├── splash.js │ │ └── teste.js │ │ ├── powerup.js │ │ ├── splash.js │ │ ├── teste.js │ │ └── win.js ├── Pong3 │ ├── Imagens │ │ ├── 1_Player.png │ │ ├── LUDUS.ico │ │ ├── Telas │ │ │ ├── Tela_Configuracoes.png │ │ │ ├── Tela_Creditos.png │ │ │ ├── Tela_Creditos_Com_Som.png │ │ │ ├── Tela_Menu_1.png │ │ │ ├── Tela_Menu_Principal.png │ │ │ └── Tela_Splash.png │ │ ├── ball.png │ │ ├── barra_azul.png │ │ ├── barra_verde.png │ │ ├── barra_vermelha.png │ │ ├── barras │ │ │ ├── barra_1 │ │ │ │ ├── b1_sprite_1.png │ │ │ │ ├── b1_sprite_2.png │ │ │ │ ├── b1_sprite_3.png │ │ │ │ ├── barra.plist │ │ │ │ └── barra.png │ │ │ ├── barra_2 │ │ │ │ ├── b2_sprite_1.png │ │ │ │ ├── b2_sprite_2.png │ │ │ │ ├── b2_sprite_3.png │ │ │ │ ├── barra2.plist │ │ │ │ └── barra2.png │ │ │ └── barra_jogo │ │ │ │ ├── barra_1 │ │ │ │ ├── barra_jogo_1.plist │ │ │ │ ├── barra_jogo_1.png │ │ │ │ ├── bj_b1_sprite_1.png │ │ │ │ ├── bj_b1_sprite_2.png │ │ │ │ ├── bj_b1_sprite_3.png │ │ │ │ └── bj_b1_sprite_4.png │ │ │ │ └── barra_2 │ │ │ │ ├── barra_jogo_2.plist │ │ │ │ ├── barra_jogo_2.png │ │ │ │ ├── bj_b2_sprite_1.png │ │ │ │ ├── bj_b2_sprite_2.png │ │ │ │ ├── bj_b2_sprite_3.png │ │ │ │ └── bj_b2_sprite_4.png │ │ ├── fire.png │ │ └── palavras │ │ │ ├── 1_Player.plist │ │ │ ├── 1_Player.png │ │ │ ├── 1_Player_Selecionado.png │ │ │ ├── 1_Player_Sprite.png │ │ │ ├── 2_Player.plist │ │ │ ├── 2_Player.png │ │ │ ├── 2_Player_Selecionado.png │ │ │ ├── 2_Player_Sprite.png │ │ │ ├── Cedrito_Sprite.png │ │ │ ├── Configuracoes.plist │ │ │ ├── Configuracoes.png │ │ │ ├── Configuracoes_Selecionado.png │ │ │ ├── Configuracoes_Sprites.png │ │ │ ├── Credito.plist │ │ │ ├── Credito.png │ │ │ ├── Play.plist │ │ │ ├── Play_Sprite.png │ │ │ ├── Som.plist │ │ │ ├── Som.png │ │ │ ├── bt_voltar.png │ │ │ ├── bt_voltar_selecionado.png │ │ │ ├── credito_selecionado.png │ │ │ ├── off.png │ │ │ ├── on.png │ │ │ ├── play.png │ │ │ ├── play_selecionado.png │ │ │ ├── voltar.png │ │ │ └── voltar_selecionado.png │ ├── barra_azul.plist │ ├── barra_verde.plist │ ├── barra_vermelha.plist │ ├── cocos2d.js │ ├── index.html │ ├── js │ │ ├── Configuracoes.js │ │ ├── Creditos.js │ │ ├── Menu1.js │ │ ├── MenuPrincipal.js │ │ ├── Splash.js │ │ └── jogo.js │ ├── main.js │ └── sons │ │ ├── Hit.wav │ │ ├── Jumpshot.mp3 │ │ ├── sound1.wav │ │ └── sound2.wav ├── SeasonsRun │ ├── Player.js │ ├── build.xml │ ├── cocos2d-jsb.js │ ├── cocos2d.js │ ├── index.html │ ├── main.js │ ├── res │ │ ├── Maps │ │ │ ├── map1.tmx │ │ │ ├── map2.tmx │ │ │ └── tiles.png │ │ ├── Runner │ │ │ ├── Runner.ExportJson │ │ │ ├── Runner0.plist │ │ │ ├── Runner0.png │ │ │ ├── arm1_left.png │ │ │ ├── arm1_right.png │ │ │ ├── arm2_left.png │ │ │ ├── arm2_right.png │ │ │ ├── body.png │ │ │ ├── foot_left.png │ │ │ ├── foot_right.png │ │ │ ├── hand_left.png │ │ │ ├── hand_right.png │ │ │ ├── head.png │ │ │ ├── leg1_left.png │ │ │ ├── leg1_right.png │ │ │ ├── leg2_left.png │ │ │ ├── leg2_right.png │ │ │ └── player.svg │ │ ├── RunnerFinal │ │ │ ├── RunnerFinal.ExportJson │ │ │ ├── RunnerFinal0.plist │ │ │ └── RunnerFinal0.png │ │ ├── audios │ │ │ ├── crashBox.wav │ │ │ ├── dragBox.mp3 │ │ │ ├── falling.wav │ │ │ ├── jump.wav │ │ │ ├── menuSelect.wav │ │ │ ├── run-copia1.wav │ │ │ ├── run.wav │ │ │ ├── seaBackground.mp3 │ │ │ └── summerSong.mp3 │ │ ├── fonts │ │ │ ├── PipeDream.ttf │ │ │ └── Zian.ttf │ │ ├── images │ │ │ ├── LUDUS.ico │ │ │ ├── box.png │ │ │ ├── bumper.png │ │ │ ├── buttons │ │ │ │ ├── btnCreditsSelected_256-34.png │ │ │ │ ├── btnCredits_256-34.png │ │ │ │ ├── btnHowToPlaySelected_381-34.png │ │ │ │ ├── btnHowToPlay_381-34.png │ │ │ │ ├── btnPlayMultiSelected_155-34.png │ │ │ │ ├── btnPlayMulti_155-34.png │ │ │ │ ├── btnPlaySelected_155-34.png │ │ │ │ └── btnPlay_155-34.png │ │ │ ├── chain.png │ │ │ ├── title.png │ │ │ ├── woodCircle.png │ │ │ ├── woodExtraLarge.png │ │ │ ├── woodExtraSmallVertical.png │ │ │ ├── woodLarge.png │ │ │ ├── woodLargeVertical.png │ │ │ ├── woodMedium.png │ │ │ ├── woodMediumVertical.png │ │ │ ├── woodSmall.png │ │ │ └── woodSmallVertical.png │ │ ├── maps │ │ │ ├── background.png │ │ │ ├── background_summer.svg │ │ │ ├── background_summer.tmx │ │ │ ├── background_summer2.png │ │ │ ├── background_summer2.svg │ │ │ ├── background_summer_clouds.tmx │ │ │ ├── cave.png │ │ │ ├── caves.svg │ │ │ ├── coco.png │ │ │ ├── cocoBlur.png │ │ │ ├── cocoBlur2.png │ │ │ ├── coqueiro.png │ │ │ ├── coqueiro.svg │ │ │ ├── map0.png │ │ │ ├── map0.tmx │ │ │ ├── map0background.tmx │ │ │ ├── map0background2.tmx │ │ │ ├── map10.tmx │ │ │ ├── map3.tmx │ │ │ ├── map4.tmx │ │ │ ├── map5.tmx │ │ │ ├── map6.tmx │ │ │ ├── map7.tmx │ │ │ ├── map8.tmx │ │ │ ├── map9.tmx │ │ │ ├── mapTransition.tmx │ │ │ ├── objects.png │ │ │ ├── objects.svg │ │ │ ├── objectsTile.png │ │ │ ├── objectsTile.svg │ │ │ ├── sun.png │ │ │ ├── tiles.svg │ │ │ ├── tiles2.png │ │ │ ├── tiles2.svg │ │ │ ├── tilesSummer.png │ │ │ └── tiles_summer.svg │ │ ├── runner │ │ │ └── Runner0.png.2014_03_17_22_46_52.0.svg │ │ └── screenshots │ │ │ ├── credits_800-480.png │ │ │ ├── highScores_800-480.png │ │ │ ├── splashGame_800-480.png │ │ │ ├── splashTeam_800-480.png │ │ │ └── text3815.png │ ├── seasonsRun.js │ ├── server.js │ └── src │ │ ├── Credits.js │ │ ├── HighScores.js │ │ ├── Menu.js │ │ ├── SplashGame.js │ │ ├── SplashLudus.js │ │ ├── auxFunctions.js │ │ ├── game.js │ │ ├── player.js │ │ ├── resource.js │ │ └── serverFunctions.js ├── asteroids │ ├── cocos2d.js │ ├── index.html │ ├── main.js │ ├── res │ │ ├── audios │ │ │ ├── AsteroidsSaucer.mp3 │ │ │ ├── AsteroidsSaucer.wav │ │ │ ├── AsteroidsShoot.mp3 │ │ │ ├── AsteroidsShoot.wav │ │ │ ├── AsteroidsThrust.mp3 │ │ │ ├── AsteroidsThrust.wav │ │ │ ├── AsteroidsTonehi.mp3 │ │ │ ├── AsteroidsTonehi.wav │ │ │ ├── AsteroidsTonelo.mp3 │ │ │ ├── AsteroidsTonelo.wav │ │ │ └── bomb.mp3 │ │ ├── divulgation_200-200.png │ │ ├── fonts │ │ │ ├── SFAtarianSystem.ttf │ │ │ └── VectorB.ttf │ │ ├── images │ │ │ ├── Explosion1_39-41.png │ │ │ ├── Explosion2_66-68.png │ │ │ ├── Explosion3_91-87.png │ │ │ ├── Explosion4_76-87.png │ │ │ ├── Explosion5_52-57.png │ │ │ ├── Explosion6_25-30.png │ │ │ ├── LUDUS.ico │ │ │ ├── asteroids1_20-20.png │ │ │ ├── asteroids1_40-40.png │ │ │ ├── asteroids1_80-80.png │ │ │ ├── asteroids2_20-20.png │ │ │ ├── asteroids2_40-40.png │ │ │ ├── asteroids2_80-80.png │ │ │ ├── asteroids3_20-20.png │ │ │ ├── asteroids3_40-40.png │ │ │ ├── asteroids3_80-80.png │ │ │ ├── buttons │ │ │ │ ├── btnCreditsSelected_256-34.png │ │ │ │ ├── btnCredits_256-34.png │ │ │ │ ├── btnHowToPlaySelected_381-34.png │ │ │ │ ├── btnHowToPlay_381-34.png │ │ │ │ ├── btnPlaySelected_155-34.png │ │ │ │ ├── btnPlay_155-34.png │ │ │ │ ├── btnScoreSelected_365-34.png │ │ │ │ ├── btnScore_356-34.png │ │ │ │ ├── newBtnCredits_256-34.png │ │ │ │ ├── newBtnHowToPlay_381-34.png │ │ │ │ ├── newBtnPlay_155-34.png │ │ │ │ └── newBtnScore_356-34.png │ │ │ ├── particle_1-15.png │ │ │ ├── shipFire1_14-24.png │ │ │ ├── shipFire2_14-24.png │ │ │ ├── ship_14-24.png │ │ │ ├── shoot_2-2.png │ │ │ ├── title1_532-111.png │ │ │ ├── title2_532-111.png │ │ │ ├── ufo_35-22.png │ │ │ └── ufo_96-61.png │ │ ├── screenshots │ │ │ ├── credits_800-480.png │ │ │ ├── highScores_800-480.png │ │ │ ├── howToPlay_800-480.png │ │ │ └── splashTeam_800-480.png │ │ └── spritesheets │ │ │ ├── ButtonsSpriteSheet.plist │ │ │ ├── ButtonsSpriteSheet.png │ │ │ ├── ButtonsSpriteSheet.tps │ │ │ ├── GameSpriteSheet.plist │ │ │ ├── GameSpriteSheet.png │ │ │ ├── GameSpriteSheet.tps │ │ │ ├── TitlesSpriteSheet.plist │ │ │ ├── TitlesSpriteSheet.png │ │ │ └── TitlesSpriteSheet.tps │ └── src │ │ ├── Asteroid.js │ │ ├── Bullet.js │ │ ├── Credits.js │ │ ├── Game.js │ │ ├── HighScores.js │ │ ├── HighScoresInput.js │ │ ├── HowToPlay.js │ │ ├── Losing.js │ │ ├── Menu.js │ │ ├── SpaceShip.js │ │ ├── Splash.js │ │ ├── SplashGame.js │ │ ├── SplashLudus.js │ │ ├── UFO.js │ │ └── Winning.js ├── circlechain │ ├── circlechain.js │ ├── cocos2d.js │ ├── greencircle.png │ ├── index.html │ └── main.js ├── galaga-carlos │ ├── cocos2d.js │ ├── index.html │ ├── main.js │ ├── res │ │ ├── buttons │ │ │ ├── btCreditsSelected_215-27.png │ │ │ ├── btCredits_215-27.png │ │ │ ├── btHighSelected_341-27.png │ │ │ ├── btHigh_341-27.png │ │ │ ├── btHowToSelected_341-27.png │ │ │ ├── btHowTo_341-27.png │ │ │ ├── btPlaySelected_121-27.png │ │ │ └── btPlay_121-27.png │ │ ├── particle_1-15.png │ │ ├── screenshoots │ │ │ ├── Game_480-600.png │ │ │ ├── Menu6_480-600.png │ │ │ ├── Menu_480-600.png │ │ │ ├── SplashLudus_480-600.png │ │ │ ├── Splash_480-600.png │ │ │ └── menu4_480-600.png │ │ └── spritesheets │ │ │ ├── bullet.plist │ │ │ ├── bullet.png │ │ │ ├── particle.plist │ │ │ ├── particle.png │ │ │ ├── ship.plist │ │ │ ├── ship.png │ │ │ ├── star.plist │ │ │ └── star.png │ └── src │ │ ├── Background.js │ │ ├── Game.js │ │ ├── Menu.js │ │ ├── Ship.js │ │ ├── Splash.js │ │ ├── SplashGame.js │ │ └── SplashLudus.js ├── mapteste │ ├── assets │ │ └── tiles │ │ │ ├── btnAttack.png │ │ │ ├── btnCover.png │ │ │ ├── btnCrouch.png │ │ │ ├── btnItens.png │ │ │ ├── btnMove.png │ │ │ ├── btnProne.png │ │ │ ├── btnTatics.png │ │ │ ├── iso-test.png │ │ │ ├── iso-test.tmx │ │ │ ├── map.tmx │ │ │ ├── sprite1.png │ │ │ ├── tile1.png │ │ │ ├── tile2.png │ │ │ ├── tile3.png │ │ │ ├── tile4.png │ │ │ ├── tiles.plist │ │ │ └── tiles.png │ ├── cocos2d.js │ ├── game.js │ ├── index.html │ ├── main.js │ └── sprite.js └── pacman1 │ ├── cocos2d.js │ ├── index.html │ ├── main.js │ ├── res │ ├── fonts │ │ └── Joystix.TTF │ ├── images │ │ ├── background_225-248.png │ │ ├── background_empty_227-247.png │ │ ├── background_full_227-248.png │ │ ├── blinky_down_four_32-32.png │ │ ├── blinky_down_three_32-32.png │ │ ├── blinky_left_four_32-32.png │ │ ├── blinky_left_three_32-32.png │ │ ├── blinky_right_four_32-32.png │ │ ├── blinky_right_three_32-32.png │ │ ├── blinky_up_four_32-32.png │ │ ├── blinky_up_three_32-32.png │ │ ├── clyde_down_four_32-32.png │ │ ├── clyde_down_three_32-32.png │ │ ├── clyde_left_four_32-32.png │ │ ├── clyde_left_three_32-32.png │ │ ├── clyde_right_four_32-32.png │ │ ├── clyde_right_three_32-32.png │ │ ├── clyde_up_four_32-32.png │ │ ├── clyde_up_three_32-32.png │ │ ├── game_over_217-32.png │ │ ├── inkey_down_four_32-32.png │ │ ├── inkey_down_three_32-32.png │ │ ├── inkey_left_four_32-32.png │ │ ├── inkey_left_three_32-32.png │ │ ├── inkey_right_four_32-32.png │ │ ├── inkey_right_three_32-32.png │ │ ├── inkey_up_four_32-32.png │ │ ├── inkey_up_three_32-32.png │ │ ├── menuTitle_595-135.png │ │ ├── pac.png │ │ ├── pac_close_16-16.png │ │ ├── pac_close_32-32.png │ │ ├── pac_close_36-36.png │ │ ├── pac_close_98-135.png │ │ ├── pac_down_middle_16-16.png │ │ ├── pac_down_middle_32-32.png │ │ ├── pac_down_open_16-16.png │ │ ├── pac_down_open_32-32.png │ │ ├── pac_left_middle_16-16.png │ │ ├── pac_left_middle_32-32.png │ │ ├── pac_left_open_16-16.png │ │ ├── pac_left_open_32-32.png │ │ ├── pac_right_middle_16-16.png │ │ ├── pac_right_middle_32-32.png │ │ ├── pac_right_middle_36-36.png │ │ ├── pac_right_open_16-16.png │ │ ├── pac_right_open_32-32.png │ │ ├── pac_right_open_36-36.png │ │ ├── pac_right_open_98-135.png │ │ ├── pac_up_middle_16-16.png │ │ ├── pac_up_middle_32-32.png │ │ ├── pac_up_open_10_32-32.png │ │ ├── pac_up_open_16-16.png │ │ ├── pac_up_open_2_32-32.png │ │ ├── pac_up_open_32-32.png │ │ ├── pac_up_open_3_32-32.png │ │ ├── pac_up_open_4_32-32.png │ │ ├── pac_up_open_5_32-32.png │ │ ├── pac_up_open_6_32-32.png │ │ ├── pac_up_open_7_32-32.png │ │ ├── pac_up_open_8_32-32.png │ │ ├── pac_up_open_9_32-32.png │ │ ├── pinky_down_four_16-16.png │ │ ├── pinky_down_four_32-32.png │ │ ├── pinky_down_three_16-16.png │ │ ├── pinky_down_three_32-32.png │ │ ├── pinky_left_four_16-16.png │ │ ├── pinky_left_four_32-32.png │ │ ├── pinky_left_three_16-16.png │ │ ├── pinky_left_three_32-32.png │ │ ├── pinky_right_four_16-16.png │ │ ├── pinky_right_four_32-32.png │ │ ├── pinky_right_three_16-16.png │ │ ├── pinky_right_three_32-32.png │ │ ├── pinky_up_four_16-16.png │ │ ├── pinky_up_four_32-32.png │ │ ├── pinky_up_three_16-16.png │ │ ├── pinky_up_three_32-32.png │ │ └── score_6-4.png │ ├── screenshots │ │ ├── splashGame_800-480.png │ │ ├── splashTeam_800-480.png │ │ └── your score.png │ ├── spritesheets │ │ ├── GameSpriteSheet.plist │ │ ├── GameSpriteSheet.png │ │ └── gameMovement_origin.tps │ └── tiledmap │ │ ├── background.tmx │ │ ├── background1.tmx │ │ ├── map.png │ │ └── tilepacman.png │ ├── resource.js │ └── src │ ├── Credits.js │ ├── Game.js │ ├── Ghost.js │ ├── HighScore.js │ ├── HowToPlay.js │ ├── Losing.js │ ├── Menu.js │ ├── Pac.js │ ├── SplashGame.js │ ├── SplashTeam.js │ └── TiledMeadow.js ├── multiplayerAPI ├── Client │ └── ServerFunctions.js └── Server │ ├── Player.js │ └── server.js ├── phaser ├── AsteroidsV.2 │ ├── assets │ │ ├── audios │ │ │ ├── AsteroidsSaucer.mp3 │ │ │ ├── AsteroidsSaucer.wav │ │ │ ├── AsteroidsShoot.mp3 │ │ │ ├── AsteroidsShoot.wav │ │ │ ├── AsteroidsThrust.mp3 │ │ │ ├── AsteroidsThrust.wav │ │ │ ├── AsteroidsTonehi.mp3 │ │ │ ├── AsteroidsTonehi.wav │ │ │ ├── AsteroidsTonelo.mp3 │ │ │ ├── AsteroidsTonelo.wav │ │ │ ├── laser.mp3 │ │ │ └── laser.wav │ │ ├── fonts │ │ │ ├── SFAtarianSystem.ttf │ │ │ ├── VectorB.ttf │ │ │ ├── vector.png │ │ │ ├── vector.xml │ │ │ ├── vectorB.fnt │ │ │ └── vectorB_0.png │ │ ├── images │ │ │ ├── Asteroids_1_80-80.png │ │ │ ├── Tiled1.png │ │ │ ├── Tiled2.png │ │ │ ├── asteroid1_25-60.png │ │ │ ├── asteroids.json │ │ │ ├── asteroids1_20-20.png │ │ │ ├── asteroids1_40-40.png │ │ │ ├── asteroids1_80-80.png │ │ │ ├── asteroids2_20-20.png │ │ │ ├── asteroids2_40-40.png │ │ │ ├── asteroids2_80-79.png │ │ │ ├── asteroids3_20-20.png │ │ │ ├── asteroids3_40-40.png │ │ │ ├── asteroids3_79-80.png │ │ │ ├── asteroids4_20-20.png │ │ │ ├── asteroids4_40-40.png │ │ │ ├── asteroids4_80-80.png │ │ │ ├── asteroids5_20-20.png │ │ │ ├── asteroids5_40-40.png │ │ │ ├── asteroids5_80-79.png │ │ │ ├── asteroids6_20-20.png │ │ │ ├── asteroids6_40-40.png │ │ │ ├── asteroids6_79-80.png │ │ │ ├── asteroidsCircle1.png │ │ │ ├── asteroidsCircle2.png │ │ │ ├── asteroidsCircle3.png │ │ │ ├── asteroidsCircle4.png │ │ │ ├── asteroids_1_20-20.png │ │ │ ├── asteroids_1_40-40.png │ │ │ ├── btn-left.png │ │ │ ├── btn-right.png │ │ │ ├── btn-shoot.png │ │ │ ├── btn-thrust.png │ │ │ ├── buttons │ │ │ │ ├── btnCreditsSelected_256-34.png │ │ │ │ ├── btnCredits_256-34.png │ │ │ │ ├── btnHowToPlaySelected_381-34.png │ │ │ │ ├── btnHowToPlay_381-34.png │ │ │ │ ├── btnPlaySelected_155-34.png │ │ │ │ ├── btnPlay_155-34.png │ │ │ │ ├── btnScoreSelected_365-34.png │ │ │ │ └── btnScore_356-34.png │ │ │ ├── laser_5-2.png │ │ │ ├── ludus.ico │ │ │ ├── nave1.png │ │ │ ├── particle_1-15.png │ │ │ ├── particula.png │ │ │ ├── res.png │ │ │ ├── ship0_37x39.png │ │ │ ├── ship1_37x39.png │ │ │ ├── ship2_14-24.png │ │ │ ├── ship2_37x39.png │ │ │ ├── ship2fire_14-24.png │ │ │ ├── ship3_37x39.png │ │ │ ├── shipFire1_14-24.png │ │ │ ├── ship_14-24.png │ │ │ ├── ship_22-34.png │ │ │ ├── shoot_2-2.png │ │ │ ├── tiro.png │ │ │ ├── title1_532-111.png │ │ │ ├── title2_532-111.png │ │ │ ├── ufo_70-35.png │ │ │ └── ufo_96-61.png │ │ ├── screenshots │ │ │ ├── credits_800-480.png │ │ │ ├── highScore_800-480.png │ │ │ ├── howToPlay_800-480.png │ │ │ ├── menu_800-480.png │ │ │ ├── splashGame_800-480.png │ │ │ └── splashTeam_800-600.png │ │ ├── spritesheets │ │ │ ├── AsteroidsSpriteSheet.json │ │ │ ├── AsteroidsSpriteSheet.png │ │ │ ├── AsteroidsSpriteSheet.tps │ │ │ ├── ButtonsSpriteSheet.json │ │ │ ├── ButtonsSpriteSheet.png │ │ │ ├── ButtonsSpriteSheet.tps │ │ │ ├── CreditsButton.png │ │ │ ├── GameSpriteSheet.json │ │ │ ├── GameSpriteSheet.png │ │ │ ├── HighScoreButton.png │ │ │ ├── HowToPlayButton.png │ │ │ ├── PlayButton.png │ │ │ ├── SpaceShips.png │ │ │ ├── TitlesSpriteSheet.json │ │ │ ├── TitlesSpriteSheet.png │ │ │ ├── TitlesSpriteSheet.tps │ │ │ ├── spriteSchips.json │ │ │ ├── spriteSchips.png │ │ │ ├── sprites.json │ │ │ ├── sprites.plist │ │ │ ├── sprites.png │ │ │ └── sprites.tps │ │ └── tests │ │ │ ├── collectresources.png │ │ │ ├── lose.png │ │ │ ├── nave-amarela.png │ │ │ ├── nave-azul.png │ │ │ ├── nave-laranja.png │ │ │ ├── nave-roxo.png │ │ │ ├── nave-verde.png │ │ │ ├── nave-vermelho.png │ │ │ └── win.png │ ├── index.html │ └── js │ │ ├── Asteroid.js │ │ ├── Credits.js │ │ ├── Game.js │ │ ├── HighScores.js │ │ ├── HighScoresInput.js │ │ ├── HowToPlay.js │ │ ├── Menu.js │ │ ├── SpaceShip.js │ │ ├── Splash.js │ │ ├── Ufo.js │ │ ├── Win.js │ │ ├── lose.js │ │ ├── phaser.min.js │ │ └── select.js ├── Breakout │ ├── assets │ │ ├── backGrounds │ │ │ └── bg.png │ │ ├── fonts │ │ │ ├── BACKTO1982.TTF │ │ │ └── ka1.ttf │ │ ├── screens │ │ │ ├── breakout.png │ │ │ ├── credits.png │ │ │ ├── ludus.png │ │ │ └── ludus2.png │ │ ├── sfx │ │ │ ├── Explosion1.wav │ │ │ ├── Explosion2.wav │ │ │ ├── ballFall.wav │ │ │ ├── gameOver.wav │ │ │ ├── hit1.wav │ │ │ ├── hit2.wav │ │ │ └── hitPlayer.wav │ │ └── sprites │ │ │ ├── backGround.png │ │ │ ├── ball.png │ │ │ ├── blueBlock.png │ │ │ ├── credits.png │ │ │ ├── gameOver.png │ │ │ ├── greenBlock.png │ │ │ ├── orangeBlock.png │ │ │ ├── play.png │ │ │ ├── player.png │ │ │ ├── redBlock.png │ │ │ └── yelowBlock.png │ ├── index.html │ └── js │ │ ├── Credits.js │ │ ├── Game.js │ │ ├── Menu.js │ │ ├── Splash.js │ │ └── phaser.min.js ├── Domino │ ├── assets │ │ ├── images │ │ │ ├── Credits_960-600.png │ │ │ ├── GameSplash_960-600.png │ │ │ ├── HowToPlay_960-600.png │ │ │ ├── LudusSplash_960-600.png │ │ │ ├── MenuBackground_960-600.png │ │ │ ├── ProgressBar_960-30.png │ │ │ ├── SponsorSplash_960-600.png │ │ │ └── rectangle.png │ │ └── spritesheets │ │ │ ├── ButtonCredits_150-95_4.png │ │ │ ├── ButtonHowToPlay_150-95_4.png │ │ │ ├── ButtonPlay_150-95_4.png │ │ │ └── domino.png │ ├── index.html │ └── js │ │ ├── Main.js │ │ ├── config │ │ └── Config.js │ │ ├── pecas.js │ │ └── states │ │ ├── Credits.js │ │ ├── Game.js │ │ ├── GameSplash.js │ │ ├── HowToPlay.js │ │ ├── LudusSplash.js │ │ ├── Menu.js │ │ └── SponsorSplash.js ├── DominoMultiplayer │ ├── client │ │ ├── assets │ │ │ └── spritesheets │ │ │ │ └── domino.png │ │ ├── index.html │ │ ├── src │ │ │ ├── css │ │ │ │ ├── common.css │ │ │ │ ├── game.css │ │ │ │ ├── login.css │ │ │ │ ├── ready.css │ │ │ │ ├── reconnect.css │ │ │ │ ├── rooms.css │ │ │ │ └── waitplayers.css │ │ │ ├── html │ │ │ │ ├── game.html │ │ │ │ ├── login.html │ │ │ │ ├── ready.html │ │ │ │ ├── reconnect.html │ │ │ │ ├── rooms.html │ │ │ │ └── waitplayers.html │ │ │ ├── js │ │ │ │ ├── actions.js │ │ │ │ ├── client.js │ │ │ │ ├── codes.js │ │ │ │ ├── config.js │ │ │ │ ├── dominosystem.js │ │ │ │ ├── events.js │ │ │ │ ├── fsm.js │ │ │ │ ├── gamepage.js │ │ │ │ ├── hardware.js │ │ │ │ ├── loginpage.js │ │ │ │ ├── main.js │ │ │ │ ├── phaser.map │ │ │ │ ├── phaser.min.js │ │ │ │ ├── piecespritemap.js │ │ │ │ ├── playstate.js │ │ │ │ ├── queue.js │ │ │ │ ├── readypage.js │ │ │ │ ├── receiver.js │ │ │ │ ├── reconnect.js │ │ │ │ ├── roomspage.js │ │ │ │ ├── rules.js │ │ │ │ ├── sender.js │ │ │ │ ├── states.js │ │ │ │ └── waitplayerspage.js │ │ │ └── php │ │ │ │ ├── checklogin.php │ │ │ │ └── obtainip.php │ │ └── style.css │ ├── docs │ │ ├── Flow.ep │ │ ├── flow_v2.2.pdf │ │ ├── link_to_bug_track.txt │ │ └── requirements_v2.2.pdf │ ├── server │ │ ├── config.js │ │ ├── gamemanager.js │ │ ├── main.js │ │ └── server.js │ └── shared │ │ ├── dictionary.js │ │ ├── emitevents.js │ │ ├── list.js │ │ ├── piece.js │ │ ├── room.js │ │ ├── socket.io │ │ ├── .npmignore │ │ ├── .travis.yml │ │ ├── History.md │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Readme.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── client.js │ │ │ ├── index.js │ │ │ ├── namespace.js │ │ │ └── socket.js │ │ ├── node_modules │ │ │ ├── debug │ │ │ │ ├── Readme.md │ │ │ │ ├── debug.js │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ └── debug.js │ │ │ │ └── package.json │ │ │ ├── engine.io │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── engine.io.js │ │ │ │ │ ├── server.js │ │ │ │ │ ├── socket.js │ │ │ │ │ ├── transport.js │ │ │ │ │ └── transports │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── polling-jsonp.js │ │ │ │ │ │ ├── polling-xhr.js │ │ │ │ │ │ ├── polling.js │ │ │ │ │ │ └── websocket.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── base64id │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── base64id.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── node.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── ms │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── engine.io-parser │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── keys.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── after │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── after-test.js │ │ │ │ │ │ │ ├── arraybuffer.slice │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── slice-buffer.js │ │ │ │ │ │ │ ├── base64-arraybuffer │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── grunt.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── base64-arraybuffer.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── base64-arraybuffer_test.js │ │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ │ ├── LICENSE-GPL.txt │ │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── utf8.js.html │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ ├── generate-test-data.py │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── tests.js │ │ │ │ │ │ │ │ ├── utf8.js │ │ │ │ │ │ │ │ └── x.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── ws │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ ├── build │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o.d │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ └── validation.o.d │ │ │ │ │ │ │ │ │ └── validation.node.d │ │ │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ └── bufferutil.o │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ └── validation.o │ │ │ │ │ │ │ └── validation.node │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ ├── bufferutil.target.mk │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ └── validation.target.mk │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── BufferPool.js │ │ │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ │ │ ├── BufferUtil.js │ │ │ │ │ │ ├── ErrorCodes.js │ │ │ │ │ │ ├── Receiver.hixie.js │ │ │ │ │ │ ├── Receiver.js │ │ │ │ │ │ ├── Sender.hixie.js │ │ │ │ │ │ ├── Sender.js │ │ │ │ │ │ ├── Validation.fallback.js │ │ │ │ │ │ ├── Validation.js │ │ │ │ │ │ ├── WebSocket.js │ │ │ │ │ │ ├── WebSocketServer.js │ │ │ │ │ │ └── browser.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── nan │ │ │ │ │ │ │ ├── .dntrc │ │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ │ ├── appveyor.yml │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ └── config.gypi │ │ │ │ │ │ │ ├── include_dirs.js │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ ├── nan.h.orig │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── options.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── ultron │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ ├── src │ │ │ │ │ │ ├── bufferutil.cc │ │ │ │ │ │ └── validation.cc │ │ │ │ │ │ └── wscat │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── bin │ │ │ │ │ │ └── wscat │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── has-binary-data │ │ │ │ ├── .npmignore │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── fixtures │ │ │ │ │ └── big.json │ │ │ │ ├── gen.js │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ └── isarray │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── build │ │ │ │ │ │ └── build.js │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── test.js │ │ │ ├── socket.io-adapter │ │ │ │ ├── .npmignore │ │ │ │ ├── History.md │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── debug │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ ├── node.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── ms │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── package.json │ │ │ │ │ └── object-keys │ │ │ │ │ │ ├── .jscs.json │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── CHANGELOG.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── isArguments.js │ │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ │ ├── socket.io-client │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── index.js │ │ │ │ ├── lib │ │ │ │ │ ├── index.js │ │ │ │ │ ├── manager.js │ │ │ │ │ ├── on.js │ │ │ │ │ ├── socket.js │ │ │ │ │ └── url.js │ │ │ │ ├── node_modules │ │ │ │ │ ├── component-bind │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── component-emitter │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── engine.io-client │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── engine.io.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── socket.js │ │ │ │ │ │ │ ├── transport.js │ │ │ │ │ │ │ ├── transports │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── polling-jsonp.js │ │ │ │ │ │ │ │ ├── polling-xhr.js │ │ │ │ │ │ │ │ ├── polling.js │ │ │ │ │ │ │ │ └── websocket.js │ │ │ │ │ │ │ └── xmlhttprequest.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ └── wscat │ │ │ │ │ │ │ ├── component-inherit │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── inherit.js │ │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ │ │ ├── node.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── ms │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── engine.io-parser │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── keys.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ ├── after │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ └── after-test.js │ │ │ │ │ │ │ │ │ ├── arraybuffer.slice │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ └── slice-buffer.js │ │ │ │ │ │ │ │ │ ├── base64-arraybuffer │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── grunt.js │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer_test.js │ │ │ │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ │ │ │ ├── LICENSE-GPL.txt │ │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ │ └── utf8.js.html │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ │ │ ├── generate-test-data.py │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ └── tests.js │ │ │ │ │ │ │ │ │ │ ├── utf8.js │ │ │ │ │ │ │ │ │ │ └── x.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── has-cors │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── global │ │ │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ ├── mocha.css │ │ │ │ │ │ │ │ │ │ ├── mocha.js │ │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── parsejson │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ ├── parseqs │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ ├── parseuri │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ ├── ws │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── bench │ │ │ │ │ │ │ │ │ ├── parser.benchmark.js │ │ │ │ │ │ │ │ │ ├── sender.benchmark.js │ │ │ │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ └── wscat │ │ │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o.d │ │ │ │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ │ └── validation.o.d │ │ │ │ │ │ │ │ │ │ │ │ └── validation.node.d │ │ │ │ │ │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o │ │ │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ └── validation.o │ │ │ │ │ │ │ │ │ │ └── validation.node │ │ │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ │ │ ├── bufferutil.target.mk │ │ │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ │ │ │ └── validation.target.mk │ │ │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ │ └── ws.md │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ ├── fileapi │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ │ └── uploader.js │ │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ │ ├── serverstats-express_3 │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ │ ├── serverstats │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ │ └── ssl.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ ├── BufferPool.js │ │ │ │ │ │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ │ │ │ │ │ ├── BufferUtil.js │ │ │ │ │ │ │ │ │ ├── ErrorCodes.js │ │ │ │ │ │ │ │ │ ├── Receiver.hixie.js │ │ │ │ │ │ │ │ │ ├── Receiver.js │ │ │ │ │ │ │ │ │ ├── Sender.hixie.js │ │ │ │ │ │ │ │ │ ├── Sender.js │ │ │ │ │ │ │ │ │ ├── Validation.fallback.js │ │ │ │ │ │ │ │ │ ├── Validation.js │ │ │ │ │ │ │ │ │ ├── WebSocket.js │ │ │ │ │ │ │ │ │ ├── WebSocketServer.js │ │ │ │ │ │ │ │ │ └── browser.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ ├── commander │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ └── commander.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ ├── nan │ │ │ │ │ │ │ │ │ │ ├── .index.js │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ └── options.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ └── tinycolor │ │ │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ └── tinycolor.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ │ ├── bufferutil.cc │ │ │ │ │ │ │ │ │ └── validation.cc │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── BufferPool.test.js │ │ │ │ │ │ │ │ │ ├── Receiver.hixie.test.js │ │ │ │ │ │ │ │ │ ├── Receiver.test.js │ │ │ │ │ │ │ │ │ ├── Sender.hixie.test.js │ │ │ │ │ │ │ │ │ ├── Sender.test.js │ │ │ │ │ │ │ │ │ ├── Validation.test.js │ │ │ │ │ │ │ │ │ ├── WebSocket.integration.js │ │ │ │ │ │ │ │ │ ├── WebSocket.test.js │ │ │ │ │ │ │ │ │ ├── WebSocketServer.test.js │ │ │ │ │ │ │ │ │ ├── autobahn-server.js │ │ │ │ │ │ │ │ │ ├── autobahn.js │ │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ │ ├── agent1-cert.pem │ │ │ │ │ │ │ │ │ ├── agent1-key.pem │ │ │ │ │ │ │ │ │ ├── ca1-cert.pem │ │ │ │ │ │ │ │ │ ├── ca1-key.pem │ │ │ │ │ │ │ │ │ ├── certificate.pem │ │ │ │ │ │ │ │ │ ├── key.pem │ │ │ │ │ │ │ │ │ ├── request.pem │ │ │ │ │ │ │ │ │ └── textfile │ │ │ │ │ │ │ │ │ ├── hybi-common.js │ │ │ │ │ │ │ │ │ └── testserver.js │ │ │ │ │ │ │ └── xmlhttprequest │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── autotest.watchr │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ └── demo.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ ├── test-constants.js │ │ │ │ │ │ │ │ ├── test-events.js │ │ │ │ │ │ │ │ ├── test-exceptions.js │ │ │ │ │ │ │ │ ├── test-headers.js │ │ │ │ │ │ │ │ ├── test-redirect-302.js │ │ │ │ │ │ │ │ ├── test-redirect-303.js │ │ │ │ │ │ │ │ ├── test-redirect-307.js │ │ │ │ │ │ │ │ ├── test-request-methods.js │ │ │ │ │ │ │ │ ├── test-request-protocols.js │ │ │ │ │ │ │ │ └── testdata.txt │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── has-binary │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ └── big.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── isarray │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.js │ │ │ │ │ ├── indexof │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── object-component │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── object.js │ │ │ │ │ ├── parseuri │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test.js │ │ │ │ │ └── to-array │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ ├── package.json │ │ │ │ └── socket.io.js │ │ │ └── socket.io-parser │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── .zuul.yml │ │ │ │ ├── History.md │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── bench │ │ │ │ ├── bench.js │ │ │ │ └── index.js │ │ │ │ ├── binary.js │ │ │ │ ├── index.js │ │ │ │ ├── is-buffer.js │ │ │ │ ├── node_modules │ │ │ │ ├── benchmark │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ ├── README.md │ │ │ │ │ ├── benchmark.js │ │ │ │ │ ├── doc │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── package.json │ │ │ │ │ └── test │ │ │ │ │ │ ├── run-test.sh │ │ │ │ │ │ └── test.js │ │ │ │ ├── component-emitter │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── bower.json │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ ├── isarray │ │ │ │ │ ├── README.md │ │ │ │ │ ├── build │ │ │ │ │ │ └── build.js │ │ │ │ │ ├── component.json │ │ │ │ │ ├── index.js │ │ │ │ │ └── package.json │ │ │ │ └── json3 │ │ │ │ │ ├── .gitmodules │ │ │ │ │ ├── .jamignore │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── README.md │ │ │ │ │ ├── coverage │ │ │ │ │ ├── coverage.json │ │ │ │ │ ├── lcov-report │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ └── json3.js.html │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ └── prettify.js │ │ │ │ │ └── lcov.info │ │ │ │ │ ├── lib │ │ │ │ │ ├── json3.js │ │ │ │ │ └── json3.min.js │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ └── package.json │ │ ├── user.js │ │ └── utils.js ├── Jaraguard │ ├── assets │ │ ├── Player45x33.png │ │ ├── audio │ │ │ ├── 51243__rutgermuller__haunting-music-1.wav │ │ │ ├── Menu8-Bit.ogg │ │ │ └── TheForestAwakes.ogg │ │ ├── buttons │ │ │ ├── btCreditsSelected_262-33.png │ │ │ ├── btCredits_262-33.png │ │ │ ├── btHowToPlaySelected_413-33.png │ │ │ ├── btHowToPlay_413-33.png │ │ │ ├── btNoSelected_208-59.png │ │ │ ├── btNo_208-59.png │ │ │ ├── btPlaySelected_147-33.png │ │ │ ├── btPlay_147-33.png │ │ │ ├── btScoreSelected_185-33.png │ │ │ ├── btScore_185-33.png │ │ │ ├── btYesSelected_208-59.png │ │ │ ├── btYes_208-59.png │ │ │ └── button.tps │ │ ├── canhaoplayer.png │ │ ├── espaco.png │ │ ├── explosao.png │ │ ├── giroChefao103x256.png │ │ ├── inimigoTipo2.png │ │ ├── invader.png │ │ ├── mapa_fase_01.json │ │ ├── phaser-ship.png │ │ ├── player.png │ │ ├── playerVida.png │ │ ├── screenshots │ │ │ ├── About_800-600.png │ │ │ ├── GameOver_800-600.png │ │ │ ├── Menu.tps │ │ │ ├── Menu1_800-600.png │ │ │ ├── Menu2_800-600.png │ │ │ ├── SplashGame_800-600.png │ │ │ └── SplashTeam_800-600.png │ │ ├── sheetInimigoTipo2_57X75.png │ │ ├── sheetInimigoTipo2_Volta_57X75.png │ │ ├── sheetTiroInimigo1_17x16.png │ │ ├── sheetTiroInimigo2_47x81.png │ │ ├── ship1.png │ │ ├── spritSheetMorcego32x22.png │ │ ├── spriteChefao.png │ │ ├── spriteSheetMorcegoChefao.png │ │ ├── spriteSheetMorcegoChefao800x120.png │ │ ├── spritesheets │ │ │ ├── Menu.json │ │ │ ├── Menu.png │ │ │ ├── buttons.json │ │ │ └── buttons.png │ │ ├── testeMapa.json │ │ ├── tilesetMorcego.png │ │ ├── tileset_fase_1 - Retrovertido.png │ │ ├── tileset_fase_1.png │ │ ├── tiroInimigo.png │ │ ├── tiroInimigo30x11.png │ │ └── tiroplayer.png │ ├── index.html │ └── js │ │ ├── Credits.js │ │ ├── FilePaths.js │ │ ├── Game.js │ │ ├── Life.js │ │ ├── Mapa.js │ │ ├── Menu.js │ │ ├── Player.js │ │ ├── Score.js │ │ ├── Splash.js │ │ └── phaser.min.js ├── Spaceman │ ├── assets │ │ ├── fonts │ │ │ ├── BACKTO1982.TTF │ │ │ ├── OCR A Std.ttf │ │ │ ├── ka1.ttf │ │ │ └── std.ttf │ │ ├── screens │ │ │ ├── LudusSplash.png │ │ │ ├── btns.png │ │ │ ├── credits.png │ │ │ ├── menu.png │ │ │ └── tiledbackground4.png │ │ ├── sound │ │ │ ├── explosion2.wav │ │ │ ├── fly.mp3 │ │ │ ├── game.wav │ │ │ ├── hover1.wav │ │ │ ├── turbina1.wav │ │ │ └── turbina2.wav │ │ ├── spritesheets │ │ │ ├── 1.png │ │ │ ├── 2.png │ │ │ ├── 3.png │ │ │ ├── 4.png │ │ │ ├── 5.png │ │ │ ├── back.png │ │ │ ├── control1.png │ │ │ ├── control2.png │ │ │ ├── fireBlue.png │ │ │ ├── fireYelow.png │ │ │ ├── fogo.png │ │ │ ├── laserCannon.png │ │ │ ├── playerExplode.png │ │ │ ├── playerOne.png │ │ │ ├── playerTwo.png │ │ │ ├── rocks.png │ │ │ ├── ships.css │ │ │ ├── soundbtn.png │ │ │ └── star.png │ │ └── tileSprites │ │ │ ├── background.png │ │ │ ├── frontGround.png │ │ │ └── frontGround2.png │ ├── img180x133.png │ ├── img323x323.png │ ├── index.html │ ├── js │ │ ├── Credits.js │ │ ├── Game.js │ │ ├── Menu.js │ │ ├── Rock.js │ │ ├── Spaceman.js │ │ ├── Splash.js │ │ └── phaser.min.js │ └── spaceman.png ├── antonioarquelau │ ├── Pinturas │ │ ├── kratos.png │ │ └── tarefa angry birds.png │ └── TesteDinossauro │ │ ├── assets │ │ ├── SpriteDinosauro.png │ │ ├── phaser.js │ │ ├── phaser.map │ │ └── phaser.min.js │ │ ├── index.html │ │ └── js │ │ └── phaser.min.js ├── asteroids │ ├── assets │ │ ├── audios │ │ │ ├── AsteroidsSaucer.mp3 │ │ │ ├── AsteroidsSaucer.wav │ │ │ ├── AsteroidsShoot.mp3 │ │ │ ├── AsteroidsShoot.wav │ │ │ ├── AsteroidsThrust.mp3 │ │ │ ├── AsteroidsThrust.wav │ │ │ ├── AsteroidsTonehi.mp3 │ │ │ ├── AsteroidsTonehi.wav │ │ │ ├── AsteroidsTonelo.mp3 │ │ │ └── AsteroidsTonelo.wav │ │ ├── divulgation_200-200.png │ │ ├── fonts │ │ │ ├── SFAtarianSystem.ttf │ │ │ ├── VectorB.ttf │ │ │ ├── vector.png │ │ │ ├── vector.xml │ │ │ ├── vectorB.fnt │ │ │ └── vectorB_0.png │ │ ├── images │ │ │ ├── Asteroids_1_80-80.png │ │ │ ├── asteroids1_20-20.png │ │ │ ├── asteroids1_40-40.png │ │ │ ├── asteroids1_80-80.png │ │ │ ├── asteroids2_20-20.png │ │ │ ├── asteroids2_40-40.png │ │ │ ├── asteroids2_80-79.png │ │ │ ├── asteroids3_20-20.png │ │ │ ├── asteroids3_40-40.png │ │ │ ├── asteroids3_79-80.png │ │ │ ├── asteroids_1_20-20.png │ │ │ ├── asteroids_1_40-40.png │ │ │ ├── buttons │ │ │ │ ├── btnCreditsSelected_256-34.png │ │ │ │ ├── btnCredits_256-34.png │ │ │ │ ├── btnHowToPlaySelected_381-34.png │ │ │ │ ├── btnHowToPlay_381-34.png │ │ │ │ ├── btnPlaySelected_155-34.png │ │ │ │ ├── btnPlay_155-34.png │ │ │ │ ├── btnScoreSelected_365-34.png │ │ │ │ └── btnScore_356-34.png │ │ │ ├── ludus.ico │ │ │ ├── particle_1-15.png │ │ │ ├── particula.png │ │ │ ├── shipFire1_14-24.png │ │ │ ├── shipFire3_14-24.png │ │ │ ├── ship_14-24.png │ │ │ ├── ship_22-34.png │ │ │ ├── shoot_2-2.png │ │ │ ├── tiro.png │ │ │ ├── title1_532-111.png │ │ │ ├── title2_532-111.png │ │ │ └── ufo_96-61.png │ │ ├── screenshots │ │ │ ├── credits_800-480.png │ │ │ ├── highScore_800-480 .png │ │ │ ├── highScore_800-480.png │ │ │ ├── highScores_example.png │ │ │ ├── howToPlay_800-480.png │ │ │ ├── menu_example.png │ │ │ ├── splashTeam_800-480.png │ │ │ └── splash_example.png │ │ └── spritesheets │ │ │ ├── AsteroidsSpriteSheet.png │ │ │ ├── AsteroidsSpriteSheet.tps │ │ │ ├── ButtonsSpriteSheet.json │ │ │ ├── ButtonsSpriteSheet.png │ │ │ ├── ButtonsSpriteSheet.tps │ │ │ ├── CreditsButton.png │ │ │ ├── GameSpriteSheet.json │ │ │ ├── GameSpriteSheet.png │ │ │ ├── HighScoreButton.png │ │ │ ├── HowToPlayButton.png │ │ │ ├── PlayButton.png │ │ │ ├── TitlesSpriteSheet.json │ │ │ ├── TitlesSpriteSheet.png │ │ │ └── TitlesSpriteSheet.tps │ ├── index.html │ └── js │ │ ├── Asteroid.js │ │ ├── Credits.js │ │ ├── Game.js │ │ ├── HighScores.js │ │ ├── HighScoresInput.js │ │ ├── HowToPlay.js │ │ ├── Menu.js │ │ ├── SpaceShip.js │ │ ├── Splash.js │ │ ├── phaser.min.js │ │ └── ufo.js ├── boiuna │ ├── assets │ │ ├── audios │ │ │ ├── MusicLose.mp3 │ │ │ ├── MusicNormal.mp3 │ │ │ └── MusicWin.mp3 │ │ ├── images │ │ │ ├── Credits_960-600.png │ │ │ ├── DefeatScreen_960-600.png │ │ │ ├── GameBackground_1920-600.png │ │ │ ├── GameSplash_960-600.png │ │ │ ├── HowToPlayDesktop_960-600.png │ │ │ ├── HowToPlayMobile_960-600.png │ │ │ ├── Life_20-20.png │ │ │ ├── LudusSplash_960-600.png │ │ │ ├── MenuBackground_960-600.png │ │ │ ├── ProgressBar_960-30.png │ │ │ ├── SponsorSplash_960-600.png │ │ │ ├── StoryAfter_960-600.png │ │ │ ├── StoryBefore_960-600.png │ │ │ ├── TutorialDesktop_960-600.png │ │ │ ├── TutorialMobile_960-600.png │ │ │ └── VictoryScreen_960-600.png │ │ ├── map │ │ │ ├── Boiuna_90-90_8.png │ │ │ ├── Grass_30-30.png │ │ │ ├── HeroNormal_78-96_6.png │ │ │ ├── Lady_51-78_3.png │ │ │ ├── Terrain_150-30.png │ │ │ └── Tilemap.json │ │ └── spritesheets │ │ │ ├── ButtonCredits_204-75_3.png │ │ │ ├── ButtonHit_960-150_2.png │ │ │ ├── ButtonHowToPlay_275-75_3.png │ │ │ ├── ButtonJumpLeft_320-225_2.png │ │ │ ├── ButtonJumpRight_320-225_2.png │ │ │ ├── ButtonLeft_480-225_2.png │ │ │ ├── ButtonPlay_141-75_3.png │ │ │ ├── ButtonRight_480-225_2.png │ │ │ ├── ButtonUp_320-225_2.png │ │ │ ├── Fire_10-10_4.png │ │ │ ├── HeroAttack_62-96_2.png │ │ │ ├── Princess_45-78_3.png │ │ │ └── SmallDragon_95-52_4.png │ ├── index.html │ └── js │ │ ├── Main.js │ │ ├── config │ │ └── Config.js │ │ ├── game │ │ ├── ButtonHit.js │ │ ├── ButtonJumpLeft.js │ │ ├── ButtonJumpRight.js │ │ ├── ButtonLeft.js │ │ ├── ButtonRight.js │ │ ├── ButtonUp.js │ │ ├── ControlHero.js │ │ ├── Dragon.js │ │ ├── Fire.js │ │ ├── Grass.js │ │ ├── Hero.js │ │ ├── Lady.js │ │ ├── Level.js │ │ ├── Life.js │ │ ├── Platforms.js │ │ ├── Princess.js │ │ ├── Score.js │ │ ├── SmallDragon.js │ │ ├── Tilemap.js │ │ └── Tutorial.js │ │ └── states │ │ ├── Credits.js │ │ ├── DefeatScreen.js │ │ ├── Game.js │ │ ├── GameSplash.js │ │ ├── HowToPlayDesktop.js │ │ ├── HowToPlayMobile.js │ │ ├── LudusSplash.js │ │ ├── Menu.js │ │ ├── SponsorSplash.js │ │ ├── StoryAfter.js │ │ ├── StoryBefore.js │ │ └── VictoryScreen.js ├── dinopixel │ ├── assets │ │ ├── dinopixel.png │ │ ├── fonts │ │ │ ├── PressStart2P-Regular.ttf │ │ │ ├── index.html │ │ │ ├── ka1.ttf │ │ │ └── unlearn2.ttf │ │ ├── index.html │ │ ├── musics │ │ │ ├── jogo.mp3 │ │ │ └── menu.mp3 │ │ ├── screens │ │ │ ├── DinoPixel.png │ │ │ ├── cerdits.png │ │ │ ├── credits.png │ │ │ ├── index.html │ │ │ ├── play.png │ │ │ ├── pressOnScreenToStart.png │ │ │ └── splashTeam.png │ │ ├── sfx │ │ │ ├── eat.mp3 │ │ │ ├── esmagando.mp3 │ │ │ ├── explosion3.mp3 │ │ │ ├── foodDown.mp3 │ │ │ ├── hitCar.mp3 │ │ │ ├── index.html │ │ │ ├── inimigoTiro.mp3 │ │ │ ├── insertCoin.mp3 │ │ │ ├── jump.mp3 │ │ │ ├── lifeUp.mp3 │ │ │ ├── lose2.mp3 │ │ │ ├── menusound.mp3 │ │ │ ├── menusoundluan.mp3 │ │ │ ├── portalTime2.mp3 │ │ │ ├── takeDamage.mp3 │ │ │ └── tiroTank.mp3 │ │ ├── spriteSheets │ │ │ ├── armySniper.png │ │ │ ├── bullet1.png │ │ │ ├── bullet2.png │ │ │ ├── bullet3.png │ │ │ ├── cars.png │ │ │ ├── dp.png │ │ │ ├── explosion.png │ │ │ ├── humans.png │ │ │ ├── index.html │ │ │ ├── particles.png │ │ │ ├── particles2.png │ │ │ ├── policeCar.png │ │ │ ├── policeMan.png │ │ │ ├── soldier1.png │ │ │ ├── soldier2.png │ │ │ ├── specialOps1.png │ │ │ ├── specialOps2.png │ │ │ ├── specialOpsCar.png │ │ │ ├── specialOpsSniper.png │ │ │ ├── tank.png │ │ │ └── truck.png │ │ ├── sprites │ │ │ ├── back1.png │ │ │ ├── back2.png │ │ │ ├── backGround.png │ │ │ ├── food.png │ │ │ ├── heart.png │ │ │ ├── index.html │ │ │ └── scoreTable.png │ │ └── tileMaps │ │ │ ├── cityThings.png │ │ │ ├── index.html │ │ │ ├── stage.json │ │ │ ├── urbanBuildings1.png │ │ │ └── urbanBuildings2.png │ ├── index.html │ └── js │ │ ├── car.js │ │ ├── credits.js │ │ ├── dino.js │ │ ├── enemy.js │ │ ├── game.js │ │ ├── human.js │ │ ├── index.html │ │ └── splash.js ├── galaga │ └── public_html │ │ ├── assets │ │ ├── ball.png │ │ ├── bullet.png │ │ ├── credits.PNG │ │ ├── enemy-bullet.png │ │ ├── explode.png │ │ ├── invader.png │ │ ├── invader32x32x4.png │ │ ├── logogalaga.png │ │ ├── player.png │ │ ├── playgame.png │ │ ├── spritesgalaga02.png │ │ ├── spritesgalagavespa2_60x30.png │ │ ├── spritesheet01.png │ │ ├── spritesheetexplosao.png │ │ ├── spritesheetvespas128x32.png │ │ ├── spritesheetvespas128x32teste.png │ │ ├── spritsheet04.png │ │ ├── spritsheetvespa_03.png │ │ └── starfield.png │ │ ├── index.html │ │ └── js │ │ └── phaser.min.js ├── galagaV1.1 │ ├── assets │ │ ├── bullet_4-9.png │ │ ├── buttons │ │ │ ├── btCreditsSelected_215-27.png │ │ │ ├── btCredits_215-27.png │ │ │ ├── btHighSelected_341-27.png │ │ │ ├── btHigh_341-27.png │ │ │ ├── btHowToSelected_341-27.png │ │ │ ├── btHowTo_341-27.png │ │ │ ├── btPlaySelected_121-27.png │ │ │ └── btPlay_121-27.png │ │ ├── enemy-bullet.png │ │ ├── fonts │ │ │ └── ARCADE_N.TTF │ │ ├── particle_1-15.png │ │ ├── screenshots │ │ │ ├── Game_480-600.png │ │ │ ├── Menu6_480-600.png │ │ │ ├── Menu_480-600.png │ │ │ ├── SplashLudus_480-600.png │ │ │ ├── Splash_480-600.png │ │ │ ├── menu4_480-600.png │ │ │ └── tile_480-1200.png │ │ └── spritesheets │ │ │ ├── buttonsArray.json │ │ │ ├── buttonsArray.png │ │ │ ├── enemy1.json │ │ │ ├── enemy1.png │ │ │ ├── ship.json │ │ │ └── ship.png │ ├── index.html │ └── js │ │ ├── Enemy.js │ │ ├── EnemyGroup.js │ │ ├── Game.js │ │ ├── Menu.js │ │ ├── Ship.js │ │ ├── Splash.js │ │ └── phaser.min.js ├── hellophaser │ ├── index.html │ ├── phaser.min.js │ └── phaser.png ├── klix │ ├── assets │ │ ├── audios │ │ │ ├── AsteroidsSaucer.mp3 │ │ │ ├── AsteroidsSaucer.wav │ │ │ ├── AsteroidsShoot.mp3 │ │ │ ├── AsteroidsShoot.wav │ │ │ ├── AsteroidsThrust.mp3 │ │ │ ├── AsteroidsThrust.wav │ │ │ ├── AsteroidsTonehi.mp3 │ │ │ ├── AsteroidsTonehi.wav │ │ │ ├── AsteroidsTonelo.mp3 │ │ │ ├── AsteroidsTonelo.wav │ │ │ ├── Blip_Select.wav │ │ │ ├── Blip_Select1.wav │ │ │ ├── Explosion1.wav │ │ │ ├── Explosion2.wav │ │ │ ├── Explosion3.wav │ │ │ ├── Explosion4.wav │ │ │ ├── Powerup.wav │ │ │ ├── bangMedium.wav │ │ │ ├── bangSmall.wav │ │ │ ├── bip.wav │ │ │ ├── bip1.wav │ │ │ ├── laser.mp3 │ │ │ ├── laser.wav │ │ │ ├── reset.wav │ │ │ ├── siren.wav │ │ │ ├── suspense.wav │ │ │ ├── tick.wav │ │ │ ├── tick1.wav │ │ │ └── tick2.wav │ │ ├── divulgation_200-200.png │ │ ├── fonts │ │ │ ├── 14701.ttf │ │ │ ├── ARCADE_I.TTF │ │ │ ├── FORCED SQUARE.ttf │ │ │ ├── Hyperspace Bold.ttf │ │ │ ├── Hyperspace-Bold.ttf │ │ │ ├── SFAtarianSystem.ttf │ │ │ ├── VectorB.ttf │ │ │ ├── arcade.ttf │ │ │ ├── vector.png │ │ │ ├── vector.xml │ │ │ ├── vectorB.fnt │ │ │ └── vectorB_0.png │ │ ├── images │ │ │ ├── Asteroids_1_80-80.png │ │ │ ├── Tiled1.png │ │ │ ├── Tiled2.png │ │ │ ├── alert.png │ │ │ ├── asteroid1_25-60.png │ │ │ ├── asteroids.json │ │ │ ├── asteroids1_20-20.png │ │ │ ├── asteroids1_40-40.png │ │ │ ├── asteroids1_80-80.png │ │ │ ├── asteroids2_20-20.png │ │ │ ├── asteroids2_40-40.png │ │ │ ├── asteroids2_80-79.png │ │ │ ├── asteroids3_20-20.png │ │ │ ├── asteroids3_40-40.png │ │ │ ├── asteroids3_79-80.png │ │ │ ├── asteroids4_20-20.png │ │ │ ├── asteroids4_40-40.png │ │ │ ├── asteroids4_80-80.png │ │ │ ├── asteroids5_20-20.png │ │ │ ├── asteroids5_40-40.png │ │ │ ├── asteroids5_80-79.png │ │ │ ├── asteroids6_20-20.png │ │ │ ├── asteroids6_40-40.png │ │ │ ├── asteroids6_79-80.png │ │ │ ├── asteroidsCircle1.png │ │ │ ├── asteroidsCircle2.png │ │ │ ├── asteroidsCircle3.png │ │ │ ├── asteroidsCircle4.png │ │ │ ├── asteroids_1_20-20.png │ │ │ ├── asteroids_1_40-40.png │ │ │ ├── buttons │ │ │ │ ├── btnCreditsSelected_256-34.png │ │ │ │ ├── btnCredits_256-34.png │ │ │ │ ├── btnHowToPlaySelected_381-34.png │ │ │ │ ├── btnHowToPlay_381-34.png │ │ │ │ ├── btnPlaySelected_155-34.png │ │ │ │ ├── btnPlay_155-34.png │ │ │ │ ├── btnScoreSelected_365-34.png │ │ │ │ └── btnScore_356-34.png │ │ │ ├── laser_5-2.png │ │ │ ├── ludus.ico │ │ │ ├── nave1.png │ │ │ ├── particle_1-15.png │ │ │ ├── particula.png │ │ │ ├── res.png │ │ │ ├── ship0_37x39.png │ │ │ ├── ship1_37x39.png │ │ │ ├── ship2_14-24.png │ │ │ ├── ship2_37x39.png │ │ │ ├── ship2fire_14-24.png │ │ │ ├── ship3_37x39.png │ │ │ ├── shipFire1_14-24.png │ │ │ ├── ship_14-24.png │ │ │ ├── ship_22-34.png │ │ │ ├── shoot_2-2.png │ │ │ ├── tiro.png │ │ │ ├── title1_532-111.png │ │ │ ├── title2_532-111.png │ │ │ ├── ufo_70-35.png │ │ │ └── ufo_96-61.png │ │ ├── klix-800x600.png │ │ ├── screenshots │ │ │ ├── ButtonsSpriteSheet.json │ │ │ ├── ButtonsSpriteSheet.png │ │ │ ├── Klix1.png │ │ │ ├── btncredits1.png │ │ │ ├── btncredits2.png │ │ │ ├── btnhowto1.png │ │ │ ├── btnhowto2.png │ │ │ ├── btnplay1.png │ │ │ ├── btnplay2.png │ │ │ ├── btnscores1.png │ │ │ ├── btnscores2.png │ │ │ ├── collectresources.png │ │ │ ├── credits.png │ │ │ ├── howtoplay.png │ │ │ ├── lose.png │ │ │ ├── screens.json │ │ │ ├── screens.png │ │ │ ├── screens.tps │ │ │ ├── splashTeam_800-600.png │ │ │ ├── title.png │ │ │ └── win.png │ │ └── spritesheets │ │ │ ├── AsteroidsSpriteSheet.json │ │ │ ├── AsteroidsSpriteSheet.png │ │ │ ├── AsteroidsSpriteSheet.tps │ │ │ ├── ButtonsSpriteSheet.json │ │ │ ├── ButtonsSpriteSheet.png │ │ │ ├── ButtonsSpriteSheet.tps │ │ │ ├── CreditsButton.png │ │ │ ├── GameSpriteSheet.json │ │ │ ├── GameSpriteSheet.png │ │ │ ├── HighScoreButton.png │ │ │ ├── HowToPlayButton.png │ │ │ ├── PlayButton.png │ │ │ ├── SpaceShips.json │ │ │ ├── SpaceShips.png │ │ │ ├── TitlesSpriteSheet.json │ │ │ ├── TitlesSpriteSheet.png │ │ │ ├── TitlesSpriteSheet.tps │ │ │ ├── spriteSchips.json │ │ │ ├── spriteSchips.png │ │ │ ├── sprites.json │ │ │ ├── sprites.plist │ │ │ ├── sprites.png │ │ │ └── sprites.tps │ ├── index.html │ └── js │ │ ├── Asteroid.js │ │ ├── Credits.js │ │ ├── Game.js │ │ ├── HighScores.js │ │ ├── HighScoresInput.js │ │ ├── HowToPlay.js │ │ ├── Menu.js │ │ ├── SpaceShip.js │ │ ├── Splash.js │ │ ├── Ufo.js │ │ ├── Win.js │ │ ├── lose.js │ │ └── phaser.min.js ├── lahis │ ├── Pintura Digital │ │ ├── Angry Birds.jpg │ │ └── Kratos.jpg │ ├── dinossauro │ │ ├── assets │ │ │ ├── dinossauro.png │ │ │ └── osso.png │ │ └── js │ │ │ └── game.js │ └── index.html ├── multiplayer │ ├── assets │ │ └── images │ │ │ ├── rectangle.png │ │ │ └── selection.png │ ├── index.html │ ├── js │ │ ├── auth.js │ │ ├── game.js │ │ ├── node_modules │ │ │ └── socket.io │ │ │ │ ├── .npmignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── History.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── Readme.md │ │ │ │ ├── index.js │ │ │ │ ├── latest │ │ │ │ ├── lib │ │ │ │ ├── client.js │ │ │ │ ├── index.js │ │ │ │ ├── namespace.js │ │ │ │ └── socket.js │ │ │ │ ├── node_modules │ │ │ │ ├── debug │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── debug.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ └── debug.js │ │ │ │ │ └── package.json │ │ │ │ ├── engine.io │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── engine.io.js │ │ │ │ │ │ ├── server.js │ │ │ │ │ │ ├── socket.js │ │ │ │ │ │ ├── transport.js │ │ │ │ │ │ └── transports │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── polling-jsonp.js │ │ │ │ │ │ │ ├── polling-xhr.js │ │ │ │ │ │ │ ├── polling.js │ │ │ │ │ │ │ └── websocket.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ └── wscat │ │ │ │ │ │ ├── base64id │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── base64id.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── debug │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── debug.js │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ │ ├── browser.html │ │ │ │ │ │ │ │ ├── wildcards.js │ │ │ │ │ │ │ │ └── worker.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── debug.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── engine.io-parser │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── keys.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── after │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── after-test.js │ │ │ │ │ │ │ │ ├── arraybuffer.slice │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── slice-buffer.js │ │ │ │ │ │ │ │ ├── base64-arraybuffer │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── grunt.js │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer_test.js │ │ │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ │ │ ├── LICENSE-GPL.txt │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ └── utf8.js.html │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ │ ├── generate-test-data.py │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── tests.js │ │ │ │ │ │ │ │ │ ├── utf8.js │ │ │ │ │ │ │ │ │ └── x.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ └── ws │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── bench │ │ │ │ │ │ │ ├── parser.benchmark.js │ │ │ │ │ │ │ ├── sender.benchmark.js │ │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ └── wscat │ │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o.d │ │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ └── validation.o.d │ │ │ │ │ │ │ │ │ │ └── validation.node.d │ │ │ │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ └── validation.o │ │ │ │ │ │ │ │ └── validation.node │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ ├── bufferutil.target.mk │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ │ └── validation.target.mk │ │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ └── ws.md │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ ├── fileapi │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ └── uploader.js │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ ├── serverstats-express_3 │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ ├── serverstats │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ └── ssl.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ ├── BufferPool.js │ │ │ │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ │ │ │ ├── BufferUtil.js │ │ │ │ │ │ │ ├── ErrorCodes.js │ │ │ │ │ │ │ ├── Receiver.hixie.js │ │ │ │ │ │ │ ├── Receiver.js │ │ │ │ │ │ │ ├── Sender.hixie.js │ │ │ │ │ │ │ ├── Sender.js │ │ │ │ │ │ │ ├── Validation.fallback.js │ │ │ │ │ │ │ ├── Validation.js │ │ │ │ │ │ │ ├── WebSocket.js │ │ │ │ │ │ │ ├── WebSocketServer.js │ │ │ │ │ │ │ └── browser.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── commander │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── commander.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── nan │ │ │ │ │ │ │ │ ├── .index.js │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── options.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ │ └── test.conf │ │ │ │ │ │ │ │ │ └── options.test.js │ │ │ │ │ │ │ └── tinycolor │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── tinycolor.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── bufferutil.cc │ │ │ │ │ │ │ └── validation.cc │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ ├── BufferPool.test.js │ │ │ │ │ │ │ ├── Receiver.hixie.test.js │ │ │ │ │ │ │ ├── Receiver.test.js │ │ │ │ │ │ │ ├── Sender.hixie.test.js │ │ │ │ │ │ │ ├── Sender.test.js │ │ │ │ │ │ │ ├── Validation.test.js │ │ │ │ │ │ │ ├── WebSocket.integration.js │ │ │ │ │ │ │ ├── WebSocket.test.js │ │ │ │ │ │ │ ├── WebSocketServer.test.js │ │ │ │ │ │ │ ├── autobahn-server.js │ │ │ │ │ │ │ ├── autobahn.js │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ ├── agent1-cert.pem │ │ │ │ │ │ │ ├── agent1-key.pem │ │ │ │ │ │ │ ├── ca1-cert.pem │ │ │ │ │ │ │ ├── ca1-key.pem │ │ │ │ │ │ │ ├── certificate.pem │ │ │ │ │ │ │ ├── key.pem │ │ │ │ │ │ │ ├── request.pem │ │ │ │ │ │ │ └── textfile │ │ │ │ │ │ │ ├── hybi-common.js │ │ │ │ │ │ │ └── testserver.js │ │ │ │ │ └── package.json │ │ │ │ ├── has-binary-data │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── isarray │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── test.js │ │ │ │ ├── socket.io-adapter │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ └── socket.io-parser │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── binary.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ ├── emitter │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ └── emitter.js │ │ │ │ │ │ │ ├── isarray │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── json3 │ │ │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ │ │ ├── .jamignore │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ │ │ ├── coverage.json │ │ │ │ │ │ │ │ ├── lcov-report │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ └── json3.js.html │ │ │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ │ │ └── prettify.js │ │ │ │ │ │ │ │ └── lcov.info │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── json3.js │ │ │ │ │ │ │ │ └── json3.min.js │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ ├── socket.io-client │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README.md │ │ │ │ │ ├── coverage │ │ │ │ │ │ ├── coverage.json │ │ │ │ │ │ ├── lcov-report │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── url.js.html │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ │ └── socket.io-client │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.js.html │ │ │ │ │ │ │ │ └── lib │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ ├── index.js.html │ │ │ │ │ │ │ │ ├── manager.js.html │ │ │ │ │ │ │ │ ├── on.js.html │ │ │ │ │ │ │ │ ├── socket.js.html │ │ │ │ │ │ │ │ └── url.js.html │ │ │ │ │ │ └── lcov.info │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── manager.js │ │ │ │ │ │ ├── on.js │ │ │ │ │ │ ├── socket.js │ │ │ │ │ │ └── url.js │ │ │ │ │ ├── node_modules │ │ │ │ │ │ ├── component-bind │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── component-emitter │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── engine.io-client │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── engine.io.js │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ ├── socket.js │ │ │ │ │ │ │ │ ├── transport.js │ │ │ │ │ │ │ │ ├── transports │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── polling-jsonp.js │ │ │ │ │ │ │ │ │ ├── polling-xhr.js │ │ │ │ │ │ │ │ │ ├── polling.js │ │ │ │ │ │ │ │ │ └── websocket.js │ │ │ │ │ │ │ │ └── xmlhttprequest.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ ├── .bin │ │ │ │ │ │ │ │ │ └── wscat │ │ │ │ │ │ │ │ ├── component-inherit │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ └── inherit.js │ │ │ │ │ │ │ │ ├── engine.io-parser │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ ├── browser.js │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── keys.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ ├── after │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ │ └── after-test.js │ │ │ │ │ │ │ │ │ │ ├── arraybuffer.slice │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ │ └── slice-buffer.js │ │ │ │ │ │ │ │ │ │ ├── base64-arraybuffer │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── grunt.js │ │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ │ └── base64-arraybuffer_test.js │ │ │ │ │ │ │ │ │ │ ├── blob │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ │ └── index.js │ │ │ │ │ │ │ │ │ │ └── utf8 │ │ │ │ │ │ │ │ │ │ │ ├── .gitattributes │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ │ ├── Gruntfile.js │ │ │ │ │ │ │ │ │ │ │ ├── LICENSE-GPL.txt │ │ │ │ │ │ │ │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── bower.json │ │ │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ │ │ │ │ ├── prettify.js │ │ │ │ │ │ │ │ │ │ │ └── utf8.js │ │ │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ │ │ └── utf8.js.html │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ ├── tests │ │ │ │ │ │ │ │ │ │ │ ├── generate-test-data.py │ │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ │ └── tests.js │ │ │ │ │ │ │ │ │ │ │ ├── utf8.js │ │ │ │ │ │ │ │ │ │ │ └── x.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── has-cors │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── global │ │ │ │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ │ ├── mocha.css │ │ │ │ │ │ │ │ │ │ │ ├── mocha.js │ │ │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ ├── parsejson │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ ├── parseqs │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ │ │ ├── ws │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── bench │ │ │ │ │ │ │ │ │ │ ├── parser.benchmark.js │ │ │ │ │ │ │ │ │ │ ├── sender.benchmark.js │ │ │ │ │ │ │ │ │ │ ├── speed.js │ │ │ │ │ │ │ │ │ │ └── util.js │ │ │ │ │ │ │ │ │ ├── bin │ │ │ │ │ │ │ │ │ │ └── wscat │ │ │ │ │ │ │ │ │ ├── binding.gyp │ │ │ │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Release │ │ │ │ │ │ │ │ │ │ │ ├── .deps │ │ │ │ │ │ │ │ │ │ │ │ └── Release │ │ │ │ │ │ │ │ │ │ │ │ │ ├── bufferutil.node.d │ │ │ │ │ │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o.d │ │ │ │ │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ │ │ └── validation.o.d │ │ │ │ │ │ │ │ │ │ │ │ │ └── validation.node.d │ │ │ │ │ │ │ │ │ │ │ ├── bufferutil.node │ │ │ │ │ │ │ │ │ │ │ ├── linker.lock │ │ │ │ │ │ │ │ │ │ │ ├── obj.target │ │ │ │ │ │ │ │ │ │ │ │ ├── bufferutil │ │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ │ │ └── bufferutil.o │ │ │ │ │ │ │ │ │ │ │ │ └── validation │ │ │ │ │ │ │ │ │ │ │ │ │ └── src │ │ │ │ │ │ │ │ │ │ │ │ │ └── validation.o │ │ │ │ │ │ │ │ │ │ │ └── validation.node │ │ │ │ │ │ │ │ │ │ ├── binding.Makefile │ │ │ │ │ │ │ │ │ │ ├── bufferutil.target.mk │ │ │ │ │ │ │ │ │ │ ├── config.gypi │ │ │ │ │ │ │ │ │ │ ├── gyp-mac-tool │ │ │ │ │ │ │ │ │ │ └── validation.target.mk │ │ │ │ │ │ │ │ │ ├── builderror.log │ │ │ │ │ │ │ │ │ ├── doc │ │ │ │ │ │ │ │ │ │ └── ws.md │ │ │ │ │ │ │ │ │ ├── examples │ │ │ │ │ │ │ │ │ │ ├── fileapi │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ │ │ ├── app.js │ │ │ │ │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ │ │ │ │ └── uploader.js │ │ │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ │ │ ├── serverstats-express_3 │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ │ │ ├── serverstats │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ ├── public │ │ │ │ │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ │ │ │ │ └── server.js │ │ │ │ │ │ │ │ │ │ └── ssl.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ ├── BufferPool.js │ │ │ │ │ │ │ │ │ │ ├── BufferUtil.fallback.js │ │ │ │ │ │ │ │ │ │ ├── BufferUtil.js │ │ │ │ │ │ │ │ │ │ ├── ErrorCodes.js │ │ │ │ │ │ │ │ │ │ ├── Receiver.hixie.js │ │ │ │ │ │ │ │ │ │ ├── Receiver.js │ │ │ │ │ │ │ │ │ │ ├── Sender.hixie.js │ │ │ │ │ │ │ │ │ │ ├── Sender.js │ │ │ │ │ │ │ │ │ │ ├── Validation.fallback.js │ │ │ │ │ │ │ │ │ │ ├── Validation.js │ │ │ │ │ │ │ │ │ │ ├── WebSocket.js │ │ │ │ │ │ │ │ │ │ ├── WebSocketServer.js │ │ │ │ │ │ │ │ │ │ └── browser.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ │ ├── commander │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ │ └── commander.js │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ ├── nan │ │ │ │ │ │ │ │ │ │ │ ├── .index.js │ │ │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── nan.h │ │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ │ ├── options │ │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ │ │ │ └── options.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ │ │ │ │ └── test.conf │ │ │ │ │ │ │ │ │ │ │ │ └── options.test.js │ │ │ │ │ │ │ │ │ │ └── tinycolor │ │ │ │ │ │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ │ │ └── tinycolor.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ │ │ │ ├── bufferutil.cc │ │ │ │ │ │ │ │ │ │ └── validation.cc │ │ │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ │ │ ├── BufferPool.test.js │ │ │ │ │ │ │ │ │ │ ├── Receiver.hixie.test.js │ │ │ │ │ │ │ │ │ │ ├── Receiver.test.js │ │ │ │ │ │ │ │ │ │ ├── Sender.hixie.test.js │ │ │ │ │ │ │ │ │ │ ├── Sender.test.js │ │ │ │ │ │ │ │ │ │ ├── Validation.test.js │ │ │ │ │ │ │ │ │ │ ├── WebSocket.integration.js │ │ │ │ │ │ │ │ │ │ ├── WebSocket.test.js │ │ │ │ │ │ │ │ │ │ ├── WebSocketServer.test.js │ │ │ │ │ │ │ │ │ │ ├── autobahn-server.js │ │ │ │ │ │ │ │ │ │ ├── autobahn.js │ │ │ │ │ │ │ │ │ │ ├── fixtures │ │ │ │ │ │ │ │ │ │ ├── agent1-cert.pem │ │ │ │ │ │ │ │ │ │ ├── agent1-key.pem │ │ │ │ │ │ │ │ │ │ ├── ca1-cert.pem │ │ │ │ │ │ │ │ │ │ ├── ca1-key.pem │ │ │ │ │ │ │ │ │ │ ├── certificate.pem │ │ │ │ │ │ │ │ │ │ ├── key.pem │ │ │ │ │ │ │ │ │ │ ├── request.pem │ │ │ │ │ │ │ │ │ │ └── textfile │ │ │ │ │ │ │ │ │ │ ├── hybi-common.js │ │ │ │ │ │ │ │ │ │ └── testserver.js │ │ │ │ │ │ │ │ └── xmlhttprequest │ │ │ │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ │ │ ├── autotest.watchr │ │ │ │ │ │ │ │ │ ├── example │ │ │ │ │ │ │ │ │ └── demo.js │ │ │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ │ └── XMLHttpRequest.js │ │ │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ │ │ └── tests │ │ │ │ │ │ │ │ │ ├── test-constants.js │ │ │ │ │ │ │ │ │ ├── test-events.js │ │ │ │ │ │ │ │ │ ├── test-exceptions.js │ │ │ │ │ │ │ │ │ ├── test-headers.js │ │ │ │ │ │ │ │ │ ├── test-redirect-302.js │ │ │ │ │ │ │ │ │ ├── test-redirect-303.js │ │ │ │ │ │ │ │ │ ├── test-redirect-307.js │ │ │ │ │ │ │ │ │ ├── test-request-methods.js │ │ │ │ │ │ │ │ │ ├── test-request-protocols.js │ │ │ │ │ │ │ │ │ └── testdata.txt │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── indexof │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ ├── object-component │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test │ │ │ │ │ │ │ │ └── object.js │ │ │ │ │ │ ├── parseuri │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ └── better-assert │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ ├── example.js │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ ├── node_modules │ │ │ │ │ │ │ │ │ └── callsite │ │ │ │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ │ │ └── package.json │ │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ │ └── test.js │ │ │ │ │ │ └── to-array │ │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ │ ├── LICENCE │ │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── package.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── socket.io.js │ │ │ │ └── socket.io-parser │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── .travis.yml │ │ │ │ │ ├── .zuul.yml │ │ │ │ │ ├── History.md │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── Readme.md │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── node_modules │ │ │ │ │ ├── emitter │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── History.md │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── Readme.md │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── package.json │ │ │ │ │ │ └── test │ │ │ │ │ │ │ └── emitter.js │ │ │ │ │ ├── isarray │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── build │ │ │ │ │ │ │ └── build.js │ │ │ │ │ │ ├── component.json │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── json3 │ │ │ │ │ │ ├── .gitmodules │ │ │ │ │ │ ├── .jamignore │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── coverage │ │ │ │ │ │ ├── coverage.json │ │ │ │ │ │ ├── lcov-report │ │ │ │ │ │ │ ├── lib │ │ │ │ │ │ │ │ └── json3.js.html │ │ │ │ │ │ │ ├── prettify.css │ │ │ │ │ │ │ └── prettify.js │ │ │ │ │ │ └── lcov.info │ │ │ │ │ │ ├── lib │ │ │ │ │ │ ├── json3.js │ │ │ │ │ │ └── json3.min.js │ │ │ │ │ │ └── package.json │ │ │ │ │ └── package.json │ │ │ │ └── package.json │ │ ├── pecas.js │ │ ├── phaser.map │ │ ├── phaser.min.js │ │ └── server.js │ ├── readme.txt │ └── style.css ├── no-boo │ ├── assets │ │ ├── botoes.tps │ │ ├── coracao.png │ │ ├── coracao_cheio.png │ │ ├── coracao_vazio.png │ │ ├── divulgation_200-200.png │ │ ├── explosao.png │ │ ├── explosao1.png │ │ ├── explosao10.png │ │ ├── explosao2.png │ │ ├── explosao3.png │ │ ├── explosao4.png │ │ ├── explosao5.png │ │ ├── explosao6.png │ │ ├── explosao7.png │ │ ├── explosao8.png │ │ ├── explosao9.png │ │ ├── telas │ │ │ ├── 0. splash_grupo.png │ │ │ ├── 1. splash_jogo.png │ │ │ ├── 2. menu.png │ │ │ ├── 2. menu_exemplo.png │ │ │ ├── 3. instrucoes.png │ │ │ ├── 4. creditos.png │ │ │ ├── 5. ganhou.png │ │ │ ├── 6. perdeu.png │ │ │ ├── botoes │ │ │ │ ├── botoes.json │ │ │ │ ├── botoes.png │ │ │ │ ├── botoes.xml │ │ │ │ ├── som.png │ │ │ │ └── som_desligado.png │ │ │ ├── fundo.png │ │ │ └── outros │ │ │ │ ├── ludus.ico │ │ │ │ ├── menu.png │ │ │ │ ├── no-boo.png │ │ │ │ ├── pac.png │ │ │ │ ├── telas.pptx │ │ │ │ └── ~$telas.pptx │ │ ├── textures_all.json │ │ ├── textures_all.png │ │ ├── textures_all.tps │ │ └── textures_pacman.png │ ├── audio │ │ ├── Ending.wav │ │ ├── Explosion19.wav │ │ ├── Fail.wav │ │ ├── GhostBusters.mp3 │ │ ├── GhostBusters.ogg │ │ ├── Plop1.wav │ │ ├── Plop2.wav │ │ ├── Plop3.wav │ │ ├── Plop4.wav │ │ ├── Plop5.wav │ │ ├── Plop6.wav │ │ ├── Plop7.wav │ │ ├── Plop8.wav │ │ └── Plop9.wav │ ├── fonts │ │ ├── Grinched.ttf │ │ └── Halloween.ttf │ ├── index.html │ └── js │ │ ├── creditos.js │ │ ├── fantasma.js │ │ ├── ganhou.js │ │ ├── instrucoes.js │ │ ├── jogo.js │ │ ├── menu.js │ │ ├── perdeu.js │ │ ├── phaser.min.js │ │ └── splash.js ├── ohhman │ ├── assets │ │ ├── audios │ │ │ ├── pacman_beginning.wav │ │ │ ├── pacman_chomp.wav │ │ │ ├── pacman_death.wav │ │ │ └── pacman_eatghost.wav │ │ ├── divulgation_200-200.png │ │ ├── fonts │ │ │ └── AndyBold.ttf │ │ ├── images │ │ │ ├── blinky_36-36.png │ │ │ ├── clyde_36-36.png │ │ │ ├── heartEmpty_32-32.png │ │ │ ├── heart_32-32.png │ │ │ ├── inkey_36-36.png │ │ │ ├── ohhMan_36-36.png │ │ │ ├── pinky_36-36.png │ │ │ └── scared_36-36.png │ │ ├── screenshots │ │ │ ├── background.jpg │ │ │ ├── buttons │ │ │ │ ├── btnCreditsSelected_291-75.png │ │ │ │ ├── btnCredits_291-75.png │ │ │ │ ├── btnHighScoresSelected_291-75.png │ │ │ │ ├── btnHighScores_291-75.png │ │ │ │ ├── btnHowToPlaySelected_291-75.png │ │ │ │ ├── btnHowToPlay_291-75.png │ │ │ │ ├── btnPlaySelected_291-75.png │ │ │ │ └── btnPlay_291-75.png │ │ │ ├── credits_800-600.png │ │ │ ├── highScores_800-600.png │ │ │ ├── highScores_800-600_example.png │ │ │ ├── howToPlay_800-600.png │ │ │ ├── lose_800-600.png │ │ │ ├── menuSelected_800-600_example.png │ │ │ ├── menu_800-600.png │ │ │ ├── menu_800-600_example.png │ │ │ ├── screenshots.pptx │ │ │ ├── splashGame_800-600.png │ │ │ ├── splashTeam_800-600.png │ │ │ └── win_800-600.png │ │ ├── spritesheets │ │ │ ├── buttons_291-75-8.json │ │ │ ├── buttons_291-75-8.png │ │ │ └── buttons_291-75-8.tps │ │ └── tilemaps │ │ │ ├── maps │ │ │ ├── map1.json │ │ │ ├── map1Small.json │ │ │ ├── map2.json │ │ │ ├── rules.txt │ │ │ ├── rules1.tmx │ │ │ └── rules2.tmx │ │ │ └── tiles │ │ │ ├── ball.png │ │ │ ├── decision.png │ │ │ ├── decisionInput.png │ │ │ ├── decision_BKP.png │ │ │ ├── fear.png │ │ │ ├── regions.png │ │ │ └── wall.png │ ├── doc │ │ ├── Diagrams.asta │ │ └── Planning.xlsx │ ├── index.html │ └── js │ │ ├── Blinky.js │ │ ├── Clyde.js │ │ ├── Game.js │ │ ├── Inkey.js │ │ ├── Life.js │ │ ├── Map1.js │ │ ├── Ohhman.js │ │ ├── Pinky.js │ │ ├── ScaredGhost.js │ │ ├── Score.js │ │ ├── config │ │ └── FilePath.js │ │ ├── phaser.min.js │ │ └── screen │ │ ├── Credits.js │ │ ├── HighScores.js │ │ ├── HighScoresInput.js │ │ ├── HowToPlay.js │ │ ├── Lose.js │ │ ├── Menu.js │ │ ├── Splash.js │ │ └── Win.js ├── phaser │ ├── 205 │ │ ├── phaser.map │ │ └── phaser.min.js │ ├── phaser.map │ └── phaser.min.js ├── pong │ ├── assets │ │ ├── background.jpg │ │ ├── ball.png │ │ └── bet.png │ ├── index.html │ └── js │ │ └── phaser.min.js ├── qix-juliane │ ├── assets │ │ ├── images │ │ │ ├── ball.png │ │ │ ├── enemy.png │ │ │ └── qix.png │ │ ├── other │ │ │ └── colorPalette.png │ │ └── screenshots │ │ │ └── splashTeam_800-480.png │ ├── index.html │ ├── js │ │ ├── Ball.js │ │ ├── Collision.js │ │ ├── Draw.js │ │ ├── Game.js │ │ ├── Line.js │ │ ├── Qix.js │ │ ├── Screen.js │ │ ├── Shape.js │ │ └── phaser.min.js │ └── planejamento.txt ├── template │ ├── assets │ │ ├── images │ │ │ ├── Credits_960-600.png │ │ │ ├── GameSplash_960-600.png │ │ │ ├── HowToPlay_960-600.png │ │ │ ├── LudusSplash_960-600.png │ │ │ ├── MenuBackground_960-600.png │ │ │ ├── ProgressBar_960-30.png │ │ │ └── SponsorSplash_960-600.png │ │ └── spritesheets │ │ │ ├── ButtonCredits_150-95_4.png │ │ │ ├── ButtonHowToPlay_150-95_4.png │ │ │ └── ButtonPlay_150-95_4.png │ ├── index.html │ └── js │ │ ├── Main.js │ │ ├── config │ │ └── Config.js │ │ └── states │ │ ├── Credits.js │ │ ├── GameSplash.js │ │ ├── HowToPlay.js │ │ ├── LudusSplash.js │ │ ├── Menu.js │ │ └── SponsorSplash.js ├── tutorial - Tiled Map │ ├── .~lock.Aula TiledMap.pptx# │ ├── Aula TiledMap.pptx │ ├── assets │ │ ├── bg.png │ │ ├── map.json │ │ ├── map.tmx │ │ ├── map1.json │ │ ├── map2.json │ │ ├── mario.png │ │ ├── star.png │ │ └── tileset.png │ ├── index.html │ └── js │ │ └── Game.js ├── tutorial-refactoring │ ├── HUD.js │ ├── Level.js │ ├── Player.js │ ├── assets │ │ ├── baddie.png │ │ ├── diamond.png │ │ ├── dude.png │ │ ├── firstaid.png │ │ ├── platform.png │ │ ├── sky.png │ │ └── star.png │ ├── index.html │ ├── js │ │ └── phaser.min.js │ ├── step1.html │ ├── step2.html │ ├── step3.html │ └── step4.html ├── tutorial │ ├── assets │ │ ├── baddie.png │ │ ├── diamond.png │ │ ├── dude.png │ │ ├── firstaid.png │ │ ├── platform.png │ │ ├── sky.png │ │ └── star.png │ ├── js │ │ └── phaser.min.js │ ├── part1.html │ ├── part2.html │ ├── part3.html │ ├── part4.html │ ├── part5.html │ ├── part6.html │ ├── part7.html │ ├── part8.html │ ├── part9.html │ └── tutorial.html └── zombie_attack │ ├── Config │ └── Config.js │ ├── ZombieInvaders(Antigo).js │ ├── assets │ ├── amountPeople.png │ ├── cenario.png │ ├── gameover.png │ ├── htp1.png │ ├── htp2.png │ ├── htp3.png │ ├── melhor.png │ ├── menu.png │ ├── proximo.png │ ├── proximoSelecionado.png │ ├── round.png │ ├── score.png │ ├── screenshots │ │ ├── CenarioBlack.png │ │ ├── Credits.png │ │ ├── GameOver.png │ │ ├── HowToPLay.png │ │ ├── MenuZombie.png │ │ ├── SplashGame_800-600.png │ │ └── SplashTeam_800-600.png │ ├── spritesheets │ │ ├── ZombieDown.json │ │ ├── ZombieDown.png │ │ ├── bitePerson.png │ │ ├── buttons.json │ │ ├── buttons.png │ │ ├── buttons2.json │ │ ├── buttons2.png │ │ ├── buttonsNext.json │ │ ├── buttonsNext.png │ │ ├── hotToPlay.json │ │ ├── hotToPlay.png │ │ ├── personDown.png │ │ ├── personLeft.png │ │ ├── personRigth.png │ │ ├── zombieDead.png │ │ ├── zombieLeft.png │ │ ├── zombieRigth.png │ │ └── zombieUp.png │ └── target.png │ ├── audios │ ├── AlbumArtSmall.jpg │ ├── AlbumArt_{44B6624B-866F-47A2-9E75-D1A9D80B486E}_Large.jpg │ ├── AlbumArt_{44B6624B-866F-47A2-9E75-D1A9D80B486E}_Small.jpg │ ├── Folder.jpg │ ├── desktop.ini │ ├── hyrulecastle.mp3 │ ├── soundEffects │ │ ├── slap-soundmaster13-49669815.mp3 │ │ └── ugh.mp3 │ └── ugh.wav │ ├── fonts │ ├── arcade_ya │ │ ├── ARCADE_I.TTF │ │ ├── ARCADE_N.TTF │ │ ├── ARCADE_R.TTF │ │ └── Readme.TXT │ ├── fonts_game.zip │ ├── fonts_game │ │ ├── arcade_i-demo.html │ │ ├── arcade_i-webfont.eot │ │ ├── arcade_i-webfont.svg │ │ ├── arcade_i-webfont.ttf │ │ ├── arcade_i-webfont.woff │ │ ├── arcade_n-demo.html │ │ ├── arcade_n-webfont.eot │ │ ├── arcade_n-webfont.svg │ │ ├── arcade_n-webfont.ttf │ │ ├── arcade_n-webfont.woff │ │ ├── arcade_r-demo.html │ │ ├── arcade_r-webfont.eot │ │ ├── arcade_r-webfont.svg │ │ ├── arcade_r-webfont.ttf │ │ ├── arcade_r-webfont.woff │ │ ├── generator_config.txt │ │ ├── jfrocout-demo.html │ │ ├── jfrocout-webfont.eot │ │ ├── jfrocout-webfont.svg │ │ ├── jfrocout-webfont.ttf │ │ ├── jfrocout-webfont.woff │ │ ├── jfrocsol-demo.html │ │ ├── jfrocsol-webfont.eot │ │ ├── jfrocsol-webfont.svg │ │ ├── jfrocsol-webfont.ttf │ │ ├── jfrocsol-webfont.woff │ │ ├── mars_attacks-demo.html │ │ ├── mars_attacks-webfont.eot │ │ ├── mars_attacks-webfont.svg │ │ ├── mars_attacks-webfont.ttf │ │ ├── mars_attacks-webfont.woff │ │ ├── specimen_files │ │ │ ├── easytabs.js │ │ │ ├── grid_12-825-55-15.css │ │ │ └── specimen_stylesheet.css │ │ └── stylesheet.css │ ├── jf_rock │ │ ├── JFRocOut.ttf │ │ └── JFRocSol.TTF │ └── mars_attacks │ │ └── Mars Attacks.ttf │ ├── index.html │ └── js │ ├── FilePaths.js │ ├── Game.js │ ├── GameOver.js │ ├── GroupZombie.js │ ├── HowToPlay.js │ ├── Menu.js │ ├── Person.js │ ├── Round.js │ ├── Splash.js │ ├── Zombie.js │ └── phaser.min.js ├── pong ├── Pong - Original.html ├── Pong.html ├── beep.mp3 └── blackstar.mp3 ├── setas ├── quadrado-30x30.png └── setas.html └── tiroplata ├── c2runtime.js ├── icon-114.png ├── icon-128.png ├── icon-16.png ├── icon-256.png ├── icon-32.png ├── images ├── background_splash_tiroplata-sheet0.png ├── chao.png ├── facebook.png ├── forca-sheet0.png ├── fundo.png ├── heroi1-sheet0.png ├── heroi2-sheet0.png ├── interfaceangulo1-sheet0.png ├── interfaceangulo2-sheet0.png ├── interfaceforca-sheet0.png ├── limite.png ├── nuvem-sheet0.png ├── projetil-sheet0.png ├── setacima-sheet0.png ├── splash_ludus-sheet0.png ├── teclabaixo-sheet0.png ├── tecladireita-sheet0.png ├── teclaesquerda-sheet0.png └── tempo-sheet0.png ├── index.html ├── jquery-2.0.0.min.js ├── loading-logo.png ├── media ├── movimento_tanque.m4a ├── movimento_tanque.ogg ├── tiro_acerta_tanque.m4a ├── tiro_acerta_tanque.ogg ├── tiro_no_chao.m4a ├── tiro_no_chao.ogg ├── tiro_sai_do_cano.m4a └── tiro_sai_do_cano.ogg └── offline.appcache /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/.gitignore -------------------------------------------------------------------------------- /Breakout1/Breakout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/Breakout1/Breakout.html -------------------------------------------------------------------------------- /Breakout1/beep1.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/Breakout1/beep1.mp3 -------------------------------------------------------------------------------- /Breakout1/blackstar.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/Breakout1/blackstar.mp3 -------------------------------------------------------------------------------- /Breakout3/Breakout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/Breakout3/Breakout.html -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/LICENSE -------------------------------------------------------------------------------- /MultiPong/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Player.js -------------------------------------------------------------------------------- /MultiPong/Pong/ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/ball.js -------------------------------------------------------------------------------- /MultiPong/Pong/barra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/barra.js -------------------------------------------------------------------------------- /MultiPong/Pong/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/cocos2d.js -------------------------------------------------------------------------------- /MultiPong/Pong/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/controls.js -------------------------------------------------------------------------------- /MultiPong/Pong/credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/credits.js -------------------------------------------------------------------------------- /MultiPong/Pong/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/game.js -------------------------------------------------------------------------------- /MultiPong/Pong/img/atari1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/atari1.ttf -------------------------------------------------------------------------------- /MultiPong/Pong/img/backButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/backButton.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/background.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/ball.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/barra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/barra.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/controls.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/controlsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/controlsButton.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/credits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/credits.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/creditsButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/creditsButton.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/lose.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/lose.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/menu.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/playButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/playButton.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/quitButton.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/quitButton.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/splash.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/title.png -------------------------------------------------------------------------------- /MultiPong/Pong/img/win.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/img/win.png -------------------------------------------------------------------------------- /MultiPong/Pong/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/index.html -------------------------------------------------------------------------------- /MultiPong/Pong/lose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/lose.js -------------------------------------------------------------------------------- /MultiPong/Pong/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/main.js -------------------------------------------------------------------------------- /MultiPong/Pong/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/menu.js -------------------------------------------------------------------------------- /MultiPong/Pong/win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/Pong/win.js -------------------------------------------------------------------------------- /MultiPong/Test/robhawkes-mozilla-festival-92336f2/node_modules/socket.io/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /MultiPong/Test/robhawkes-mozilla-festival-92336f2/node_modules/socket.io/node_modules/policyfile/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /MultiPong/Test/robhawkes-mozilla-festival-92336f2/node_modules/socket.io/node_modules/redis/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /MultiPong/Test/robhawkes-mozilla-festival-92336f2/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiPong/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/MultiPong/game.js -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/base64id/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/policyfile/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/policyfile/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/server.js'); -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/redis/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/.npmignore: -------------------------------------------------------------------------------- 1 | test/node_modules 2 | support 3 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/.npmignore: -------------------------------------------------------------------------------- 1 | test.html 2 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/.bin/uglifyjs: -------------------------------------------------------------------------------- 1 | ../uglify-js/bin/uglifyjs -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/.bin/wscat: -------------------------------------------------------------------------------- 1 | ../ws/bin/wscat -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue20.js: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/var.js: -------------------------------------------------------------------------------- 1 | var a=1,b=2 -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue20.js: -------------------------------------------------------------------------------- 1 | {a: 1} -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue69.js: -------------------------------------------------------------------------------- 1 | [(a,b)] 2 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/examples/fileapi/.npmignore: -------------------------------------------------------------------------------- 1 | uploaded 2 | -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/.index.js: -------------------------------------------------------------------------------- 1 | //noop -------------------------------------------------------------------------------- /MultiPong/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/testdata.txt: -------------------------------------------------------------------------------- 1 | Hello World 2 | -------------------------------------------------------------------------------- /Pong2/Pong2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/Pong2/Pong2.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/README.md -------------------------------------------------------------------------------- /SummerRun/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/cocos2d.js -------------------------------------------------------------------------------- /SummerRun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/index.html -------------------------------------------------------------------------------- /SummerRun/res/audios/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/audios/jump.wav -------------------------------------------------------------------------------- /SummerRun/res/audios/menuSelect.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/audios/menuSelect.wav -------------------------------------------------------------------------------- /SummerRun/res/audios/run.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/audios/run.wav -------------------------------------------------------------------------------- /SummerRun/res/audios/seaBackground.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/audios/seaBackground.mp3 -------------------------------------------------------------------------------- /SummerRun/res/audios/summerSong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/audios/summerSong.mp3 -------------------------------------------------------------------------------- /SummerRun/res/fonts/PipeDream.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/fonts/PipeDream.ttf -------------------------------------------------------------------------------- /SummerRun/res/fonts/Zian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/fonts/Zian.ttf -------------------------------------------------------------------------------- /SummerRun/res/images/LUDUS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/LUDUS.ico -------------------------------------------------------------------------------- /SummerRun/res/images/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/box.png -------------------------------------------------------------------------------- /SummerRun/res/images/bumper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/bumper.png -------------------------------------------------------------------------------- /SummerRun/res/images/chain.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/chain.png -------------------------------------------------------------------------------- /SummerRun/res/images/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/title.png -------------------------------------------------------------------------------- /SummerRun/res/images/woodCircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/woodCircle.png -------------------------------------------------------------------------------- /SummerRun/res/images/woodLarge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/woodLarge.png -------------------------------------------------------------------------------- /SummerRun/res/images/woodMedium.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/woodMedium.png -------------------------------------------------------------------------------- /SummerRun/res/images/woodSmall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/images/woodSmall.png -------------------------------------------------------------------------------- /SummerRun/res/maps/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/background.png -------------------------------------------------------------------------------- /SummerRun/res/maps/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/cave.png -------------------------------------------------------------------------------- /SummerRun/res/maps/coco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/coco.png -------------------------------------------------------------------------------- /SummerRun/res/maps/cocoBlur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/cocoBlur.png -------------------------------------------------------------------------------- /SummerRun/res/maps/cocoBlur2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/cocoBlur2.png -------------------------------------------------------------------------------- /SummerRun/res/maps/map0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map0.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map0background.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map0background.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map0background2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map0background2.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map1.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map10.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map10.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map2.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map3.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map3.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map4.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map4.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map5.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map5.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map6.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map6.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map7.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map7.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map8.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map8.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/map9.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/map9.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/mapTransition.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/mapTransition.tmx -------------------------------------------------------------------------------- /SummerRun/res/maps/objectsTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/objectsTile.png -------------------------------------------------------------------------------- /SummerRun/res/maps/tilesSummer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/tilesSummer.png -------------------------------------------------------------------------------- /SummerRun/res/maps/tiles_spring.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/res/maps/tiles_spring.png -------------------------------------------------------------------------------- /SummerRun/summerRun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/SummerRun/summerRun.js -------------------------------------------------------------------------------- /bandeira/Pong2/Pong2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/bandeira/Pong2/Pong2.html -------------------------------------------------------------------------------- /bandeira/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/bandeira/index.html -------------------------------------------------------------------------------- /breakout2/Breakout.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/breakout2/Breakout.xlsx -------------------------------------------------------------------------------- /breakout2/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/breakout2/beep.mp3 -------------------------------------------------------------------------------- /breakout2/blackstar.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/breakout2/blackstar.mp3 -------------------------------------------------------------------------------- /cocos2d/Aviao.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao.rar -------------------------------------------------------------------------------- /cocos2d/Aviao/Aviao/aviao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/Aviao/aviao.js -------------------------------------------------------------------------------- /cocos2d/Aviao/Aviao/aviaogirando.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/Aviao/aviaogirando.js -------------------------------------------------------------------------------- /cocos2d/Aviao/Aviao/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/Aviao/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/Aviao/Aviao/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/Aviao/index.html -------------------------------------------------------------------------------- /cocos2d/Aviao/Aviao/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/Aviao/jet.png -------------------------------------------------------------------------------- /cocos2d/Aviao/Aviao/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/Aviao/main.js -------------------------------------------------------------------------------- /cocos2d/Aviao/aviao.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/aviao.js -------------------------------------------------------------------------------- /cocos2d/Aviao/aviaogirando.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/aviaogirando.js -------------------------------------------------------------------------------- /cocos2d/Aviao/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/Aviao/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/index.html -------------------------------------------------------------------------------- /cocos2d/Aviao/jet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/jet.png -------------------------------------------------------------------------------- /cocos2d/Aviao/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Aviao/main.js -------------------------------------------------------------------------------- /cocos2d/Cocos2d-html5/AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Cocos2d-html5/AUTHORS.txt -------------------------------------------------------------------------------- /cocos2d/Cocos2d-html5/CHANGELOG.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Cocos2d-html5/CHANGELOG.txt -------------------------------------------------------------------------------- /cocos2d/Cocos2d-html5/README.mdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Cocos2d-html5/README.mdown -------------------------------------------------------------------------------- /cocos2d/Cocos2d-html5/box2d/box2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Cocos2d-html5/box2d/box2d.js -------------------------------------------------------------------------------- /cocos2d/Cocos2d-html5/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Cocos2d-html5/index.html -------------------------------------------------------------------------------- /cocos2d/Cocos2d-html5/samples/games/MoonWarriors/res/explode.plist: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cocos2d/Cocos2d-html5/template/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Cocos2d-html5/template/main.js -------------------------------------------------------------------------------- /cocos2d/HelloWorld/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/HelloWorld/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/HelloWorld/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/HelloWorld/hello.js -------------------------------------------------------------------------------- /cocos2d/HelloWorld/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/HelloWorld/index.html -------------------------------------------------------------------------------- /cocos2d/HelloWorld/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/HelloWorld/main.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/.idea/.name: -------------------------------------------------------------------------------- 1 | mc -------------------------------------------------------------------------------- /cocos2d/MissileCommand/.idea/mc.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/.idea/mc.iml -------------------------------------------------------------------------------- /cocos2d/MissileCommand/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/.idea/misc.xml -------------------------------------------------------------------------------- /cocos2d/MissileCommand/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/.idea/vcs.xml -------------------------------------------------------------------------------- /cocos2d/MissileCommand/Aviso.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/Aviso.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/Cidade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/Cidade.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/FimdeJogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/FimdeJogo.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/Missil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/Missil.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/Naves.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/Naves.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/Splash.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/a.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/b.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/bg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/bg1.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/bg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/bg2.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/bg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/bg3.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/bg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/bg4.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/bomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/bomb.mp3 -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/c.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/chao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/chao.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/d.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/e.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/g.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/g.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/assets/go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/assets/go.png -------------------------------------------------------------------------------- /cocos2d/MissileCommand/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/credits.js -------------------------------------------------------------------------------- /cocos2d/MissileCommand/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/index.html -------------------------------------------------------------------------------- /cocos2d/MissileCommand/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/MissileCommand/main.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Ending.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Ending.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Explosion.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Explosion.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Fail.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/GhostBusters_.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/GhostBusters_.mp3 -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop1.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop2.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop3.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop4.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop5.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop6.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop7.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop8.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/Som/Plop9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/Som/Plop9.wav -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/Telas/LUDUS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/Telas/LUDUS.ico -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/Telas/No-Boo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/Telas/No-Boo.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/Telas/ganhou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/Telas/ganhou.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/Telas/perdeu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/Telas/perdeu.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/Telas/som.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/Telas/som.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/Telas/tela.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/Telas/tela.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/cinza.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/cinza.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/cinza.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/cinza.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/explosao.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/explosao.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/explosao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/explosao.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/fire.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/laranja.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/laranja.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/laranja.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/laranja.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/lilas.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/lilas.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/lilas.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/lilas.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/pac.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/pac.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/pac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/pac.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/pacFail.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/pacFail.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/pacFail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/pacFail.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/pacmanfail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/pacmanfail.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/verde.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/verde.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/verde.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/vermelho.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/vermelho.plist -------------------------------------------------------------------------------- /cocos2d/No-Boo/assets/vermelho.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/assets/vermelho.png -------------------------------------------------------------------------------- /cocos2d/No-Boo/cocos2d-jsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/cocos2d-jsb.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/fonts/Grinched.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/fonts/Grinched.ttf -------------------------------------------------------------------------------- /cocos2d/No-Boo/fonts/Halloween.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/fonts/Halloween.ttf -------------------------------------------------------------------------------- /cocos2d/No-Boo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/index.html -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Como_Jogar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Como_Jogar.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Creditos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Creditos.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Jogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Jogo.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Jogo_Comeco.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Jogo_Comeco.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Jogo_Fim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Jogo_Fim.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Jogo_Fim2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Jogo_Fim2.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Menu.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Splash.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Splash_Inicial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Splash_Inicial.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/js/Splash_Jogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/js/Splash_Jogo.js -------------------------------------------------------------------------------- /cocos2d/No-Boo/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/No-Boo/main.js -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/BARRA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/BARRA.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/BARRAMAX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/BARRAMAX.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/BARRAMED.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/BARRAMED.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/BARRAMIN.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/BARRAMIN.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/BOLA.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/BOLA.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/FUNDO.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/FUNDO.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/Hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/Hit.wav -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/LOGO1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/LOGO1.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/LOGO2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/LOGO2.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/MENU.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/MENU.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/PW1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/PW1.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/PW2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/PW2.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/PW3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/PW3.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/PW4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/PW4.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/PW5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/PW5.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/PW6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/PW6.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH1.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH10.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH11.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH12.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH13.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH13.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH14.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH14.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH15.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH15.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH16.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH16.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH17.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH17.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH18.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH18.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH19.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH19.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH2.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH20.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH20.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH21.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH21.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH22.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH22.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH23.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH23.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH24.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH24.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH25.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH25.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH26.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH26.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH27.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH27.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH28.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH28.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH29.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH29.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH3.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH30.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH30.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH31.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH32.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH32.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH33.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH33.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH34.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH34.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH35.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH35.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH36.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH36.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH37.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH37.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH38.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH38.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH39.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH39.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH4.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH40.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH40.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH41.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH41.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH42.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH42.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH43.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH43.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH44.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH44.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH45.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH45.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH46.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH46.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH47.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH47.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH48.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH48.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH49.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH49.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH5.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH50.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH50.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH51.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH51.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH52.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH53.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH53.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH54.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH54.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH55.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH55.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH56.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH56.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH57.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH57.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH58.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH58.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH59.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH59.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH6.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH60.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH60.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH61.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH61.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH62.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH62.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH63.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH63.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH64.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH64.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH65.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH65.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH66.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH66.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH67.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH67.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH68.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH68.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH69.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH69.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH7.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH70.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH70.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH71.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH71.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH72.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH72.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH8.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/SPLASH9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/SPLASH9.jpg -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/TITLE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/TITLE.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/btBack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/btBack.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/btControls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/btControls.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/btCredits.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/btCredits.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/btStart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/btStart.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/btStart1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/btStart1.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/btStart2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/btStart2.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/controls.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/controls.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/controlsAlt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/controlsAlt.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/game_title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/game_title.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/game_title2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/game_title2.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/playerWin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/playerWin.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/playerWin2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/playerWin2.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/playerWin_OLD.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/playerWin_OLD.png -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/sound1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/sound1.wav -------------------------------------------------------------------------------- /cocos2d/Pong1/assets/sound2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/assets/sound2.wav -------------------------------------------------------------------------------- /cocos2d/Pong1/barra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/barra.js -------------------------------------------------------------------------------- /cocos2d/Pong1/bola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/bola.js -------------------------------------------------------------------------------- /cocos2d/Pong1/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/Pong1/controls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/controls.js -------------------------------------------------------------------------------- /cocos2d/Pong1/credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/credits.js -------------------------------------------------------------------------------- /cocos2d/Pong1/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/game.js -------------------------------------------------------------------------------- /cocos2d/Pong1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/index.html -------------------------------------------------------------------------------- /cocos2d/Pong1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/main.js -------------------------------------------------------------------------------- /cocos2d/Pong1/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/menu.js -------------------------------------------------------------------------------- /cocos2d/Pong1/powerup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/powerup.js -------------------------------------------------------------------------------- /cocos2d/Pong1/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/splash.js -------------------------------------------------------------------------------- /cocos2d/Pong1/win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/win.js -------------------------------------------------------------------------------- /cocos2d/Pong1/win2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong1/win2.js -------------------------------------------------------------------------------- /cocos2d/Pong2/audio/inicio.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/audio/inicio.mp3 -------------------------------------------------------------------------------- /cocos2d/Pong2/audio/ping.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/audio/ping.wav -------------------------------------------------------------------------------- /cocos2d/Pong2/audio/pong.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/audio/pong.mp3 -------------------------------------------------------------------------------- /cocos2d/Pong2/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/Pong2/font/ArcadeNormal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/font/ArcadeNormal.ttf -------------------------------------------------------------------------------- /cocos2d/Pong2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/index.html -------------------------------------------------------------------------------- /cocos2d/Pong2/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/main.js -------------------------------------------------------------------------------- /cocos2d/Pong2/res/barraDireita.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/barraDireita.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/barraEsquerda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/barraEsquerda.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/bola.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/bola.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/configuracoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/configuracoes.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/creditos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/creditos.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/fundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/fundo.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/ganhouDireito.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/ganhouDireito.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/ganhouEsquerdo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/ganhouEsquerdo.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/imagens.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/imagens.pptx -------------------------------------------------------------------------------- /cocos2d/Pong2/res/instrucoes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/instrucoes.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/jogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/jogo.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/splash.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/splash_juliane.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/splash_juliane.png -------------------------------------------------------------------------------- /cocos2d/Pong2/res/teste.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/res/teste.png -------------------------------------------------------------------------------- /cocos2d/Pong2/src/barra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/barra.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/bola.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/bola.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/configuracoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/configuracoes.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/creditos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/creditos.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/game.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/instrucoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/instrucoes.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/menu.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/outros/creditos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/outros/creditos.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/outros/instrucoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/outros/instrucoes.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/outros/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/outros/menu.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/outros/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/outros/splash.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/outros/teste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/outros/teste.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/powerup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/powerup.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/splash.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/teste.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/teste.js -------------------------------------------------------------------------------- /cocos2d/Pong2/src/win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong2/src/win.js -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/1_Player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/1_Player.png -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/LUDUS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/LUDUS.ico -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/ball.png -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/barra_azul.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/barra_azul.png -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/barra_verde.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/barra_verde.png -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/fire.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/fire.png -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/palavras/Som.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/palavras/Som.png -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/palavras/off.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/palavras/off.png -------------------------------------------------------------------------------- /cocos2d/Pong3/Imagens/palavras/on.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/Imagens/palavras/on.png -------------------------------------------------------------------------------- /cocos2d/Pong3/barra_azul.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/barra_azul.plist -------------------------------------------------------------------------------- /cocos2d/Pong3/barra_verde.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/barra_verde.plist -------------------------------------------------------------------------------- /cocos2d/Pong3/barra_vermelha.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/barra_vermelha.plist -------------------------------------------------------------------------------- /cocos2d/Pong3/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/Pong3/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/index.html -------------------------------------------------------------------------------- /cocos2d/Pong3/js/Configuracoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/js/Configuracoes.js -------------------------------------------------------------------------------- /cocos2d/Pong3/js/Creditos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/js/Creditos.js -------------------------------------------------------------------------------- /cocos2d/Pong3/js/Menu1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/js/Menu1.js -------------------------------------------------------------------------------- /cocos2d/Pong3/js/MenuPrincipal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/js/MenuPrincipal.js -------------------------------------------------------------------------------- /cocos2d/Pong3/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/js/Splash.js -------------------------------------------------------------------------------- /cocos2d/Pong3/js/jogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/js/jogo.js -------------------------------------------------------------------------------- /cocos2d/Pong3/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/main.js -------------------------------------------------------------------------------- /cocos2d/Pong3/sons/Hit.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/sons/Hit.wav -------------------------------------------------------------------------------- /cocos2d/Pong3/sons/Jumpshot.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/sons/Jumpshot.mp3 -------------------------------------------------------------------------------- /cocos2d/Pong3/sons/sound1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/sons/sound1.wav -------------------------------------------------------------------------------- /cocos2d/Pong3/sons/sound2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/Pong3/sons/sound2.wav -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/Player.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/build.xml -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/cocos2d-jsb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/cocos2d-jsb.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/index.html -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/main.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/Maps/map1.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/Maps/map1.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/Maps/map2.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/Maps/map2.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/Maps/tiles.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/Maps/tiles.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/Runner/body.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/Runner/body.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/Runner/head.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/Runner/head.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/audios/jump.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/audios/jump.wav -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/audios/run.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/audios/run.wav -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/fonts/Zian.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/fonts/Zian.ttf -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/images/box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/images/box.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/cave.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/cave.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/caves.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/caves.svg -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/coco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/coco.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map0.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map0.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map0.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map10.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map10.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map3.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map3.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map4.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map4.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map5.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map5.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map6.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map6.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map7.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map7.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map8.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map8.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/map9.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/map9.tmx -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/sun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/sun.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/tiles.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/tiles.svg -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/tiles2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/tiles2.png -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/res/maps/tiles2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/res/maps/tiles2.svg -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/seasonsRun.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/seasonsRun.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/server.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/Credits.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/HighScores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/HighScores.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/Menu.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/SplashGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/SplashGame.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/SplashLudus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/SplashLudus.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/auxFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/auxFunctions.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/game.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/player.js -------------------------------------------------------------------------------- /cocos2d/SeasonsRun/src/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/SeasonsRun/src/resource.js -------------------------------------------------------------------------------- /cocos2d/asteroids/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/asteroids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/index.html -------------------------------------------------------------------------------- /cocos2d/asteroids/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/main.js -------------------------------------------------------------------------------- /cocos2d/asteroids/res/audios/bomb.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/res/audios/bomb.mp3 -------------------------------------------------------------------------------- /cocos2d/asteroids/res/images/LUDUS.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/res/images/LUDUS.ico -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Asteroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Asteroid.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Bullet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Bullet.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Credits.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Game.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/HighScores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/HighScores.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/HowToPlay.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Losing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Losing.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Menu.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/SpaceShip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/SpaceShip.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Splash.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/SplashGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/SplashGame.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/SplashLudus.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/SplashLudus.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/UFO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/UFO.js -------------------------------------------------------------------------------- /cocos2d/asteroids/src/Winning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/asteroids/src/Winning.js -------------------------------------------------------------------------------- /cocos2d/circlechain/circlechain.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/circlechain/circlechain.js -------------------------------------------------------------------------------- /cocos2d/circlechain/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/circlechain/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/circlechain/greencircle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/circlechain/greencircle.png -------------------------------------------------------------------------------- /cocos2d/circlechain/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/circlechain/index.html -------------------------------------------------------------------------------- /cocos2d/circlechain/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/circlechain/main.js -------------------------------------------------------------------------------- /cocos2d/galaga-carlos/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/galaga-carlos/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/galaga-carlos/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/galaga-carlos/index.html -------------------------------------------------------------------------------- /cocos2d/galaga-carlos/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/galaga-carlos/main.js -------------------------------------------------------------------------------- /cocos2d/galaga-carlos/src/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/galaga-carlos/src/Game.js -------------------------------------------------------------------------------- /cocos2d/galaga-carlos/src/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/galaga-carlos/src/Menu.js -------------------------------------------------------------------------------- /cocos2d/galaga-carlos/src/Ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/galaga-carlos/src/Ship.js -------------------------------------------------------------------------------- /cocos2d/galaga-carlos/src/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/galaga-carlos/src/Splash.js -------------------------------------------------------------------------------- /cocos2d/mapteste/assets/tiles/map.tmx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/mapteste/assets/tiles/map.tmx -------------------------------------------------------------------------------- /cocos2d/mapteste/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/mapteste/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/mapteste/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/mapteste/game.js -------------------------------------------------------------------------------- /cocos2d/mapteste/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/mapteste/index.html -------------------------------------------------------------------------------- /cocos2d/mapteste/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/mapteste/main.js -------------------------------------------------------------------------------- /cocos2d/mapteste/sprite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/mapteste/sprite.js -------------------------------------------------------------------------------- /cocos2d/pacman1/cocos2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/cocos2d.js -------------------------------------------------------------------------------- /cocos2d/pacman1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/index.html -------------------------------------------------------------------------------- /cocos2d/pacman1/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/main.js -------------------------------------------------------------------------------- /cocos2d/pacman1/res/fonts/Joystix.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/res/fonts/Joystix.TTF -------------------------------------------------------------------------------- /cocos2d/pacman1/res/images/pac.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/res/images/pac.png -------------------------------------------------------------------------------- /cocos2d/pacman1/res/tiledmap/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/res/tiledmap/map.png -------------------------------------------------------------------------------- /cocos2d/pacman1/resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/resource.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/Credits.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/Game.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/Ghost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/Ghost.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/HighScore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/HighScore.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/HowToPlay.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/Losing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/Losing.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/Menu.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/Pac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/Pac.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/SplashGame.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/SplashGame.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/SplashTeam.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/SplashTeam.js -------------------------------------------------------------------------------- /cocos2d/pacman1/src/TiledMeadow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/cocos2d/pacman1/src/TiledMeadow.js -------------------------------------------------------------------------------- /multiplayerAPI/Server/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/multiplayerAPI/Server/Player.js -------------------------------------------------------------------------------- /multiplayerAPI/Server/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/multiplayerAPI/Server/server.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/index.html -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/Asteroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/Asteroid.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/Credits.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/Game.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/HighScores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/HighScores.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/HowToPlay.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/Menu.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/SpaceShip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/SpaceShip.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/Splash.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/Ufo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/Ufo.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/Win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/Win.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/lose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/lose.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/AsteroidsV.2/js/select.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/AsteroidsV.2/js/select.js -------------------------------------------------------------------------------- /phaser/Breakout/assets/fonts/ka1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/assets/fonts/ka1.ttf -------------------------------------------------------------------------------- /phaser/Breakout/assets/sfx/hit1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/assets/sfx/hit1.wav -------------------------------------------------------------------------------- /phaser/Breakout/assets/sfx/hit2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/assets/sfx/hit2.wav -------------------------------------------------------------------------------- /phaser/Breakout/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/index.html -------------------------------------------------------------------------------- /phaser/Breakout/js/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/js/Credits.js -------------------------------------------------------------------------------- /phaser/Breakout/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/js/Game.js -------------------------------------------------------------------------------- /phaser/Breakout/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/js/Menu.js -------------------------------------------------------------------------------- /phaser/Breakout/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/js/Splash.js -------------------------------------------------------------------------------- /phaser/Breakout/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Breakout/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/Domino/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/index.html -------------------------------------------------------------------------------- /phaser/Domino/js/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/Main.js -------------------------------------------------------------------------------- /phaser/Domino/js/config/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/config/Config.js -------------------------------------------------------------------------------- /phaser/Domino/js/pecas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/pecas.js -------------------------------------------------------------------------------- /phaser/Domino/js/states/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/states/Credits.js -------------------------------------------------------------------------------- /phaser/Domino/js/states/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/states/Game.js -------------------------------------------------------------------------------- /phaser/Domino/js/states/GameSplash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/states/GameSplash.js -------------------------------------------------------------------------------- /phaser/Domino/js/states/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/states/HowToPlay.js -------------------------------------------------------------------------------- /phaser/Domino/js/states/LudusSplash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/states/LudusSplash.js -------------------------------------------------------------------------------- /phaser/Domino/js/states/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Domino/js/states/Menu.js -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/docs/Flow.ep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/DominoMultiplayer/docs/Flow.ep -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | .gitignore 5 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib'); 3 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/node_modules/engine.io/node_modules/base64id/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/node_modules/engine.io/node_modules/debug/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "laxbreak": true 3 | } 4 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/node_modules/engine.io/node_modules/ws/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/node_modules/socket.io-adapter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/node_modules/socket.io-adapter/node_modules/object-keys/.npmignore: -------------------------------------------------------------------------------- 1 | test/* 2 | 3 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/node_modules/socket.io-client/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/'); 3 | -------------------------------------------------------------------------------- /phaser/DominoMultiplayer/shared/socket.io/node_modules/socket.io-client/node_modules/indexof/.npmignore: -------------------------------------------------------------------------------- 1 | components 2 | build 3 | -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/espaco.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/espaco.png -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/explosao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/explosao.png -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/invader.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/invader.png -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/player.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/player.png -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/playerVida.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/playerVida.png -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/ship1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/ship1.png -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/testeMapa.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/testeMapa.json -------------------------------------------------------------------------------- /phaser/Jaraguard/assets/tiroplayer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/assets/tiroplayer.png -------------------------------------------------------------------------------- /phaser/Jaraguard/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/index.html -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Credits.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/FilePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/FilePaths.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Game.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Life.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Life.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Mapa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Mapa.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Menu.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Player.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Player.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Score.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/Splash.js -------------------------------------------------------------------------------- /phaser/Jaraguard/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Jaraguard/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/Spaceman/assets/fonts/ka1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/assets/fonts/ka1.ttf -------------------------------------------------------------------------------- /phaser/Spaceman/assets/fonts/std.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/assets/fonts/std.ttf -------------------------------------------------------------------------------- /phaser/Spaceman/assets/sound/fly.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/assets/sound/fly.mp3 -------------------------------------------------------------------------------- /phaser/Spaceman/assets/sound/game.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/assets/sound/game.wav -------------------------------------------------------------------------------- /phaser/Spaceman/img180x133.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/img180x133.png -------------------------------------------------------------------------------- /phaser/Spaceman/img323x323.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/img323x323.png -------------------------------------------------------------------------------- /phaser/Spaceman/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/index.html -------------------------------------------------------------------------------- /phaser/Spaceman/js/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/js/Credits.js -------------------------------------------------------------------------------- /phaser/Spaceman/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/js/Game.js -------------------------------------------------------------------------------- /phaser/Spaceman/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/js/Menu.js -------------------------------------------------------------------------------- /phaser/Spaceman/js/Rock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/js/Rock.js -------------------------------------------------------------------------------- /phaser/Spaceman/js/Spaceman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/js/Spaceman.js -------------------------------------------------------------------------------- /phaser/Spaceman/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/js/Splash.js -------------------------------------------------------------------------------- /phaser/Spaceman/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/Spaceman/spaceman.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/Spaceman/spaceman.png -------------------------------------------------------------------------------- /phaser/asteroids/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/index.html -------------------------------------------------------------------------------- /phaser/asteroids/js/Asteroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/Asteroid.js -------------------------------------------------------------------------------- /phaser/asteroids/js/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/Credits.js -------------------------------------------------------------------------------- /phaser/asteroids/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/Game.js -------------------------------------------------------------------------------- /phaser/asteroids/js/HighScores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/HighScores.js -------------------------------------------------------------------------------- /phaser/asteroids/js/HighScoresInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/HighScoresInput.js -------------------------------------------------------------------------------- /phaser/asteroids/js/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/HowToPlay.js -------------------------------------------------------------------------------- /phaser/asteroids/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/Menu.js -------------------------------------------------------------------------------- /phaser/asteroids/js/SpaceShip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/SpaceShip.js -------------------------------------------------------------------------------- /phaser/asteroids/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/Splash.js -------------------------------------------------------------------------------- /phaser/asteroids/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/asteroids/js/ufo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/asteroids/js/ufo.js -------------------------------------------------------------------------------- /phaser/boiuna/assets/map/Tilemap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/assets/map/Tilemap.json -------------------------------------------------------------------------------- /phaser/boiuna/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/index.html -------------------------------------------------------------------------------- /phaser/boiuna/js/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/Main.js -------------------------------------------------------------------------------- /phaser/boiuna/js/config/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/config/Config.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/ButtonHit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/ButtonHit.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/ButtonLeft.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/ButtonLeft.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/ButtonRight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/ButtonRight.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/ButtonUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/ButtonUp.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/ControlHero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/ControlHero.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Dragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Dragon.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Fire.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Fire.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Grass.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Grass.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Hero.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Hero.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Lady.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Lady.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Level.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Life.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Life.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Platforms.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Princess.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Princess.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Score.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/SmallDragon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/SmallDragon.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Tilemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Tilemap.js -------------------------------------------------------------------------------- /phaser/boiuna/js/game/Tutorial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/game/Tutorial.js -------------------------------------------------------------------------------- /phaser/boiuna/js/states/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/states/Credits.js -------------------------------------------------------------------------------- /phaser/boiuna/js/states/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/states/Game.js -------------------------------------------------------------------------------- /phaser/boiuna/js/states/GameSplash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/states/GameSplash.js -------------------------------------------------------------------------------- /phaser/boiuna/js/states/LudusSplash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/states/LudusSplash.js -------------------------------------------------------------------------------- /phaser/boiuna/js/states/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/states/Menu.js -------------------------------------------------------------------------------- /phaser/boiuna/js/states/StoryAfter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/states/StoryAfter.js -------------------------------------------------------------------------------- /phaser/boiuna/js/states/StoryBefore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/boiuna/js/states/StoryBefore.js -------------------------------------------------------------------------------- /phaser/dinopixel/assets/dinopixel.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/assets/dinopixel.png -------------------------------------------------------------------------------- /phaser/dinopixel/assets/fonts/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/assets/fonts/ka1.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/assets/fonts/ka1.ttf -------------------------------------------------------------------------------- /phaser/dinopixel/assets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/assets/screens/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/assets/sfx/eat.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/assets/sfx/eat.mp3 -------------------------------------------------------------------------------- /phaser/dinopixel/assets/sfx/hitCar.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/assets/sfx/hitCar.mp3 -------------------------------------------------------------------------------- /phaser/dinopixel/assets/sfx/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/assets/sfx/jump.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/assets/sfx/jump.mp3 -------------------------------------------------------------------------------- /phaser/dinopixel/assets/sfx/lifeUp.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/assets/sfx/lifeUp.mp3 -------------------------------------------------------------------------------- /phaser/dinopixel/assets/sfx/lose2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/assets/sfx/lose2.mp3 -------------------------------------------------------------------------------- /phaser/dinopixel/assets/spriteSheets/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/assets/sprites/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/assets/tileMaps/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/index.html -------------------------------------------------------------------------------- /phaser/dinopixel/js/car.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/js/car.js -------------------------------------------------------------------------------- /phaser/dinopixel/js/credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/js/credits.js -------------------------------------------------------------------------------- /phaser/dinopixel/js/dino.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/js/dino.js -------------------------------------------------------------------------------- /phaser/dinopixel/js/enemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/js/enemy.js -------------------------------------------------------------------------------- /phaser/dinopixel/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/js/game.js -------------------------------------------------------------------------------- /phaser/dinopixel/js/human.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/js/human.js -------------------------------------------------------------------------------- /phaser/dinopixel/js/index.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/dinopixel/js/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/dinopixel/js/splash.js -------------------------------------------------------------------------------- /phaser/galaga/public_html/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galaga/public_html/index.html -------------------------------------------------------------------------------- /phaser/galagaV1.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/index.html -------------------------------------------------------------------------------- /phaser/galagaV1.1/js/Enemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/js/Enemy.js -------------------------------------------------------------------------------- /phaser/galagaV1.1/js/EnemyGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/js/EnemyGroup.js -------------------------------------------------------------------------------- /phaser/galagaV1.1/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/js/Game.js -------------------------------------------------------------------------------- /phaser/galagaV1.1/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/js/Menu.js -------------------------------------------------------------------------------- /phaser/galagaV1.1/js/Ship.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/js/Ship.js -------------------------------------------------------------------------------- /phaser/galagaV1.1/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/js/Splash.js -------------------------------------------------------------------------------- /phaser/galagaV1.1/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/galagaV1.1/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/hellophaser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/hellophaser/index.html -------------------------------------------------------------------------------- /phaser/hellophaser/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/hellophaser/phaser.min.js -------------------------------------------------------------------------------- /phaser/hellophaser/phaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/hellophaser/phaser.png -------------------------------------------------------------------------------- /phaser/klix/assets/audios/Powerup.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/Powerup.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/bip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/bip.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/bip1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/bip1.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/laser.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/laser.mp3 -------------------------------------------------------------------------------- /phaser/klix/assets/audios/laser.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/laser.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/reset.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/reset.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/siren.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/siren.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/suspense.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/suspense.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/tick.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/tick.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/tick1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/tick1.wav -------------------------------------------------------------------------------- /phaser/klix/assets/audios/tick2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/audios/tick2.wav -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/14701.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/14701.ttf -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/ARCADE_I.TTF: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/ARCADE_I.TTF -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/VectorB.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/VectorB.ttf -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/arcade.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/arcade.ttf -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/vector.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/vector.png -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/vector.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/vector.xml -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/vectorB.fnt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/vectorB.fnt -------------------------------------------------------------------------------- /phaser/klix/assets/fonts/vectorB_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/fonts/vectorB_0.png -------------------------------------------------------------------------------- /phaser/klix/assets/images/Tiled1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/images/Tiled1.png -------------------------------------------------------------------------------- /phaser/klix/assets/images/Tiled2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/images/Tiled2.png -------------------------------------------------------------------------------- /phaser/klix/assets/images/alert.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/images/alert.png -------------------------------------------------------------------------------- /phaser/klix/assets/images/ludus.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/images/ludus.ico -------------------------------------------------------------------------------- /phaser/klix/assets/images/nave1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/images/nave1.png -------------------------------------------------------------------------------- /phaser/klix/assets/images/res.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/images/res.png -------------------------------------------------------------------------------- /phaser/klix/assets/images/tiro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/images/tiro.png -------------------------------------------------------------------------------- /phaser/klix/assets/klix-800x600.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/assets/klix-800x600.png -------------------------------------------------------------------------------- /phaser/klix/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/index.html -------------------------------------------------------------------------------- /phaser/klix/js/Asteroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/Asteroid.js -------------------------------------------------------------------------------- /phaser/klix/js/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/Credits.js -------------------------------------------------------------------------------- /phaser/klix/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/Game.js -------------------------------------------------------------------------------- /phaser/klix/js/HighScores.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/HighScores.js -------------------------------------------------------------------------------- /phaser/klix/js/HighScoresInput.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/HighScoresInput.js -------------------------------------------------------------------------------- /phaser/klix/js/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/HowToPlay.js -------------------------------------------------------------------------------- /phaser/klix/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/Menu.js -------------------------------------------------------------------------------- /phaser/klix/js/SpaceShip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/SpaceShip.js -------------------------------------------------------------------------------- /phaser/klix/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/Splash.js -------------------------------------------------------------------------------- /phaser/klix/js/Ufo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/Ufo.js -------------------------------------------------------------------------------- /phaser/klix/js/Win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/Win.js -------------------------------------------------------------------------------- /phaser/klix/js/lose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/lose.js -------------------------------------------------------------------------------- /phaser/klix/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/klix/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/lahis/dinossauro/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/lahis/dinossauro/js/game.js -------------------------------------------------------------------------------- /phaser/lahis/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/lahis/index.html -------------------------------------------------------------------------------- /phaser/multiplayer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/index.html -------------------------------------------------------------------------------- /phaser/multiplayer/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/js/auth.js -------------------------------------------------------------------------------- /phaser/multiplayer/js/game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/js/game.js -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib'); 3 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/latest: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env bash 2 | npm tag socket.io@0.9.16 latest 3 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/engine.io/node_modules/.bin/wscat: -------------------------------------------------------------------------------- 1 | ../ws/bin/wscat -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/engine.io/node_modules/ws/build/Release/linker.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/engine.io/node_modules/ws/builderror.log: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/engine.io/node_modules/ws/examples/fileapi/.npmignore: -------------------------------------------------------------------------------- 1 | uploaded 2 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/engine.io/node_modules/ws/node_modules/nan/.index.js: -------------------------------------------------------------------------------- 1 | //noop -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/socket.io-adapter/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/socket.io-client/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | support 3 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/socket.io-client/index.js: -------------------------------------------------------------------------------- 1 | 2 | module.exports = require('./lib/'); 3 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/node_modules/socket.io/node_modules/socket.io-parser/node_modules/emitter/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /phaser/multiplayer/js/pecas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/js/pecas.js -------------------------------------------------------------------------------- /phaser/multiplayer/js/phaser.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/js/phaser.map -------------------------------------------------------------------------------- /phaser/multiplayer/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/multiplayer/js/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/js/server.js -------------------------------------------------------------------------------- /phaser/multiplayer/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/readme.txt -------------------------------------------------------------------------------- /phaser/multiplayer/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/multiplayer/style.css -------------------------------------------------------------------------------- /phaser/no-boo/assets/botoes.tps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/botoes.tps -------------------------------------------------------------------------------- /phaser/no-boo/assets/coracao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/coracao.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao1.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao10.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao2.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao3.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao4.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao5.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao6.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao7.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao8.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/explosao9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/explosao9.png -------------------------------------------------------------------------------- /phaser/no-boo/assets/telas/fundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/assets/telas/fundo.png -------------------------------------------------------------------------------- /phaser/no-boo/audio/Ending.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Ending.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Explosion19.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Explosion19.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Fail.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Fail.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/GhostBusters.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/GhostBusters.mp3 -------------------------------------------------------------------------------- /phaser/no-boo/audio/GhostBusters.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/GhostBusters.ogg -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop1.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop1.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop2.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop2.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop3.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop3.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop4.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop4.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop5.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop5.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop6.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop6.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop7.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop7.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop8.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop8.wav -------------------------------------------------------------------------------- /phaser/no-boo/audio/Plop9.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/audio/Plop9.wav -------------------------------------------------------------------------------- /phaser/no-boo/fonts/Grinched.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/fonts/Grinched.ttf -------------------------------------------------------------------------------- /phaser/no-boo/fonts/Halloween.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/fonts/Halloween.ttf -------------------------------------------------------------------------------- /phaser/no-boo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/index.html -------------------------------------------------------------------------------- /phaser/no-boo/js/creditos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/creditos.js -------------------------------------------------------------------------------- /phaser/no-boo/js/fantasma.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/fantasma.js -------------------------------------------------------------------------------- /phaser/no-boo/js/ganhou.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/ganhou.js -------------------------------------------------------------------------------- /phaser/no-boo/js/instrucoes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/instrucoes.js -------------------------------------------------------------------------------- /phaser/no-boo/js/jogo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/jogo.js -------------------------------------------------------------------------------- /phaser/no-boo/js/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/menu.js -------------------------------------------------------------------------------- /phaser/no-boo/js/perdeu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/perdeu.js -------------------------------------------------------------------------------- /phaser/no-boo/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/no-boo/js/splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/no-boo/js/splash.js -------------------------------------------------------------------------------- /phaser/ohhman/assets/tilemaps/maps/rules.txt: -------------------------------------------------------------------------------- 1 | rules1.tmx -------------------------------------------------------------------------------- /phaser/ohhman/doc/Diagrams.asta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/doc/Diagrams.asta -------------------------------------------------------------------------------- /phaser/ohhman/doc/Planning.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/doc/Planning.xlsx -------------------------------------------------------------------------------- /phaser/ohhman/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/index.html -------------------------------------------------------------------------------- /phaser/ohhman/js/Blinky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Blinky.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Clyde.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Clyde.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Game.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Inkey.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Inkey.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Life.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Life.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Map1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Map1.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Ohhman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Ohhman.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Pinky.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Pinky.js -------------------------------------------------------------------------------- /phaser/ohhman/js/ScaredGhost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/ScaredGhost.js -------------------------------------------------------------------------------- /phaser/ohhman/js/Score.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/Score.js -------------------------------------------------------------------------------- /phaser/ohhman/js/config/FilePath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/config/FilePath.js -------------------------------------------------------------------------------- /phaser/ohhman/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/ohhman/js/screen/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/screen/Credits.js -------------------------------------------------------------------------------- /phaser/ohhman/js/screen/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/screen/HowToPlay.js -------------------------------------------------------------------------------- /phaser/ohhman/js/screen/Lose.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/screen/Lose.js -------------------------------------------------------------------------------- /phaser/ohhman/js/screen/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/screen/Menu.js -------------------------------------------------------------------------------- /phaser/ohhman/js/screen/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/screen/Splash.js -------------------------------------------------------------------------------- /phaser/ohhman/js/screen/Win.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/ohhman/js/screen/Win.js -------------------------------------------------------------------------------- /phaser/phaser/205/phaser.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/phaser/205/phaser.map -------------------------------------------------------------------------------- /phaser/phaser/205/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/phaser/205/phaser.min.js -------------------------------------------------------------------------------- /phaser/phaser/phaser.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/phaser/phaser.map -------------------------------------------------------------------------------- /phaser/phaser/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/phaser/phaser.min.js -------------------------------------------------------------------------------- /phaser/pong/assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/pong/assets/background.jpg -------------------------------------------------------------------------------- /phaser/pong/assets/ball.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/pong/assets/ball.png -------------------------------------------------------------------------------- /phaser/pong/assets/bet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/pong/assets/bet.png -------------------------------------------------------------------------------- /phaser/pong/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/pong/index.html -------------------------------------------------------------------------------- /phaser/pong/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/pong/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/qix-juliane/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/index.html -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Ball.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Ball.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Collision.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Collision.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Draw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Draw.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Game.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Line.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Line.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Qix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Qix.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Screen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Screen.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/Shape.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/Shape.js -------------------------------------------------------------------------------- /phaser/qix-juliane/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/qix-juliane/planejamento.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/qix-juliane/planejamento.txt -------------------------------------------------------------------------------- /phaser/template/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/template/index.html -------------------------------------------------------------------------------- /phaser/template/js/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/template/js/Main.js -------------------------------------------------------------------------------- /phaser/template/js/config/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/template/js/config/Config.js -------------------------------------------------------------------------------- /phaser/template/js/states/Credits.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/template/js/states/Credits.js -------------------------------------------------------------------------------- /phaser/template/js/states/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/template/js/states/Menu.js -------------------------------------------------------------------------------- /phaser/tutorial-refactoring/HUD.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial-refactoring/HUD.js -------------------------------------------------------------------------------- /phaser/tutorial-refactoring/Level.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial-refactoring/Level.js -------------------------------------------------------------------------------- /phaser/tutorial/assets/baddie.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/assets/baddie.png -------------------------------------------------------------------------------- /phaser/tutorial/assets/diamond.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/assets/diamond.png -------------------------------------------------------------------------------- /phaser/tutorial/assets/dude.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/assets/dude.png -------------------------------------------------------------------------------- /phaser/tutorial/assets/firstaid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/assets/firstaid.png -------------------------------------------------------------------------------- /phaser/tutorial/assets/platform.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/assets/platform.png -------------------------------------------------------------------------------- /phaser/tutorial/assets/sky.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/assets/sky.png -------------------------------------------------------------------------------- /phaser/tutorial/assets/star.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/assets/star.png -------------------------------------------------------------------------------- /phaser/tutorial/js/phaser.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/js/phaser.min.js -------------------------------------------------------------------------------- /phaser/tutorial/part1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part1.html -------------------------------------------------------------------------------- /phaser/tutorial/part2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part2.html -------------------------------------------------------------------------------- /phaser/tutorial/part3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part3.html -------------------------------------------------------------------------------- /phaser/tutorial/part4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part4.html -------------------------------------------------------------------------------- /phaser/tutorial/part5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part5.html -------------------------------------------------------------------------------- /phaser/tutorial/part6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part6.html -------------------------------------------------------------------------------- /phaser/tutorial/part7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part7.html -------------------------------------------------------------------------------- /phaser/tutorial/part8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part8.html -------------------------------------------------------------------------------- /phaser/tutorial/part9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/part9.html -------------------------------------------------------------------------------- /phaser/tutorial/tutorial.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/tutorial/tutorial.html -------------------------------------------------------------------------------- /phaser/zombie_attack/assets/htp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/assets/htp1.png -------------------------------------------------------------------------------- /phaser/zombie_attack/assets/htp2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/assets/htp2.png -------------------------------------------------------------------------------- /phaser/zombie_attack/assets/htp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/assets/htp3.png -------------------------------------------------------------------------------- /phaser/zombie_attack/assets/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/assets/menu.png -------------------------------------------------------------------------------- /phaser/zombie_attack/audios/ugh.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/audios/ugh.wav -------------------------------------------------------------------------------- /phaser/zombie_attack/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/index.html -------------------------------------------------------------------------------- /phaser/zombie_attack/js/FilePaths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/FilePaths.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/Game.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/Game.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/GameOver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/GameOver.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/GroupZombie.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /phaser/zombie_attack/js/HowToPlay.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/HowToPlay.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/Menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/Menu.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/Person.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/Round.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/Round.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/Splash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/Splash.js -------------------------------------------------------------------------------- /phaser/zombie_attack/js/Zombie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/phaser/zombie_attack/js/Zombie.js -------------------------------------------------------------------------------- /pong/Pong - Original.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/pong/Pong - Original.html -------------------------------------------------------------------------------- /pong/Pong.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/pong/Pong.html -------------------------------------------------------------------------------- /pong/beep.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/pong/beep.mp3 -------------------------------------------------------------------------------- /pong/blackstar.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/pong/blackstar.mp3 -------------------------------------------------------------------------------- /setas/quadrado-30x30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/setas/quadrado-30x30.png -------------------------------------------------------------------------------- /setas/setas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/setas/setas.html -------------------------------------------------------------------------------- /tiroplata/c2runtime.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/c2runtime.js -------------------------------------------------------------------------------- /tiroplata/icon-114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/icon-114.png -------------------------------------------------------------------------------- /tiroplata/icon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/icon-128.png -------------------------------------------------------------------------------- /tiroplata/icon-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/icon-16.png -------------------------------------------------------------------------------- /tiroplata/icon-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/icon-256.png -------------------------------------------------------------------------------- /tiroplata/icon-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/icon-32.png -------------------------------------------------------------------------------- /tiroplata/images/chao.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/chao.png -------------------------------------------------------------------------------- /tiroplata/images/facebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/facebook.png -------------------------------------------------------------------------------- /tiroplata/images/forca-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/forca-sheet0.png -------------------------------------------------------------------------------- /tiroplata/images/fundo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/fundo.png -------------------------------------------------------------------------------- /tiroplata/images/heroi1-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/heroi1-sheet0.png -------------------------------------------------------------------------------- /tiroplata/images/heroi2-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/heroi2-sheet0.png -------------------------------------------------------------------------------- /tiroplata/images/limite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/limite.png -------------------------------------------------------------------------------- /tiroplata/images/nuvem-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/nuvem-sheet0.png -------------------------------------------------------------------------------- /tiroplata/images/projetil-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/projetil-sheet0.png -------------------------------------------------------------------------------- /tiroplata/images/setacima-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/setacima-sheet0.png -------------------------------------------------------------------------------- /tiroplata/images/tempo-sheet0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/images/tempo-sheet0.png -------------------------------------------------------------------------------- /tiroplata/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/index.html -------------------------------------------------------------------------------- /tiroplata/jquery-2.0.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/jquery-2.0.0.min.js -------------------------------------------------------------------------------- /tiroplata/loading-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/loading-logo.png -------------------------------------------------------------------------------- /tiroplata/media/movimento_tanque.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/media/movimento_tanque.m4a -------------------------------------------------------------------------------- /tiroplata/media/movimento_tanque.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/media/movimento_tanque.ogg -------------------------------------------------------------------------------- /tiroplata/media/tiro_no_chao.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/media/tiro_no_chao.m4a -------------------------------------------------------------------------------- /tiroplata/media/tiro_no_chao.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/media/tiro_no_chao.ogg -------------------------------------------------------------------------------- /tiroplata/media/tiro_sai_do_cano.m4a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/media/tiro_sai_do_cano.m4a -------------------------------------------------------------------------------- /tiroplata/media/tiro_sai_do_cano.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/media/tiro_sai_do_cano.ogg -------------------------------------------------------------------------------- /tiroplata/offline.appcache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jucimarjr/html5games/HEAD/tiroplata/offline.appcache --------------------------------------------------------------------------------