实例介绍
基于Html 5 WebSocekt技术开发Web版五子棋游戏
【实例截图】
【核心代码】
4744302542941321379.zip
└── webSocket_wuziqi
├── client
│ ├── images
│ │ ├── bg.png
│ │ ├── qzb.png
│ │ └── qzh.png
│ ├── index.html
│ ├── jquery-1.6.4.min.js
│ ├── js
│ │ ├── Base.js
│ │ ├── DataHandle.js
│ │ └── game.js
│ ├── jscript.dom.js
│ ├── js-ws
│ │ ├── flash-src
│ │ │ ├── build.properties.sample
│ │ │ ├── build.sh
│ │ │ ├── build.xml
│ │ │ ├── src
│ │ │ │ └── net
│ │ │ │ └── gimite
│ │ │ │ └── websocket
│ │ │ │ ├── IWebSocketLogger.as
│ │ │ │ ├── WebSocket.as
│ │ │ │ ├── WebSocketEvent.as
│ │ │ │ ├── WebSocketFrame.as
│ │ │ │ ├── WebSocketMain.as
│ │ │ │ └── WebSocketMainInsecure.as
│ │ │ └── third-party
│ │ │ └── com
│ │ │ ├── adobe
│ │ │ │ └── net
│ │ │ │ └── proxies
│ │ │ │ └── RFC2817Socket.as
│ │ │ ├── gsolo
│ │ │ │ └── encryption
│ │ │ │ ├── MD5.as
│ │ │ │ └── SHA1.as
│ │ │ └── hurlant
│ │ │ ├── crypto
│ │ │ │ ├── cert
│ │ │ │ │ ├── MozillaRootCertificates.as
│ │ │ │ │ ├── X509Certificate.as
│ │ │ │ │ └── X509CertificateCollection.as
│ │ │ │ ├── Crypto.as
│ │ │ │ ├── hash
│ │ │ │ │ ├── HMAC.as
│ │ │ │ │ ├── IHash.as
│ │ │ │ │ ├── IHMAC.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
│ │ │ │ │ ├── aeskey.pl
│ │ │ │ │ ├── BlowFishKey.as
│ │ │ │ │ ├── CBCMode.as
│ │ │ │ │ ├── CFB8Mode.as
│ │ │ │ │ ├── CFBMode.as
│ │ │ │ │ ├── CTRMode.as
│ │ │ │ │ ├── DESKey.as
│ │ │ │ │ ├── dump.txt
│ │ │ │ │ ├── ECBMode.as
│ │ │ │ │ ├── ICipher.as
│ │ │ │ │ ├── IMode.as
│ │ │ │ │ ├── IPad.as
│ │ │ │ │ ├── IStreamCipher.as
│ │ │ │ │ ├── ISymmetricKey.as
│ │ │ │ │ ├── IVMode.as
│ │ │ │ │ ├── NullPad.as
│ │ │ │ │ ├── OFBMode.as
│ │ │ │ │ ├── PKCS5.as
│ │ │ │ │ ├── SimpleIVMode.as
│ │ │ │ │ ├── SSLPad.as
│ │ │ │ │ ├── TLSPad.as
│ │ │ │ │ ├── TripleDESKey.as
│ │ │ │ │ └── XTeaKey.as
│ │ │ │ ├── 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
│ │ │ │ │ ├── TestCase.as
│ │ │ │ │ ├── TLSPRFTest.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
│ │ │ │ ├── bi_internal.as
│ │ │ │ ├── ClassicReduction.as
│ │ │ │ ├── IReduction.as
│ │ │ │ ├── MontgomeryReduction.as
│ │ │ │ └── NullReduction.as
│ │ │ └── util
│ │ │ ├── ArrayUtil.as
│ │ │ ├── Base64.as
│ │ │ ├── der
│ │ │ │ ├── ByteString.as
│ │ │ │ ├── DER.as
│ │ │ │ ├── IAsn1Type.as
│ │ │ │ ├── Integer.as
│ │ │ │ ├── ObjectIdentifier.as
│ │ │ │ ├── OID.as
│ │ │ │ ├── PEM.as
│ │ │ │ ├── PrintableString.as
│ │ │ │ ├── Sequence.as
│ │ │ │ ├── Set.as
│ │ │ │ ├── Type.as
│ │ │ │ └── UTCTime.as
│ │ │ ├── Hex.as
│ │ │ └── Memory.as
│ │ ├── swfobject.js
│ │ ├── web_socket.js
│ │ └── WebSocketMain.swf
│ ├── sysu.gif
│ └── test
│ ├── data.html
│ ├── test.html
│ └── 类得方法调用测试.html
├── php
│ ├── dev
│ │ └── php5ts.lib
│ ├── ext
│ │ ├── php_bz2.dll
│ │ ├── php_curl.dll
│ │ ├── php_enchant.dll
│ │ ├── php_exif.dll
│ │ ├── php_fileinfo.dll
│ │ ├── php_gd2.dll
│ │ ├── php_gettext.dll
│ │ ├── php_gmp.dll
│ │ ├── php_imap.dll
│ │ ├── php_interbase.dll
│ │ ├── php_intl.dll
│ │ ├── php_ldap.dll
│ │ ├── php_mbstring.dll
│ │ ├── php_mysql.dll
│ │ ├── php_mysqli.dll
│ │ ├── php_oci8_11g.dll
│ │ ├── php_oci8.dll
│ │ ├── php_openssl.dll
│ │ ├── php_pdo_firebird.dll
│ │ ├── php_pdo_mysql.dll
│ │ ├── php_pdo_oci.dll
│ │ ├── php_pdo_odbc.dll
│ │ ├── php_pdo_pgsql.dll
│ │ ├── php_pdo_sqlite.dll
│ │ ├── php_pgsql.dll
│ │ ├── php_shmop.dll
│ │ ├── php_snmp.dll
│ │ ├── php_soap.dll
│ │ ├── php_sockets.dll
│ │ ├── php_sqlite3.dll
│ │ ├── php_sqlite.dll
│ │ ├── php_sybase_ct.dll
│ │ ├── php_tidy.dll
│ │ ├── php_xmlrpc.dll
│ │ └── php_xsl.dll
│ ├── extras
│ ├── file_upload
│ ├── glib-2.dll
│ ├── gmodule-2.dll
│ ├── icudt46.dll
│ ├── icudt.dll
│ ├── icuin46.dll
│ ├── icuin.dll
│ ├── icuio46.dll
│ ├── icuio.dll
│ ├── icule46.dll
│ ├── icule.dll
│ ├── iculx46.dll
│ ├── iculx.dll
│ ├── icutest46.dll
│ ├── icutest.dll
│ ├── icutu46.dll
│ ├── icutu.dll
│ ├── icuuc46.dll
│ ├── icuuc.dll
│ ├── install.txt
│ ├── libeay32.dll
│ ├── libenchant.dll
│ ├── libenchant_ispell.dll
│ ├── libenchant_myspell.dll
│ ├── libpq.dll
│ ├── libsasl.dll
│ ├── license.txt
│ ├── news.txt
│ ├── pharcommand.phar
│ ├── phar.phar.bat
│ ├── php5apache2_2.dll
│ ├── php5apache2_2_filter.dll
│ ├── php5embed.lib
│ ├── php5nsapi.dll
│ ├── php5ts.dll
│ ├── php-cgi.exe
│ ├── php.exe
│ ├── php.gif
│ ├── php.ini
│ ├── php.ini-development
│ ├── php.ini-production
│ ├── php-win.exe
│ ├── pws-php5cgi.reg
│ ├── pws-php5isapi.reg
│ ├── readme-redist-bins.txt
│ ├── session_temp
│ ├── snapshot.txt
│ └── ssleay32.dll
├── runwebsocket.bat
├── server
│ ├── config.ini
│ ├── server.php
│ └── WebSocket
│ ├── Application
│ │ ├── Application.php
│ │ └── ExampleApplication.php
│ ├── Connection.php
│ ├── Server.php
│ └── Socket.php
├── 运行截图
│ ├── chrome.jpg
│ ├── chrome_large2.jpg
│ ├── chrome_large.jpg
│ ├── chrome_new.jpg
│ ├── firefox.jpg
│ ├── firefox_lagre.jpg
│ ├── firefox_largge2.jpg
│ ├── firefox_new.jpg
│ └── server.jpg
└── 运行方法.txt
40 directories, 235 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论