revert to normal
This commit is contained in:
parent
647e9ffab3
commit
b3c7beec2b
@ -78,7 +78,7 @@ Pre-Computed Visiblity Trees on RogueBasin
|
|||||||
Adam Milazzo's FOV Method Roundup where a similar method described as 'permissive' is detailed
|
Adam Milazzo's FOV Method Roundup where a similar method described as 'permissive' is detailed
|
||||||
*/
|
*/
|
||||||
|
|
||||||
const MIN_LIT_TO_BE_VISIBLE = 0
|
const MIN_LIT_TO_BE_VISIBLE = 3
|
||||||
const MIN_WALL_LIT_TO_BE_VISIBLE = 4
|
const MIN_WALL_LIT_TO_BE_VISIBLE = 4
|
||||||
|
|
||||||
var errNotFoundCell = errors.New("Cell not found")
|
var errNotFoundCell = errors.New("Cell not found")
|
||||||
@ -264,8 +264,8 @@ func (ps *precomputedShade) ComputeFov(level *gamemap.Level, initCoords types.Co
|
|||||||
for _, cell := range ps.CellList {
|
for _, cell := range ps.CellList {
|
||||||
//fmt.Printf("\n coords: %v, distance: %f, lit: %d", cell.Coords, cell.distance, cell.lit)
|
//fmt.Printf("\n coords: %v, distance: %f, lit: %d", cell.Coords, cell.distance, cell.lit)
|
||||||
cs, err := ps.toLevelCoords(level, initCoords, cell.Coords)
|
cs, err := ps.toLevelCoords(level, initCoords, cell.Coords)
|
||||||
//if cell.lit > 0 && cell.lit > MIN_LIT_TO_BE_VISIBLE {
|
if cell.lit > 0 && cell.lit > MIN_LIT_TO_BE_VISIBLE {
|
||||||
if cell.lit > 0 && cell.lit / (ps.MaxTorchRadius - int(cell.distance - 0.4) - 1) > MIN_LIT_TO_BE_VISIBLE {
|
//if cell.lit > 0 && cell.lit / (ps.MaxTorchRadius - int(cell.distance - 0.4) - 1) > MIN_LIT_TO_BE_VISIBLE {
|
||||||
if err != nil {
|
if err != nil {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user