fix wx
This commit is contained in:
10
source/bin/framework.d.ts
vendored
10
source/bin/framework.d.ts
vendored
@@ -1771,6 +1771,16 @@ declare module es {
|
||||
onEntityDisabled(): void;
|
||||
}
|
||||
}
|
||||
declare module es {
|
||||
class ComponentTypeFactory {
|
||||
private componentTypes_;
|
||||
private componentTypeCount_;
|
||||
types: Bag<ComponentType>;
|
||||
constructor();
|
||||
getTypeFor(c: any): ComponentType;
|
||||
getIndexFor(c: any): number;
|
||||
}
|
||||
}
|
||||
declare module es {
|
||||
class ComponentTypeManager {
|
||||
private static _componentTypesMask;
|
||||
|
||||
@@ -3134,7 +3134,7 @@ var es;
|
||||
EntitySystem.prototype.initialize = function () {
|
||||
};
|
||||
EntitySystem.prototype.onChanged = function (entity) {
|
||||
var contains = entity.getSystemBits().get(this.systemIndex_);
|
||||
var contains = new es.List(this._entities).contains(entity);
|
||||
var interest = this._matcher.isInterestedEntity(entity);
|
||||
if (interest && !contains)
|
||||
this.add(entity);
|
||||
@@ -3143,13 +3143,11 @@ var es;
|
||||
};
|
||||
EntitySystem.prototype.add = function (entity) {
|
||||
this._entities.push(entity);
|
||||
entity.getSystemBits().set(this.systemIndex_);
|
||||
this.onAdded(entity);
|
||||
};
|
||||
EntitySystem.prototype.onAdded = function (entity) { };
|
||||
EntitySystem.prototype.remove = function (entity) {
|
||||
new es.List(this._entities).remove(entity);
|
||||
entity.getSystemBits().clear(this.systemIndex_);
|
||||
this.onRemoved(entity);
|
||||
};
|
||||
EntitySystem.prototype.onRemoved = function (entity) { };
|
||||
@@ -4255,6 +4253,34 @@ var es;
|
||||
es.ComponentList = ComponentList;
|
||||
})(es || (es = {}));
|
||||
var es;
|
||||
(function (es) {
|
||||
var ComponentTypeFactory = /** @class */ (function () {
|
||||
function ComponentTypeFactory() {
|
||||
this.componentTypeCount_ = 0;
|
||||
this.componentTypes_ = {};
|
||||
this.types = new es.Bag();
|
||||
}
|
||||
ComponentTypeFactory.prototype.getTypeFor = function (c) {
|
||||
if ("number" === typeof c) {
|
||||
return this.types.get(c);
|
||||
}
|
||||
var type = this.componentTypes_[es.getClassName(c)];
|
||||
if (type == null) {
|
||||
var index = this.componentTypeCount_++;
|
||||
type = new es.ComponentType(c, index);
|
||||
this.componentTypes_[es.getClassName(c)] = type;
|
||||
this.types.set(index, type);
|
||||
}
|
||||
return type;
|
||||
};
|
||||
ComponentTypeFactory.prototype.getIndexFor = function (c) {
|
||||
return this.getTypeFor(c).getIndex();
|
||||
};
|
||||
return ComponentTypeFactory;
|
||||
}());
|
||||
es.ComponentTypeFactory = ComponentTypeFactory;
|
||||
})(es || (es = {}));
|
||||
var es;
|
||||
(function (es) {
|
||||
var ComponentTypeManager = /** @class */ (function () {
|
||||
function ComponentTypeManager() {
|
||||
@@ -11602,7 +11628,7 @@ var es;
|
||||
function TypeUtils() {
|
||||
}
|
||||
TypeUtils.getType = function (obj) {
|
||||
return obj["__proto__"]["constructor"];
|
||||
return obj.constructor;
|
||||
};
|
||||
return TypeUtils;
|
||||
}());
|
||||
|
||||
2
source/bin/framework.min.js
vendored
2
source/bin/framework.min.js
vendored
File diff suppressed because one or more lines are too long
@@ -60,7 +60,7 @@ module es {
|
||||
}
|
||||
|
||||
public onChanged(entity: Entity) {
|
||||
let contains = entity.getSystemBits().get(this.systemIndex_);
|
||||
let contains = new es.List(this._entities).contains(entity);
|
||||
let interest = this._matcher.isInterestedEntity(entity);
|
||||
|
||||
if (interest && !contains)
|
||||
@@ -71,7 +71,6 @@ module es {
|
||||
|
||||
public add(entity: Entity) {
|
||||
this._entities.push(entity);
|
||||
entity.getSystemBits().set(this.systemIndex_);
|
||||
this.onAdded(entity);
|
||||
}
|
||||
|
||||
@@ -79,7 +78,6 @@ module es {
|
||||
|
||||
public remove(entity: Entity) {
|
||||
new es.List(this._entities).remove(entity);
|
||||
entity.getSystemBits().clear(this.systemIndex_);
|
||||
this.onRemoved(entity);
|
||||
}
|
||||
|
||||
|
||||
39
source/src/ECS/Utils/ComponentTypeFactory.ts
Normal file
39
source/src/ECS/Utils/ComponentTypeFactory.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
module es {
|
||||
interface IdentityHashMap {
|
||||
[key: string]: ComponentType;
|
||||
}
|
||||
|
||||
export class ComponentTypeFactory {
|
||||
private componentTypes_: IdentityHashMap;
|
||||
|
||||
private componentTypeCount_ = 0;
|
||||
|
||||
public types: Bag<ComponentType>;
|
||||
|
||||
constructor() {
|
||||
this.componentTypes_ = {};
|
||||
this.types = new Bag<ComponentType>();
|
||||
}
|
||||
|
||||
public getTypeFor(c): ComponentType {
|
||||
if ("number" === typeof c) {
|
||||
return this.types.get(c);
|
||||
}
|
||||
|
||||
let type: ComponentType = this.componentTypes_[getClassName(c)];
|
||||
|
||||
if (type == null) {
|
||||
const index: number = this.componentTypeCount_++;
|
||||
type = new ComponentType(c, index);
|
||||
this.componentTypes_[getClassName(c)] = type;
|
||||
this.types.set(index, type);
|
||||
}
|
||||
|
||||
return type;
|
||||
}
|
||||
|
||||
public getIndexFor(c): number {
|
||||
return this.getTypeFor(c).getIndex();
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,7 +1,7 @@
|
||||
module es {
|
||||
export class TypeUtils {
|
||||
public static getType(obj: any){
|
||||
return obj["__proto__"]["constructor"];
|
||||
return obj.constructor;
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user