summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ray.cc
diff options
context:
space:
mode:
authorRobert Vollmert <rvollmert@gmx.net>2009-10-31 19:04:46 +0100
committerRobert Vollmert <rvollmert@gmx.net>2009-11-01 21:45:26 +0100
commitf6cf2bbe461eb50243c279f5bc4b6efe1ab9c4da (patch)
tree61195c985d6265c87e6dd38ee2c368b1e041e036 /crawl-ref/source/ray.cc
parentc8f4dd7a1f5e3c666bc84e81248df7fba78eefeb (diff)
downloadcrawl-ref-f6cf2bbe461eb50243c279f5bc4b6efe1ab9c4da.tar.gz
crawl-ref-f6cf2bbe461eb50243c279f5bc4b6efe1ab9c4da.zip
Change ray_def bouncing interface.
For one, rename ray_def::advance_and_bounce to ray_def::bounce. Then, pass a grid of bools for adjacent cells which states which cells are considered solid (reflecting).
Diffstat (limited to 'crawl-ref/source/ray.cc')
-rw-r--r--crawl-ref/source/ray.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/crawl-ref/source/ray.cc b/crawl-ref/source/ray.cc
index 74d402c7ce..dff1d3e82a 100644
--- a/crawl-ref/source/ray.cc
+++ b/crawl-ref/source/ray.cc
@@ -66,7 +66,7 @@ bool ray_def::advance()
}
}
-void ray_def::advance_and_bounce()
+void ray_def::bounce(const reflect_grid &rg)
{
// XXX
r.dir = -r.dir;