Package | Description |
---|---|
com.b3dgs.lionengine.game.feature.tile.map |
Tile based map handling with
Features layer that will allow to customize
the services provided by the map dynamically. |
com.b3dgs.lionengine.game.feature.tile.map.collision |
Object and map collision handling.
|
com.b3dgs.lionengine.game.feature.tile.map.pathfinding |
A-Star algorithm implementation, allowing to search a path on a
MapTilePath . |
com.b3dgs.lionengine.game.feature.tile.map.raster |
Describe the raster bar representation.
|
com.b3dgs.lionengine.game.feature.tile.map.transition |
Dedicated package to handle map tile transitions.
|
com.b3dgs.lionengine.game.feature.tile.map.transition.circuit |
Dedicated package to handle map tile circuit.
|
com.b3dgs.lionengine.game.feature.tile.map.transition.circuit.generator |
Package dedicated to random map generation.
|
com.b3dgs.lionengine.game.feature.tile.map.transition.fog |
Dedicated package to handle map fog of war.
|
Modifier and Type | Class and Description |
---|---|
class |
MapTileGame
Abstract representation of a standard tile based map.
|
Modifier and Type | Method and Description |
---|---|
void |
MapTileGame.append(MapTile map,
int offsetX,
int offsetY) |
void |
MapTile.append(MapTile map,
int offsetX,
int offsetY)
Append an existing map, starting at the specified offsets.
|
void |
MapTileRendererModel.renderTile(Graphic g,
MapTile map,
Tile tile,
int x,
int y) |
void |
MapTileRenderer.renderTile(Graphic g,
MapTile map,
Tile tile,
int x,
int y)
Render tile on its designed location.
|
static int |
LevelRipConverter.start(Media levelrip,
MapTile map)
Run the converter.
|
static int |
LevelRipConverter.start(Media levelrip,
MapTile map,
LevelRipConverter.ProgressListener listener)
Run the converter.
|
static int |
LevelRipConverter.start(Media levelrip,
MapTile map,
LevelRipConverter.ProgressListener listener,
LevelRipConverter.Canceler canceler)
Run the converter.
|
Modifier and Type | Method and Description |
---|---|
void |
MapTileGame.append(Collection<MapTile> maps,
int offsetX,
int offsetY,
int randX,
int randY) |
void |
MapTile.append(Collection<MapTile> maps,
int offsetX,
int offsetY,
int randX,
int randY)
Append existing maps.
|
Constructor and Description |
---|
Minimap(MapTile map)
Create a minimap.
|
Modifier and Type | Method and Description |
---|---|
void |
MapTileCollisionRendererModel.renderTile(Graphic g,
MapTile map,
Tile tile,
int x,
int y) |
Modifier and Type | Method and Description |
---|---|
static PathFinder |
Astar.createPathFinder(MapTile map,
int maxSearchDistance,
Heuristic heuristic)
Create a path finder.
|
Modifier and Type | Method and Description |
---|---|
void |
MapTileRasteredModel.renderTile(Graphic g,
MapTile map,
Tile tile,
int x,
int y) |
Modifier and Type | Method and Description |
---|---|
Map<Transition,Collection<TileRef>> |
TransitionsExtractor.getTransitions(MapTile... maps)
Get map tile transitions from existing maps.
|
Constructor and Description |
---|
MapTransitionExtractor(MapTile map)
Create the extractor.
|
TransitiveGroup(MapTile map)
Create the transitive group handler.
|
Modifier and Type | Method and Description |
---|---|
Map<Circuit,Collection<TileRef>> |
CircuitsExtractor.getCircuits(MapTile... maps)
Get map tile circuits from existing maps.
|
Constructor and Description |
---|
MapCircuitExtractor(MapTile map)
Create the extractor.
|
Modifier and Type | Method and Description |
---|---|
MapTile |
MapGeneratorImpl.generateMap(GeneratorParameter parameters,
Collection<Media> levels,
Media sheetsConfig,
Media groupsConfig) |
MapTile |
MapGenerator.generateMap(GeneratorParameter parameters,
Collection<Media> levels,
Media sheetsConfig,
Media groupsConfig)
Generate a random map from basic configuration.
|
Modifier and Type | Method and Description |
---|---|
void |
PrefMapSize.apply(MapTile map) |
void |
PrefMapRegion.apply(MapTile map) |
void |
PrefMapFill.apply(MapTile map) |
void |
Preference.apply(MapTile map)
Apply preference on the specified map.
|
void |
GeneratorParameter.apply(MapTile map)
Apply all preferences defined.
|
Modifier and Type | Method and Description |
---|---|
void |
FogOfWar.create(MapTile map,
Media config)
Create a fog of war from a map.
|
void |
MapTileFog.create(MapTile map,
Media config,
SpriteTiled sheet)
Create a fog of war from a map.
|
void |
FogOfWar.renderTile(Graphic g,
MapTile map,
Tile tile,
int x,
int y) |
Copyright © 2017 Byron 3D Games Studio. All rights reserved.