Uses of Class
com.bombinggames.wurfelengine.core.map.rendering.RenderCell
-
Packages that use RenderCell Package Description com.bombinggames.wurfelengine.core.gameobjects Game Objects are objects like entities and block which can be found in the map.com.bombinggames.wurfelengine.core.map com.bombinggames.wurfelengine.core.map.Iterators com.bombinggames.wurfelengine.core.map.rendering com.bombinggames.wurfelengine.core.sorting com.bombinggames.wurfelengine.mapeditor -
-
Uses of RenderCell in com.bombinggames.wurfelengine.core.gameobjects
Methods in com.bombinggames.wurfelengine.core.gameobjects that return types with arguments of type RenderCell Modifier and Type Method Description java.util.LinkedList<RenderCell>
AbstractEntity. getCoveredBlocks(RenderStorage rs)
get the blocks which must be rendered before -
Uses of RenderCell in com.bombinggames.wurfelengine.core.map
Methods in com.bombinggames.wurfelengine.core.map that return RenderCell Modifier and Type Method Description RenderCell
Coordinate. getRenderCell(RenderStorage rs)
RenderCell
BlockConfig. toRenderBlock(byte id, byte value)
-
Uses of RenderCell in com.bombinggames.wurfelengine.core.map.Iterators
Methods in com.bombinggames.wurfelengine.core.map.Iterators that return RenderCell Modifier and Type Method Description RenderCell
CoveredByCameraIterator. next()
Returns the next element in the iteration. -
Uses of RenderCell in com.bombinggames.wurfelengine.core.map.rendering
Subclasses of RenderCell in com.bombinggames.wurfelengine.core.map.rendering Modifier and Type Class Description class
AnimatedBlock
A block which has an animation.class
Sea
A Sea Block which has a "waves" effect.Fields in com.bombinggames.wurfelengine.core.map.rendering declared as RenderCell Modifier and Type Field Description static RenderCell
RenderChunk. CELLOUTSIDE
In theory if in a cell is no data available use this block.Methods in com.bombinggames.wurfelengine.core.map.rendering that return RenderCell Modifier and Type Method Description RenderCell
RenderChunk. getCell(int x, int y, int z)
Cells above the map return RenderChunk.CELLOUTSIDE.RenderCell
RenderChunk. getCell(Coordinate coord)
RenderCell
RenderStorage. getCell(int x, int y, int z)
Returns a block without checking the parameters first.RenderCell
RenderStorage. getCell(Coordinate coord)
If the cell can not be found returnsRenderChunk.CELLOUTSIDE
.RenderCell
RenderStorage. getCell(Point point)
If the block can not be found returns null pointer.protected RenderCell
RenderChunk. getCellByIndex(int x, int y, int z)
RenderCell[][][]
RenderChunk. getData()
get the pointer to the datastatic RenderCell
RenderCell. newInstance(byte id, byte value)
creates a new RenderCell instance based on the dataRenderCell
RenderStorage. refreshCell(Coordinate coord, byte id, byte value)
creates a newRenderCell
instance at the coordinateRenderCell
RenderCell. spawn(RenderStorage rS, Coordinate coord)
places the object on the map.Methods in com.bombinggames.wurfelengine.core.map.rendering that return types with arguments of type RenderCell Modifier and Type Method Description DataIterator3D<RenderCell>
RenderChunk. getIterator(int startingZ, int limitZ)
Returns an iterator which iterates over the data in this chunk. -
Uses of RenderCell in com.bombinggames.wurfelengine.core.sorting
Fields in com.bombinggames.wurfelengine.core.sorting with type parameters of type RenderCell Modifier and Type Field Description protected java.util.LinkedList<RenderCell>
AbstractSorter. iteratorCache
Methods in com.bombinggames.wurfelengine.core.sorting that return RenderCell Modifier and Type Method Description RenderCell
TopoGraphNode. getCell()
get the represented cell instanceMethods in com.bombinggames.wurfelengine.core.sorting with parameters of type RenderCell Modifier and Type Method Description void
TopoGraphNode. setCell(RenderCell cell)
Constructors in com.bombinggames.wurfelengine.core.sorting with parameters of type RenderCell Constructor Description TopoGraphNode(RenderCell cell)
-
Uses of RenderCell in com.bombinggames.wurfelengine.mapeditor
Methods in com.bombinggames.wurfelengine.mapeditor that return RenderCell Modifier and Type Method Description RenderCell
BlockDrawable. getRenderBlock()
-