mirror of https://github.com/axmolengine/axmol.git
1311 lines
35 KiB
C++
1311 lines
35 KiB
C++
#include "TileMapTest.h"
|
|
#include "../testResource.h"
|
|
|
|
enum
|
|
{
|
|
kTagTileMap = 1,
|
|
};
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TileMapTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TileMapTest::TileMapTest()
|
|
{
|
|
CCTileMapAtlas* map = CCTileMapAtlas::tileMapAtlasWithTileFile(s_TilesPng, s_LevelMapTga, 16, 16);
|
|
// Convert it to "alias" (GL_LINEAR filtering)
|
|
map->getTexture()->setAliasTexParameters();
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
// If you are not going to use the Map, you can free it now
|
|
// NEW since v0.7
|
|
map->releaseMap();
|
|
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
map->setAnchorPoint( ccp(0, 0.5f) );
|
|
}
|
|
|
|
std::string TileMapTest::title()
|
|
{
|
|
return "TileMapAtlas";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TileMapEditTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TileMapEditTest::TileMapEditTest()
|
|
{
|
|
CCTileMapAtlas* map = CCTileMapAtlas::tileMapAtlasWithTileFile(s_TilesPng, s_LevelMapTga, 16, 16);
|
|
// Create an Aliased Atlas
|
|
map->getTexture()->setAliasTexParameters();
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
// If you are not going to use the Map, you can free it now
|
|
// [tilemap releaseMap);
|
|
// And if you are going to use, it you can access the data with:
|
|
schedule(schedule_selector(TileMapEditTest::updateMap), 0.2f);//:@selector(updateMap:) interval:0.2f);
|
|
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
map->setAnchorPoint( ccp(0, 0) );
|
|
map->setPosition( ccp(-20,-200) );
|
|
}
|
|
|
|
void TileMapEditTest::updateMap(ccTime dt)
|
|
{
|
|
// IMPORTANT
|
|
// The only limitation is that you cannot change an empty, or assign an empty tile to a tile
|
|
// The value 0 not rendered so don't assign or change a tile with value 0
|
|
|
|
CCTileMapAtlas* tilemap = (CCTileMapAtlas*) getChildByTag(kTagTileMap);
|
|
|
|
//
|
|
// For example you can iterate over all the tiles
|
|
// using this code, but try to avoid the iteration
|
|
// over all your tiles in every frame. It's very expensive
|
|
// for(int x=0; x < tilemap.tgaInfo->width; x++) {
|
|
// for(int y=0; y < tilemap.tgaInfo->height; y++) {
|
|
// ccColor3B c =[tilemap tileAt:ccg(x,y));
|
|
// if( c.r != 0 ) {
|
|
// ////----UXLOG("%d,%d = %d", x,y,c.r);
|
|
// }
|
|
// }
|
|
// }
|
|
|
|
// NEW since v0.7
|
|
ccColor3B c = tilemap->tileAt(ccg(13,21));
|
|
c.r++;
|
|
c.r %= 50;
|
|
if( c.r==0)
|
|
c.r=1;
|
|
|
|
// NEW since v0.7
|
|
tilemap->setTile(c, ccg(13,21) );
|
|
}
|
|
|
|
std::string TileMapEditTest::title()
|
|
{
|
|
return "Editable TileMapAtlas";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoTest::TMXOrthoTest()
|
|
{
|
|
//
|
|
// Test orthogonal with 3d camera and anti-alias textures
|
|
//
|
|
// it should not flicker. No artifacts should appear
|
|
//
|
|
//CCColorLayer* color = CCColorLayer::layerWithColor( ccc4(64,64,64,255) );
|
|
//addChild(color, -1);
|
|
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test2.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
NSMutableArray<CCNode*> * pChildrenArray = map->getChildren();
|
|
CCSpriteSheet* child = NULL;
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
|
for( it = pChildrenArray->begin(); it != pChildrenArray->end(); it++)
|
|
{
|
|
child = (CCSpriteSheet*)(*it);
|
|
|
|
if(!child)
|
|
break;
|
|
|
|
child->getTexture()->setAntiAliasTexParameters();
|
|
}
|
|
|
|
float x, y, z;
|
|
map->getCamera()->getEyeXYZ(&x, &y, &z);
|
|
map->getCamera()->setEyeXYZ(x-200, y, z+300);
|
|
}
|
|
|
|
void TMXOrthoTest::onEnter()
|
|
{
|
|
TileDemo::onEnter();
|
|
|
|
CCDirector::getSharedDirector()->setProjection(CCDirectorProjection3D);
|
|
}
|
|
|
|
void TMXOrthoTest::onExit()
|
|
{
|
|
CCDirector::getSharedDirector()->setProjection(CCDirectorProjection2D);
|
|
TileDemo::onExit();
|
|
}
|
|
|
|
std::string TMXOrthoTest::title()
|
|
{
|
|
return "TMX Orthogonal test";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoTest2
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoTest2::TMXOrthoTest2()
|
|
{
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test1.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
NSMutableArray<CCNode*> * pChildrenArray = map->getChildren();
|
|
CCSpriteSheet* child = NULL;
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
|
for( it = pChildrenArray->begin(); it != pChildrenArray->end(); it++)
|
|
{
|
|
child = (CCSpriteSheet*)(*it);
|
|
|
|
if(!child)
|
|
break;
|
|
|
|
child->getTexture()->setAntiAliasTexParameters();
|
|
}
|
|
|
|
map->runAction( CCScaleBy::actionWithDuration(2, 0.5f) ) ;
|
|
}
|
|
|
|
std::string TMXOrthoTest2::title()
|
|
{
|
|
return "TMX Ortho test2";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoTest3
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoTest3::TMXOrthoTest3()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test3.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
NSMutableArray<CCNode*> * pChildrenArray = map->getChildren();
|
|
CCSpriteSheet* child = NULL;
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
|
for( it = pChildrenArray->begin(); it != pChildrenArray->end(); it++)
|
|
{
|
|
child = (CCSpriteSheet*)(*it);
|
|
|
|
if(!child)
|
|
break;
|
|
|
|
child->getTexture()->setAntiAliasTexParameters();
|
|
}
|
|
|
|
map->setScale(0.2f);
|
|
map->setAnchorPoint( ccp(0.5f, 0.5f) );
|
|
}
|
|
|
|
std::string TMXOrthoTest3::title()
|
|
{
|
|
return "TMX anchorPoint test";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoTest4
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoTest4::TMXOrthoTest4()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test4.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s1 = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s1.width,s1.height);
|
|
|
|
NSMutableArray<CCNode*> * pChildrenArray = map->getChildren();
|
|
CCSpriteSheet* child = NULL;
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
|
for( it = pChildrenArray->begin(); it != pChildrenArray->end(); it++)
|
|
{
|
|
child = (CCSpriteSheet*)(*it);
|
|
|
|
if(!child)
|
|
break;
|
|
|
|
child->getTexture()->setAntiAliasTexParameters();
|
|
}
|
|
|
|
map->setAnchorPoint(ccp(0, 0));
|
|
|
|
CCTMXLayer* layer = map->layerNamed("Layer 0");
|
|
CGSize s = layer->getLayerSize();
|
|
|
|
CCSprite* sprite;
|
|
sprite = layer->tileAt(ccp(0,0));
|
|
sprite->setScale(2);
|
|
sprite = layer->tileAt(ccp(s.width-1,0));
|
|
sprite->setScale(2);
|
|
sprite = layer->tileAt(ccp(0,s.height-1));
|
|
sprite->setScale(2);
|
|
sprite = layer->tileAt(ccp(s.width-1,s.height-1));
|
|
sprite->setScale(2);
|
|
|
|
schedule( schedule_selector(TMXOrthoTest4::removeSprite), 2 );
|
|
|
|
}
|
|
|
|
void TMXOrthoTest4::removeSprite(ccTime dt)
|
|
{
|
|
unschedule(schedule_selector(TMXOrthoTest4::removeSprite));
|
|
|
|
CCTMXTiledMap *map = (CCTMXTiledMap*)getChildByTag(kTagTileMap);
|
|
CCTMXLayer* layer = map->layerNamed("Layer 0");
|
|
CGSize s = layer->getLayerSize();
|
|
|
|
CCSprite* sprite = layer->tileAt( ccp(s.width-1,0) );
|
|
layer->removeChild(sprite, true);
|
|
}
|
|
|
|
std::string TMXOrthoTest4::title()
|
|
{
|
|
return "TMX width/height test";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXReadWriteTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
enum
|
|
{
|
|
SID_UPDATECOL = 100,
|
|
SID_REPAINTWITHGID,
|
|
SID_REMOVETILES
|
|
};
|
|
|
|
TMXReadWriteTest::TMXReadWriteTest()
|
|
{
|
|
m_gid = 0;
|
|
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test2.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
|
|
CCTMXLayer* layer = map->layerNamed("Layer 0");
|
|
layer->getTexture()->setAntiAliasTexParameters();
|
|
|
|
map->setScale( 1 );
|
|
|
|
CCSprite *tile0 = layer->tileAt(ccp(1,63));
|
|
CCSprite *tile1 = layer->tileAt(ccp(2,63));
|
|
CCSprite *tile2 = layer->tileAt(ccp(3,62));//ccp(1,62));
|
|
CCSprite *tile3 = layer->tileAt(ccp(2,62));
|
|
tile0->setAnchorPoint( ccp(0.5f, 0.5f) );
|
|
tile1->setAnchorPoint( ccp(0.5f, 0.5f) );
|
|
tile2->setAnchorPoint( ccp(0.5f, 0.5f) );
|
|
tile3->setAnchorPoint( ccp(0.5f, 0.5f) );
|
|
|
|
CCIntervalAction* move = CCMoveBy::actionWithDuration(0.5f, ccp(0,160));
|
|
CCIntervalAction* rotate = CCRotateBy::actionWithDuration(2, 360);
|
|
CCIntervalAction* scale = CCScaleBy::actionWithDuration(2, 5);
|
|
CCIntervalAction* opacity = CCFadeOut::actionWithDuration(2);
|
|
CCIntervalAction* fadein = CCFadeIn::actionWithDuration(2);
|
|
CCIntervalAction* scaleback = CCScaleTo::actionWithDuration(1, 1);
|
|
CCInstantAction* finish = CCCallFuncN::actionWithTarget(this, callfuncN_selector(TMXReadWriteTest::removeSprite));
|
|
CCFiniteTimeAction* seq0 = CCSequence::actions(move, rotate, scale, opacity, fadein, scaleback, finish, NULL);
|
|
CCIntervalAction* seq1 = (CCIntervalAction*)(seq0->copy()->autorelease());
|
|
CCIntervalAction* seq2 = (CCIntervalAction*)(seq0->copy()->autorelease());
|
|
CCIntervalAction* seq3 = (CCIntervalAction*)(seq0->copy()->autorelease());
|
|
|
|
tile0->runAction(seq0);
|
|
tile1->runAction(seq1);
|
|
tile2->runAction(seq2);
|
|
tile3->runAction(seq3);
|
|
|
|
|
|
m_gid = layer->tileGIDAt(ccp(0,63));
|
|
////----UXLOG("Tile GID at:(0,63) is: %d", m_gid);
|
|
|
|
schedule(schedule_selector(TMXReadWriteTest::updateCol), 2.0f);
|
|
schedule(schedule_selector(TMXReadWriteTest::repaintWithGID), 2.0f);
|
|
schedule(schedule_selector(TMXReadWriteTest::removeTiles), 1.0f);
|
|
|
|
////----UXLOG("++++atlas quantity: %d", layer->textureAtlas()->getTotalQuads());
|
|
////----UXLOG("++++children: %d", layer->getChildren()->count() );
|
|
|
|
m_gid2 = 0;
|
|
}
|
|
|
|
void TMXReadWriteTest::removeSprite(CCNode* sender)
|
|
{
|
|
////----UXLOG("removing tile: %x", sender);
|
|
CCNode* p = ((CCNode*)sender)->getParent();
|
|
|
|
if (p)
|
|
{
|
|
p->removeChild((CCNode*)sender, true);
|
|
}
|
|
|
|
//////----UXLOG("atlas quantity: %d", p->textureAtlas()->totalQuads());
|
|
}
|
|
|
|
void TMXReadWriteTest::updateCol(ccTime dt)
|
|
{
|
|
CCTMXTiledMap* map = (CCTMXTiledMap*)getChildByTag(kTagTileMap);
|
|
CCTMXLayer *layer = (CCTMXLayer*)map->getChildByTag(0);
|
|
|
|
////----UXLOG("++++atlas quantity: %d", layer->textureAtlas()->getTotalQuads());
|
|
////----UXLOG("++++children: %d", layer->getChildren()->count() );
|
|
|
|
|
|
CGSize s = layer->getLayerSize();
|
|
|
|
for( int y=0; y< s.height; y++ )
|
|
{
|
|
layer->setTileGID(m_gid2, ccp((float)3, (float)y));
|
|
}
|
|
|
|
m_gid2 = (m_gid2 + 1) % 80;
|
|
}
|
|
|
|
void TMXReadWriteTest::repaintWithGID(ccTime dt)
|
|
{
|
|
// [self unschedule:_cmd);
|
|
|
|
CCTMXTiledMap* map = (CCTMXTiledMap*)getChildByTag(kTagTileMap);
|
|
CCTMXLayer *layer = (CCTMXLayer*)map->getChildByTag(0);
|
|
|
|
CGSize s = layer->getLayerSize();
|
|
for( int x=0; x<s.width;x++)
|
|
{
|
|
int y = (int)s.height-1;
|
|
unsigned int tmpgid = layer->tileGIDAt( ccp((float)x, (float)y) );
|
|
layer->setTileGID(tmpgid+1, ccp((float)x, (float)y));
|
|
}
|
|
}
|
|
|
|
void TMXReadWriteTest::removeTiles(ccTime dt)
|
|
{
|
|
unschedule(schedule_selector(TMXReadWriteTest::removeTiles));
|
|
|
|
CCTMXTiledMap* map = (CCTMXTiledMap*)getChildByTag(kTagTileMap);
|
|
CCTMXLayer *layer = (CCTMXLayer*)map->getChildByTag(0);
|
|
CGSize s = layer->getLayerSize();
|
|
|
|
for( int y=0; y< s.height; y++ )
|
|
{
|
|
layer->removeTileAt( ccp(5.0, (float)y) );
|
|
}
|
|
}
|
|
|
|
|
|
|
|
std::string TMXReadWriteTest::title()
|
|
{
|
|
return "TMX Read/Write test";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXHexTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXHexTest::TMXHexTest()
|
|
{
|
|
CCColorLayer* color = CCColorLayer::layerWithColor( ccc4(64,64,64,255) );
|
|
addChild(color, -1);
|
|
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/hexa-test.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
}
|
|
|
|
std::string TMXHexTest::title()
|
|
{
|
|
return "TMX Hex tes";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXIsoTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXIsoTest::TMXIsoTest()
|
|
{
|
|
CCColorLayer* color = CCColorLayer::layerWithColor( ccc4(64,64,64,255) );
|
|
addChild(color, -1);
|
|
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
// move map to the center of the screen
|
|
CGSize ms = map->getMapSize();
|
|
CGSize ts = map->getTileSize();
|
|
map->runAction( CCMoveTo::actionWithDuration(1.0f, ccp( -ms.width * ts.width/2, -ms.height * ts.height/2 )) );
|
|
}
|
|
|
|
std::string TMXIsoTest::title()
|
|
{
|
|
return "TMX Isometric test 0";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXIsoTest1
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXIsoTest1::TMXIsoTest1()
|
|
{
|
|
CCColorLayer* color = CCColorLayer::layerWithColor( ccc4(64,64,64,255) );
|
|
addChild(color, -1);
|
|
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test1.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
map->setAnchorPoint(ccp(0.5f, 0.5f));
|
|
}
|
|
|
|
std::string TMXIsoTest1::title()
|
|
{
|
|
return "TMX Isometric test + anchorPoint";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXIsoTest2
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXIsoTest2::TMXIsoTest2()
|
|
{
|
|
CCColorLayer* color = CCColorLayer::layerWithColor( ccc4(64,64,64,255) );
|
|
addChild(color, -1);
|
|
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test2.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
// move map to the center of the screen
|
|
CGSize ms = map->getMapSize();
|
|
CGSize ts = map->getTileSize();
|
|
map->runAction( CCMoveTo::actionWithDuration(1.0f, ccp( -ms.width * ts.width/2, -ms.height * ts.height/2 ) ));
|
|
}
|
|
|
|
std::string TMXIsoTest2::title()
|
|
{
|
|
return "TMX Isometric test 2";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXUncompressedTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXUncompressedTest::TMXUncompressedTest()
|
|
{
|
|
CCColorLayer* color = CCColorLayer::layerWithColor( ccc4(64,64,64,255) );
|
|
addChild(color, -1);
|
|
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test2-uncompressed.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
// move map to the center of the screen
|
|
CGSize ms = map->getMapSize();
|
|
CGSize ts = map->getTileSize();
|
|
map->runAction(CCMoveTo::actionWithDuration(1.0f, ccp( -ms.width * ts.width/2, -ms.height * ts.height/2 ) ));
|
|
|
|
// testing release map
|
|
NSMutableArray<CCNode*> * pChildrenArray = map->getChildren();
|
|
CCTMXLayer* layer;
|
|
NSMutableArray<CCNode*>::NSMutableArrayIterator it;
|
|
for( it = pChildrenArray->begin(); it != pChildrenArray->end(); it++)
|
|
{
|
|
layer= (CCTMXLayer*)(*it);
|
|
|
|
if(!layer)
|
|
break;
|
|
|
|
layer->releaseMap();
|
|
}
|
|
|
|
}
|
|
|
|
std::string TMXUncompressedTest::title()
|
|
{
|
|
return "TMX Uncompressed test";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXTilesetTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXTilesetTest::TMXTilesetTest()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test5.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
CCTMXLayer* layer;
|
|
layer = map->layerNamed("Layer 0");
|
|
layer->getTexture()->setAntiAliasTexParameters();
|
|
|
|
layer = map->layerNamed("Layer 1");
|
|
layer->getTexture()->setAntiAliasTexParameters();
|
|
|
|
layer = map->layerNamed("Layer 2");
|
|
layer->getTexture()->setAntiAliasTexParameters();
|
|
}
|
|
|
|
std::string TMXTilesetTest::title()
|
|
{
|
|
return "TMX Tileset test";
|
|
}
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoObjectsTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoObjectsTest::TMXOrthoObjectsTest()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/ortho-objects.tmx");
|
|
addChild(map, -1, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
////----UXLOG("----> Iterating over all the group objets");
|
|
CCTMXObjectGroup* group = map->objectGroupNamed("Object Group 1");
|
|
NSArray<CCXStringToStringDictionary*> * objects = group->getObjects();
|
|
|
|
CCXStringToStringDictionary* dict;
|
|
NSArray<CCXStringToStringDictionary*>::NSMutableArrayIterator it;
|
|
for( it = objects->begin(); it != objects->end(); it++)
|
|
{
|
|
dict = (*it);//dynamic_cast<CCXStringToStringDictionary*>(*it);
|
|
|
|
if(!dict)
|
|
break;
|
|
|
|
////----UXLOG("object: %x", dict);
|
|
}
|
|
|
|
////----UXLOG("----> Fetching 1 object by name");
|
|
CCXStringToStringDictionary* platform = group->objectNamed("platform");
|
|
////----UXLOG("platform: %x", platform);
|
|
}
|
|
|
|
void TMXOrthoObjectsTest::draw()
|
|
{
|
|
CCTMXTiledMap* map = (CCTMXTiledMap*) getChildByTag(kTagTileMap);
|
|
CCTMXObjectGroup* group = map->objectGroupNamed("Object Group 1");
|
|
|
|
NSArray<CCXStringToStringDictionary*> * objects = group->getObjects();
|
|
CCXStringToStringDictionary* dict;
|
|
NSArray<CCXStringToStringDictionary*>::NSMutableArrayIterator it;
|
|
|
|
for( it = objects->begin(); it != objects->end(); it++)
|
|
{
|
|
dict = (*it);//dynamic_cast<CCXStringToStringDictionary*>(*it);
|
|
|
|
if(!dict)
|
|
break;
|
|
std::string key = "x";
|
|
int x = dict->objectForKey(key)->toInt();
|
|
key = "y";
|
|
int y = dict->objectForKey(key)->toInt();//dynamic_cast<NSNumber*>(dict->objectForKey("y"))->getNumber();
|
|
key = "width";
|
|
int width = dict->objectForKey(key)->toInt();//dynamic_cast<NSNumber*>(dict->objectForKey("width"))->getNumber();
|
|
key = "height";
|
|
int height = dict->objectForKey(key)->toInt();//dynamic_cast<NSNumber*>(dict->objectForKey("height"))->getNumber();
|
|
|
|
glLineWidth(3);
|
|
|
|
ccDrawLine( ccp((float)x, (float)y), ccp((float)(x+width), (float)y) );
|
|
ccDrawLine( ccp((float)(x+width), (float)y), ccp((float)(x+width), (float)(y+height)) );
|
|
ccDrawLine( ccp((float)(x+width), (float)(y+height)), ccp((float)x, (float)(y+height)) );
|
|
ccDrawLine( ccp((float)x, (float)(y+height)), ccp((float)x, (float)y) );
|
|
|
|
glLineWidth(1);
|
|
}
|
|
}
|
|
|
|
std::string TMXOrthoObjectsTest::title()
|
|
{
|
|
return "TMX Ortho object test";
|
|
}
|
|
|
|
std::string TMXOrthoObjectsTest::subtitle()
|
|
{
|
|
return "You should see a white box around the 3 platforms";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXIsoObjectsTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
|
|
TMXIsoObjectsTest::TMXIsoObjectsTest()
|
|
{
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test-objectgroup.tmx");
|
|
addChild(map, -1, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
CCTMXObjectGroup* group = map->objectGroupNamed("Object Group 1");
|
|
|
|
//UxMutableArray* objects = group->objects();
|
|
NSArray<CCXStringToStringDictionary*> * objects = group->getObjects();
|
|
//UxMutableDictionary<std::string>* dict;
|
|
CCXStringToStringDictionary* dict;
|
|
//NSMutableArray<NSObject*>::NSMutableArrayIterator it;
|
|
NSArray<CCXStringToStringDictionary*>::NSMutableArrayIterator it;
|
|
|
|
for( it = objects->begin(); it != objects->end(); it++)
|
|
{
|
|
dict = (*it);
|
|
|
|
if(!dict)
|
|
break;
|
|
|
|
////----UXLOG("object: %x", dict);
|
|
}
|
|
}
|
|
|
|
void TMXIsoObjectsTest::draw()
|
|
{
|
|
CCTMXTiledMap *map = (CCTMXTiledMap*) getChildByTag(kTagTileMap);
|
|
CCTMXObjectGroup *group = map->objectGroupNamed("Object Group 1");
|
|
|
|
NSArray<CCXStringToStringDictionary*> * objects = group->getObjects();
|
|
CCXStringToStringDictionary* dict;
|
|
NSArray<CCXStringToStringDictionary*>::NSMutableArrayIterator it;
|
|
|
|
for( it = objects->begin(); it != objects->end(); it++)
|
|
{
|
|
dict = (*it);//dynamic_cast<CCXStringToStringDictionary*>(*it);
|
|
|
|
if(!dict)
|
|
break;
|
|
std::string key = "x";
|
|
int x = dict->objectForKey(key)->toInt();//dynamic_cast<NSNumber*>(dict->objectForKey("x"))->getNumber();
|
|
key = "y";
|
|
int y = dict->objectForKey(key)->toInt();//dynamic_cast<NSNumber*>(dict->objectForKey("y"))->getNumber();
|
|
key = "width";
|
|
int width = dict->objectForKey(key)->toInt();//dynamic_cast<NSNumber*>(dict->objectForKey("width"))->getNumber();
|
|
key = "height";
|
|
int height = dict->objectForKey(key)->toInt();//dynamic_cast<NSNumber*>(dict->objectForKey("height"))->getNumber();
|
|
|
|
glLineWidth(3);
|
|
|
|
ccDrawLine( ccp(x,y), ccp(x+width,y) );
|
|
ccDrawLine( ccp(x+width,y), ccp(x+width,y+height) );
|
|
ccDrawLine( ccp(x+width,y+height), ccp(x,y+height) );
|
|
ccDrawLine( ccp(x,y+height), ccp(x,y) );
|
|
|
|
glLineWidth(1);
|
|
}
|
|
}
|
|
|
|
std::string TMXIsoObjectsTest::title()
|
|
{
|
|
return "TMX Iso object test";
|
|
}
|
|
|
|
std::string TMXIsoObjectsTest::subtitle()
|
|
{
|
|
return "You need to parse them manually. See bug #810";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXResizeTest
|
|
//
|
|
//------------------------------------------------------------------
|
|
|
|
TMXResizeTest::TMXResizeTest()
|
|
{
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test5.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
CCTMXLayer* layer;
|
|
layer = map->layerNamed("Layer 0");
|
|
|
|
CGSize ls = layer->getLayerSize();
|
|
for (UINT y = 0; y < ls.height; y++)
|
|
{
|
|
for (UINT x = 0; x < ls.width; x++)
|
|
{
|
|
layer->setTileGID(1, ccp( x, y ) );
|
|
}
|
|
}
|
|
}
|
|
|
|
std::string TMXResizeTest::title()
|
|
{
|
|
return "TMX resize test";
|
|
}
|
|
|
|
std::string TMXResizeTest::subtitle()
|
|
{
|
|
return "Should not crash. Testing issue #740";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXIsoZorder
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXIsoZorder::TMXIsoZorder()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test-zorder.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
map->setPosition(ccp(-700,-50));
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
m_tamara = CCSprite::spriteWithFile(s_pPathSister1);
|
|
map->addChild(m_tamara, map->getChildren()->count() );
|
|
m_tamara->retain();
|
|
int mapWidth = map->getMapSize().width * map->getTileSize().width;
|
|
m_tamara->setPosition(ccp( mapWidth/2,0));
|
|
m_tamara->setAnchorPoint(ccp(0.5f,0));
|
|
|
|
|
|
CCIntervalAction* move = CCMoveBy::actionWithDuration(10, ccp(300,250));
|
|
CCIntervalAction* back = move->reverse();
|
|
CCFiniteTimeAction* seq = CCSequence::actions(move, back,NULL);
|
|
m_tamara->runAction( CCRepeatForever::actionWithAction((CCIntervalAction*) seq) );
|
|
|
|
schedule( schedule_selector(TMXIsoZorder::repositionSprite) );
|
|
}
|
|
|
|
TMXIsoZorder::~TMXIsoZorder()
|
|
{
|
|
m_tamara->release();
|
|
}
|
|
|
|
void TMXIsoZorder::onExit()
|
|
{
|
|
unschedule(schedule_selector(TMXIsoZorder::repositionSprite));
|
|
TileDemo::onExit();
|
|
}
|
|
|
|
void TMXIsoZorder::repositionSprite(ccTime dt)
|
|
{
|
|
CGPoint p = m_tamara->getPosition();
|
|
CCNode *map = getChildByTag(kTagTileMap);
|
|
|
|
// there are only 4 layers. (grass and 3 trees layers)
|
|
// if tamara < 48, z=4
|
|
// if tamara < 96, z=3
|
|
// if tamara < 144,z=2
|
|
|
|
int newZ = 4 - (p.y / 48);
|
|
newZ = max(newZ,0);
|
|
|
|
map->reorderChild(m_tamara, newZ);
|
|
}
|
|
|
|
std::string TMXIsoZorder::title()
|
|
{
|
|
return "TMX Iso Zorder";
|
|
}
|
|
|
|
std::string TMXIsoZorder::subtitle()
|
|
{
|
|
return "Sprite should hide behind the trees";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoZorder
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoZorder::TMXOrthoZorder()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test-zorder.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
m_tamara = CCSprite::spriteWithFile(s_pPathSister1);
|
|
map->addChild(m_tamara, map->getChildren()->count());
|
|
m_tamara->retain();
|
|
m_tamara->setAnchorPoint(ccp(0.5f,0));
|
|
|
|
|
|
CCIntervalAction* move = CCMoveBy::actionWithDuration(10, ccp(400,450));
|
|
CCIntervalAction* back = move->reverse();
|
|
CCFiniteTimeAction* seq = CCSequence::actions(move, back,NULL);
|
|
m_tamara->runAction( CCRepeatForever::actionWithAction((CCIntervalAction*)seq));
|
|
|
|
schedule( schedule_selector(TMXOrthoZorder::repositionSprite));
|
|
}
|
|
|
|
TMXOrthoZorder::~TMXOrthoZorder()
|
|
{
|
|
m_tamara->release();
|
|
}
|
|
|
|
void TMXOrthoZorder::repositionSprite(ccTime dt)
|
|
{
|
|
CGPoint p = m_tamara->getPosition();
|
|
CCNode* map = getChildByTag(kTagTileMap);
|
|
|
|
// there are only 4 layers. (grass and 3 trees layers)
|
|
// if tamara < 81, z=4
|
|
// if tamara < 162, z=3
|
|
// if tamara < 243,z=2
|
|
|
|
// -10: customization for this particular sample
|
|
int newZ = 4 - ( (p.y-10) / 81);
|
|
newZ = max(newZ,0);
|
|
|
|
map->reorderChild(m_tamara, newZ);
|
|
}
|
|
|
|
std::string TMXOrthoZorder::title()
|
|
{
|
|
return "TMX Ortho Zorder";
|
|
}
|
|
|
|
std::string TMXOrthoZorder::subtitle()
|
|
{
|
|
return "Sprite should hide behind the trees";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXIsoVertexZ
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXIsoVertexZ::TMXIsoVertexZ()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test-vertexz.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
map->setPosition( ccp(-700,-50) );
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
// because I'm lazy, I'm reusing a tile as an sprite, but since this method uses vertexZ, you
|
|
// can use any CCSprite and it will work OK.
|
|
CCTMXLayer* layer = map->layerNamed("Trees");
|
|
m_tamara = layer->tileAt( ccp(29,29) );
|
|
m_tamara->retain();
|
|
|
|
CCIntervalAction* move = CCMoveBy::actionWithDuration(10, ccp(300,250));
|
|
CCIntervalAction* back = move->reverse();
|
|
CCFiniteTimeAction* seq = CCSequence::actions(move, back,NULL);
|
|
m_tamara->runAction( CCRepeatForever::actionWithAction((CCIntervalAction*) seq) );
|
|
|
|
schedule( schedule_selector(TMXIsoVertexZ::repositionSprite));
|
|
|
|
}
|
|
|
|
TMXIsoVertexZ::~TMXIsoVertexZ()
|
|
{
|
|
m_tamara->release();
|
|
}
|
|
|
|
void TMXIsoVertexZ::repositionSprite(ccTime dt)
|
|
{
|
|
// tile height is 64x32
|
|
// map size: 30x30
|
|
CGPoint p = m_tamara->getPosition();
|
|
m_tamara->setVertexZ( -( (p.y+32) /16) );
|
|
}
|
|
|
|
void TMXIsoVertexZ::onEnter()
|
|
{
|
|
TileDemo::onEnter();
|
|
|
|
// TIP: 2d projection should be used
|
|
CCDirector::getSharedDirector()->setProjection(kCCDirectorProjection2D);
|
|
}
|
|
|
|
void TMXIsoVertexZ::onExit()
|
|
{
|
|
// At exit use any other projection.
|
|
// CCDirector::getSharedDirector()->setProjection:kCCDirectorProjection3D);
|
|
TileDemo::onExit();
|
|
}
|
|
|
|
std::string TMXIsoVertexZ::title()
|
|
{
|
|
return "TMX Iso VertexZ";
|
|
}
|
|
|
|
std::string TMXIsoVertexZ::subtitle()
|
|
{
|
|
return "Sprite should hide behind the trees";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoVertexZ
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoVertexZ::TMXOrthoVertexZ()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test-vertexz.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
|
|
// because I'm lazy, I'm reusing a tile as an sprite, but since this method uses vertexZ, you
|
|
// can use any CCSprite and it will work OK.
|
|
CCTMXLayer* layer = map->layerNamed("trees");
|
|
m_tamara = layer->tileAt(ccp(0,11));
|
|
m_tamara->retain();
|
|
|
|
CCIntervalAction* move = CCMoveBy::actionWithDuration(10, ccp(400,450));
|
|
CCIntervalAction* back = move->reverse();
|
|
CCFiniteTimeAction* seq = CCSequence::actions(move, back,NULL);
|
|
m_tamara->runAction( CCRepeatForever::actionWithAction((CCIntervalAction*)seq));
|
|
|
|
schedule(schedule_selector(TMXOrthoVertexZ::repositionSprite));
|
|
|
|
}
|
|
|
|
TMXOrthoVertexZ::~TMXOrthoVertexZ()
|
|
{
|
|
m_tamara->release();
|
|
}
|
|
|
|
void TMXOrthoVertexZ::repositionSprite(ccTime dt)
|
|
{
|
|
// tile height is 101x81
|
|
// map size: 12x12
|
|
CGPoint p = m_tamara->getPosition();
|
|
m_tamara->setVertexZ( -( (p.y+81) /81) );
|
|
}
|
|
|
|
void TMXOrthoVertexZ::onEnter()
|
|
{
|
|
TileDemo::onEnter();
|
|
|
|
// TIP: 2d projection should be used
|
|
CCDirector::getSharedDirector()->setProjection(kCCDirectorProjection2D);
|
|
}
|
|
|
|
void TMXOrthoVertexZ::onExit()
|
|
{
|
|
// At exit use any other projection.
|
|
// CCDirector::getSharedDirector()->setProjection:kCCDirectorProjection3D);
|
|
TileDemo::onExit();
|
|
}
|
|
|
|
std::string TMXOrthoVertexZ::title()
|
|
{
|
|
return "TMX Ortho vertexZ";
|
|
}
|
|
|
|
std::string TMXOrthoVertexZ::subtitle()
|
|
{
|
|
return "Sprite should hide behind the trees";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXIsoMoveLayer
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXIsoMoveLayer::TMXIsoMoveLayer()
|
|
{
|
|
CCTMXTiledMap* map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/iso-test-movelayer.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
map->setPosition(ccp(-700,-50));
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
}
|
|
|
|
std::string TMXIsoMoveLayer::title()
|
|
{
|
|
return "TMX Iso Move Layer";
|
|
}
|
|
|
|
std::string TMXIsoMoveLayer::subtitle()
|
|
{
|
|
return "Trees should be horizontally aligned";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TMXOrthoMoveLayer
|
|
//
|
|
//------------------------------------------------------------------
|
|
TMXOrthoMoveLayer::TMXOrthoMoveLayer()
|
|
{
|
|
CCTMXTiledMap *map = CCTMXTiledMap::tiledMapWithTMXFile("TileMaps/orthogonal-test-movelayer.tmx");
|
|
addChild(map, 0, kTagTileMap);
|
|
|
|
CGSize s = map->getContentSize();
|
|
////----UXLOG("ContentSize: %f, %f", s.width,s.height);
|
|
}
|
|
|
|
std::string TMXOrthoMoveLayer::title()
|
|
{
|
|
return "TMX Ortho Move Layer";
|
|
}
|
|
|
|
std::string TMXOrthoMoveLayer::subtitle()
|
|
{
|
|
return "Trees should be horizontally aligned";
|
|
}
|
|
|
|
|
|
//------------------------------------------------------------------
|
|
//
|
|
// TileDemo
|
|
//
|
|
//------------------------------------------------------------------
|
|
|
|
enum
|
|
{
|
|
IDC_NEXT = 100,
|
|
IDC_BACK,
|
|
IDC_RESTART
|
|
};
|
|
|
|
static int sceneIdx = -1;
|
|
|
|
#define MAX_LAYER 22
|
|
|
|
CCLayer* createTileMapLayer(int nIndex)
|
|
{
|
|
switch(nIndex)
|
|
{
|
|
case 0: return new TMXIsoZorder();
|
|
case 1: return new TMXOrthoZorder();
|
|
case 2: return new TMXIsoVertexZ();
|
|
case 3: return new TMXOrthoVertexZ();
|
|
case 4: return new TMXOrthoTest();
|
|
case 5: return new TMXOrthoTest2();
|
|
case 6: return new TMXOrthoTest3();
|
|
case 7: return new TMXOrthoTest4();
|
|
case 8: return new TMXIsoTest();
|
|
case 9: return new TMXIsoTest1();
|
|
case 10: return new TMXIsoTest2();
|
|
case 11: return new TMXUncompressedTest ();
|
|
case 12: return new TMXHexTest();
|
|
case 13: return new TMXReadWriteTest();
|
|
case 14: return new TMXTilesetTest();
|
|
case 15: return new TMXOrthoObjectsTest();
|
|
case 16: return new TMXIsoObjectsTest();
|
|
case 17: return new TMXResizeTest();
|
|
case 18: return new TMXIsoMoveLayer();
|
|
case 19: return new TMXOrthoMoveLayer();
|
|
case 20: return new TileMapTest();
|
|
case 21: return new TileMapEditTest();
|
|
}
|
|
|
|
return NULL;
|
|
}
|
|
|
|
CCLayer* nextTileMapAction()
|
|
{
|
|
sceneIdx++;
|
|
sceneIdx = sceneIdx % MAX_LAYER;
|
|
|
|
CCLayer* pLayer = createTileMapLayer(sceneIdx);
|
|
pLayer->autorelease();
|
|
|
|
return pLayer;
|
|
}
|
|
|
|
CCLayer* backTileMapAction()
|
|
{
|
|
sceneIdx--;
|
|
int total = MAX_LAYER;
|
|
if( sceneIdx < 0 )
|
|
sceneIdx += total;
|
|
|
|
CCLayer* pLayer = createTileMapLayer(sceneIdx);
|
|
pLayer->autorelease();
|
|
|
|
return pLayer;
|
|
}
|
|
|
|
CCLayer* restartTileMapAction()
|
|
{
|
|
CCLayer* pLayer = createTileMapLayer(sceneIdx);
|
|
pLayer->autorelease();
|
|
|
|
return pLayer;
|
|
}
|
|
|
|
|
|
TileDemo::TileDemo(void)
|
|
{
|
|
setIsTouchEnabled( true );
|
|
|
|
CGSize s = CCDirector::getSharedDirector()->getWinSize();
|
|
|
|
m_label = CCLabel::labelWithString("", "Arial", 28);
|
|
addChild(m_label, 1);
|
|
m_label->setPosition( ccp(s.width/2, s.height-50) );
|
|
m_label->retain();
|
|
|
|
std::string strSubtitle = subtitle();
|
|
if( ! strSubtitle.empty() )
|
|
{
|
|
CCLabel* l = CCLabel::labelWithString(strSubtitle.c_str(), "Thonburi", 16);
|
|
addChild(l, 1);
|
|
l->setPosition( ccp(s.width/2, s.height-80) );
|
|
|
|
m_subtitle = l;
|
|
m_subtitle->retain();
|
|
}
|
|
|
|
CCMenuItemImage *item1 = CCMenuItemImage::itemFromNormalImage(s_pPathB1, s_pPathB2, this, menu_selector(TileDemo::backCallback) );
|
|
CCMenuItemImage *item2 = CCMenuItemImage::itemFromNormalImage(s_pPathR1, s_pPathR2, this, menu_selector(TileDemo::restartCallback) );
|
|
CCMenuItemImage *item3 = CCMenuItemImage::itemFromNormalImage(s_pPathF1, s_pPathF2, this, menu_selector(TileDemo::nextCallback) );
|
|
|
|
CCMenu *menu = CCMenu::menuWithItems(item1, item2, item3, NULL);
|
|
|
|
menu->setPosition( CGPointZero );
|
|
item1->setPosition( ccp( s.width/2 - 100,30) );
|
|
item2->setPosition( ccp( s.width/2, 30) );
|
|
item3->setPosition( ccp( s.width/2 + 100,30) );
|
|
|
|
addChild(menu, 1);
|
|
}
|
|
|
|
TileDemo::~TileDemo(void)
|
|
{
|
|
m_label->release();
|
|
m_subtitle->release();
|
|
}
|
|
|
|
std::string TileDemo::title()
|
|
{
|
|
return "No title";
|
|
}
|
|
|
|
std::string TileDemo::subtitle()
|
|
{
|
|
return "drag the screen";
|
|
}
|
|
|
|
void TileDemo::onEnter()
|
|
{
|
|
CCLayer::onEnter();
|
|
|
|
m_label->setString(title().c_str());
|
|
m_subtitle->setString(subtitle().c_str());
|
|
}
|
|
|
|
void TileDemo::restartCallback(NSObject* pSender)
|
|
{
|
|
CCScene* s = new TileMapTestScene();
|
|
s->addChild(restartTileMapAction());
|
|
|
|
CCDirector::getSharedDirector()->replaceScene(s);
|
|
s->release();
|
|
}
|
|
|
|
void TileDemo::nextCallback(NSObject* pSender)
|
|
{
|
|
CCScene* s = new TileMapTestScene();
|
|
s->addChild( nextTileMapAction() );
|
|
CCDirector::getSharedDirector()->replaceScene(s);
|
|
s->release();
|
|
}
|
|
|
|
void TileDemo::backCallback(NSObject* pSender)
|
|
{
|
|
CCScene* s = new TileMapTestScene();
|
|
s->addChild( backTileMapAction() );
|
|
CCDirector::getSharedDirector()->replaceScene(s);
|
|
s->release();
|
|
}
|
|
|
|
void TileDemo::registerWithTouchDispatcher()
|
|
{
|
|
CCTouchDispatcher::getSharedDispatcher()->addTargetedDelegate(this, 0, true);
|
|
}
|
|
|
|
bool TileDemo::ccTouchBegan(CCTouch* touch, UIEvent* event)
|
|
{
|
|
return true;
|
|
}
|
|
|
|
void TileDemo::ccTouchEnded(CCTouch* touch, UIEvent* event)
|
|
{
|
|
}
|
|
|
|
void TileDemo::ccTouchCancelled(CCTouch* touch, UIEvent* event)
|
|
{
|
|
}
|
|
|
|
void TileDemo::ccTouchMoved(CCTouch* touch, UIEvent* event)
|
|
{
|
|
CGPoint touchLocation = touch->locationInView( touch->view() );
|
|
CGPoint prevLocation = touch->previousLocationInView( touch->view() );
|
|
|
|
touchLocation = CCDirector::getSharedDirector()->convertToGL( touchLocation );
|
|
prevLocation = CCDirector::getSharedDirector()->convertToGL( prevLocation );
|
|
|
|
CGPoint diff = ccpSub(touchLocation, prevLocation);
|
|
|
|
CCNode *node = getChildByTag(kTagTileMap);
|
|
CGPoint currentPos = node->getPosition();
|
|
node->setPosition( ccpAdd(currentPos, diff) );
|
|
}
|
|
|
|
void TileMapTestScene::runThisTest()
|
|
{
|
|
CCLayer* pLayer = nextTileMapAction();
|
|
addChild(pLayer);
|
|
|
|
CCDirector::getSharedDirector()->replaceScene(this);
|
|
}
|