From The Mana World
Revision as of 13:09, 26 June 2009 by Crush2 (talk | contribs) (slight rewording)

This article is for reference purpose

The features described in this article are already implemented in the game. The article should describe how a certain aspect of the game currently works. You may of course edit this article to improve the description of the circumstances. Your opinions or improvement suggestions about the described aspects themself are of course appreciated, too. But please put these on the discussion page of this article to keep facts and fiction separated.


Basics

Making maps for The Mana World is not a task that requires a lot of knowledge but is a very good way to become creative and help the game to become more attractive. But getting started can be a little frustrating. Here is a guide that will help you to learn how to make maps.

Folders

You need to use a certain folder structure when mapping for TMW:

  • (some folder)
    • graphics
      • tiles
        • (the tilesets you want)
    • maps
      • (your map goes here)

How to get Tiled

The map editor we are using is called Tiled. You can find it at http://mapeditor.org/.

Tiled is a java application. That means it runs on every system that got a Java Runtime Environment. But you need the latest Java Runtime Environment installed on your system. You can get it at http://www.java.com/getjava/.

To start Tiled just click the Start Now! link on mapeditor.org or download Tiled and open tiled.jar with the java binary in your java folder with the additional parameter -jar.

Setting up the data files

To create the map we need some graphics first, as well as the existing maps to use for reference.

You can get all the files, in the right directory structure, by cloning the "tmwdata" project from our Git Repository.

Alternatively, you can use the data files that are downloaded while playing the game. When you downloaded TMW as an installer packet all map graphics are downloaded at the first start of TMW from the update server and stored in the subfolder "\.tmw\updates" of your home directory as zip archives. Unpack these into the "data" subfolder of your tmw installation.

Setting up Tiled for making TMW Maps

Tiled is a map editor that isn't made especially for TMW. That means it got a lot of options and settings we don't need.

Settings for a new tmw map

To create a new map, press File->New. Use the following settings:

  • Map Type: Orthogonal
  • Tile Size: 32x32
  • Tile Spacing: 0
  • Map Size: Should be at least 60x60 but not larger than 200x200 (although the theoretical maximum is much higher). A 20 tile border around the outside of every map is needed (diagram). Additionally, a 20 tile border is recommended between rooms for indoor maps, to prevent more than one room from showing at a time on the client.
    • In the Argaes woodland, outdoor maps should be 150x120 including the 20 tile border.

Importing tilesets

Settings for importing a tileset

Now you have to choose the tilesets we want to use on the map. To import a tileset select Tilesets->New Tileset and set the following options:

  • Name: (doesn't matter, but it helps if it's decsriptive)
  • Tile width: 32
  • Tile height: 32 (64 for _x2 tilesets and 96 for _x3 tilesets. see below)
  • Reference tileset image: checked
  • Tile spacing: 0
  • Use transparent color: unchecked

Now push the browse button and browse to your TMW folder and then the sub folder graphics/tiles/. Here you will find all tilesets that are used by TMW saved as PNG graphics. Select the one you want.

Please only import the tilesets you want to use. Don't forget to import the Tileset "Collision.png", too. It has a very important purpose that will be explained later.

Starting to map

Now you can finally start to map. To place tiles on the map select the pen tool from the toolbox to the left. Then select a tile from the tile palette. Now you can place the tiles on the map. Please watch out on what layer you are drawing on because the layers play different roles:

  • Use a layer beneath the "Fringe" layer for tiles without transparency. The layers beneath fringe have to be filled completely before you can call the map finished. When there are partially transparent tiles without completely opaque tiles on a layer below strange graphic bugs will appear in the empty area.
  • The "Fringe" Layer itself is for oversized tiles which have to be drawn in front or behind moving objects depending on their location. This sorting takes CPU time. Thus you should only use it for the tiles which have to use it.
  • Layers above the "Fringe" layer are always drawn over the map sprites. It should be used for objects which are meant to look as if they are far above the game area. Keep in mind that there are monsters which are larger than player characters.
  • The "Collision" Layer isn't displayed in the game. It contains the information which parts of the map are walkable and which aren't. Don't put any tiles on it except for the red collision tiles from the collision tileset.

When you are finished with your map you have to determine which tiles are walkable and which aren't. To do so mark all tiles you want to be blocked with the red square from the collision tileset on the collision layer. Be careful that even if a tile is not reachable, but it's walkable, the server can spawn monsters there which can not be killed by the players because they can't reach them. This will lead to all monsters accumulating in the unreachable area until there are no monsters left in the reachable area.

You can check if you did this properly by saving the map, zooming out until the whole map is visible, hiding all layers except for the collision layer, and then using the flood fill tool with the cross tile on the empty area. Any tiles which are still unmarked were not reachable by the players.

Be aware that you need a border of about 20 tiles in every direction that may not be walkable but should be designed properly (diagram). Portals to other maps should only be some tiles wide. You can't define the portals with Tiled, by the way. Leave this to the server administrators. The same applies to monster population, NPCs and other interactive objects.

