summaryrefslogtreecommitdiff
path: root/src/melee2.cc
Commit message (Collapse)AuthorAge
* Fix monster spell selection caused by 'missing' TRAPS spellBardur Arantsson2016-10-16
|
* Remove unused parameter from disturb()Bardur Arantsson2016-10-08
|
* Fix indentationBardur Arantsson2016-10-05
|
* 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 f_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 'artifact name' 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.
* 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.
* Add explicit braces in a few placesBardur Arantsson2016-09-17
|
* Move all options to a struct instead of using globalsBardur Arantsson2016-09-17
|
* Factor out 'disturb_other' option handlingBardur Arantsson2016-09-17
|
* Make summons appear around summoner instead of playerBardur Arantsson2016-09-17
|
* Clean up conditional in make_attack_spell()Bardur Arantsson2016-09-17
|
* Clean up conditional in monst_spell_monst()Bardur Arantsson2016-09-17
|
* Remove lots of boilerplate for monster summoningBardur Arantsson2016-09-17
|
* Remove lots of boilerplate for monster breathsBardur Arantsson2016-09-17
|
* Remove effectively dead sound() codeBardur Arantsson2016-09-17
|
* Remove unused variable in make_attack_spell()Bardur Arantsson2016-09-17
|
* 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
|
* Rework RF{4,5,6}_* monster spell flags to flag_set<>Bardur Arantsson2016-06-20
|
* Remove ANIM_DEAD monster spellBardur Arantsson2016-06-20
| | | | | It doesn't seem like it was ever implemented fully in the first place, i.e. it was only available to Possessors and Symbiants, not monsters.
* 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.
* Convert dungeon_info_type to use new flag_setBardur Arantsson2016-03-29
|
* Fix occasional overflow when monster speaksBardur Arantsson2016-03-27
|
* Remove strfmt()Bardur 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.
* Refactor race_info_idx() to avoid "invisible" static pointersBardur Arantsson2015-12-11
|
* Use magik() instead of explicitly using rand_int()Bardur Arantsson2015-09-14
|
* Remove unused IM_MELEE flagBardur Arantsson2015-09-14
|
* 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
|
* 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.
* Move melee*.cc declaration to separate header filesBardur 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 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
|
* Move cmd1.cc function declarations to separate header fileBardur Arantsson2015-02-23
| | | | Also remove unused step_effects() function while we're at it