summaryrefslogtreecommitdiff
path: root/src/files.cc
Commit message (Collapse)AuthorAge
* Remove trapsBardur Arantsson2016-10-05
| | | | | | Credit goes mostly to "miramor" <danlev@norwoodlight.com> who did most of the actual work. I just did a few minor tweaks and fixes + rebased onto master.
* Move t_info into GameEditDataBardur Arantsson2016-10-05
|
* Move k_info into GameEditDataBardur Arantsson2016-10-05
|
* Move f_info into GameEditDataBardur Arantsson2016-10-05
|
* Move r_info into GameEditDataBardur Arantsson2016-10-05
|
* Move wf_info into GameEditDataBardur Arantsson2016-10-05
|
* Move re_info into GameEditDataBardur Arantsson2016-10-05
|
* Change store_info_type::name to std::stringBardur Arantsson2016-10-05
|
* Move st_info into GameEditDataBardur Arantsson2016-10-05
|
* Use std::string for describe_player_location()Bardur Arantsson2016-10-05
|
* Change strings in dungeon_info_type to std::stringBardur Arantsson2016-10-05
|
* Move d_info into GameEditDataBardur Arantsson2016-10-05
|
* Move race_info and race_mod_info to GameEditDataBardur Arantsson2016-10-05
|
* Move class_info to GameEditDataBardur Arantsson2016-10-05
|
* Remove max_plevBardur Arantsson2016-10-05
|
* Move wilderness structure into GameBardur Arantsson2016-09-17
|
* Use grid<> for wilderness gridBardur Arantsson2016-09-17
|
* Move all options to a struct instead of using globalsBardur Arantsson2016-09-17
|
* Remove player_type::preserve fieldBardur Arantsson2016-09-17
| | | | | | It redundantly duplicates the value of the 'preserve' option, and since the options are saved along with the character we don't actually need it.
* Rework player_race_mod::{title,desc} to std::stringBardur Arantsson2016-09-17
|
* Unify opval/oflags in player_* structs into player_level_flagBardur 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 TR{1,2,3,4,5}_* flags to flag_set<>Bardur Arantsson2016-06-21
|
* Change player_type to non-POD typeBardur Arantsson2016-06-20
|
* Change store_type to non-POD typeBardur Arantsson2016-06-20
|
* 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 player gender, age, height, etc.Bardur Arantsson2016-03-10
|
* 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 #ifdef WINDOWS hackBardur Arantsson2016-02-05
|
* Remove '-H' command line switchBardur Arantsson2016-02-05
|
* Remove mentions of the borgBardur Arantsson2016-02-05
|
* Make get_player_race_name() return a std::stringBardur Arantsson2016-02-05
|
* Remove MACINTOSH-compatibility codeBardur Arantsson2015-12-29
|
* Add missing static_assertBardur Arantsson2015-12-28
|
* Remove get_month_name()Bardur Arantsson2015-12-28
| | | | | Use simple numbered days instead and remove START_{DAY,YEAR} since they are no longer used.
* Clean up indentationBardur Arantsson2015-12-11
|
* Remove dead codeBardur 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 ANGBAND_GRAFBardur Arantsson2015-12-11
|
* Remove ANGBAND_KEYBOARDBardur Arantsson2015-12-11
|
* 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.