The autoroute stuff (completely untested)

svn-id: r7154
This commit is contained in:
Robert Göffringmann 2003-04-27 15:02:52 +00:00
parent d9c8751168
commit c27e22d048
4 changed files with 396 additions and 0 deletions

View file

@ -235,3 +235,8 @@ void SkyGrid::removeGrid(uint32 x, uint32 y, uint32 width, Compact *cpt) {
if (getGridValues(x, y, width, cpt, &resBitPos, &resWidth))
removeObjectFromWalk(resBitPos, resWidth);
}
uint8 *SkyGrid::giveGrid(uint32 pScreen)
{
return _gameGrids + GRID_SIZE * _gridConvertTable[pScreen];
}