as3中的益智游戏算法

时间:2012-05-31 17:20:18

标签: algorithm actionscript-3 flash puzzle

我正在制作像http://www.puzzlegames.org/814games-Connect-2-Game-game.html这样的游戏。那么我应该在connected()函数中添加什么? fBsB是第一个和第二个按钮。 fBNsBN是这些按钮的名称。 allNull() fBsBfBNsBN为空。

function onClick(e:MouseEvent):void {
if (! another) {
    another = true;
    fB = e.target;
    fBN = e.target.name;
}
else {
    sB = e.target;
    sBN = e.target.name;
    if (fBN == sBN)
    {
        allNull();
    }
    else if (connected())
    {
        fB.removeEventListener(MouseEvent.MOUSE_DOWN, onClick);
        sB.removeEventListener(MouseEvent.MOUSE_DOWN, onClick);
        fB.alpha = 0;
        sB.alpha = 0;
        pairCount++;
        allNull();
        if (pairCount == 25)
        {
            gameOver = false;
            showScore();
            endGame();
        }
    }
    another = false;
}

}

请帮忙。我试图解决这个问题,因为15天。 提前谢谢。

0 个答案:

没有答案