aaiattackmanager.h

来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 64 行

H
64
字号
// -------------------------------------------------------------------------
// AAI
//
// A skirmish AI for the TA Spring engine.
// Copyright Alexander Seizinger
// 
// Released under GPL license: see LICENSE.html for more information.
// -------------------------------------------------------------------------

#pragma once

#include "aidef.h"

class AAI;
class AAIBrain;
class AAIBuildTable;
class AAIMap;
class AAIAttack;
class AAISector;


class AAIAttackManager
{
public:
	AAIAttackManager(AAI *ai, IAICallback *cb, AAIBuildTable *bt);
	~AAIAttackManager(void);

	void Update();

	void GetNextDest(AAIAttack *attack);

	void LaunchAttack(); 

	void StopAttack(AAIAttack *attack);

	void CheckAttack(AAIAttack *attack);

	// sends all groups to a rallypoint
	void RallyGroups(AAIAttack *attack);

	// true if combat groups have suffiecient attack power to face stationary defences
	bool SufficientAttackPowerVS(AAISector *dest, set<AAIGroup*> *combat_groups, float aggressiveness);

	// true if units have sufficient combat power to face mobile units in dest 
	bool SufficientCombatPowerAt(AAISector *dest, set<AAIGroup*> *combat_groups, float aggressiveness);

	// true if defences have sufficient combat power to push back mobile units in dest 
	bool SufficientDefencePowerAt(AAISector *dest, float aggressiveness);

	list<AAIAttack*> attacks;

	// array stores number of combat groups per category (for SufficientAttackPowerVS(..) )
	vector<int> available_combat_cat;


private:

	IAICallback *cb;
	AAI *ai;
	AAIBrain *brain;
	AAIBuildTable *bt;
	AAIMap *map;
};

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?