cocos2d에서 타일맵을 생성하는 두가지 방법이 있습니다.
Tiled를 사용하여 타일맵을 생성할 수 있습니다.
Tiled는 두 가지 버전이 있습니다.:
Tiled는 OS/X, 윈도우즈, 리눅스에서 돌아가는 자바 어플리케이션입니다.
Tiled를 사용하여 맵을 생성하는 방법이 여기에 설명되어 었습니다.:
cocos2d는 TMX 맵을 다음과 같이 지원합니다. :
Tiled에서 지원하지 않을 것으로 보임)embedded 타일셋만 지원됩니다.(타일셋은 내장되나 이미지는 안되는)CCTMXLayer(CCSpriteSheet의 서브클래스)에 의해 표현됩니다.CCSprite(CCTMXLayer의 상위)으로 표현됩니다.
cocos2d는 타일셋의 내장 이미지를 지원하지 않습니다.(그러나 맵 파일에 내장된 타일셋은 지원합니다.) 대신 sprite sheet 이미지(AKA:텍스쳐 아틀라스 (Texture Atlas))를 직접 생성하야여 합니다.
내장 이미지를 타일셋에 정장하지 않도록 tiled를 사용하기
$ cd bin/tiled-0.7.2/ $ java -jar tiled
Tiled에서 다음을 따라하세요. :
새로운 맵을 생성할 때 주의점으로 Map Size는 수직/수평 타일들의 숫자와 관계가 있으며 맵의 픽셀수와는 관계가 없습니다. 이는 iPhone이 지원할 맵 사이즈에 제한을 받는다는 것입니다.(user comment : 44×44 픽셀 작업으로 100×100 픽셀을 본 적이 있으나 400×200은 동작하지 않았습니다.(타일들이 검정색이 되어 버렸습니다.))
맵에 사용할 타일셋은 반드시 맵 파일로 임베디드되어야 합니다. Tiled에서 이는 “Tileset Manager”에서 조정합니다.(Tilesets → Tileset Manager) 여러분은 컬럼에서 타일셋 리스트의 타일셋 이름 오른쪽에 ”(Embeded)” 라는 컬럼을 확인하는 것이 좋습니다. The tilesets for your map must be embedded into the map file. In Tiled this is controlled in the “Tileset Manager” (accessed via: Tilesets → Tileset Manager ). You should see ”(Embedded)” in the column to the right of the tileset name in the list of tilesets. 패스스트링을 확인하면, 여러분은 리스트에서 row를 선택하고, 내장 타일셋으로 변환할 오른쪽 Embed icon을 선택하면 됩니다.
만약 여러분이 다른 툴을 사용하고 있거나 파일을 열어서 확인하고 싶다면 *.xml 파일을 텍스트 또는 XML 에디터로 열어서 <tileset> 노드를 확인하세요. 파일 이름과 source 속성이 포함되어 있으면 여러분은 cocos2d-iphone에서 동작하지 않을 외부 타일셋을 쓰고 있는 것입니다.
유용한 이미지팩이 있습니다. :
이 툴들을 사용하면 개별 이미지에서 sprite sheets를 생성할 수 있습니다.
스프라이트 시트의 제한 :
옵션:
margin은 2, spaceing은 2를 사용할 것을 권장합니다.
If you experience lines flickering between the borders of your tiles when you move your map, this tool will fix that. Please note, these lines don't appear in the simulator, only on devices.
spritesheet-artifact-fixer는 스프라이트시트를 수정할 수 있는 cocos2d의 소형툴입니다.
이는 타일의 외곽선을 복사하고 간격/여백 픽셀을 조정합니다. 이론적으로 간격/여백 픽셀은 렌더링되지 않지만 가끔 예제에서는(특히 안티알리아스 텍스쳐와 3D 투영을 사용하면) 렌더링 됩니다.
툴 사용법 :
$ cd cocos2d/tools $ python spritesheet-artifact-fixer.py -f spritesheet.png -x 32 -y 32 -m 2 -s 2
An alternative is using TexturePacker with the –extrude feature:
$ TexturePacker *.png --extrude 1 --plist test.plist --sheet test.png
A tile's GID is the tile's Global IDentifier. It is an unsigned int that goes from 1 until the quantity of tiles.
If you have 5 different tiles then:
The GID 0 is used to represent to empty tile.
CCTMXTiledMap *map = [CCTMXTiledMap tiledMapWithTMXFile:@"hexa-test.tmx"]; [self addChild:map];
디폴트에서 모든 타일은 알리아스됩니다. 안티알리아스 타일을 생성하려면 다음을 따라야합니다. :
// create a TMX map CCTMXTiledMap *map = [CCTMXTiledMap tiledMapWithTMXFile:@"orthogonal-test2.tmx"]; [self addChild:map]; // iterate over all the "layers" (atlas sprite managers) // and set them as 'antialias' for( CCTMXLayer* child in [map children] ) { [[child texture] setAntiAliasTexParameters]; }
Full example:
CCTMXTiledMap *map = [CCTMXTiledMap tiledMapWithTMXFile:@"orthogonal-test2.tmx"]; CCTMXLayer *layer = [map layerNamed:@"Layer 0"]; CCSprite *tile = [layer tileAt:ccp(0,63)]; tile.anchorPoint = ccp(0.5f, 0.5f);
CCTMXTiledMap *map = [CCTMXTiledMap tiledMapWithTMXFile:@"orthogonal-test2.tmx"]; CCTMXLayer *layer = [map layerNamed:@"Layer 0"]; unsigned int gid = [layer tileGIDAt:ccp(0,63)];
CCTMXTiledMap *map = [CCTMXTiledMap tiledMapWithTMXFile:@"orthogonal-test2.tmx"]; CCTMXLayer *layer = [map layerNamed:@"Layer 0"]; [layer setTileGID:gid2 at:ccp(3,y)];
CCTMXTiledMap *map = [CCTMXTiledMap tiledMapWithTMXFile:@"orthogonal-test2.tmx"]; CCTMXLayer *layer = [map layerNamed:@"Layer 0"]; [layer removeTileAt:ccp(15,15)];
CCTMXTiledMap *map = [CCTMXTiledMap tiledMapWithTMXFile:@"orthogonal-test2.tmx"]; CCTMXLayer *layer = [map layerNamed:@"Layer 0"]; CGSize s = [layer layerSize]; for( int x=0; x<s.width;x++) { for( int y=0; y< s.height; y++ ) { unsigned int tmpgid = [layer tileGIDAt:ccp(x,y)]; [layer setTileGID:tmpgid+1 at:ccp(x,y)]; } }
Information valid on v0.99.1 or newer
Information valid both for Isometric and Orthogonal maps. NOT valid for Hexagonal maps
If your game needs to place the sprites behind/in front of certain tiles according to the sprites' Y position (a common scenario in isometric maps, and in some orthogonal maps too), then you have 2 options:
This option uses the OpenGL ES depth buffer. So, the 1st thing that you must do, is to create a z-buffer and a 2D projection
// Place this code in your AppDelegate, before attaching the director to the window view. // you can use a 24-bit buffer too with: kDepthBuffer24 [[CCDirector sharedDirector] setDepthBufferFormat:kDepthBuffer16]; // You can place this code anywhere you want. You can change the projection in runtime [[CCDirector sharedDirector] setProjection:CCDirectorProjection2D];
It is also very important to create a map with 2 TMX Layers
The grass layer will be behind the sprites, so its vertexZ value should be the lowest possible value. eg:-1000. The trees layer should have different vertexZ values for the tiles. Tiles that are at the bottom should have higher vertexZ than the tiles that are at the top.
So, in order to achieve this, you should do:
The other important thing to do is to draw your sprites with GL_ALPHA_TEST enabled. Example:
//MySprite is a subclass of CCSprite. // If you are drawing sprites using CCSpriteSheet, then you should subclass CCSpriteSheet and not CCSprite. // You can also enable GL_ALPHA_TEST globally, but if you do so, you need to comment the the CCTMXLayer#draw method (see CCTMXLayer.m) // There are other alternatives. This is just an example. @implementation MySprite -(void) draw { glEnable(GL_ALPHA_TEST); glAlphaFunc( GL_GREATER, 0 ); [super draw]; glDisable(GL_ALPHA_TEST); } @end
Q: How does cc_vertexz work ?
A: cc_vertexz accepts either the word automatic or an integer number
The only thing left to do is to modify your sprites' vertexZ value according to its Y position. Example:
-(void) repositionSprite:(ccTime)dt { // tile height is 101x81 CGPoint p = [sprite position]; [sprite setVertexZ: -( (p.y+81) /81) ]; }
Please, see TileMapTest.m for a working sample.
Q: When should I use cc_alpha_func ?
A: The cc_alpha_func value will only be used when cc_vertexz=automatic. By default it will have a value of 0. This value will be used to draw the tiles using the GL_GREATER function.
This is how CCTMXLayer draws the tiles:
// CCTMXLayer drawing function -(void) draw { if( useAutomaticVertexZ_ ) { glEnable(GL_ALPHA_TEST); glAlphaFunc(GL_GREATER, alphaFuncValue_); } [super draw]; if( useAutomaticVertexZ_ ) glDisable(GL_ALPHA_TEST); }
Examples:
Each layer in the map is automatically assigned it's own zOrder value, so there is no need to add any layer attributes in your TMX editor. Adding your sprite as a child of the TMXMap allows you to dynamically place it within the layers of the map object.
CCTMXTiledMap map = [CCTMXTiledMap tiledMapWithTMXFile:@"Map.tmx"]; [self addChild:map]; CCSprite *character = [CCSprite spriteWithFile:@"Character.png"]; // Add the sprite as a child of the map, and set the z order to // be the same as the layer you wish the sprite to appear // immediately above. [map addChild:character z:[map layerNamed:@"grass"] zOrder]];
See a working example here: TileMapTest.m
You can use the PGU Tile maps, too.
Since the format is not very flexible (is has limitations with it's sizes) and the editor seems to has some bugs, this format is deprecated. You will be able to continue using it with your old game, but it's usage is not recommended.
Instead, use the recommened TMX Tile Map.
Some articles about this format: