Exemple #1
0
void EChesses::SCMoveto(CCPoint c){
	CCLog(">[EChess] SCmoveto()");

	CCPoint cur = GameManager::sharedLogicCenter()->ml->tm->m_checkPoint(ccp(m_body->GetPosition().x,m_body->GetPosition().y));

	CCLog(">Move to: [%f,%f] --> [%f,%f]", cur.x, cur.y, c.x, c.y);
	if(cur.x < 1) exit(903);
	if(cur.y < 1) exit(904);

	m_bMoving = true;
	mbMoved = true;
	tar = c;
	RefreshMovingState(c);
}
Exemple #2
0
void EChesses::SCMoveto(CCPoint c) {
    CCLOG(">Move to:%f,%f",c.x,c.y);
    m_bMoving = true;
    tar = c;
    RefreshMovingState(c);
}