Package | Description |
---|---|
com.BombingGames.WurfelEngine.Core | |
com.BombingGames.WurfelEngine.Core.Gameobjects |
Game Objects are objects liek entities and block which can be found in the map.
|
com.BombingGames.WurfelEngine.Core.Map | |
com.BombingGames.WurfelEngine.shooting |
Constructor and Description |
---|
Camera(AbstractEntity focusentity,
int x,
int y,
int width,
int height,
GameView view,
Controller controller)
Creates a camera focusing an entity.
|
Modifier and Type | Class and Description |
---|---|
class |
AnimatedEntity
An entity wich is animated.
|
class |
BenchmarkBall |
class |
Controllable |
class |
Explosion |
class |
MovableEntity
A character is an entity wich can walk around.
|
class |
PlayerWithWeapon
The WeaponPlayer is a character who can walk and shoot.
|
class |
Selection |
class |
SimpleEntity
A simple basic entity.
|
Modifier and Type | Method and Description |
---|---|
AbstractEntity |
AbstractEntity.spawn(Point point)
add this entity to the map-> let it spawn
|
AbstractEntity |
Explosion.spawn(Point point)
explodes
|
AbstractEntity |
Selection.spawn(Point point) |
Modifier and Type | Method and Description |
---|---|
<type extends AbstractEntity> |
Map.getEntitys(java.lang.Class<? extends AbstractEntity> type)
Find every instance of a special class e.g. find every AbstractCharacter
|
Modifier and Type | Method and Description |
---|---|
java.util.ArrayList<AbstractEntity> |
Coordinate.getEntitiesInside()
Get every entity on a coord.
|
java.util.ArrayList<AbstractEntity> |
Point.getEntitiesNearby(float radius)
get entities in radius
|
java.util.ArrayList<AbstractEntity> |
Map.getEntitys()
Returns the entityList
|
java.util.ArrayList<AbstractEntity> |
Map.getEntitysOnChunk(int pos)
Get every entity on a chunk
|
java.util.ArrayList<AbstractEntity> |
Map.getEntitysOnCoord(Coordinate coord)
Get every entity on a coord.
|
Modifier and Type | Method and Description |
---|---|
<type> java.util.ArrayList<type> |
Point.getEntitiesNearby(float radius,
java.lang.Class<? extends AbstractEntity> type)
get entities in radius
|
<type extends AbstractEntity> |
Map.getEntitys(java.lang.Class<? extends AbstractEntity> type)
Find every instance of a special class e.g. find every AbstractCharacter
|
<type> java.util.ArrayList<type> |
Coordinate.getEntitysInside(java.lang.Class<? extends AbstractEntity> type)
Get every entity on this coord of the wanted type
|
<type> java.util.ArrayList<type> |
Map.getEntitysOnCoord(Coordinate coord,
java.lang.Class<? extends AbstractEntity> type)
Get every entity on a coord of the wanted type
|
void |
Minimap.setTrackedEnt(java.util.ArrayList<AbstractEntity> trackedEnt) |
Modifier and Type | Class and Description |
---|---|
class |
Bullet |