summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/kills.h
Commit message (Collapse)AuthorAgeFilesLines
* More formatting fixes for return (...);Neil Moore2013-11-151-2/+2
|
* Use std namespace.Raphael Langella2012-08-261-19/+16
| | | | | | | | | | | | | I had to rename distance() (in coord.h) to distance2() because it conflicts with the STL function to compare 2 iterators. Not a bad change given how it returns the square of the distance anyway. I also had to rename the message global variable (in message.cc) to buffer. I tried to fix and improve the coding style has much as I could, but I probably missed a few given how huge and tedious it is. I also didn't touch crawl-gdb.py, and the stuff in prebuilt, rltiles/tool and util/levcomp.*, because I have no clue about those.
* Remove unused special-casing of pghosts and pan lords as -1 in the killtracker.Adam Borowski2012-03-221-4/+4
|
* Hush an invalid Clang warning.Adam Borowski2011-12-211-1/+1
| | | | | | | | The C++ standard explicitely allows interchangeably referring to a class and struct by either name (C++98 7.1.5.3/3 = C++11 7.1.6.3/3). Clang instead squeals: warning: class 'monster_info' was previously declared as a struct [-Wmismatched-tags]
* Allow querying the kill tracker by monster_info instead of monster.Florian Diebold2011-11-231-0/+7
| | | | | This removes a hack I added while switching tile_place_monster to monster_info.
* Make file headers doxygen-friendly, drop useless fields.Adam Borowski2011-03-281-5/+4
| | | | | | | "File:" is shown in your editor's status bar. "Written by:" was used only for the first person who changed a file. We got git for that now, and pre-DCSS history is so woefully inaccurate it doesn't really matter.
* Massive spacing fixes: "( spaces after parentheses )".Adam Borowski2010-10-151-2/+2
| | | | | | I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
* Move apostrophization functions from kills.cc/h to libutil.cc/h.David Lawrence Ramsey2010-10-091-3/+0
|
* Make apostrophise_fixup() prototype match the actual function.David Lawrence Ramsey2010-10-091-1/+1
|
* Rename class "monsters" to "monster".Robert Vollmert2010-09-051-11/+11
|
* Get rid of more longs and all "%ld"s, new gcc + Windows + them = bad mojo.Adam Borowski2010-07-161-5/+5
|
* Bring sanity to enums by making them diffable/patchable.Adam Borowski2010-06-081-2/+2
|
* Add formatting fixes.David Lawrence Ramsey2009-11-211-4/+4
| | | | This mostly puts && and || on the proper lines, per the style guide.
* Drop obsolete CVS last-committed headers ($Author$).Adam Borowski2009-10-061-2/+0
|
* move 'Kills.h' -> 'kills.h', 'Kills.cc' -> 'kills.cc' for file naming ↵Steven Noonan2009-09-291-0/+199
consistency Signed-off-by: Steven Noonan <steven@uplinklabs.net>