Testing your map

To test your map you have to replace one of the maps in your TMW folder (in the sub folder data/maps). When you start the game and go to the map you replaced you will see your new map. You will see monsters and other players on the map but don't worry. The other players still see their version of the map and they won't see you walk through walls. Just ignore them while you explore your map.

Sometimes your changed map is overridden by a new version of the map in the updates. In that case you won't see any changes when you change or even remove a map. When you encounter this problem either skip the update loading by starting tmw with the parameter "-u" or delete the file you want to change in all the zip archives you find in the subfolder /updates/.

Intermediate topics

Over sized tiles

You might have noticed the tilesets ending with _x2.png or _x3.png in the tmw folder containing objects that are two or three tiles high. The new version of tiled allows you to place them with one click. The TMW graphic engine recognizes these over sized tiles when placed on the object layer and automatically draws sprites in front of them when they are south of them and behind them when they are north of them. When importing a _x2 tileset, set the tile height to 64 and when importing a _x3 tileset set it to 96. You should never put an over sized tile on another layer but the object layer.

The Stamp

The Stamp Feature is a powerful feature of tiled that is hard to find but can save a lot of time. It allows you very quick copy&pasting of a part of a layer. This allows you to draw objects consisting of multiple tiles very quick. Just select the pen tool, press the right mouse button and drag the mouse over the tiles you want to copy. Now you can draw the whole square of tiles over and over again with a single left click. To return to the normal drawing mode just select the pen tool again or choose a tile from the tile palette.

Making two maps with a fluent transition

When you create an outdoor map it is most likely supposed to be adjacent to an existing map. In this case the transmission from one map to the other should be as seamless as possible. This can only be reached when the border areas of both maps are identical. Unfortunately Tiled can't copy&paste between different maps (OK, it is possible, but it only works correctly when both maps use exactly the same tilesets in exactly the same order). So we developed a command-line based program called TMXcopy for this task. You can find the sourcecode on the Git repository in the folder http://gitorious.org/tmw/mainline/trees/master/tools/tmxcopy A compiled windows binary can be found at http://www.crushnet.org/TempFiles/tmw/tmxcopy.zip

How to use this program is described in its readme file.

To create a map adjacent to an existing one you should:

  1. Create the new map as described above and save it.
  2. Use TMXcopy to copy the border area of the old map to the opposite side of the new map. The area should have the double width of the unwalkable area.
  3. Open the new map and check if the copying worked correctly. Then modify the lower three layers of the copied area to fit into your map. While doing so you should focus on the half of the new area that is inside the walkable area of your map. The half that lies in the border zone of your map should not be modified too much because it is part of the old map.
  4. Use TMXCopy to copy the new area from the new map back to the old map.
  5. Update the collision layers on both maps.

Now the border area should be visually identical on both maps. The only difference should be that the unwalkable areas are switched. When sending the map to the team remember to include the new version of the old map.

Ambient effects

Example for 3 independent scrolling overlays

Ambient Effects are a new feature in TMW 0.0.21. They are transparent graphics that will be drawn over your map. All these graphics can scroll independent. They can be used to create a variety of special effects like weather, darkness etc.

To add overlays to your map open your map with Tiled and click Map->Properties to open the map properties dialog. The dialog is a little bit buggy in the current version of Tiled, so make sure that the property has really been set before you save the map. Pressing enter after entering each key and value helps... sometimes.

First you have to choose an image. Do so by adding a key overlay0image and set its value to the path of the image that you want to use relative to the data directory. For the spotlight effect for example enter /graphics/images/ambient/spotlight.png.

When you want the image to move permanently add the new keys overlay0scrollX and overlay0scrollY followed by a number (can be a decimal value). overlay0scrollX determines the scroll speed to the right (negative values mean scrolling to the left) and overlay0scrollY the scroll speed down (negative values mean up). both values are in pixels per frame.

You can also define a overlay0parallax parameter. This parameter affects how much the overlay scrolls when the screen scrolls. A value of 1.0 means that the overlay will stay relative to the ground when the screen scrolls. A value of 0.0 means that the overlay stays relative to the "camera" and is not affected by scrolling. It is a decimal value so you can set it to values between 1 and 0 to create the three dimensional illusion of a layer between the "camera" and the map.

You can create any number of independent overlay graphics. To define a 2nd one create keys with 1 instead of 0, for a 3rd one 2, and so on.

The overlays won't appear in Tiled. They will only appear in the game.

When it doesn't work please check that all key names are written correctly (they are cAsEsEnSiTiVe) and that the numbers of the overlays are consecutive starting from 0.

When you want to create overlay images yourself (transparent 32bit png graphics of any size) please don't forget to make them transparent with your image manipulation program. Otherwise the player won't be able to see the map under it. An opacity of 50% should be the absolute maximum. When you want to create effects that are not meant to obstruct the players view use an opacity between 10% and 20%.

