Scrolling Game Development Kit Forum
SGDK Version 2 => Help, Errors, FAQ => Topic started by: durnurd on 2010-04-23, 07:45:45 PM
-
I have a plan on my map that uses the player's TouchTiles method to interact with tiles inside the plan's area. I don't want it on the player sprite because it's specific to that area of that map, not something that applies anywhere else. I then have to get the x,y coordinates of the touched tiles within that map. To do that, at this point, I have to use:
((SpriteBase.TouchedTile)m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).x,
((SpriteBase.TouchedTile)m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).y
I could copy this out into a method, but it's not really long enough to warrant it. So, is there a reason why TouchedTiles is declared as an ArrayList instead of a List<TouchedTile>? It would get rid of the need to cast it here, and within the SpriteBase code. If I only make that change in SpriteBase, I can get the above down to this:
(m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).x,
(m_ParentLayer.m_Player.TouchedTiles[SharedTemp1]).y
It's at least a little better :)
-
I think it's because I was still using .NET 1.1 at the time that code was written or something. .NET 1.1 didn't support generics. I'll change it. Dang, I still have to fix all those other things too. Too many distractions... if you can call wedding planning a "distraction" :).
-
As long as everything gets done "in time" you'll be fine. Since SGDK2 probably has a more vague and nebulous schedule than any wedding, it's obviously not priority number one :)