├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── cluster └── clustername.lua ├── common ├── datacenter │ ├── accountdc.lua │ ├── roomdc.lua │ └── userdc.lua ├── dbmgr.lua ├── dbsync.lua ├── entity │ ├── d_account.lua │ ├── d_room.lua │ ├── d_user.lua │ ├── d_user_custom.lua │ ├── s_config.lua │ └── s_roleinit.lua ├── entitybase │ ├── CommonEntity.lua │ ├── ConfigEntity.lua │ ├── Entity.lua │ ├── EntityFactory.lua │ ├── UserEntity.lua │ ├── UserMultiEntity.lua │ └── UserSingleEntity.lua ├── log.lua ├── mysqlpool.lua └── redispool.lua ├── doc ├── README.md ├── TIPS.md ├── TODO.md ├── general.md ├── guide.md ├── hall-with-game.md ├── login-hall.md ├── login.md ├── persist.md ├── piggy.md └── protocol.md ├── etc ├── config.game ├── config.hall ├── config.login └── gamelet.lua ├── game ├── agent.lua ├── gamelet │ └── chat │ │ └── chat.lua ├── gated.lua ├── main.lua ├── room.lua ├── roommanager.lua ├── rpc │ └── game.lua └── watchdog.lua ├── global ├── errno.lua ├── globaldef.lua ├── luaext.lua ├── preload.lua └── util.lua ├── hall ├── gated.lua ├── main.lua ├── msgagent.lua ├── roomproxy.lua └── rpc │ └── hall.lua ├── login ├── logind.lua └── main.lua ├── lualib-src ├── lua-log.c ├── lua-zlib.c └── pbc │ ├── .gitignore │ ├── .travis.yml │ ├── Android.mk │ ├── Makefile │ ├── README.md │ ├── binding │ ├── lua │ │ ├── Makefile │ │ ├── README.md │ │ ├── parser.lua │ │ ├── pbc-lua.c │ │ ├── protobuf.lua │ │ ├── test.lua │ │ ├── test2.lua │ │ └── testparser.lua │ └── lua53 │ │ ├── Makefile │ │ ├── pbc-lua53.c │ │ ├── protobuf.lua │ │ ├── protobuf.so │ │ └── test.lua │ ├── license.txt │ ├── pbc.h │ ├── pbc.sln │ ├── pbc.vcxproj │ ├── src │ ├── alloc.c │ ├── alloc.h │ ├── array.c │ ├── array.h │ ├── bootstrap.c │ ├── bootstrap.h │ ├── context.c │ ├── context.h │ ├── decode.c │ ├── descriptor.pbc.h │ ├── map.c │ ├── map.h │ ├── pattern.c │ ├── pattern.h │ ├── proto.c │ ├── proto.h │ ├── register.c │ ├── rmessage.c │ ├── stringpool.c │ ├── stringpool.h │ ├── varint.c │ ├── varint.h │ └── wmessage.c │ ├── test │ ├── addressbook.c │ ├── addressbook.proto │ ├── array.c │ ├── decode.c │ ├── descriptor.proto │ ├── float.c │ ├── float.proto │ ├── map.c │ ├── pattern.c │ ├── pbc.c │ ├── readfile.h │ ├── test.c │ ├── test.proto │ └── varint.c │ └── tool │ └── dump.c ├── lualib ├── loginserverx.lua ├── message.lua ├── message_map.lua ├── messageid.lua ├── msgserver0.lua ├── protobuf.lua ├── random.lua └── uuid.lua ├── protocol ├── game.pb ├── game.proto ├── hall.pb ├── hall.proto ├── netmsg.pb ├── netmsg.proto ├── protoc └── protogenpb.sh ├── redis ├── redis-server ├── redis1.conf ├── redis2.conf ├── redis3.conf ├── redis4.conf ├── redis5.conf ├── redis6.conf ├── redis7.conf └── redis8.conf ├── sh ├── game.sh ├── hall.sh ├── login.sh ├── pigy.sql └── redis.sh └── test ├── c_game.lua ├── c_hall.lua ├── c_login.lua ├── client_util.lua └── i_client.lua /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | *.o 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/README.md -------------------------------------------------------------------------------- /cluster/clustername.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/cluster/clustername.lua -------------------------------------------------------------------------------- /common/datacenter/accountdc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/datacenter/accountdc.lua -------------------------------------------------------------------------------- /common/datacenter/roomdc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/datacenter/roomdc.lua -------------------------------------------------------------------------------- /common/datacenter/userdc.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/datacenter/userdc.lua -------------------------------------------------------------------------------- /common/dbmgr.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/dbmgr.lua -------------------------------------------------------------------------------- /common/dbsync.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/dbsync.lua -------------------------------------------------------------------------------- /common/entity/d_account.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entity/d_account.lua -------------------------------------------------------------------------------- /common/entity/d_room.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entity/d_room.lua -------------------------------------------------------------------------------- /common/entity/d_user.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entity/d_user.lua -------------------------------------------------------------------------------- /common/entity/d_user_custom.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entity/d_user_custom.lua -------------------------------------------------------------------------------- /common/entity/s_config.lua: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /common/entity/s_roleinit.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entity/s_roleinit.lua -------------------------------------------------------------------------------- /common/entitybase/CommonEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entitybase/CommonEntity.lua -------------------------------------------------------------------------------- /common/entitybase/ConfigEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entitybase/ConfigEntity.lua -------------------------------------------------------------------------------- /common/entitybase/Entity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entitybase/Entity.lua -------------------------------------------------------------------------------- /common/entitybase/EntityFactory.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entitybase/EntityFactory.lua -------------------------------------------------------------------------------- /common/entitybase/UserEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entitybase/UserEntity.lua -------------------------------------------------------------------------------- /common/entitybase/UserMultiEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entitybase/UserMultiEntity.lua -------------------------------------------------------------------------------- /common/entitybase/UserSingleEntity.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/entitybase/UserSingleEntity.lua -------------------------------------------------------------------------------- /common/log.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/log.lua -------------------------------------------------------------------------------- /common/mysqlpool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/mysqlpool.lua -------------------------------------------------------------------------------- /common/redispool.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/common/redispool.lua -------------------------------------------------------------------------------- /doc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/README.md -------------------------------------------------------------------------------- /doc/TIPS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/TIPS.md -------------------------------------------------------------------------------- /doc/TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/TODO.md -------------------------------------------------------------------------------- /doc/general.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/general.md -------------------------------------------------------------------------------- /doc/guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/guide.md -------------------------------------------------------------------------------- /doc/hall-with-game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/hall-with-game.md -------------------------------------------------------------------------------- /doc/login-hall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/login-hall.md -------------------------------------------------------------------------------- /doc/login.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/login.md -------------------------------------------------------------------------------- /doc/persist.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/persist.md -------------------------------------------------------------------------------- /doc/piggy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/piggy.md -------------------------------------------------------------------------------- /doc/protocol.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/doc/protocol.md -------------------------------------------------------------------------------- /etc/config.game: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/etc/config.game -------------------------------------------------------------------------------- /etc/config.hall: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/etc/config.hall -------------------------------------------------------------------------------- /etc/config.login: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/etc/config.login -------------------------------------------------------------------------------- /etc/gamelet.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/etc/gamelet.lua -------------------------------------------------------------------------------- /game/agent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/agent.lua -------------------------------------------------------------------------------- /game/gamelet/chat/chat.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/gamelet/chat/chat.lua -------------------------------------------------------------------------------- /game/gated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/gated.lua -------------------------------------------------------------------------------- /game/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/main.lua -------------------------------------------------------------------------------- /game/room.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/room.lua -------------------------------------------------------------------------------- /game/roommanager.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/roommanager.lua -------------------------------------------------------------------------------- /game/rpc/game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/rpc/game.lua -------------------------------------------------------------------------------- /game/watchdog.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/game/watchdog.lua -------------------------------------------------------------------------------- /global/errno.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/global/errno.lua -------------------------------------------------------------------------------- /global/globaldef.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/global/globaldef.lua -------------------------------------------------------------------------------- /global/luaext.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/global/luaext.lua -------------------------------------------------------------------------------- /global/preload.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/global/preload.lua -------------------------------------------------------------------------------- /global/util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/global/util.lua -------------------------------------------------------------------------------- /hall/gated.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/hall/gated.lua -------------------------------------------------------------------------------- /hall/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/hall/main.lua -------------------------------------------------------------------------------- /hall/msgagent.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/hall/msgagent.lua -------------------------------------------------------------------------------- /hall/roomproxy.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/hall/roomproxy.lua -------------------------------------------------------------------------------- /hall/rpc/hall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/hall/rpc/hall.lua -------------------------------------------------------------------------------- /login/logind.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/login/logind.lua -------------------------------------------------------------------------------- /login/main.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/login/main.lua -------------------------------------------------------------------------------- /lualib-src/lua-log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/lua-log.c -------------------------------------------------------------------------------- /lualib-src/lua-zlib.c: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lualib-src/pbc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/.gitignore -------------------------------------------------------------------------------- /lualib-src/pbc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/.travis.yml -------------------------------------------------------------------------------- /lualib-src/pbc/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/Android.mk -------------------------------------------------------------------------------- /lualib-src/pbc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/Makefile -------------------------------------------------------------------------------- /lualib-src/pbc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/README.md -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/Makefile -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/README.md -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/parser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/parser.lua -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/pbc-lua.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/pbc-lua.c -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/protobuf.lua -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/test.lua -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/test2.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/test2.lua -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua/testparser.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua/testparser.lua -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua53/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua53/Makefile -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua53/pbc-lua53.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua53/pbc-lua53.c -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua53/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua53/protobuf.lua -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua53/protobuf.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua53/protobuf.so -------------------------------------------------------------------------------- /lualib-src/pbc/binding/lua53/test.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/binding/lua53/test.lua -------------------------------------------------------------------------------- /lualib-src/pbc/license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/license.txt -------------------------------------------------------------------------------- /lualib-src/pbc/pbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/pbc.h -------------------------------------------------------------------------------- /lualib-src/pbc/pbc.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/pbc.sln -------------------------------------------------------------------------------- /lualib-src/pbc/pbc.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/pbc.vcxproj -------------------------------------------------------------------------------- /lualib-src/pbc/src/alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/alloc.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/alloc.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/array.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/array.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/array.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/bootstrap.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/bootstrap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/bootstrap.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/context.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/context.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/context.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/context.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/decode.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/descriptor.pbc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/descriptor.pbc.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/map.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/map.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/pattern.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/pattern.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/pattern.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/proto.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/proto.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/proto.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/proto.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/register.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/rmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/rmessage.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/stringpool.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/stringpool.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/stringpool.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/stringpool.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/varint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/varint.c -------------------------------------------------------------------------------- /lualib-src/pbc/src/varint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/varint.h -------------------------------------------------------------------------------- /lualib-src/pbc/src/wmessage.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/src/wmessage.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/addressbook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/addressbook.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/addressbook.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/addressbook.proto -------------------------------------------------------------------------------- /lualib-src/pbc/test/array.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/array.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/decode.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/decode.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/descriptor.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/descriptor.proto -------------------------------------------------------------------------------- /lualib-src/pbc/test/float.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/float.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/float.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/float.proto -------------------------------------------------------------------------------- /lualib-src/pbc/test/map.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/map.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/pattern.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/pattern.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/pbc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/pbc.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/readfile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/readfile.h -------------------------------------------------------------------------------- /lualib-src/pbc/test/test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/test.c -------------------------------------------------------------------------------- /lualib-src/pbc/test/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/test.proto -------------------------------------------------------------------------------- /lualib-src/pbc/test/varint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/test/varint.c -------------------------------------------------------------------------------- /lualib-src/pbc/tool/dump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib-src/pbc/tool/dump.c -------------------------------------------------------------------------------- /lualib/loginserverx.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/loginserverx.lua -------------------------------------------------------------------------------- /lualib/message.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/message.lua -------------------------------------------------------------------------------- /lualib/message_map.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/message_map.lua -------------------------------------------------------------------------------- /lualib/messageid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/messageid.lua -------------------------------------------------------------------------------- /lualib/msgserver0.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/msgserver0.lua -------------------------------------------------------------------------------- /lualib/protobuf.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/protobuf.lua -------------------------------------------------------------------------------- /lualib/random.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/random.lua -------------------------------------------------------------------------------- /lualib/uuid.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/lualib/uuid.lua -------------------------------------------------------------------------------- /protocol/game.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/game.pb -------------------------------------------------------------------------------- /protocol/game.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/game.proto -------------------------------------------------------------------------------- /protocol/hall.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/hall.pb -------------------------------------------------------------------------------- /protocol/hall.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/hall.proto -------------------------------------------------------------------------------- /protocol/netmsg.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/netmsg.pb -------------------------------------------------------------------------------- /protocol/netmsg.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/netmsg.proto -------------------------------------------------------------------------------- /protocol/protoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/protoc -------------------------------------------------------------------------------- /protocol/protogenpb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/protocol/protogenpb.sh -------------------------------------------------------------------------------- /redis/redis-server: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis-server -------------------------------------------------------------------------------- /redis/redis1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis1.conf -------------------------------------------------------------------------------- /redis/redis2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis2.conf -------------------------------------------------------------------------------- /redis/redis3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis3.conf -------------------------------------------------------------------------------- /redis/redis4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis4.conf -------------------------------------------------------------------------------- /redis/redis5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis5.conf -------------------------------------------------------------------------------- /redis/redis6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis6.conf -------------------------------------------------------------------------------- /redis/redis7.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis7.conf -------------------------------------------------------------------------------- /redis/redis8.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/redis/redis8.conf -------------------------------------------------------------------------------- /sh/game.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/sh/game.sh -------------------------------------------------------------------------------- /sh/hall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/sh/hall.sh -------------------------------------------------------------------------------- /sh/login.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/sh/login.sh -------------------------------------------------------------------------------- /sh/pigy.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/sh/pigy.sql -------------------------------------------------------------------------------- /sh/redis.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/sh/redis.sh -------------------------------------------------------------------------------- /test/c_game.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/test/c_game.lua -------------------------------------------------------------------------------- /test/c_hall.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/test/c_hall.lua -------------------------------------------------------------------------------- /test/c_login.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/test/c_login.lua -------------------------------------------------------------------------------- /test/client_util.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/test/client_util.lua -------------------------------------------------------------------------------- /test/i_client.lua: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinlynx/pigy/HEAD/test/i_client.lua --------------------------------------------------------------------------------