TMX2EA v2.0 RELEASED - Insert Tiled maps using Event Assembler

#Get TMX2EA (Requires EA v11.0 or higher)

##How to use:
TMX2EA converts Tiled format maps to EA installer format.
Simply double click TMX2EA.exe and choose “Yes” to scan subfolders, and it will generate individual installers for each map as well as a master installer for all maps found.

If you only wish to update a single map you can either drag the .tmx directly onto TMX2EA or choose “No” when prompted and use the file selection dialog.

To use the installer, put

ORG (some free space)
#include "Master Map Installer.event"

in your rom buildfile, or add ORG (some free space) to the top of the installer and assemble it directly.


The Master Map Installer defines the SetChapterData() macro, which is used to update the Chapter Data Editor with the appropriate properties.

These properties can be manually substituted in the generated event files, or defined as custom layer properties.

More on Custom Layer Properties

Supported Layer Properties:

Name          Default Value   Notes
-----------------------------------------------------------------------------
Main                          Required when there are multiple layers.
ChapterID     ChapterID       The chapter number/row in the chapter data editor
ObjectType1   ObjectType      The object set to use. Can also use ObjectType
ObjectType2   0               FE7 only
PaletteID     PaletteID       The palette to use
TileConfig    TileConfig      The tile configuration to use
MapID         map_id          The index of the map in the Event Pointer Table
MapChangesID  map_changes     The index of the map changes in the Event Pointer Table
Anims1        0               Tile Animation to use. Can also use Anims
Anims2        0               FE8 only

Required for tile change layers:
Name          Notes
-------------------------------------------------------------
ID            Warning: the actual layer order matters too. Lower layers should have lower IDs.
X             X coordinate of the top left tile
Y             Y coordinate of the top left tile
Height        Height of the tile change
Width         Width of the tile change
3 Likes

UPDATE: Fixed a glitch where tmx files in subfolders would not work correctly.

1 Like

###Updated to v2.0!

Changes include:

  • support for custom layer properties to automatically set the tileset and other chapter data
  • drag and drop or file select to only update a single map
  • more descriptive error messages and better error handling
4 Likes

Love these changes man, especially the drag and drop!

Came across an error with this while modding FE7.

In the generated Master Map Installer you have,
#define SetChapterData(ChapterID,ObjectType1,ObjectType2,PaletteID,TileConfig,MapID,MapPointer,Anims1,Anims2,MapChanges) "PUSH; ORG ChapterDataTable+(ChapterID*148)+4; BYTE ObjectType1 ObjectType2 PaletteID TileConfig MapID Anims1 Anims2 MapChanges; EventPointerTable(MapID,MapPointer); POP"

I think for FE7, ChapterDataTable+(ChapterID*148)+4' needs to be ChapterDataTable+(ChapterID*152)+4'.