@@ -21,7 +21,7 @@ class Entity
21
21
* @param id A unique id for this Entity.
22
22
*/
23
23
24
- public function new ( id : Int , world : EntityWorld )
24
+ public function new (id : Int , world : EntityWorld )
25
25
{
26
26
this .id = id ;
27
27
this .world = world ;
@@ -52,17 +52,17 @@ class Entity
52
52
* Call this everytime you change this entity's components!
53
53
*/
54
54
55
- public function update (): Void
55
+ public inline function update (): Void
56
56
{
57
- world .updateEntity ( this );
57
+ world .updateEntity (this );
58
58
}
59
59
60
60
/**
61
61
* Add a component if it doesn't exist already.
62
62
* @param component The component to add.
63
63
*/
64
64
65
- public function addComponent ( component : Component ): Void
65
+ public inline function addComponent (component : Component ): Void
66
66
{
67
67
world .componentManager .addComponent ( this , component );
68
68
}
@@ -73,7 +73,7 @@ class Entity
73
73
* @return true if it has this component class
74
74
*/
75
75
76
- public function hasComponent ( componentClass : Class <Component >): Bool
76
+ public inline function hasComponent (componentClass : Class <Component >): Bool
77
77
{
78
78
return world .componentManager .hasComponentClass ( this , componentClass );
79
79
}
@@ -84,7 +84,7 @@ class Entity
84
84
* @return true if it has this component type
85
85
*/
86
86
87
- public function hasComponentType ( type : IComponentType ): Bool
87
+ public inline function hasComponentType (type : IComponentType ): Bool
88
88
{
89
89
return world .componentManager .hasComponentType ( this , type );
90
90
}
@@ -94,9 +94,9 @@ class Entity
94
94
* @return
95
95
*/
96
96
97
- public function getComponentIterator (): List <Component >
97
+ public inline function getComponentIterator (): List <Component >
98
98
{
99
- return world .componentManager .getComponents ( this );
99
+ return world .componentManager .getComponents (this );
100
100
}
101
101
102
102
/**
@@ -105,12 +105,12 @@ class Entity
105
105
* @return
106
106
*/
107
107
108
- public function getComponent ( componentClass : Class <Component >): Component
108
+ public inline function getComponent (componentClass : Class <Component >): Component
109
109
{
110
110
return world .componentManager .getComponentByClass ( this , componentClass );
111
111
}
112
112
113
- public function getComponentByType ( componentType : IComponentType ): Component
113
+ public inline function getComponentByType (componentType : IComponentType ): Component
114
114
{
115
115
return world .componentManager .getComponentByType ( this , componentType );
116
116
}
@@ -120,7 +120,7 @@ class Entity
120
120
* @param component
121
121
*/
122
122
123
- public function removeComponent ( component : Component ): Void
123
+ public inline function removeComponent (component : Component ): Void
124
124
{
125
125
world .componentManager .removeComponentByClass ( this , Type .getClass ( component ));
126
126
}
@@ -130,12 +130,12 @@ class Entity
130
130
* @param componentClass
131
131
*/
132
132
133
- public function removeComponentByClass ( componentClass : Class <Component > ): Void
133
+ public inline function removeComponentByClass (componentClass : Class <Component >): Void
134
134
{
135
135
world .componentManager .removeComponentByClass ( this , componentClass );
136
136
}
137
137
138
- public function removeComponentByType ( componentType : IComponentType ): Void
138
+ public inline function removeComponentByType (componentType : IComponentType ): Void
139
139
{
140
140
world .componentManager .removeComponentByType ( this , componentType );
141
141
}
@@ -145,22 +145,22 @@ class Entity
145
145
* @param component
146
146
*/
147
147
148
- public function deleteComponent ( component : Component ): Void
148
+ public inline function deleteComponent (component : Component ): Void
149
149
{
150
- world .componentManager .deleteComponentByClass ( this , Type .getClass ( component ));
150
+ world .componentManager .deleteComponentByClass (this , Type .getClass ( component ));
151
151
}
152
152
153
153
/**
154
154
* Removes the component by type of component rather than reference.
155
155
* @param componentClass
156
156
*/
157
157
158
- public function deleteComponentByClass ( componentClass : Class <Component > ): Void
158
+ public inline function deleteComponentByClass (componentClass : Class <Component > ): Void
159
159
{
160
160
world .componentManager .deleteComponentByClass ( this , componentClass );
161
161
}
162
162
163
- public function deleteComponentByType ( componentType : IComponentType ): Void
163
+ public inline function deleteComponentByType (componentType : IComponentType ): Void
164
164
{
165
165
world .componentManager .deleteComponentByType ( this , componentType );
166
166
}
@@ -170,28 +170,33 @@ class Entity
170
170
* @param tag the id.
171
171
*/
172
172
173
- public function setTag ( tag : String ): Void
173
+ public inline function setTag (tag : String ): Void
174
174
{
175
- world .tags .set ( id , tag );
175
+ world .setTag (this , tag );
176
+ }
177
+
178
+ public inline function removeTag (): Void
179
+ {
180
+ world .removeTag (this );
176
181
}
177
182
178
183
/**
179
184
* Get this entity's tag.
180
185
* @return returns null if it has not been tagged!
181
186
*/
182
187
183
- public function getTag (): String
188
+ public inline function getTag (): String
184
189
{
185
- return world .tags . get ( id );
190
+ return world .getTag ( this );
186
191
}
187
192
188
193
/**
189
194
* Destroy this entity!
190
195
*/
191
196
192
- public function destroy (): Void
197
+ public inline function destroy (): Void
193
198
{
194
- world .destroyEntity ( this );
199
+ world .destroyEntity (this );
195
200
}
196
201
197
202
/**
0 commit comments