summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/tilereg-msg.cc
Commit message (Collapse)AuthorAgeFilesLines
* Remove unnecessary includes from header files.Jay3.14152012-10-231-0/+1
| | | | | | | | | | For most header files, this only saves on having to recompile a small number of source files, but there are also a few headers where small changes would now take significantly less time. This is most obvious for the Tiles build for which the dependencies have been greatly reduced, so that the only additional includes when compared to console are strictly library or tile related.
* Use std namespace.Raphael Langella2012-08-261-1/+1
| | | | | | | | | | | | | 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.
* Drop parentheses around scalar values in "return".Adam Borowski2012-07-051-2/+2
|
* First prototype of webtiles.Florian Diebold2011-06-261-1/+1
| | | | | | Conflicts: crawl-ref/source/startup.cc
* Doxygenization and junk purging that was missed by my script.Adam Borowski2011-04-021-6/+0
|
* Merge branch 'master' into unicodeAdam Borowski2011-03-131-0/+3
|\
| * Tooltip consistency fixes.Johanna Ploog2011-01-271-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | * When using the message overlay, treat mouseclicks as relevant to the map (travel etc.) rather than the message history. That's what the tooltips are already claiming, and it's probably more important too. * Right-click on item/features out of sight has no effect, so don't pretend it does. Also, I've just realize that the mouseover descriptions don't apply for the message overlay. Not sure if that's a bug or intentional.
* | Let tiles output our UTF-8 encoded strings -- only the ISO-8859-1 subset for ↵Adam Borowski2010-09-271-3/+3
|/ | | | | | now. Word wrapping is yet to be corrected, just like in other UIs.
* Fixed regression in some tilereg files.Ixtli2010-05-161-2/+0
|
* Clean up GL code function parameters.Enne Walker2010-05-141-2/+2
| | | | | | | Remove any non-const-reference parameters. Change const pointer parameters to const reference parameters. Change all draw(NULL, NULL) calls to just draw(). Also, refactor to remove pretranslate and prescale parameters from draw calls.
* Split tilereg.h/cc into multiple files.Enne Walker2010-04-251-0/+126
No functional changes, just rearranging and exposing functions where needed.