Age | Commit message (Collapse) | Author | |
---|---|---|---|
2021-05-08 | Codechange: introduce SpriteFile to be used by the sprite loader instead of ↵ | Rubidium | |
the global FIO slot functionality | |||
2021-02-22 | Codechange: Make the simple Malloc sprite allocator globally usable. | Michael Lutz | |
2021-02-22 | Codechange: Allow for using a sprite encoder that is not the currently ↵ | Michael Lutz | |
active blitter when loading a sprite. | |||
2020-01-26 | Feature: NewGRF callback profiling (#7868) | Niels Martin Hansen | |
Adds a console command newgrf_profile to collect some profiling data about NewGRF action 2 callbacks and produce a CSV file. | |||
2019-11-10 | Cleanup: Removed SVN headers | S. D. Cloudt | |
2019-04-10 | Codechange: Use null pointer literal instead of the NULL macro | Henry Wilson | |
2017-01-14 | (svn r27732) -Change: Turn the message about 'missing baseset sprites' from ↵ | frosch | |
a popup into a static message that only shows in non-release versions, just like the 'missing translations' message. | |||
2012-02-04 | (svn r23887) -Feature: [NewGRF] Support for container version 2. | michi_cc | |
2011-11-24 | (svn r23316) -Feature: Add ability to zoom in to 2x and 4x level. | peter1138 | |
2011-11-24 | (svn r23315) -Codechange: Only encode sprites for zoom levels that will be used. | peter1138 | |
2011-01-14 | (svn r21788) -Codechange: Enable GetRawSprite() to also load sprites not ↵ | frosch | |
using the spritecache but a custom allocator function. | |||
2011-01-14 | (svn r21782) -Codechange: Move declaration of AllocatorProc from Blitter:: ↵ | frosch | |
to spritecache.h | |||
2010-04-25 | (svn r19723) -Add: a simple sprite alignment helper. It does not store the ↵ | rubidium | |
new offsets anywhere so as soon as the sprite is reloaded the offsets are gone (use a bigger sprite cache if this happens). Also anything that reloads NewGRFs (new games, loading games or (re)applying NewGRFs) clears the sprite cache and as such resets the offsets. | |||
2010-01-17 | (svn r18846) -Codechange: Merge DrawTileSeq into DrawCommonTileSeq. | frosch | |
2009-08-21 | (svn r17248) -Fix: add GPL license notice where appropriate | rubidium | |
2009-06-26 | (svn r16671) -Doc: Documenting Sprite structure. | alberth | |
2009-06-01 | (svn r16492) -Remove: support for gcc2. It hasn't been able to compile OTTD ↵ | smatz | |
for months. All attempts to do another workaround failed. | |||
2009-05-24 | (svn r16421) -Codechange: do not unnecessarily remove constness or ↵ | rubidium | |
unnecessarily add it. | |||
2008-09-02 | (svn r14223) -Codechange: make GetSprite aware of the 4 different types of ↵ | rubidium | |
sprites: fonts, recolour, mapgen and normal sprites. | |||
2008-05-06 | (svn r12971) -Documentation: add @file in files that missed them and add ↵ | rubidium | |
something more than whitespace as description of files that don't have a description. | |||
2008-01-28 | (svn r12002) -Cleanup (r11981): Remove obsolete code to skip sprites from ↵ | peter1138 | |
indexed GRFs. | |||
2007-12-23 | (svn r11684) -Codechange: split gfx.h in a type and functional header. | rubidium | |
2007-06-14 | (svn r10157) -Fix: use as indentified for PNGs, the place of the image as it ↵ | truelight | |
was in the grf, not the internal SpriteID | |||
2007-06-12 | (svn r10109) -Fix [FS#838]: some NewGRFs use the same (unused in the ↵ | rubidium | |
"current" climate) sprite IDs. Normally this gives some artefacts, but when one NewGRF expects it to be a sprite and another NewGRF overwrites it with a non-sprite nasty things happen (drawing a non-sprite crashes OTTD). | |||
2007-06-11 | (svn r10092) -Codechange: code-seperated the spriteloader and blitter from ↵ | truelight | |
the rest of the code -Add: make it possible to pick your own blitter (-b <blitter>, -h for overview) -Add: added a new optimized 8bpp blitter (default, caches sprites of all zoom-levels) -Add: added a debug 8bpp blitter and a very slow normal 8bpp blitter | |||
2007-06-05 | (svn r10042) -Codechange: Replace hardcoded spritecache size with a ↵ | peter1138 | |
configuration option, sprite_cache_size. The default size is 2MB and the value can range from 1 to 64MB. If you experience slow-downs when scrolling the map, try increasing this setting. | |||
2007-04-04 | (svn r9556) -Documentation: doxygen and comment-style changes. 'R', 'S'.. ↵ | belugas | |
The end of the preliminary work is near | |||
2007-03-07 | (svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {}; | rubidium | |
2007-03-07 | (svn r9050) -Codechange: Foo(void) -> Foo() | rubidium | |
2007-01-10 | (svn r8038) -Merge: the cpp branch. Effort of KUDr, Celestar, glx, Smoovius, ↵ | rubidium | |
stillunknown and pv2b. | |||
2007-01-02 | (svn r7759) -Merge: makefile rewrite. This merge features: | rubidium | |
- A proper ./configure, so everything needs to be configured only once, not for every make. - Usage of makedepend when available. This greatly reduces the time needed for generating the dependencies. - A generator for all project files. There is a single file with sources, which is used to generate Makefiles and the project files for MSVC. - Proper support for OSX universal binaries. - Object files for non-MSVC compiles are also placed in separate directories, making is faster to switch between debug and release compiles and it does not touch the directory with the source files. - Functionality to make a bundle of all needed files for for example a nightly or distribution of a binary with all needed GRFs and language files. Note: as this merge moves almost all files, it is recommended to make a backup of your working copy before updating your working copy. |