Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/donnyep/cosmosengine
CosmosEngine是一款轻量级的服务器框架,提供高速可靠UDP传输协议。支持网络多通道、服务器间RPC大数据流传输通讯,非常容易改成分布式服务器。本框架长期维护更新,LTS。
https://github.com/donnyep/cosmosengine
csharp game-server kcp lockstep netcore netcoreserver rpc tcp-client-server tcp-server udp-server
Last synced: 2 months ago
JSON representation
CosmosEngine是一款轻量级的服务器框架,提供高速可靠UDP传输协议。支持网络多通道、服务器间RPC大数据流传输通讯,非常容易改成分布式服务器。本框架长期维护更新,LTS。
- Host: GitHub
- URL: https://github.com/donnyep/cosmosengine
- Owner: DonnYep
- License: mit
- Created: 2021-08-11T06:03:58.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2024-03-07T02:02:11.000Z (11 months ago)
- Last Synced: 2024-03-07T03:23:44.421Z (11 months ago)
- Topics: csharp, game-server, kcp, lockstep, netcore, netcoreserver, rpc, tcp-client-server, tcp-server, udp-server
- Language: C#
- Homepage:
- Size: 2.37 MB
- Stars: 60
- Watchers: 2
- Forks: 10
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[![License: MIT](https://img.shields.io/badge/License-MIT-brightgreen.svg)](https://github.com/DonnYep/CosmosEngine/blob/main/LICENSE)
[![Issues:Welcome](https://img.shields.io/badge/Issues-welcome-blue.svg)](https://github.com/DonnYep/CosmosEngine/issues)
# CosmosEngineCosmosEngine是一款轻量级的.NetCore服务器。支持网络多通道、服务器间RPC大数据流传输通讯、分布式部署。此项目长期维护更新,LTS。
## 环境
- .NetCore 5
## 内置数据结构、工具
- Utility工具集含,反射、算法、转换、IO、加密、Json、MessagePack、Time、Text等常用工具函数。
- 包含跳表、四叉树、AStar等数据结构。
## 网络库- 集成 KCP,Telepathy,RUDP,SUDP协议。
## RPC
- RPC功能模块。客户端只需要接口即可生成动态代理对象,无需手动实现。服务器只需在被调用的方法上标记[RPCMemberAttribute]特性,就能实现被客户端RPC调用。RPC底层使用TCP协议,无需担心RPC方法返回的数据量,大数据会自动转换为流式传输,接收端只需要使用async/await方法等待数据结果,若数据解析错误,则抛出异常。## Library link
- CosmosFramework:https://github.com/DonnYep/CosmosFramework
- KCP C:https://github.com/skywind3000/kcp
- KCP CSharp:https://github.com/vis2k/kcp2k
- TCP:https://github.com/vis2k/Telepathy- PureMVC:https://github.com/DonnYep/PureMVC
- Mirror:https://github.com/vis2k/Mirror