summaryrefslogtreecommitdiff
path: root/src/init1.cc
Commit message (Collapse)AuthorAge
* Remove unused wf_info flag handling codeBardur Arantsson2015-12-11
|
* Remove unused object_kind field "extra"Bardur Arantsson2015-12-11
|
* Remove useless V: lines from data filesBardur 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 Alchemist class and associated skills/codeBardur Arantsson2015-12-11
| | | | | | Alchemy has always been ridiculously broken and there's been a huge amount of horrible code to support it. Sorry to any fans of Alchemy, but it's got to go.
* Remove TR4_ANTIMAGIC_{30,20,10} flagsBardur Arantsson2015-09-14
| | | | | They're only used for the Antimagic realm of leveling items and we might as well use ANTIMAGIC_50 there, given the rarity of the flag.
* Remove unused IM_MELEE flagBardur Arantsson2015-09-14
|
* Split types.h into separate header for each typeBardur Arantsson2015-06-07
|
* Reduce scope of buffer for data parsing functionsBardur Arantsson2015-06-07
|
* Remove unused "include" handling for data filesBardur Arantsson2015-06-07
|
* Split struct ability_type into separate header fileBardur 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 init2.cc declarations to separate header filesBardur Arantsson2015-03-07
|
* Split init1.cc declarations into separate header fileBardur Arantsson2015-03-07
|
* Split object*.cc declarations into separate header filesBardur Arantsson2015-03-07
|
* Split files.cc declarations into separate header filesBardur 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 traps.cc function declarations to separate 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 skills.cc function declarations to skills.hppBardur Arantsson2015-02-23
|
* Move gods.cc function declarations to separate headerBardur Arantsson2015-02-23
|
* Remove f_head, f_name, f_textBardur Arantsson2015-02-23
|
* Remove ow_head, ow_nameBardur Arantsson2015-02-23
|
* Remove ba_head, ba_nameBardur Arantsson2015-02-23
|
* Remove st_head, st_nameBardur Arantsson2015-02-23
|
* Remove wf_head, wf_name, wf_textBardur Arantsson2015-02-23
|
* Remove al_head, al_nameBardur Arantsson2015-02-23
|
* Remove s_head, s_name, s_textBardur Arantsson2015-02-23
|
* Remove t_head, t_name, t_textBardur Arantsson2015-02-23
|
* Remove ra_headBardur Arantsson2015-02-23
|
* Remove set_head, set_name, set_textBardur Arantsson2015-02-23
|
* Remove rp_head, rp_name, rp_text, rmp_head, rmp_name, rmp_textBardur Arantsson2015-02-23
|
* Remove c_head, c_name, c_textBardur Arantsson2015-02-23
|
* Remove ab_head, ab_name, ab_textBardur Arantsson2015-02-23
|
* Remove d_head, d_name, d_textBardur Arantsson2015-02-23
|
* Remove re_head, re_nameBardur Arantsson2015-02-23
|
* Remove e_name, e_text, e_headBardur Arantsson2015-02-23
|
* Remove v_name, v_text, v_headBardur Arantsson2015-02-23
|
* init1.c: Add missing range check for a_info[] loadBardur Arantsson2015-02-23
|
* Replace a_head, a_name, a_text with simple char *Bardur Arantsson2015-02-23
|
* Make sure {k_ptr,r_ptr}*->text is initialized to empty stringBardur Arantsson2015-02-23
| | | | | This is simpler to make robust, so we'll opt for just doing this at initialization time.
* init1.c: strappend() takes a const second parameterBardur Arantsson2015-02-23
|
* init1.c: Use safer variant of strdup()Bardur Arantsson2015-02-23
|
* Remove k_name, k_text, k_head in favor of simple stringsBardur Arantsson2015-02-23
|
* Remove r_name, r_text, r_head in favor of simple stringsBardur Arantsson2015-02-23
|
* Remove "HARDCORE=" and "SPELL=" handling for txt filesBardur Arantsson2015-02-23
| | | | | We no longer need the distinction between HARDCORE= and SPELL= any longer, so just get rid of the prefix.