summaryrefslogtreecommitdiff
path: root/src/cmd3.cc
Commit message (Collapse)AuthorAge
* Remove redundant (void) parameters and return value castsBardur Arantsson2017-05-02
|
* Move a_info into GameEditDataBardur Arantsson2016-10-05
|
* Move k_info into GameEditDataBardur Arantsson2016-10-05
|
* Move r_info into GameEditDataBardur Arantsson2016-10-05
|
* Remove quark.{cc,hpp}Bardur Arantsson2016-09-17
|
* Refactor object_type 'inscription' field to std::stringBardur Arantsson2016-09-17
| | | | | We don't really need quarks for this since we're not nearly as memory-constrained these days.
* Remove redundant checks "around" artifact_p()Bardur Arantsson2016-09-17
| | | | Turns out artifact_p() already performs the necessary checks.
* Bump cppformat -> fmt-3.0.0Bardur Arantsson2016-09-17
|
* Move all options to a struct instead of using globalsBardur Arantsson2016-09-17
|
* Factor out 'flush_failure' option handlingBardur Arantsson2016-09-17
|
* Remove effectively dead sound() codeBardur Arantsson2016-09-17
|
* 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
|
* Remove monster memoryBardur Arantsson2016-06-20
| | | | | Instead of having monster memory, the player automatically knows everything about all monsters from the start.
* Reduce file-open/close boilerplate and simplify formattingBardur Arantsson2016-02-13
| | | | | | | - We introduce a show_string() which will allow us to go without actually writing a file if we want to later. - Use cppformat to simplify the output formatting.
* Simplify show_file function signatureBardur Arantsson2016-02-05
|
* Remove path_temp in favor of boost::fs::unique_path()Bardur Arantsson2016-02-05
| | | | This gets rid of one #ifdef WINDOWS hack at least.
* Reduce scope of askfor_aux_complete variable to single fileBardur Arantsson2015-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.
* Remove redundant parameter from Term_load_from()Bardur Arantsson2015-12-11
|
* Remove dead Portable Hole codeBardur Arantsson2015-06-11
|
* Split types.h into separate header for each typeBardur Arantsson2015-06-07
|
* Remove expand_{list,look} options; behave as if always setBardur Arantsson2015-06-07
|
* Rework object list filters to avoid global variablesBardur Arantsson2015-04-15
|
* Rename miscellaneous .h headers to .hppBardur Arantsson2015-03-22
|
* 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 monster1.cc declarations to separate headerBardur Arantsson2015-03-07
|
* Remove effectively dead squelch codeBardur 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.
* Move cmd3.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Move cave.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* 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 store.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Move squeltch.cc function declarations to new include fileBardur Arantsson2015-02-23
|
* Move gods.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Remove r_name, r_text, r_head in favor of simple stringsBardur Arantsson2015-02-23
|
* Remove auto_destroy optionBardur Arantsson2015-02-23
|
* Fix buffer overflow in askfor_aux()Bardur Arantsson2015-02-23
|
* Clean up warnings about signed/unsigned comparisonsBardur Arantsson2015-02-23
|
* Remove unused HOOK_TAKEOFFBardur Arantsson2014-12-23
|
* Update HOOK_WIELD to new-style hookBardur Arantsson2014-12-23
|
* Update HOOK_DROP to new-style hookBardur Arantsson2014-12-23
|
* Remove graphics supportBardur Arantsson2014-07-02
|
* Remove most of z-virt.[ch]Bardur Arantsson2014-06-27
| | | | | This commit leaves only safe_calloc() as a convenient "non-failing" calloc().