File diff r18781:e1de9a06f7cd → r18782:6453522c2154
src/company_base.h
Show inline comments
 
@@ -121,38 +121,38 @@ struct Company : CompanyPool::PoolItem<&
 

	
 
	/**
 
	 * Is this company a valid company, controlled by the computer (a NoAI program)?
 
	 * @param index Index in the pool.
 
	 * @return \c true if it is a valid, computer controlled company, else \c false.
 
	 */
 
	static FORCEINLINE bool IsValidAiID(size_t index)
 
	static inline bool IsValidAiID(size_t index)
 
	{
 
		const Company *c = Company::GetIfValid(index);
 
		return c != NULL && c->is_ai;
 
	}
 

	
 
	/**
 
	 * Is this company a valid company, not controlled by a NoAI program?
 
	 * @param index Index in the pool.
 
	 * @return \c true if it is a valid, human controlled company, else \c false.
 
	 * @note If you know that \a index refers to a valid company, you can use #IsHumanID() instead.
 
	 */
 
	static FORCEINLINE bool IsValidHumanID(size_t index)
 
	static inline bool IsValidHumanID(size_t index)
 
	{
 
		const Company *c = Company::GetIfValid(index);
 
		return c != NULL && !c->is_ai;
 
	}
 

	
 
	/**
 
	 * Is this company a company not controlled by a NoAI program?
 
	 * @param index Index in the pool.
 
	 * @return \c true if it is a human controlled company, else \c false.
 
	 * @pre \a index must be a valid CompanyID.
 
	 * @note If you don't know whether \a index refers to a valid company, you should use #IsValidHumanID() instead.
 
	 */
 
	static FORCEINLINE bool IsHumanID(size_t index)
 
	static inline bool IsHumanID(size_t index)
 
	{
 
		return !Company::Get(index)->is_ai;
 
	}
 

	
 
	static void PostDestructor(size_t index);
 
};