summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/MSVC
diff options
context:
space:
mode:
authorPete Hurst <pete@streamuniverse.tv>2013-06-23 22:27:02 +0100
committerPete Hurst <pete@streamuniverse.tv>2013-06-23 22:27:02 +0100
commit2e368e51e58b5fba36bc0b11c32ba55cc9ab05a7 (patch)
tree9b05249bf7b68af389a57d16d9b7f0ca14367215 /crawl-ref/source/MSVC
parentf77092d456dcc6a997f62dc35cc4f11fe84761c7 (diff)
downloadcrawl-ref-2e368e51e58b5fba36bc0b11c32ba55cc9ab05a7.tar.gz
crawl-ref-2e368e51e58b5fba36bc0b11c32ba55cc9ab05a7.zip
Implement a random spell picker
This works in an identical fashion to monster_picker using the same format of distribution tables.
Diffstat (limited to 'crawl-ref/source/MSVC')
-rw-r--r--crawl-ref/source/MSVC/crawl.vcxproj4
-rw-r--r--crawl-ref/source/MSVC/crawl.vcxproj.filters4
2 files changed, 6 insertions, 2 deletions
diff --git a/crawl-ref/source/MSVC/crawl.vcxproj b/crawl-ref/source/MSVC/crawl.vcxproj
index 7c1cb59f9f..12898f971d 100644
--- a/crawl-ref/source/MSVC/crawl.vcxproj
+++ b/crawl-ref/source/MSVC/crawl.vcxproj
@@ -468,6 +468,7 @@ perl.exe "util/gen-cflg.pl" compflag.h "&lt;UNKNOWN&gt;" "&lt;UNKNOWN&gt;"
<ClCompile Include="..\spl-miscast.cc" />
<ClCompile Include="..\spl-monench.cc" />
<ClCompile Include="..\spl-other.cc" />
+ <ClCompile Include="..\spl-pick.cc" />
<ClCompile Include="..\spl-selfench.cc" />
<ClCompile Include="..\spl-summoning.cc" />
<ClCompile Include="..\spl-tornado.cc" />
@@ -794,7 +795,7 @@ perl.exe "util/gen-cflg.pl" compflag.h "&lt;UNKNOWN&gt;" "&lt;UNKNOWN&gt;"
<ClInclude Include="..\process_desc.h" />
<ClInclude Include="..\props.h" />
<ClInclude Include="..\quiver.h" />
- <ClInclude Include="..\random-pick.h" />
+ <ClInclude Include="..\random-pick.h" />
<ClInclude Include="..\random-var.h" />
<ClInclude Include="..\random-weight.h" />
<ClInclude Include="..\random.h" />
@@ -825,6 +826,7 @@ perl.exe "util/gen-cflg.pl" compflag.h "&lt;UNKNOWN&gt;" "&lt;UNKNOWN&gt;"
<ClInclude Include="..\spl-miscast.h" />
<ClInclude Include="..\spl-monench.h" />
<ClInclude Include="..\spl-other.h" />
+ <ClInclude Include="..\spl-pick.h" />
<ClInclude Include="..\spl-selfench.h" />
<ClInclude Include="..\spl-summoning.h" />
<ClInclude Include="..\spl-transloc.h" />
diff --git a/crawl-ref/source/MSVC/crawl.vcxproj.filters b/crawl-ref/source/MSVC/crawl.vcxproj.filters
index c49de7a8bd..3180b40166 100644
--- a/crawl-ref/source/MSVC/crawl.vcxproj.filters
+++ b/crawl-ref/source/MSVC/crawl.vcxproj.filters
@@ -293,6 +293,7 @@
<ClCompile Include="..\dgn-irregular-box.cc" />
<ClCompile Include="..\json.cc" />
<ClCompile Include="..\mon-chimera.cc" />
+ <ClCompile Include="..\spl-pick.cc" />
</ItemGroup>
<ItemGroup>
<ClInclude Include="..\abl-show.h" />
@@ -612,6 +613,7 @@
<ClInclude Include="..\zotdef.h" />
<ClInclude Include="..\dgn-irregular-box.h" />
<ClInclude Include="..\mon-chimera.h" />
- <ClInclude Include="..\random-pick.h" />
+ <ClInclude Include="..\random-pick.h" />
+ <ClInclude Include="..\spl-pick.h" />
</ItemGroup>
</Project> \ No newline at end of file