Particle effects

Check out the article about the Particle engine for a description about how to add particle effects to your map and how to create new particle effects when the effect you need doesn't exist yet.

Animated tiles

To make a type of tiles animated go to Tilesets->Tileset Manager. Then select the tileset with the tile and all of its animation frames (they have to be on one tileset) and click on the icon with a pencil on a piece of paper (the tooltip reads "Edit...").

Select the tile you want to be animated on the list to the left. You should see a table on the right with two columns named "Name" and "Value". You have to describe the animation of the tile in this table. Here an example for a 3-phase animation:

NAME              VALUE
animation-frame0  0
animation-delay0  100
animation-frame1  16
animation-delay1  100
animation-frame2  48
animation-delay2  100

animation-frameX is the Tile number (as shown in the list on the left) and animation-delayX is how long it is shown (100 is equal to one second).

The animation does not show up in Tiled.

Creating a Minimap

The Creation of a minimap is a task that requires an image manipulation software that supports multiple layers and the PNG format (we recommend GIMP). When you are not familiar with using one you should ask one of the artists to create a minimap for your map. When you want to create your own minimap then you should exactly follow the following steps to ensure to stay in style with the rest of the minimaps:

  1. Open your map with tiled, zoom out until the whole map is visible and use the "save as image" option.
  2. Open the image with your image manipulation program.
  3. Resize it so that one pixel represents one tile. When your map is for example 160x100 tiles large (including border zone) your picture should be 160x100 pixels large.
  4. Create a new transparent layer over the existing one.
  5. Select the pencil tool with a brush size of 1x1 pixel and with the color #000000 (pure black). Anti aliasing should be deactivated when available.
  6. Now draw lines on the new layer along the following map features:
    • Cliffs and walls (lower and upper edge)
    • River/lake shores
    • Roads (both sides of the road as single lines)
    • The border of any other large map structure that you feel should be on the map
  7. Trees or other objects can be represented by single pixels with 50% alpha transparency when there are so many that they affect the game play on the map.
  8. When you are finished remove the background layer. Now only the black lines should be visible
  9. Resize the image so the sides are half (50%) as long. You should use the best image filtering method available (cubic filtering in GIMP).
  10. Save your finished minimap as a PNG image with 32bit color depth and alpha transparency as *your_tmw_folder*/data/graphics/minimaps/*mapname*.png.
  11. Open your map with Tiled, click Map->Properties in the menu bar and add a new property with the key "minimap" and the value "/graphics/minimaps/*mapname*.png". The properties dialog is a little bit buggy in the current version of Tiled, so make sure that the property has really been set before you save the map.
  12. Send us both the map and the minimap image


While this is indeed exactly the way I also created the earlier cave and desert minimaps, I am not entirely happy with this method. Mostly because the final result is a really tiny image, without the ability to easily make versions of it on other scales. I would therefore suggest we try to create future minimaps in vector format using Inkscape. The technique would be similar, placing a scaled down version of the map in the background and drawing black lines on top. The result should however be an image that can take any scale. This would allow us both to put more detail in the minimap for larger scales, and to include a zooming feature (or similar) in the game so that notes and other marks can be placed on the map with higher precision. --Bjørn 16:04, 16 August 2006 (CEST)

Sending the map to the dev team

There are many ways to send us your map so we can include it in the next release.

E-Mail
Mail your map to the developers mailing list themanaworld-devel@lists.sourceforge.net. Before you can do so you have to subscribe to it. This is a precaution against spam. You can do so on https://lists.sourceforge.net/lists/listinfo/themanaworld-devel
IRC
Join our IRC Channel. When you are not familiar with irc you can find a guide in this Forum Thread. When you are in the channel ask a developer if you can send him your map using DCC or upload your map to a webspace or one click hoster and give us the link.
Forum
Upload your map to any webspace or one click hoster. An overview graphic (can be created with Tileds "Save as Image" feature) would be nice, too. Visit our Forum and register a new account. Then open a new thread, introduce yourself and post a link to your map.

Please understand that we will most likely have some details we would like to have changed before we release your map. so please check back or leave some information how to contact you.

Hints for good mapping

  • Before you start with a map you should have a loose idea of the layout. Making a sketch of the map on a piece of paper can be very useful.
  • Try to avoid choke points like bridges, mountain passes or corridors that are only one tile wide. They can be blocked very easily.
  • Don't put too many similar objects on one screen. Very eye catching tiles should only be used sparingly. Try to break up large areas with the same tile over and over again by throwing in some objects.
  • Avoid regular patterns in natural environments. Trees usually don't grow in grid patterns. Rivers, mountain ridges or corridors in caves should never be completely straight.
  • Don't map too functional. Give the players something to look at, even when it hasn't got any relevance for the gameplay.
  • But keep the playability in mind.
A bad mapping style: A better mapping style:
Badmap.png Goodmap.png