All Projects → dwg255 → Fish

dwg255 / Fish

golang h5捕鱼游戏

Programming Languages

go
31211 projects - #10 most used programming language
golang
3204 projects

Projects that are alternatives of or similar to Fish

Tap Tap Adventure
Tap Tap Adventure is a massively online 2D MMORPG set in the medieval times with twists.
Stars: ✭ 123 (+112.07%)
Mutual labels:  game, websocket, html5
Phaserquest
Reproduction of Mozilla's BrowserQuest using Phaser, socket.io and Node.js
Stars: ✭ 313 (+439.66%)
Mutual labels:  game, html5
X11vnc Desktop
Docker image for Ubuntu with X11 and VNC
Stars: ✭ 57 (-1.72%)
Mutual labels:  websocket, html5
Libgdx
Desktop/Android/HTML5/iOS Java game development framework
Stars: ✭ 19,420 (+33382.76%)
Mutual labels:  game, html5
Landlord
斗地主
Stars: ✭ 250 (+331.03%)
Mutual labels:  game, websocket
Socket.io
NodeJS《你画我猜》游戏
Stars: ✭ 255 (+339.66%)
Mutual labels:  game, websocket
Websocket
simple php websocket server + demos + yii/yii2 integration + php 7 support
Stars: ✭ 363 (+525.86%)
Mutual labels:  game, websocket
Haxegon
A haxe programming library for beginners. Powered by OpenFL and Starling.
Stars: ✭ 182 (+213.79%)
Mutual labels:  game, html5
Lgame
A cross-platform Java game Engine (Framework) , support JavaFX / Android / IOS / HTML5 / Linux / MAC / Windows
Stars: ✭ 467 (+705.17%)
Mutual labels:  game, html5
Korge
KorGE Game Engine. Multiplatform Kotlin Game Engine
Stars: ✭ 780 (+1244.83%)
Mutual labels:  game, html5
Game Server
Distributed Java game server, including cluster management server, gateway server, hall server, game logic server, background monitoring server and a running web version of fishing. State machine, behavior tree, A* pathfinding, navigation mesh and other AI tools
Stars: ✭ 916 (+1479.31%)
Mutual labels:  fish, game
Gdevelop
🎮 GDevelop is an open-source, cross-platform game engine designed to be used by everyone.
Stars: ✭ 3,221 (+5453.45%)
Mutual labels:  game, html5
Deck Of Cards
Deck of Cards (old version)
Stars: ✭ 2,684 (+4527.59%)
Mutual labels:  game, html5
Mmorpg
springboot编写的轻量级高性能mmorpg手游服务端框架,基本功能逐渐完善中。
Stars: ✭ 309 (+432.76%)
Mutual labels:  game, websocket
One Html Page Challenge
Can you create something cool without modern tools?
Stars: ✭ 205 (+253.45%)
Mutual labels:  game, html5
Phaser3 Docs
Phaser 3 Documentation and TypeScript Defs
Stars: ✭ 339 (+484.48%)
Mutual labels:  game, html5
Much Assembly Required
Assembly programming game
Stars: ✭ 869 (+1398.28%)
Mutual labels:  game, websocket
Stage.js
2D HTML5 rendering and layout engine for game development
Stars: ✭ 2,138 (+3586.21%)
Mutual labels:  game, html5
Classic Pool Game
Classic 8 Ball pool game written in JavaScript
Stars: ✭ 177 (+205.17%)
Mutual labels:  game, html5
Lambdahack
Haskell game engine library for roguelike dungeon crawlers; please offer feedback, e.g., after trying out the sample game with the web frontend at
Stars: ✭ 439 (+656.9%)
Mutual labels:  game, html5

捕鱼

运行步骤:

1.下载源码:

git clone https://github.com/dwg255/fish

2.编译:

cd fish\
go build -o account.exe account\main\main.go account\main\init.go account\main\config.go
go build -o hall.exe hall\main\main.go hall\main\init.go hall\main\config.go
go build -o fish.exe game\main\main.go game\main\init.go game\main\config.go

3.解压客户端: tar -zxvf fish.tar.gz /var/www/html/client/fish

4.配置nginx:

    server {
        listen       80;
        server_name  fish.com;
        charset utf8;
        index index.html index.htm;
        location /qq {
            add_header Access-Control-Allow-Origin *;
            proxy_set_header X-Target $request_uri;
            proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
            proxy_pass http://127.0.0.1:9000;
        }
        location / {
            root /var/www/html/client/fish;
            add_header Access-Control-Allow-Origin *;
            expires 7d;
        }
    }
 配置文件位置 /common/conf 内含redis配置和qq第三方登录配置,请自行修改。

5.在线示例: http://fish.blzz.shop


License

This project is released under the terms of the MIT license. See LICENSE for more information or see https://opensource.org/licenses/MIT.


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].