Module cocos.tiles

Tile maps are made of three components:

images
Images are from individual files for from image atlases in a single file.
tiles
Tiles may be stand-alone or part of a TileSet.
maps
MapLayers are made of either rectangular or hexagonal Cells which reference the tiles used to draw the cell.

The intent is that you may have a tile set defined in one XML file which is shared amongst many map files (or indeed within a single XML file). Images may be shared amongst multiple tiles with the tiles adding different meta-data in each case.

These may be constructed manually or loaded from XML resource files which are used to store the specification of tile sets and tile maps. A given resource XML file may define multiple tile sets and maps and may even reference other external XML resource files. This would allow a single tile set to be used by multiple tile maps.

Maps

The RectMapLayer class extends the regular Cocos layer to handle a regular grid of tile images, or Cells. The map layer may be manipulated like any other Cocos layer. It also provides methods for interrogating the map contents to find cells (eg. under the mouse) or neighboring cells (up, down, left, right.)

Maps may be defined in Python code, but it is a little easier to do so in XML. To support map editing the maps support round-tripping to XML.

The XML File Specification

Assuming the following XML file called "example.xml":

<?xml version="1.0"?>
<resource>
  <requires file="ground-tiles.xml" namespace="ground" />

  <rectmap id="level1">
   <column>
    <cell tile="ground:grass" />
    <cell tile="ground:house">
      <property type="bool" name="secretobjective" value="True" />
    </cell>
   </column>
  </map>
</resource>

You may load that resource and examine it:

>>> r = load('example.xml')
>>> map = r['level1']

and then, assuming that level1 is a map:

>>> scene = cocos.scene.Scene(map)

and then either manually select the tiles to display:

>>> map.set_view(0, 0, window_width, window_height)

or if you wish for the level to scroll, you use the ScrollingManager:

>>> from cocos import layers
>>> manager = layers.ScrollingManager()
>>> manager.add(map)

and later set the focus with:

>>> manager.set_focus(focus_x, focus_y)

See the section on controlling map scrolling below for more detail.

XML file contents

XML resource files must contain a document-level tag <resource>:

<?xml version="1.0"?>
<resource>
 ...
</resource>

You may draw in other resource files by using the <requires> tag:

<requires file="road-tiles.xml" />

This will load "road-tiles.xml" into the resource's namespace. If you wish to avoid id clashes you may supply a namespace:

<requires file="road-tiles.xml" namespace="road" />

If a namespace is given then the element ids from the "road-tiles.xml" will be prefixed by the namespace and a period, e.g. "road:bitumen".

Other tags within <resource> are:

<image file="" id="">

Loads file with pyglet.image.load and gives it the id which is used by tiles to reference the image.

<imageatlas file="" [id="" size="x,y"]>

Sets up an image atlas for child <image> tags to use. Child tags are of the form:

<image offset="" id="" [size=""]>

If the <imageatlas> tag does not provide a size attribute then all child <image> tags must provide one. Image atlas ids are optional as they are currently not reference directly.

<tileset id="">

Sets up a TileSet object. Child tags are of the form:

<tile id="">
  [<image ...>]
</tile>

The <image> tag is optional; these tiles may have only properties (or be completely empty). The id is used by maps to reference the tile.

<rectmap id="" tile_size="" [origin=""]>

Sets up a RectMap object. Child tags are of the form:

<column>
 <cell tile="" />
</column>

Map, Cell and Tile Properties

Most tags may additionally have properties specified as:

<property [type=""] name="" value="" />

Where type is one of "unicode", "int", "float" or "bool". The property will be a unicode string by default if no type is specified.

Properties are accessed on the map, cell or tile using common dict operations with some extensions. Accessing a property on a cell will fall back to look on the tile if it's not found on the cell.

If a cell has a property player-spawn (boolean) and the tile that the cell uses has a property move-cost=1 (int) then the following are true:

'player-spawn' in cell == True
cell.get('player-spawn') == True
cell['player-spawn'] == True

'player-spawn' in tile == False
tile.get('player-spawn') == None
tile['player-spawn'] --> raises KeyError

cell['move-cost'] == 1

You may additionally set properties on cells and tiles:

cell['player-postion'] = True
cell['burnt-out'] = True

and when the map is exported to XML these properties will also be exported.

Controlling Map Scrolling

You have three options for map scrolling:

  1. never automatically scroll the map,
  2. automatically scroll the map but stop at the map edges, and
  3. scroll the map an allow the edge of the map to be displayed.

The first is possibly the easiest since you don't need to use a ScrollingManager layer. You simple call map.set_view(x, y, w, h) on your map layer giving the bottom-left corner coordinates and the dimensions to display. This could be as simple as:

map.set_view(0, 0, map.px_width, map.px_height)

If you wish to have the map scroll around in response to player movement the ScrollingManager from the cocos.scrolling module may be used.

Classes

  ScrollableLayer
  ScrollingManager
  ResourceError
  TilesPropertyWithoutName
  TilesPropertyWithoutValue
  Resource
Load some tile mapping resources from an XML file.
  Tile
Tiles hold an image and some optional properties.
  TileSet
Contains a set of Tile objects referenced by some id.
  MapLayer
Base class for Maps.
  RegularTesselationMap
A regularly tesselated map that allows access to its cells by index (i, j).
  RectMap
Rectangular map.
  RectMapLayer
A renderable, scrollable rect map.
  RectMapCollider
This class implements collisions between a moving rect object and a tilemap.
  Cell
Base class for cells from rect and hex maps.
  RectCell
A rectangular cell from a MapLayer.
  HexMap
MapLayer with flat-top, regular hexagonal cells.
  HexMapLayer
A renderable, scrollable hex map.
  HexCell
A flat-top, regular hexagon cell from a HexMap.

Functions

  load(filename)
Load resource(s) defined in the indicated XML file.
  image_factory(resource, tag)
  imageatlas_factory(resource, tag)
  tileset_factory(resource, tag)
  rectmap_factory(resource, tag)
  hexmap_factory(resource, tag)
  hex_width(height)
Determine a regular hexagon's width given its height.

Variables

  __package__ = 'cocos'

Function Details

image_factory

image_factory(resource, tag)
Decorators:
  • @Resource.register_factory('image')

imageatlas_factory

imageatlas_factory(resource, tag)
Decorators:
  • @Resource.register_factory('imageatlas')

tileset_factory

tileset_factory(resource, tag)
Decorators:
  • @Resource.register_factory('tileset')

rectmap_factory

rectmap_factory(resource, tag)
Decorators:
  • @Resource.register_factory('rectmap')

hexmap_factory

hexmap_factory(resource, tag)
Decorators:
  • @Resource.register_factory('hexmap')