Files
@ r4381:c965d1f3016a
Branch filter:
Location: cpp/openttd-patchpack/source/pool.h - annotation
r4381:c965d1f3016a
2.0 KiB
text/x-c
(svn r6131) -Codechange : Complete all missing _ttdpatch_flags entries
-Feature : both unifiedmaglevmode are now set.
Maglev and monorail are not allowed to run on each other tracks and will not be.
Setting those flags will allow grfsets as the Norvegian one to be loaded
-Codechange : link the TTDPatch's irregularstations with OTTD's nonuniform_stations
-Codechange : Reformat the whole array (thanks Rubidium, it sure looks better now)
-Feature : both unifiedmaglevmode are now set.
Maglev and monorail are not allowed to run on each other tracks and will not be.
Setting those flags will allow grfsets as the Norvegian one to be loaded
-Codechange : link the TTDPatch's irregularstations with OTTD's nonuniform_stations
-Codechange : Reformat the whole array (thanks Rubidium, it sure looks better now)
r2186:5ee653b1b5e1 r2186:5ee653b1b5e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r3585:4dae9cd69c90 r3585:4dae9cd69c90 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r3173:acfc19891f47 r1259:71cef82739e1 r3173:acfc19891f47 r3173:acfc19891f47 r3173:acfc19891f47 r1259:71cef82739e1 r3173:acfc19891f47 r1259:71cef82739e1 r3585:4dae9cd69c90 r3585:4dae9cd69c90 r1259:71cef82739e1 r3173:acfc19891f47 r3173:acfc19891f47 r1259:71cef82739e1 r3173:acfc19891f47 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r2436:963efe8b84cc r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 r1259:71cef82739e1 | /* $Id$ */
#ifndef POOL_H
#define POOL_H
typedef struct MemoryPool MemoryPool;
/* The function that is called after a new block is added
start_item is the first item of the new made block */
typedef void MemoryPoolNewBlock(uint start_item);
/* The function that is called before a block is cleaned up */
typedef void MemoryPoolCleanBlock(uint start_item, uint end_item);
/**
* Stuff for dynamic vehicles. Use the wrappers to access the MemoryPool
* please try to avoid manual calls!
*/
struct MemoryPool {
const char name[10]; ///< Name of the pool (just for debugging)
const uint max_blocks; ///< The max amount of blocks this pool can have
const uint block_size_bits; ///< The size of each block in bits
const uint item_size; ///< How many bytes one block is
/// Pointer to a function that is called after a new block is added
MemoryPoolNewBlock *new_block_proc;
/// Pointer to a function that is called to clean a block
MemoryPoolCleanBlock *clean_block_proc;
uint current_blocks; ///< How many blocks we have in our pool
uint total_items; ///< How many items we now have in this pool
byte **blocks; ///< An array of blocks (one block hold all the items)
};
/**
* Those are the wrappers:
* CleanPool cleans the pool up, but you can use AddBlockToPool directly again
* (no need to call CreatePool!)
* AddBlockToPool adds 1 more block to the pool. Returns false if there is no
* more room
*/
void CleanPool(MemoryPool *array);
bool AddBlockToPool(MemoryPool *array);
/**
* Adds blocks to the pool if needed (and possible) till index fits inside the pool
*
* @return Returns false if adding failed
*/
bool AddBlockIfNeeded(MemoryPool *array, uint index);
static inline byte *GetItemFromPool(const MemoryPool *pool, uint index)
{
assert(index < pool->total_items);
return (pool->blocks[index >> pool->block_size_bits] + (index & ((1 << pool->block_size_bits) - 1)) * pool->item_size);
}
#endif /* POOL_H */
|