Files
esengine/README.md

217 lines
7.0 KiB
Markdown
Raw Normal View History

2020-11-24 19:34:07 +08:00
这是一套ecs游戏框架里面包含ECS框架用于管理场景实体一些常用2D碰撞检测及游戏中常用的工具
2020-08-11 14:20:39 +08:00
## 交流群
点击链接加入群聊【ecs游戏框架交流】https://jq.qq.com/?_wv=1027&k=29w1Nud6
2020-11-24 19:34:07 +08:00
## Getting Start
1. 初始化核心
```typescript
// 传入舞台宽高确定屏幕大小
let core = new es.Core(768, 1366);
```
2. 派发核心事件
```typescript
2020-11-25 11:09:02 +08:00
// 在监听每帧更新时间处执行 egret写法:
2020-11-24 19:34:07 +08:00
es.Time.update(egret.getTimer());
2020-11-25 11:09:02 +08:00
// 在监听每帧更新时间处执行 laya写法:
// laya 使用 Laya.timer.frameLoop 进行侦听
// es.Time.update(Laya.systemTimer.currTimer);
2020-11-24 19:34:07 +08:00
// 必须派发该事件 否则核心内所有更新事件将不会执行
es.Core.emitter.emit(es.CoreEvents.FrameUpdated);
```
3. 创建主场景
```typescript
// 继承es.Scene来确定这是一个场景
class MainScene extends es.Scene {
public initialize(){
// 当场景构造函数执行完成后执行
}
public async onStart() {
// 当场景被激活时执行
}
}
```
4. 创建组件
```typescript
// 敌人组件 继承es.Component确定他是一个组件
// 组件当中不应该含有具体逻辑 只存储数据/属性
class SpawnerComponent extends es.Component {
public cooldown: number = -1;
public minInterval: number = 2;
public maxInterval: number = 60;
public minCount: number = 1;
public maxCount: number = 1;
public enemyType: EnemyType = EnemyType.worm;
public numSpawned: number = 0;
public numAlive: number = 0;
constructor(enemyType: EnemyType) {
super();
this.enemyType = enemyType;
}
}
enum EnemyType {
worm
}
```
5. 创建系统
```typescript
// 每个组件应对应一个系统 系统中负责游戏逻辑
class SpawnerSystem extends es.EntityProcessingSystem {
// 必须实现的构造函数
constructor(matcher: es.Matcher){
super(matcher);
}
// 当满足条件的实体会被派发至这统一进行处理
// 条件在Matcher中进行设置
processEntity(entity: es.Entity){
let spawner = entity.getComponent<component.SpawnerComponent>(component.SpawnerComponent);
if (spawner.numAlive <= 0)
spawner.enabled = true;
if (!spawner.enabled)
return;
if (spawner.cooldown <= -1) {
this.scheduleSpawn(spawner);
console.log("冷却时间已到,进入下一轮刷新 冷却时间:", spawner.cooldown);
spawner.cooldown /= 4;
}
spawner.cooldown -= es.Time.deltaTime;
if (spawner.cooldown <= 0) {
this.scheduleSpawn(spawner);
for (let i = 0; i < RandomUtils.randint(spawner.minCount, spawner.maxCount); i ++) {
console.log("创建敌人", entity.position.x, entity.position.y, spawner.enemyType, entity);
spawner.numSpawned ++;
spawner.numAlive++;
}
if (spawner.numAlive > 0)
spawner.enabled = false;
}
}
private scheduleSpawn(spawner: component.SpawnerComponent) {
spawner.cooldown = RandomUtils.randint(spawner.minInterval, spawner.maxInterval);
}
}
```
6. 创建实体、添加组件、激活实体处理器
```typescript
class MainScene extends es.Scene {
public async onStart() {
// 创建实体
let spawn = this.createEntity("spawn");
// 添加组件
spawn.addComponent(new component.SpawnerComponent(component.EnemyType.worm));
// 添加实体处理
// Matcher.all 代表对带有该组件的实体进行处理
// Matcher.one 代表对至少有一个该组件的实体进行处理
// Matcher.exclude 代表对不带该组件的实体进行处理
this.addEntityProcessor(new system.SpawnerSystem(new es.Matcher().all(component.SpawnerComponent)));
}
}
```
7. 激活场景
```typescript
// 设置MainScene为当前激活的场景
es.Core.scene = new MainScene();
```
2020-11-25 11:09:02 +08:00
### 示例地址
2020-11-25 11:39:58 +08:00
- [egret-demo](https://github.com/esengine/ecs-egret-demo)
- [laya-demo](https://github.com/esengine/ecs-laya-demo)
2020-11-25 11:09:02 +08:00
2020-11-25 11:39:58 +08:00
## 扩展库
- [基于ecs-framework开发的astar/BreadthFirst/Dijkstra/GOAP目标导向计划 路径寻找库](https://github.com/esengine/ecs-astar)
2020-11-25 11:41:28 +08:00
- [基于ecs-framework开发的AIBehaviourTree、UtilityAI系统](https://github.com/esengine/BehaviourTree-ai))
2020-11-24 19:34:07 +08:00
2020-07-17 11:55:29 +08:00
## 版本计划功能
2020-06-08 11:52:04 +08:00
2020-06-09 23:14:47 +08:00
- [x] 简易ECS框架
2020-07-03 17:52:26 +08:00
- [x] 组件列表
- [x] 碰撞组件
- [x] 移动组件
2020-08-11 11:07:20 +08:00
- [x] 组件池
- [x] 基础碰撞组件(矩形、圆形、多边形碰撞)
- [x] 场景组件
2020-07-03 17:52:26 +08:00
- [x] 系统列表
- [x] 被动系统
- [x] 协调系统
2020-08-11 11:07:20 +08:00
- [x] 实体系统
- [x] 实体解析系统
- [x] 扩展库
- [x] string扩展
- [x] time扩展
2020-08-11 14:20:39 +08:00
- [x] [array扩展Extension](https://github.com/esengine/egret-framework/wiki/Array-%E6%89%A9%E5%B1%95%E8%AF%B4%E6%98%8E)
2020-08-11 11:07:20 +08:00
- [x] base64扩展
- [x] Stopwatch计数器
- [x] List池对象
- [x] Emitter事件发射器
- [x] Random随机类帮助
- [x] Rectangle矩形帮助类
- [x] Vector2向量帮助类
- [x] 全局管理器
- [x] 向量集Bitset
- [x] 图形帮助
- [x] 场景过渡
- [x] 场景渲染器
2020-07-17 11:55:29 +08:00
- [x] 常用碰撞检测
2020-07-17 11:07:57 +08:00
- [x] 数学库
2020-08-11 11:07:20 +08:00
- [x] 矩形类Rectangle
- [x] 简易2D矩阵类Matrix2D
- [x] 简易2d 向量类Vector2
- [x] 数学扩展库MathHelper
- [x] 掩码实用类Flags
- [x] 贝塞尔曲线Bezier
- [x] 物理系统(简易)
- [x] Collision碰撞检测
- [x] ColliderTrigger帮助
2020-09-16 18:13:37 +08:00
- [x] [Ray2D射线检测](https://github.com/esengine/egret-framework/wiki/Ray2D-2D%E5%B0%84%E7%BA%BF)
2020-08-11 11:07:20 +08:00
- [x] ShapeCollision 多种形状检测
- [x] RealtimeCollisions 实时碰撞检测
- [x] SpatialHash 网格检测
2020-07-17 11:55:29 +08:00
- [x] 事件处理器
2020-11-23 16:39:14 +08:00
## 关于用ecs框架typescript/javascript
2020-07-17 11:55:29 +08:00
ecs 是功能强大的实体组件系统。typescript与其他语言不同因此我对ecs的设计尽可能的支持typescript特性。虽然ecs拥有标准实体组件系统但在细节上有很大不同。创建标准ecs通常处于原始速度、缓存位置和其他性能原因。使用typescript我们没有struct因为没有必要匹配标准实体组件系统的设计方式因为我们对内存布局没有那种控制。
ecs更灵活可以更好的集中、组织、排序和过滤游戏中的对象。ecs让您拥有轻量级实体和组件这些组件可以由系统批量处理。
例如,您在制作一个射手,您可能会有几十到几百个子弹,这些作为轻量级实体由系统批量处理。
所以ecs在设计当中拥有四种重要类型世界Scene过滤器Matcher系统System和实体(Entity)
2020-09-16 18:17:42 +08:00
## [世界Scene](https://github.com/esengine/egret-framework/wiki/%E5%9C%BA%E6%99%AF-Scene)
2020-07-17 11:55:29 +08:00
Scene是ecs包含系统和实体最外面的容器。
## 实体Entity
实体只由系统处理。
2020-06-09 23:14:47 +08:00
2020-07-17 11:55:29 +08:00
## 组件(Component)
组件应该只包含数据而没有逻辑代码。对数据进行逻辑是系统的工作。
2020-07-17 11:55:29 +08:00
## 系统System
ecs中的系统会不断的更新实体。系统使用过滤器选择某些实体然后仅更新那些选择的实体。