i am trying to apply same action on same sprite's array. but, they are overlapping each other. i tried using scheduler. it worked for different sprites. but, got one sprite stuck to one corner and other to another. (array of 2 for demo).
EDIT: i removed that scheduler code back, to keep it simple
i am trying to jump them from left to right in a random pattern.
#include "GameScene.h"
#include "HomeScene.h"
USING_NS_CC;
CCScene* GameScene::scene()
{
// 'scene' is an autorelease object
CCScene *scene = CCScene::node();
// 'layer' is an autorelease object
GameScene *layer = GameScene::node();
// add layer as a child to scene
scene->addChild(layer);
// return the scene
return scene;
}
// on "init" you need to initialize your instance
bool GameScene::init()
{
//////////////////////////////
// 1. super init first
if ( !CCLayerColor::initWithColor(ccc4(0,0,0,255) ))
{
return false;
}
//////////////////////////////
// 2. add your codes below...
CCSize WinSize= CCDirector::sharedDirector()->getWinSize();
// background
CCSprite * bg=CCSprite::spriteWithFile("bg.png");
bg->setPosition(CCPointZero);
bg->setAnchorPoint(CCPointZero);
bg->setScaleX(WinSize.width/460);
bg->setScaleY(WinSize.height/325);
//bg->runAction(CCTintTo::actionWithDuration(1,ccGRAY.r,ccGRAY.g,ccGRAY.b));
bg->setColor(ccGRAY);
this->addChild(bg);
//insert roller at a random place
// roll=CCSprite::spriteWithFile("ball.png");
minY = WinSize.height/(4.5);
maxY = (WinSize.height);
rangeY = maxY - minY;
CCSprite * roll=CCSprite::spriteWithFile("ball.png");
srand ( time(NULL) );
schedule(schedule_selector(GameScene::CallSrand));
actualY = ( rand() % rangeY ) + minY;
CCLOG("the actualY is oooooooooooooooooooooooooooooooooooooooooooooooooooooooo %d",actualY);
sprite declaration here
for (int i = 0; i < 2; i++)
{
CCSprite * roll=CCSprite::spriteWithFile("ball.png");
this->addChild(roll,5,i);
roll->setPosition(ccp(20,actualY));
CCDelayTime::actionWithDuration(2);
}
//action function called
JJump();
}
void GameScene::CallSrand()
{
srand(time (NULL));
rand();
}
void GameScene::CallSrand(ccTime delta)
{
srand(time (NULL));
rand();
}
void GameScene::RandomLogger()
{
CCSize WinSize=CCDirector::sharedDirector()->getWinSize();
WinSize.width=CCDirector::sharedDirector()->getWinSize().width;
CCLOG("RandomLogger %d", rand());
int runtimeY =(rand() % rangeY ) + minY;
actualY=runtimeY;
CCLOG("runtimeY %d", runtimeY);
CCLOG("WinSize.width %f", WinSize.width);
}
//action one to move sprite from left to right and then call next function
void GameScene::JJump()
{
CCSize WinSize=CCDirector::sharedDirector()->getWinSize();
for (int i = 0; i < 2; i++)
{
getChildByTag(i)->runAction( CCSequence::actions(
CCCallFunc::actionWithTarget( this,callfunc_selector(GameScene::CallSrand)),
CCCallFunc::actionWithTarget( this,callfunc_selector(GameScene::RandomLogger)),
CCJumpTo::actionWithDuration( 5,ccp( WinSize.width,actualY ),minY,4 ),
CCCallFunc::actionWithTarget( this,callfunc_selector(GameScene::HiddenMove)),
NULL) );
}
}
//second function called by previous. it gets the sprite back to left invisibly. and recall the first function to act like CCRepeatForever. (ccrepeatforever is not used because it does not let's the ball go as expected to go)
void GameScene::HiddenMove()
{
actualY=(rand() % rangeY ) + minY;
for (int i = 0; i < 2; i++)
{
getChildByTag(i)->runAction( CCSequence::actions(
CCCallFunc::actionWithTarget( this,callfunc_selector(GameScene::CallSrand)),
CCCallFunc::actionWithTarget( this,callfunc_selector(GameScene::RandomLogger)),
CCHide::action(),
CCMoveTo::actionWithDuration(0,ccp(20,actualY)),
CCShow::action(),
CCCallFunc::actionWithTarget( this,callfunc_selector(GameScene::JJump)),
NULL));
}
}