├── .gitattributes ├── .gitignore ├── Applications └── Todpole │ ├── Events.php │ ├── Web │ ├── auth.html │ ├── css │ │ ├── images │ │ │ ├── github.png │ │ │ └── logo.png │ │ └── main.css │ ├── favicon.ico │ ├── images │ │ ├── apple-touch-icon.png │ │ ├── fb-image.jpg │ │ └── workerman-todpole-browser.png │ ├── index.php │ └── js │ │ ├── App.js │ │ ├── Arrow.js │ │ ├── Camera.js │ │ ├── Cookie.js │ │ ├── Keys.js │ │ ├── Message.js │ │ ├── Model.js │ │ ├── Settings.js │ │ ├── Tadpole.js │ │ ├── TadpoleTail.js │ │ ├── WaterParticle.js │ │ ├── WebSocketService.js │ │ ├── formControls.js │ │ ├── frogMode.js │ │ ├── jquery.min.js │ │ ├── lib │ │ ├── Stats.js │ │ ├── jquery-1.4.2.min.js │ │ ├── modernizr-1.5.min.js │ │ └── parseUri.js │ │ └── main.js │ ├── start_businessworker.php │ ├── start_gateway.php │ ├── start_register.php │ └── start_web.php ├── README.md ├── composer.json └── start_for_win.bat /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/.gitignore -------------------------------------------------------------------------------- /Applications/Todpole/Events.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Events.php -------------------------------------------------------------------------------- /Applications/Todpole/Web/auth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/auth.html -------------------------------------------------------------------------------- /Applications/Todpole/Web/css/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/css/images/github.png -------------------------------------------------------------------------------- /Applications/Todpole/Web/css/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/css/images/logo.png -------------------------------------------------------------------------------- /Applications/Todpole/Web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/css/main.css -------------------------------------------------------------------------------- /Applications/Todpole/Web/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/favicon.ico -------------------------------------------------------------------------------- /Applications/Todpole/Web/images/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/images/apple-touch-icon.png -------------------------------------------------------------------------------- /Applications/Todpole/Web/images/fb-image.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/images/fb-image.jpg -------------------------------------------------------------------------------- /Applications/Todpole/Web/images/workerman-todpole-browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/images/workerman-todpole-browser.png -------------------------------------------------------------------------------- /Applications/Todpole/Web/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/index.php -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/App.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Arrow.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Arrow.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Camera.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Cookie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Cookie.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Keys.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Keys.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Message.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Model.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Settings.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/Tadpole.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/Tadpole.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/TadpoleTail.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/TadpoleTail.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/WaterParticle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/WaterParticle.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/WebSocketService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/WebSocketService.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/formControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/formControls.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/frogMode.js: -------------------------------------------------------------------------------- 1 | var frogMode = function() { 2 | 3 | } 4 | -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/jquery.min.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/lib/Stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/lib/Stats.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/lib/jquery-1.4.2.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/lib/jquery-1.4.2.min.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/lib/modernizr-1.5.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/lib/modernizr-1.5.min.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/lib/parseUri.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/lib/parseUri.js -------------------------------------------------------------------------------- /Applications/Todpole/Web/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/Web/js/main.js -------------------------------------------------------------------------------- /Applications/Todpole/start_businessworker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/start_businessworker.php -------------------------------------------------------------------------------- /Applications/Todpole/start_gateway.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/start_gateway.php -------------------------------------------------------------------------------- /Applications/Todpole/start_register.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/start_register.php -------------------------------------------------------------------------------- /Applications/Todpole/start_web.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/Applications/Todpole/start_web.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/composer.json -------------------------------------------------------------------------------- /start_for_win.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/walkor/workerman-todpole-for-win/HEAD/start_for_win.bat --------------------------------------------------------------------------------