fov.cpp
来自「奇趣公司比较新的qt/emd版本」· C++ 代码 · 共 1,124 行 · 第 1/3 页
CPP
1,124 行
// YES: it has already been applied in FOV::start() if(yCheck != yCenter) { // apply cell this->applyCell(map,xCheck,yCheck); } // cell blocks LOS // if previous cell didn't block LOS (prevBlocked==false) we have // hit a 'new' section of walls. a new scan will be started with an // endSlope that 'brushes' by the top of the blocking cell (see fig.) // // +---++---++---+ @ = [xCenter+0.5,yCenter+0.5] // | || || | a = old [xCheck,yCheck] // | || || | b = new [xCheck,yCheck-0.00001] // | || || | // +---++---+b---+ // +---++---+a#### // | || |##### // | || |##### // | || |##### // +---++---+##### // +---++---++---+ // | || || | // | @ || || | // | || || | // +---++---++---+ // if(this->scanCell(map,xCheck,yCheck)) { if(!prevBlocked) { this->scanNE2E(map,xCenter,yCenter,distance+1,maxRadius,startSlope,this->invSlope((double)xCenter+0.5,(double)yCenter+0.5,(double)xCheck,(double)yCheck-0.00001)); } prevBlocked=true; } // cell doesn't block LOS // if the cell is the first non-blocking cell after a section of walls // we need to calculate a new startSlope that 'brushes' by the bottom // of the blocking cells // // +---++---+##### @ = [xCenter+0.5,yCenter+0.5] // | || |##### a = old [xCheck,yCheck] // | || |##### b = new [xCheck+0.99999,yCheck] // | || |##### // +---++---+##### // +---++---+a---b // | || || | // | || || | // | || || | // +---++---++---+ // +---++---++---+ // | || || | // | @ || || | // | || || | // +---++---++---+ // else { if(prevBlocked) { startSlope=this->invSlope((double)xCenter+0.5,(double)yCenter+0.5,(double)xCheck+0.99999,(double)yCheck); } prevBlocked=false; } } // if the last cell of the scan didn't block LOS a new scan should be // started if(!prevBlocked) { this->scanNE2E(map,xCenter,yCenter,distance+1,maxRadius,startSlope,endSlope); }}/* scanSE2E scans the octant covering the area from south east to east from bottom to top the method ignores the octants starting and ending cells since they have been applied in FOV::start*/void FOV::scanSE2E(OublietteLevel *map, int xCenter, int yCenter, int distance, int maxRadius, double startSlope, double endSlope){ if(distance > maxRadius) { return; } // calculate start and end cell of the scan int yStart=(int)((double)yCenter + 0.5 + (startSlope * distance)); int yEnd=(int)((double)yCenter + 0.5 + (endSlope * distance)); int xCheck=xCenter + distance; // is starting cell the bottommost cell in the octant? // NO: call applyCell() to starting cell // YES: it has already been applied in FOV::start() if(yStart != yCenter+(1*distance)) { this->applyCell(map,xCheck,yStart); } // find out if starting cell blocks LOS bool prevBlocked=this->scanCell(map,xCheck,yStart); // scan from the cell after the starting cell (yStart-1) to end cell of // scan (yCheck>=yEnd) for(int yCheck=yStart-1; yCheck>=yEnd; yCheck--) { // is the current cell the topmost cell in the octant? // NO: call applyCell() to current cell // YES: it has already been applied in FOV::start() if(yCheck != yCenter) { // apply cell this->applyCell(map,xCheck,yCheck); } // cell blocks LOS // if previous cell didn't block LOS (prevBlocked==false) we have // hit a 'new' section of walls. a new scan will be started with an // endSlope that 'brushes' by the bottom of the blocking cell // // +---++---++---+ @ = [xCenter+0.5,yCenter+0.5] // | || || | a = old [xCheck,yCheck] // | @ || || | b = new [xCheck,yCheck+1] // | || || | // +---++---++---+ // +---++---+a#### // | || |##### // | || |##### // | || |##### // +---++---+##### // +---++---+b---+ // | || || | // | || || | // | || || | // +---++---++---+ // if(this->scanCell(map,xCheck,yCheck)) { if(!prevBlocked) { this->scanSE2E(map,xCenter,yCenter,distance+1,maxRadius,startSlope,this->invSlope((double)xCenter+0.5,(double)yCenter+0.5,(double)xCheck,(double)yCheck+1)); } prevBlocked=true; } // cell doesn't block LOS // if the cell is the first non-blocking cell after a section of walls // we need to calculate a new startSlope that 'brushes' by the top of // the blocking cells // // +---++---++---+ @ = [xCenter+0.5,yCenter+0.5] // | || || | a = old [xCheck,yCheck] // | @ || || | b = new [xCheck+0.99999,yCheck+0.99999] // | || || | // +---++---++---+ // +---++---+a---+ // | || || | // | || || | // | || || | // +---++---++---b // +---++---+##### // | || |##### // | || |##### // | || |##### // +---++---+##### // else { if(prevBlocked) { startSlope=this->invSlope((double)xCenter+0.5,(double)yCenter+0.5,(double)xCheck+0.99999,(double)yCheck+0.99999); } prevBlocked=false; } } // if the last cell of the scan didn't block LOS a new scan should be // started if(!prevBlocked) { this->scanSE2E(map,xCenter,yCenter,distance+1,maxRadius,startSlope,endSlope); }}void FOV::start(OublietteLevel *map, unsigned int x, unsigned int y, int maxRadius){ if(map == NULL) { return; } // apply starting cell this->applyCell(map,x,y); if(maxRadius > 0) { // scan and apply north // until a blocking cell is hit or // until maxRadius is reached int nL; for(nL=1; nL<=maxRadius; nL++) { this->applyCell(map,x,y-nL); if(this->scanCell(map,x,y-nL)) { break; } } // scan and apply north east // until a blocking cell is hit or // until maxRadius is reached int neL; for(neL=1; neL<=maxRadius; neL++) { this->applyCell(map,x+neL,y-neL); if(this->scanCell(map,x+neL,y-neL)) { break; } } // scan and apply east // until a blocking cell is hit or // until maxRadius is reached int eL; for(eL=1; eL<=maxRadius; eL++) { this->applyCell(map,x+eL,y); if(this->scanCell(map,x+eL,y)) { break; } } // scan and apply south east // until a blocking cell is hit or // until maxRadius is reached int seL; for(seL=1; seL<=maxRadius; seL++) { this->applyCell(map,x+seL,y+seL); if(this->scanCell(map,x+seL,y+seL)) { break; } } // scan and apply south // until a blocking cell is hit or // until maxRadius is reached int sL; for(sL=1; sL<=maxRadius; sL++) { this->applyCell(map,x,y+sL); if(this->scanCell(map,x,y+sL)) { break; } } // scan and apply south west // until a blocking cell is hit or // until maxRadius is reached int swL; for(swL=1; swL<=maxRadius; swL++) { this->applyCell(map,x-swL,y+swL); if(this->scanCell(map,x-swL,y+swL)) { break; } } // scan and apply west // until a blocking cell is hit or // until maxRadius is reached int wL; for(wL=1; wL<=maxRadius; wL++) { this->applyCell(map,x-wL,y); if(this->scanCell(map,x-wL,y)) { break; } } // scan and apply north west // until a blocking cell is hit or // until maxRadius is reached int nwL; for(nwL=1; nwL<=maxRadius; nwL++) { this->applyCell(map,x-nwL,y-nwL); if(this->scanCell(map,x-nwL,y-nwL)) { break; } } // scan the octant covering the area from north west to north // if it isn't blocked if(nL!=1 || nwL!=1) { this->scanNW2N(map,x,y,1,maxRadius,1,0); } // scan the octant covering the area from north east to north // if it isn't blocked if(nL!=1 || neL!=1) { this->scanNE2N(map,x,y,1,maxRadius,-1,0); } // scan the octant covering the area from north west to west // if it isn't blocked if(nwL!=1 || wL!=1) { this->scanNW2W(map,x,y,1,maxRadius,1,0); } // scan the octant covering the area from south west to west // if it isn't blocked if(swL!=1 || wL!=1) { this->scanSW2W(map,x,y,1,maxRadius,-1,0); } // scan the octant covering the area from south west to south // if it isn't blocked if(swL!=1 || sL!=1) { this->scanSW2S(map,x,y,1,maxRadius,-1,0); } // scan the octant covering the area from south east to south // if it isn't blocked if(seL!=1 || sL!=1) { this->scanSE2S(map,x,y,1,maxRadius,1,0); } // scan the octant covering the area from north east to east // if it isn't blocked if(neL!=1 || eL!=1) { this->scanNE2E(map,x,y,1,maxRadius,-1,0); } // scan the octant covering the area from south east to east // if it isn't blocked if(seL!=1 || eL!=1) { this->scanSE2E(map,x,y,1,maxRadius,1,0); } }}bool SIMPLEFOV::scanCell(OublietteLevel *map, int x, int y){ return map->blockLOS(x,y);}void SIMPLEFOV::applyCell(OublietteLevel *map, int x, int y){ map->updateTileFlags(QPoint(x, y), Tile::Explored);}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?