summaryrefslogtreecommitdiff
path: root/src/table/town_land.h
AgeCommit message (Collapse)Author
2020-12-27Codechange: Replace assert_compile macro with static_assertCharles Pigott
2019-11-10Cleanup: Removed SVN headersS. D. Cloudt
2019-01-21Add: Houses can accept up to 16 different cargo types via NewGRF.Niels Martin Hansen
New Action0 property 23 for feature 07, variable length, format B n*(B B). Initial byte is number of structures following. First byte in structure is cargo id, second is acceptance level in 1/8 units.
2013-06-01(svn r25312) -Fix-ish: missing spaces after comma + realignment of tables; ↵rubidium
quite boring with -x -w
2012-04-24(svn r24177) -Fix (r0) [FS#5148]: The arctic "shops and offices" used the ↵frosch
"church" sprite in one of its four views.
2011-10-31(svn r23072) -Feature: [NewGRF] House callback 0x148.michi_cc
2010-08-26(svn r20623) -Codechange: unify the storing of animation related informationrubidium
2010-08-07(svn r20401) -Codechange: let HouseSpec use GRFFilePropsrubidium
2010-08-01(svn r20286) -Codechange: Unify end of doxygen comments.frosch
2010-08-01(svn r20283) -Codechange: Unify start of doygen comments.frosch
2010-05-12(svn r19802) -Codechange: Replace some more magic numbers by corresponding ↵belugas
constants
2010-05-12(svn r19800) -Codechange: Replace magic number by corresponding constantbelugas
2010-01-22(svn r18888) -Codechange: Rename PALETTE_59[EF] to something more meaningful.frosch
2009-12-20(svn r18567) -Fix [FS#2613]: [NewGRF] House property 15 did not workrubidium
2009-12-04(svn r18403) -Codechange: Re-arrange header of table _original_house_specsbelugas
2009-08-21(svn r17248) -Fix: add GPL license notice where appropriaterubidium
2009-04-21(svn r16118) -Change/cleanup: remove the hexadecimal 'in TTD the string had ↵rubidium
this ID' from 'some' strings and replace the string name with something more sensible.
2009-03-15(svn r15717) -Cleanup: apply some documentation coding style upon the stuff ↵rubidium
in table/
2008-06-03(svn r13368) -Codechange: give house's min/max_date a better name, as it is ↵belugas
really year, not date
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-04-17(svn r12751) -Codechange: do what has been done in r11862 in a different way ↵rubidium
so it uses less memory.
2008-01-15(svn r11862) -Fix [FS#1559]: when two NewGRFs 'fight' to define the same ↵rubidium
cargo it could happen that the strings are defined by one cargo and the 'action2' by another and when one assumes that both come from the same NewGRF... So store the GRF ID with the strings. To be extra sure add the same protection mechanism to industries and towns too.
2007-09-14(svn r11102) -Codechange: remove some pointless addition+substractions. ↵rubidium
Patch by frosch.
2007-05-10(svn r9823) -Feature: Add support for house property 1F - minimum life span.maedhros
2007-04-16(svn r9650) -Documentation: Finalize doxygen comments for town_land.hbelugas
2007-04-16(svn r9642) -Documentation: Having a different macro name for ↵belugas
_original_house_specs (MS) than for _town_tile_data (M) might teach doxygen that we are dealing with two entities...
2007-04-13(svn r9619) -Documentation: Comments on drawing arrays of houses and industriesbelugas
2007-03-20(svn r9366) -Codechange: Unify the different houses acceptances attributes ↵belugas
on their cargo counterpart, as well as specifying cargo slot.
2007-03-19(svn r9315) -Merge: The newhouses branch. With this merge comes almost ↵maedhros
complete support for the newhouses grf specs, so all newhouses grfs will be playable in the game. Many thanks to everyone who contributed code and ideas, and all the testers who found things we missed.
2007-03-07(svn r9051) -Codechange: typedef [enum|struct] Y {} X; -> [enum|struct] X {};rubidium
2007-01-14(svn r8129) -Codechange: Change data tables to use split off palette map. And peter1138
include a file missed last time...
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.