summaryrefslogtreecommitdiff
path: root/src/cmd2.cc
Commit message (Collapse)AuthorAge
* Move wilderness structure into GameBardur Arantsson2016-09-17
|
* Use grid<> for wilderness gridBardur Arantsson2016-09-17
|
* Remove redundant checks "around" artifact_p()Bardur Arantsson2016-09-17
| | | | Turns out artifact_p() already performs the necessary checks.
* Move all options to a struct instead of using globalsBardur Arantsson2016-09-17
|
* Factor out "confirm_stairs" option handlingBardur Arantsson2016-09-17
|
* Factor out 'flush_failure' option handlingBardur Arantsson2016-09-17
|
* Remove effectively dead sound() codeBardur Arantsson2016-09-17
|
* Rework PR{1,2}_* flags to flag_set<>Bardur Arantsson2016-06-22
| | | | | Since there's no need for two tiers we also reduce the flag set to 1 tier. (Breaks savefile compatbility.)
* Rework FF1_* flags to flags_set<>Bardur Arantsson2016-06-21
|
* Rework TR{1,2,3,4,5}_* flags to flag_set<>Bardur Arantsson2016-06-21
|
* Rework RF{1,2,3,7,8,9}_* monster flags to use flag_set<>Bardur Arantsson2016-06-20
|
* Remove redundant parens from RFn_* in expressionsBardur Arantsson2016-06-20
|
* Convert dungeon_info_type to use new flag_setBardur Arantsson2016-03-29
|
* Fix grammar/spellingBardur Arantsson2016-03-29
|
* Migrate z-rand.c to C++Bardur Arantsson2015-12-11
| | | | | - Include explicitly instead of via angband.h - Change to regular functions instead of macros.
* Refactor race_info_idx() to avoid "invisible" static pointersBardur Arantsson2015-12-11
|
* Refactor cave_type and monster_type to use non-intrusive listsBardur Arantsson2015-08-01
| | | | | We use vectors of object indexes instead of embedding the list within object_type itself.
* Split types.h into separate header for each typeBardur Arantsson2015-06-07
|
* Rework object list filters to avoid global variablesBardur Arantsson2015-04-15
|
* Rename miscellaneous .h headers to .hppBardur Arantsson2015-03-22
|
* Inline various GOD macrosBardur Arantsson2015-03-22
|
* Replace PRACE_FLAG{,2} macros with functionsBardur Arantsson2015-03-07
|
* 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 tables.cc declarations into separate header filesBardur Arantsson2015-03-07
|
* 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 object*.cc declarations into separate header filesBardur Arantsson2015-03-07
|
* Split files.cc declarations into separate header filesBardur Arantsson2015-03-07
|
* Split levels.cc declarations to separate header fileBardur Arantsson2015-03-07
|
* Split monster3.cc declarations to separate header fileBardur Arantsson2015-03-07
|
* Split monster2.cc declarations into separate headerBardur Arantsson2015-03-07
|
* 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 spells2.cc function declarations to separate header fileBardur Arantsson2015-02-23
|
* Split spells1.cc declarations to separate header fileBardur Arantsson2015-02-23
| | | | Make a couple of the functions static while we're at it
* Split traps.cc function declarations to separate fileBardur Arantsson2015-02-23
|
* Make a couple of functions staticBardur Arantsson2015-02-23
|
* Move cmd2.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Make do_cmd_tunnel_aux() staticBardur Arantsson2015-02-23
|
* Make do_cmd_unwalk() staticBardur Arantsson2015-02-23
|
* Move cmd1.cc function declarations to separate header fileBardur Arantsson2015-02-23
| | | | Also remove unused step_effects() function while we're at it
* Move cave.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Move bldg.cc declarations to separate headerBardur Arantsson2015-02-23
|
* Move show_god_info() declaration to its proper locationBardur Arantsson2015-02-23
| | | | Remove unused parameter while we're at it.
* Move xtra2.cc functions to separate headerBardur Arantsson2015-02-23
| | | | Remove some functions and make others static while we're at it.
* Move xtra1.cc function declarations to separate headerBardur Arantsson2015-02-23
| | | | | Make a couple of functions private to the module while we're at it.
* Move skills.cc function declarations to skills.hppBardur Arantsson2015-02-23
|
* Move gods.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Remove easy_{disarm,tunnel,open}Bardur Arantsson2015-02-23
| | | | | | | | We behave is if the options (in the old code) were set to their defaults, *except* for easy_disarm which is rather dangerous. Because of the dangerousness we behave as if easy_disarm==FALSE, except for picking the "obvious" choice if there is one when using the (D)isarm command.
* Remove f_head, f_name, f_textBardur Arantsson2015-02-23
|
* Remove t_head, t_name, t_textBardur Arantsson2015-02-23
|
* Remove d_head, d_name, d_textBardur Arantsson2015-02-23
|