checkMapOptimized method
Implementation
bool checkMapOptimized(int x, int y, double w, double h) {
if (mapX - x < w) {
return false;
}
if (mapY - y < h) {
return false;
}
for (int i = x.toInt(); i < x.toInt() + w; i++) {
if (map[i][y + h.toInt() - 1] == 1) {
return false;
}
if (map[i][y + 1] == 1) {
return false;
}
}
return true;
}