|
|
@ -175,7 +175,7 @@ rect2d getMapViewport()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return mkrect_wh(1,1,view_rb,view_height+1);
|
|
|
|
return mkrect_wh(1,1,view_rb,view_height+1);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
lightingEngineViewscreen::lightingEngineViewscreen(renderer_light* target):lightingEngine(target)
|
|
|
|
lightingEngineViewscreen::lightingEngineViewscreen(renderer_light* target):lightingEngine(target),doDebug(false)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
reinit();
|
|
|
|
reinit();
|
|
|
|
defaultSettings();
|
|
|
|
defaultSettings();
|
|
|
@ -428,10 +428,10 @@ void lightingEngineViewscreen::updateWindow()
|
|
|
|
return;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//if(showOcupancy)
|
|
|
|
if(doDebug)
|
|
|
|
//std::swap(ocupancy,myRenderer->lightGrid);
|
|
|
|
std::swap(ocupancy,myRenderer->lightGrid);
|
|
|
|
//else
|
|
|
|
else
|
|
|
|
std::swap(lightMap,myRenderer->lightGrid);
|
|
|
|
std::swap(lightMap,myRenderer->lightGrid);
|
|
|
|
rect2d vp=getMapViewport();
|
|
|
|
rect2d vp=getMapViewport();
|
|
|
|
|
|
|
|
|
|
|
|
myRenderer->invalidateRect(vp.first.x,vp.first.y,vp.second.x-vp.first.x,vp.second.y-vp.first.y);
|
|
|
|
myRenderer->invalidateRect(vp.first.x,vp.first.y,vp.second.x-vp.first.x,vp.second.y-vp.first.y);
|
|
|
|