正文

游戲案例:GemDrops(8)

Windows移動游戲開發(fā)實戰(zhàn) 作者:(美)Adam Dawes


 

程序清單8-7  CObjGem類的Position屬性與Size屬性重寫

/// <summary>

/// Override the XPos property to calculate our actual position on demand

/// </summary>

public override float XPos

{

get

{

// Determine the position for the gem from its position within the 

// board

return _game.BoardLeft + (_boardXPos * Width);

}

}

/// <summary>

/// Override the YPos property to calculate our actual position on demand

/// </summary>

public override float YPos

{

get

{

// Determine the position for the gem from its position within the 

// board

return _game.BoardLeft + (_boardXPos * Width);

}

}

/// <summary>

/// Return the Width by querying the gem width from the game engine.

/// This means that if the gem width changes (e.g., the screen orientation

/// is changed resulting in new graphics being loaded), we always return

/// the correct value.

/// </summary>

public override int Width

{

get

{

return _game.GemWidth;

}

}

/// <summary>

/// Return the Width by querying the gem width from the game engine.

/// </summary>

public override int Height

{

get

{

return _game.GemHeight;

}

}


上一章目錄下一章

Copyright ? 讀書網(wǎng) ranfinancial.com 2005-2020, All Rights Reserved.
鄂ICP備15019699號 鄂公網(wǎng)安備 42010302001612號