summaryrefslogtreecommitdiff
path: root/src/spells4.cc
Commit message (Collapse)AuthorAge
* Fixed missing includeElmo Todurov2015-12-11
|
* Migrate z-rand.c to C++Bardur Arantsson2015-12-11
| | | | | - Include explicitly instead of via angband.h - Change to regular functions instead of macros.
* Move print_book() to cmd5.cc and make it staticBardur Arantsson2015-12-11
|
* Split types.h into separate header for each typeBardur Arantsson2015-06-07
|
* Rename "pval" parameter to "spell_idx" for clarityBardur Arantsson2015-04-14
|
* Limit is_spell_ok() parameter to pval instead of object_typeBardur Arantsson2015-03-22
|
* Split school_book_type out of types.hBardur Arantsson2015-03-22
| | | | | - Rename to school_book - Remove pointless spell_idx_list indirection
* Split variables.cc declarations to separate header filesBardur Arantsson2015-03-07
| | | | | - Can now remove externs.h. Yay! - Put a stray option variable into its rightful place in options.hpp
* Split option variables into separate header and source fileBardur Arantsson2015-03-07
| | | | | | | | | Remove unused testing_stack testing_carry options while we're at it.
* Split util.cc function declarations into separate header filesBardur Arantsson2015-02-23
| | | | | We need one .h file and one .hpp since some of the functions are being called from plain C code.
* Split spells6.cc declarations to separate header fileBardur Arantsson2015-02-23
|
* Split spells4.cc declarations into separate header fileBardur Arantsson2015-02-23
|
* Move cmd5.cc function declarations to separate header fileBardur Arantsson2015-02-23
| | | | | Make a few of functions static, remove dead code and fix a few stray declarations while we're at it.
* Move cave.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Move gods.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Restrict stringstream to ostringstream in spell_school_nameBardur Arantsson2015-02-23
| | | | No need for a full stringstream, just need the output portion.
* Simplify spell_type_for_each to spell_type_get_schoolsBardur Arantsson2015-02-23
|
* Remove now-unused object parameter from spellcasting functionsBardur Arantsson2015-02-23
|
* Move school_spells array to spells5.ccBardur Arantsson2015-02-23
|
* Consolide the two spell_type headersBardur Arantsson2015-02-23
|
* Move spell forward declarations from externs.h to spells3.hppBardur Arantsson2015-02-23
|
* Split spell_chance into device and book variantsBardur Arantsson2015-02-23
| | | | | The code calling spell_chance() always actually knows which kind of spell its looking at, so we might as well exploit that.
* Change get_level_school() to use direct spell_type pointer instead of indexBardur Arantsson2015-02-23
|
* Rework spell_type_description_foreach to use lambdasBardur Arantsson2014-12-23
|
* Remove spurious FIXMEsBardur Arantsson2014-12-23
|
* Remove all uses of sglibBardur Arantsson2014-12-18
|
* Simplify PR_* redraw code and remove direct references to Term membersBardur Arantsson2014-06-26
|
* Switch almost everything over to C++Bardur Arantsson2013-09-27