diff options
author | truelight <truelight@openttd.org> | 2006-08-22 15:33:35 +0000 |
---|---|---|
committer | truelight <truelight@openttd.org> | 2006-08-22 15:33:35 +0000 |
commit | 0461d896123b918b492a3d16439bb46b041528cd (patch) | |
tree | 618708068f10739a382af83313db9c96b4744ef5 /signs.h | |
parent | 4c2abf1de53e28a5c3c6c6920efabc4653693c4c (diff) | |
download | openttd-0461d896123b918b492a3d16439bb46b041528cd.tar.xz |
(svn r6047) -Codechange: FOR_ALL now _only_ loops valid items, and skips invalid ones
-Codechange: use IsValidXXX where ever possible
Note: both changes to prepare for new pool system, which needs those changes.
For every pool there are 2 ugly lines, which will be removed when done
implementing new pool system.
Based on FS#13 by blathijs, partly implemented.
Diffstat (limited to 'signs.h')
-rw-r--r-- | signs.h | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -20,14 +20,6 @@ typedef struct SignStruct { extern MemoryPool _sign_pool; /** - * Check if a Sign really exists. - */ -static inline bool IsValidSign(const SignStruct* ss) -{ - return ss->str != 0; -} - -/** * Get the pointer to the sign with index 'index' */ static inline SignStruct *GetSign(uint index) @@ -48,7 +40,15 @@ static inline bool IsSignIndex(uint index) return index < GetSignPoolSize(); } -#define FOR_ALL_SIGNS_FROM(ss, start) for (ss = GetSign(start); ss != NULL; ss = (ss->index + 1 < GetSignPoolSize()) ? GetSign(ss->index + 1) : NULL) +/** + * Check if a Sign really exists. + */ +static inline bool IsValidSign(const SignStruct* ss) +{ + return ss->str != STR_NULL; +} + +#define FOR_ALL_SIGNS_FROM(ss, start) for (ss = GetSign(start); ss != NULL; ss = (ss->index + 1 < GetSignPoolSize()) ? GetSign(ss->index + 1) : NULL) if (IsValidSign(ss)) #define FOR_ALL_SIGNS(ss) FOR_ALL_SIGNS_FROM(ss, 0) VARDEF bool _sign_sort_dirty; |