├── README.md ├── bin └── protoc-gen-go.exe ├── pkg └── windows_386 │ ├── example.a │ ├── example │ ├── bubblesort.a │ └── qsort.a │ ├── game_engine │ ├── cache │ │ ├── mysql.a │ │ └── redis.a │ ├── config.a │ ├── logs.a │ ├── protobuf │ │ └── github.com │ │ │ └── golang │ │ │ └── protobuf │ │ │ └── proto.a │ └── redis.a │ ├── game_info │ └── protocol.a │ ├── github.com │ ├── drone │ │ └── routes.a │ ├── game_engine │ │ ├── cache │ │ │ └── redis.a │ │ ├── data │ │ │ └── redis.a │ │ ├── logs.a │ │ ├── models.a │ │ ├── orm.a │ │ └── timer.a │ └── golang │ │ └── protobuf │ │ ├── proto.a │ │ └── protoc-gen-go │ │ ├── descriptor.a │ │ ├── generator.a │ │ ├── internal │ │ └── grpc.a │ │ └── plugin.a │ └── server │ ├── account.a │ ├── chat.a │ ├── global.a │ ├── player.a │ ├── protocol.a │ └── world.a └── src ├── github.com ├── game_engine │ ├── cache │ │ └── redis │ │ │ ├── redis.go │ │ │ ├── redisAPI.go │ │ │ └── redisApi_test.go │ ├── config │ │ ├── config.go │ │ ├── config_test │ │ │ ├── goods.go │ │ │ ├── goods.json │ │ │ └── goods.xls │ │ ├── json.go │ │ └── json_test.go │ ├── i18n │ │ ├── i18n.go │ │ ├── i18n_test.go │ │ └── locale_test.ini │ ├── logs │ │ ├── README.md │ │ ├── conn.go │ │ ├── conn_test.go │ │ ├── console.go │ │ ├── console_test.go │ │ ├── es │ │ │ └── es.go │ │ ├── file.go │ │ ├── file_test.go │ │ ├── log.go │ │ ├── smtp.go │ │ └── smtp_test.go │ ├── orm │ │ ├── README.md │ │ ├── cmd.go │ │ ├── cmd_utils.go │ │ ├── db.go │ │ ├── db_alias.go │ │ ├── db_mysql.go │ │ ├── db_oracle.go │ │ ├── db_postgres.go │ │ ├── db_sqlite.go │ │ ├── db_tables.go │ │ ├── db_tidb.go │ │ ├── db_utils.go │ │ ├── models.go │ │ ├── models_boot.go │ │ ├── models_fields.go │ │ ├── models_info_f.go │ │ ├── models_info_m.go │ │ ├── models_test.go │ │ ├── models_utils.go │ │ ├── orm.go │ │ ├── orm_conds.go │ │ ├── orm_log.go │ │ ├── orm_object.go │ │ ├── orm_querym2m.go │ │ ├── orm_queryset.go │ │ ├── orm_raw.go │ │ ├── orm_test.go │ │ ├── qb.go │ │ ├── qb_mysql.go │ │ ├── qb_tidb.go │ │ ├── types.go │ │ └── utils.go │ └── timer │ │ ├── timer.go │ │ └── timer_test.go └── golang │ └── protobuf │ ├── .gitignore │ ├── AUTHORS │ ├── CONTRIBUTORS │ ├── LICENSE │ ├── Make.protobuf │ ├── Makefile │ ├── README │ ├── jsonpb │ ├── jsonpb.go │ ├── jsonpb_test.go │ └── jsonpb_test_proto │ │ ├── Makefile │ │ ├── more_test_objects.proto │ │ └── test_objects.proto │ ├── proto │ ├── Makefile │ ├── all_test.go │ ├── clone.go │ ├── clone_test.go │ ├── decode.go │ ├── encode.go │ ├── equal.go │ ├── equal_test.go │ ├── extensions.go │ ├── extensions_test.go │ ├── lib.go │ ├── message_set.go │ ├── message_set_test.go │ ├── pointer_reflect.go │ ├── pointer_unsafe.go │ ├── properties.go │ ├── proto3_proto │ │ └── proto3.proto │ ├── proto3_test.go │ ├── size2_test.go │ ├── size_test.go │ ├── testdata │ │ ├── Makefile │ │ ├── golden_test.go │ │ └── test.proto │ ├── text.go │ ├── text_parser.go │ ├── text_parser_test.go │ └── text_test.go │ └── protoc-gen-go │ ├── Account.proto │ ├── Game.proto │ ├── Makefile │ ├── c++ proto.bat │ ├── copy_C++.bat │ ├── copy_go.bat │ ├── descriptor │ ├── Makefile │ └── descriptor.pb.golden │ ├── doc.go │ ├── generator │ ├── Makefile │ ├── generator.go │ └── name_test.go │ ├── go proto.bat │ ├── internal │ └── grpc │ │ └── grpc.go │ ├── link_grpc.go │ ├── main.go │ ├── plugin │ ├── Makefile │ └── plugin.pb.golden │ ├── protoc-gen-go.exe │ ├── protoc.exe │ └── testdata │ ├── Makefile │ ├── extension_base.proto │ ├── extension_extra.proto │ ├── extension_test.go │ ├── extension_user.proto │ ├── golden_test.go │ ├── grpc.proto │ ├── imp.pb.go.golden │ ├── imp.proto │ ├── imp2.proto │ ├── imp3.proto │ ├── main_test.go │ ├── multi │ ├── multi1.proto │ ├── multi2.proto │ └── multi3.proto │ ├── my_test │ ├── test.pb.go.golden │ └── test.proto │ └── proto3.proto ├── server ├── gameServer │ ├── deal2a.go │ ├── deal4c.go │ ├── game │ │ ├── achievement.go │ │ ├── bagEquip.go │ │ ├── bagProp.go │ │ ├── config │ │ │ ├── account_cfg.ini │ │ │ ├── copy.bat │ │ │ └── game_cfg.ini │ │ ├── csvConfig.go │ │ ├── csvConfig_test.go │ │ ├── equip.go │ │ ├── formation.go │ │ ├── gm.go │ │ ├── guajiPK.go │ │ ├── guajiPlayers.go │ │ ├── guajiStage.go │ │ ├── hero.go │ │ ├── init.go │ │ ├── jsonConfig.go │ │ ├── jsonConfig_test.go │ │ ├── mapStage.go │ │ ├── monster.go │ │ ├── niudan.go │ │ ├── player.go │ │ ├── player_test.go │ │ ├── prop.go │ │ ├── sysConfig.go │ │ ├── sysConfig_test.go │ │ ├── task.go │ │ ├── timerEvent.go │ │ └── world.go │ └── main.go ├── loginServer │ ├── account │ │ ├── accountMsg.go │ │ └── initAccount.go │ ├── deal4c.go │ ├── deal4g.go │ └── main.go └── share │ ├── global │ ├── global.go │ └── locale_zh-CN.ini │ └── protocol │ ├── Account.pb.go │ └── Game.pb.go ├── testServer └── testLoginServer │ ├── account.txt │ ├── config │ └── json │ │ ├── guaji_boss_info.json │ │ ├── guaji_event.json │ │ ├── guaji_event_box.json │ │ ├── guaji_event_monster.json │ │ ├── guaji_event_player.json │ │ ├── guaji_event_qiyu.json │ │ ├── guaji_killboss_con.json │ │ ├── guaji_percent_equip.json │ │ ├── guaji_quality_equip.json │ │ ├── guaji_reward.json │ │ ├── qiyu_boss.json │ │ ├── qiyu_boss_jisha.json │ │ ├── qiyu_boss_shanghai.json │ │ ├── qiyu_boss_wancheng.json │ │ ├── qiyu_yuanbao.json │ │ ├── stage_equip_quality.json │ │ ├── stage_equip_reward.json │ │ ├── stage_monsterInfo.json │ │ ├── stage_randReward.json │ │ └── stage_stdReward.json │ ├── log │ └── testLoginServer.log │ └── main.go └── tool └── tool ├── equip.csv ├── main.go ├── result ├── Sheet1.json ├── stage_equip_quality.json ├── stage_equip_reward.json ├── stage_monsterInfo.json ├── stage_randReward.json └── stage_stdReward.json └── test.xlsx /README.md: -------------------------------------------------------------------------------- 1 | # Server4Go 2 | golang游戏服务器框架 3 | 数据库需要下载安装redis 4 | -------------------------------------------------------------------------------- /bin/protoc-gen-go.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/bin/protoc-gen-go.exe -------------------------------------------------------------------------------- /pkg/windows_386/example.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/example.a -------------------------------------------------------------------------------- /pkg/windows_386/example/bubblesort.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/example/bubblesort.a -------------------------------------------------------------------------------- /pkg/windows_386/example/qsort.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/example/qsort.a -------------------------------------------------------------------------------- /pkg/windows_386/game_engine/cache/mysql.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/game_engine/cache/mysql.a -------------------------------------------------------------------------------- /pkg/windows_386/game_engine/cache/redis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/game_engine/cache/redis.a -------------------------------------------------------------------------------- /pkg/windows_386/game_engine/config.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/game_engine/config.a -------------------------------------------------------------------------------- /pkg/windows_386/game_engine/logs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/game_engine/logs.a -------------------------------------------------------------------------------- /pkg/windows_386/game_engine/protobuf/github.com/golang/protobuf/proto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/game_engine/protobuf/github.com/golang/protobuf/proto.a -------------------------------------------------------------------------------- /pkg/windows_386/game_engine/redis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/game_engine/redis.a -------------------------------------------------------------------------------- /pkg/windows_386/game_info/protocol.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/game_info/protocol.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/drone/routes.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/drone/routes.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/game_engine/cache/redis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/game_engine/cache/redis.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/game_engine/data/redis.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/game_engine/data/redis.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/game_engine/logs.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/game_engine/logs.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/game_engine/models.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/game_engine/models.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/game_engine/orm.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/game_engine/orm.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/game_engine/timer.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/game_engine/timer.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/golang/protobuf/proto.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/golang/protobuf/proto.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/descriptor.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/descriptor.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/generator.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/generator.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/internal/grpc.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/internal/grpc.a -------------------------------------------------------------------------------- /pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/plugin.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/github.com/golang/protobuf/protoc-gen-go/plugin.a -------------------------------------------------------------------------------- /pkg/windows_386/server/account.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/server/account.a -------------------------------------------------------------------------------- /pkg/windows_386/server/chat.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/server/chat.a -------------------------------------------------------------------------------- /pkg/windows_386/server/global.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/server/global.a -------------------------------------------------------------------------------- /pkg/windows_386/server/player.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/server/player.a -------------------------------------------------------------------------------- /pkg/windows_386/server/protocol.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/server/protocol.a -------------------------------------------------------------------------------- /pkg/windows_386/server/world.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/pkg/windows_386/server/world.a -------------------------------------------------------------------------------- /src/github.com/game_engine/cache/redis/redis.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/cache/redis/redis.go -------------------------------------------------------------------------------- /src/github.com/game_engine/cache/redis/redisAPI.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/cache/redis/redisAPI.go -------------------------------------------------------------------------------- /src/github.com/game_engine/cache/redis/redisApi_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/cache/redis/redisApi_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/config/config.go -------------------------------------------------------------------------------- /src/github.com/game_engine/config/config_test/goods.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/config/config_test/goods.go -------------------------------------------------------------------------------- /src/github.com/game_engine/config/config_test/goods.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/config/config_test/goods.json -------------------------------------------------------------------------------- /src/github.com/game_engine/config/config_test/goods.xls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/config/config_test/goods.xls -------------------------------------------------------------------------------- /src/github.com/game_engine/config/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/config/json.go -------------------------------------------------------------------------------- /src/github.com/game_engine/config/json_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/config/json_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/i18n/i18n.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/i18n/i18n.go -------------------------------------------------------------------------------- /src/github.com/game_engine/i18n/i18n_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/i18n/i18n_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/i18n/locale_test.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/i18n/locale_test.ini -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/README.md -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/conn.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/conn_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/conn_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/console.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/console.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/console_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/console_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/es/es.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/es/es.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/file.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/file_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/file_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/log.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/smtp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/smtp.go -------------------------------------------------------------------------------- /src/github.com/game_engine/logs/smtp_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/logs/smtp_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/README.md -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/cmd.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/cmd_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/cmd_utils.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_alias.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_alias.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_mysql.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_oracle.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_oracle.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_postgres.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_postgres.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_sqlite.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_sqlite.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_tables.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_tidb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_tidb.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/db_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/db_utils.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/models.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/models_boot.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/models_boot.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/models_fields.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/models_fields.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/models_info_f.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/models_info_f.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/models_info_m.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/models_info_m.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/models_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/models_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/models_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/models_utils.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm_conds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm_conds.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm_log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm_log.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm_object.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm_querym2m.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm_querym2m.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm_queryset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm_queryset.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm_raw.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm_raw.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/orm_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/orm_test.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/qb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/qb.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/qb_mysql.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/qb_mysql.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/qb_tidb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/qb_tidb.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/types.go -------------------------------------------------------------------------------- /src/github.com/game_engine/orm/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/orm/utils.go -------------------------------------------------------------------------------- /src/github.com/game_engine/timer/timer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/timer/timer.go -------------------------------------------------------------------------------- /src/github.com/game_engine/timer/timer_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/game_engine/timer/timer_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/.gitignore -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/Make.protobuf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/Make.protobuf -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/README -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/jsonpb/jsonpb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/jsonpb/jsonpb.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/jsonpb/jsonpb_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/jsonpb/jsonpb_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/more_test_objects.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/jsonpb/jsonpb_test_proto/test_objects.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/all_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/all_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/clone_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/clone_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/equal_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/equal_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/extensions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/extensions.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/extensions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/extensions_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/message_set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/message_set.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/message_set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/message_set_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/pointer_reflect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/pointer_reflect.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/pointer_unsafe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/pointer_unsafe.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/properties.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/properties.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/proto3_proto/proto3.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/proto3_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/proto3_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/size2_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/size2_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/size_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/size_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/testdata/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/testdata/golden_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/testdata/golden_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/testdata/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/testdata/test.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/text_parser.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/text_parser.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/text_parser_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/text_parser_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/proto/text_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/proto/text_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/Account.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/Account.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/Game.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/Game.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/c++ proto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/c++ proto.bat -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/copy_C++.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/copy_C++.bat -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/copy_go.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/copy_go.bat -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/descriptor/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/descriptor/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/descriptor/descriptor.pb.golden -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/doc.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/generator/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/generator/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/generator/generator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/generator/generator.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/generator/name_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/generator/name_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/go proto.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/go proto.bat -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/internal/grpc/grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/internal/grpc/grpc.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/link_grpc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/link_grpc.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/main.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/plugin/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/plugin/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/plugin/plugin.pb.golden -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/protoc-gen-go.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/protoc-gen-go.exe -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/protoc.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/protoc.exe -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/Makefile -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_base.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_base.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_extra.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_extra.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_user.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/extension_user.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/golden_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/golden_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/grpc.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/grpc.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/imp.pb.go.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp.pb.go.golden -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/imp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/imp2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp2.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/imp3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/imp3.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/main_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/main_test.go -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi1.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi1.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi2.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi2.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/multi/multi3.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go.golden: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.pb.go.golden -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/my_test/test.proto -------------------------------------------------------------------------------- /src/github.com/golang/protobuf/protoc-gen-go/testdata/proto3.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/github.com/golang/protobuf/protoc-gen-go/testdata/proto3.proto -------------------------------------------------------------------------------- /src/server/gameServer/deal2a.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/deal2a.go -------------------------------------------------------------------------------- /src/server/gameServer/deal4c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/deal4c.go -------------------------------------------------------------------------------- /src/server/gameServer/game/achievement.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/achievement.go -------------------------------------------------------------------------------- /src/server/gameServer/game/bagEquip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/bagEquip.go -------------------------------------------------------------------------------- /src/server/gameServer/game/bagProp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/bagProp.go -------------------------------------------------------------------------------- /src/server/gameServer/game/config/account_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/config/account_cfg.ini -------------------------------------------------------------------------------- /src/server/gameServer/game/config/copy.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/config/copy.bat -------------------------------------------------------------------------------- /src/server/gameServer/game/config/game_cfg.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/config/game_cfg.ini -------------------------------------------------------------------------------- /src/server/gameServer/game/csvConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/csvConfig.go -------------------------------------------------------------------------------- /src/server/gameServer/game/csvConfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/csvConfig_test.go -------------------------------------------------------------------------------- /src/server/gameServer/game/equip.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/equip.go -------------------------------------------------------------------------------- /src/server/gameServer/game/formation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/formation.go -------------------------------------------------------------------------------- /src/server/gameServer/game/gm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/gm.go -------------------------------------------------------------------------------- /src/server/gameServer/game/guajiPK.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/guajiPK.go -------------------------------------------------------------------------------- /src/server/gameServer/game/guajiPlayers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/guajiPlayers.go -------------------------------------------------------------------------------- /src/server/gameServer/game/guajiStage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/guajiStage.go -------------------------------------------------------------------------------- /src/server/gameServer/game/hero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/hero.go -------------------------------------------------------------------------------- /src/server/gameServer/game/init.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/init.go -------------------------------------------------------------------------------- /src/server/gameServer/game/jsonConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/jsonConfig.go -------------------------------------------------------------------------------- /src/server/gameServer/game/jsonConfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/jsonConfig_test.go -------------------------------------------------------------------------------- /src/server/gameServer/game/mapStage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/mapStage.go -------------------------------------------------------------------------------- /src/server/gameServer/game/monster.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/monster.go -------------------------------------------------------------------------------- /src/server/gameServer/game/niudan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/niudan.go -------------------------------------------------------------------------------- /src/server/gameServer/game/player.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/player.go -------------------------------------------------------------------------------- /src/server/gameServer/game/player_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/player_test.go -------------------------------------------------------------------------------- /src/server/gameServer/game/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/prop.go -------------------------------------------------------------------------------- /src/server/gameServer/game/sysConfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/sysConfig.go -------------------------------------------------------------------------------- /src/server/gameServer/game/sysConfig_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/sysConfig_test.go -------------------------------------------------------------------------------- /src/server/gameServer/game/task.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/task.go -------------------------------------------------------------------------------- /src/server/gameServer/game/timerEvent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/timerEvent.go -------------------------------------------------------------------------------- /src/server/gameServer/game/world.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/game/world.go -------------------------------------------------------------------------------- /src/server/gameServer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/gameServer/main.go -------------------------------------------------------------------------------- /src/server/loginServer/account/accountMsg.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/loginServer/account/accountMsg.go -------------------------------------------------------------------------------- /src/server/loginServer/account/initAccount.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/loginServer/account/initAccount.go -------------------------------------------------------------------------------- /src/server/loginServer/deal4c.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/loginServer/deal4c.go -------------------------------------------------------------------------------- /src/server/loginServer/deal4g.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/loginServer/deal4g.go -------------------------------------------------------------------------------- /src/server/loginServer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/loginServer/main.go -------------------------------------------------------------------------------- /src/server/share/global/global.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/share/global/global.go -------------------------------------------------------------------------------- /src/server/share/global/locale_zh-CN.ini: -------------------------------------------------------------------------------- 1 | lang = zh-CN 2 | hi = 你好 3 | bye = 再见 -------------------------------------------------------------------------------- /src/server/share/protocol/Account.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/share/protocol/Account.pb.go -------------------------------------------------------------------------------- /src/server/share/protocol/Game.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/server/share/protocol/Game.pb.go -------------------------------------------------------------------------------- /src/testServer/testLoginServer/account.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_boss_info.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_boss_info.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_event.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_event.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_event_box.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_event_box.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_event_monster.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_event_monster.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_event_player.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_event_player.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_event_qiyu.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_event_qiyu.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_killboss_con.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_killboss_con.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_percent_equip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_percent_equip.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_quality_equip.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_quality_equip.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/guaji_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/guaji_reward.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/qiyu_boss.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/qiyu_boss.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/qiyu_boss_jisha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/qiyu_boss_jisha.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/qiyu_boss_shanghai.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/qiyu_boss_shanghai.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/qiyu_boss_wancheng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/qiyu_boss_wancheng.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/qiyu_yuanbao.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/stage_equip_quality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/stage_equip_quality.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/stage_equip_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/stage_equip_reward.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/stage_monsterInfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/stage_monsterInfo.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/stage_randReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/stage_randReward.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/config/json/stage_stdReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/config/json/stage_stdReward.json -------------------------------------------------------------------------------- /src/testServer/testLoginServer/log/testLoginServer.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/log/testLoginServer.log -------------------------------------------------------------------------------- /src/testServer/testLoginServer/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/testServer/testLoginServer/main.go -------------------------------------------------------------------------------- /src/tool/tool/equip.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/equip.csv -------------------------------------------------------------------------------- /src/tool/tool/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/main.go -------------------------------------------------------------------------------- /src/tool/tool/result/Sheet1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/result/Sheet1.json -------------------------------------------------------------------------------- /src/tool/tool/result/stage_equip_quality.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/result/stage_equip_quality.json -------------------------------------------------------------------------------- /src/tool/tool/result/stage_equip_reward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/result/stage_equip_reward.json -------------------------------------------------------------------------------- /src/tool/tool/result/stage_monsterInfo.json: -------------------------------------------------------------------------------- 1 | { 2 | -------------------------------------------------------------------------------- /src/tool/tool/result/stage_randReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/result/stage_randReward.json -------------------------------------------------------------------------------- /src/tool/tool/result/stage_stdReward.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/result/stage_stdReward.json -------------------------------------------------------------------------------- /src/tool/tool/test.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hujunlong/Server4Go/HEAD/src/tool/tool/test.xlsx --------------------------------------------------------------------------------