2011-01-20 15:56:30 +00:00
|
|
|
// ==============================================================
|
|
|
|
// This file is part of Glest (www.glest.org)
|
|
|
|
//
|
2011-12-14 07:40:48 +00:00
|
|
|
// Copyright (C) 2001-2008 Martiño Figueroa
|
2011-01-20 15:56:30 +00:00
|
|
|
//
|
|
|
|
// You can redistribute this code and/or modify it under
|
|
|
|
// the terms of the GNU General Public License as published
|
|
|
|
// by the Free Software Foundation; either version 2 of the
|
|
|
|
// License, or (at your option) any later version
|
|
|
|
// ==============================================================
|
|
|
|
|
|
|
|
#ifndef _GLEST_GAME_AIINTERFACE_H_
|
|
|
|
#define _GLEST_GAME_AIINTERFACE_H_
|
|
|
|
|
|
|
|
#include "world.h"
|
|
|
|
#include "commander.h"
|
|
|
|
#include "command.h"
|
|
|
|
#include "conversion.h"
|
|
|
|
#include "ai.h"
|
|
|
|
#include "game_settings.h"
|
|
|
|
#include <map>
|
|
|
|
#include "leak_dumper.h"
|
|
|
|
|
|
|
|
using Shared::Util::intToStr;
|
|
|
|
|
|
|
|
namespace Glest{ namespace Game{
|
|
|
|
|
|
|
|
// =====================================================
|
|
|
|
// class AiInterface
|
|
|
|
//
|
|
|
|
/// The AI will interact with the game through this interface
|
|
|
|
// =====================================================
|
|
|
|
|
|
|
|
class AiInterface {
|
|
|
|
private:
|
|
|
|
World *world;
|
|
|
|
Commander *commander;
|
|
|
|
Console *console;
|
|
|
|
GameSettings *gameSettings;
|
|
|
|
|
|
|
|
Ai ai;
|
|
|
|
|
|
|
|
int timer;
|
|
|
|
int factionIndex;
|
|
|
|
int teamIndex;
|
|
|
|
|
|
|
|
//config
|
|
|
|
bool redir;
|
|
|
|
int logLevel;
|
|
|
|
std::map<const ResourceType *,int> cacheUnitHarvestResourceLookup;
|
|
|
|
|
|
|
|
public:
|
2011-01-11 22:09:46 +00:00
|
|
|
AiInterface(Game &game, int factionIndex, int teamIndex, int useStartLocation=-1);
|
2011-01-20 15:56:30 +00:00
|
|
|
~AiInterface();
|
|
|
|
|
|
|
|
//main
|
|
|
|
void update();
|
|
|
|
|
|
|
|
//get
|
|
|
|
int getTimer() const {return timer;}
|
|
|
|
int getFactionIndex() const {return factionIndex;}
|
|
|
|
|
|
|
|
//misc
|
|
|
|
void printLog(int logLevel, const string &s);
|
|
|
|
|
|
|
|
//interact
|
|
|
|
CommandResult giveCommand(int unitIndex, CommandClass commandClass, const Vec2i &pos=Vec2i(0));
|
|
|
|
CommandResult giveCommand(int unitIndex, const CommandType *commandType, const Vec2i &pos, const UnitType* unitType);
|
2011-07-05 04:37:35 +00:00
|
|
|
CommandResult giveCommand(int unitIndex, const CommandType *commandType, const Vec2i &pos, int unitGroupCommandId);
|
2011-06-20 23:51:13 +00:00
|
|
|
CommandResult giveCommand(int unitIndex, const CommandType *commandType, Unit *u= NULL);
|
2011-07-05 04:37:35 +00:00
|
|
|
CommandResult giveCommand(const Unit *unit, const CommandType *commandType, const Vec2i &pos, int unitGroupCommandId);
|
2011-01-20 15:56:30 +00:00
|
|
|
|
2011-09-21 06:51:28 +00:00
|
|
|
CommandResult giveCommandSwitchTeamVote(const Faction* faction, SwitchTeamVote *vote);
|
|
|
|
|
2011-01-20 15:56:30 +00:00
|
|
|
//get data
|
|
|
|
const ControlType getControlType();
|
|
|
|
int getMapMaxPlayers();
|
|
|
|
Vec2i getHomeLocation();
|
|
|
|
Vec2i getStartLocation(int locationIndex);
|
|
|
|
int getFactionCount();
|
|
|
|
int getMyUnitCount() const;
|
|
|
|
int getMyUpgradeCount() const;
|
|
|
|
int onSightUnitCount();
|
|
|
|
const Resource *getResource(const ResourceType *rt);
|
|
|
|
const Unit *getMyUnit(int unitIndex);
|
2011-05-01 05:36:04 +00:00
|
|
|
Unit *getMyUnitPtr(int unitIndex);
|
2011-01-20 15:56:30 +00:00
|
|
|
const Unit *getOnSightUnit(int unitIndex);
|
|
|
|
const FactionType *getMyFactionType();
|
|
|
|
Faction *getMyFaction();
|
|
|
|
const TechTree *getTechTree();
|
2011-06-25 18:14:20 +00:00
|
|
|
bool isResourceInRegion(const Vec2i &pos, const ResourceType *rt, Vec2i &resourcePos, int range) const;
|
2011-01-20 15:56:30 +00:00
|
|
|
bool isResourceNear(const Vec2i &pos, const ResourceType *rt, Vec2i &resourcePos, Faction *faction, bool fallbackToPeersHarvestingSameResource) const;
|
|
|
|
bool getNearestSightedResource(const ResourceType *rt, const Vec2i &pos, Vec2i &resultPos, bool usableResourceTypeOnly);
|
|
|
|
bool isAlly(const Unit *unit) const;
|
|
|
|
bool isAlly(int factionIndex) const;
|
|
|
|
bool reqsOk(const RequirableType *rt);
|
|
|
|
bool reqsOk(const CommandType *ct);
|
|
|
|
bool checkCosts(const ProducibleType *pt);
|
|
|
|
bool isFreeCells(const Vec2i &pos, int size, Field field);
|
2011-02-04 06:34:32 +00:00
|
|
|
const Unit *getFirstOnSightEnemyUnit(Vec2i &pos, Field &field, int radius);
|
2011-02-25 16:32:27 +00:00
|
|
|
Map * getMap();
|
2011-03-28 21:04:47 +00:00
|
|
|
World * getWorld() { return world; }
|
2011-01-20 15:56:30 +00:00
|
|
|
|
2011-04-06 15:44:33 +00:00
|
|
|
bool factionUsesResourceType(const FactionType *factionType, const ResourceType *rt);
|
|
|
|
|
2012-03-10 03:27:25 +00:00
|
|
|
void saveGame(XmlNode *rootNode) const;
|
2012-03-13 15:21:25 +00:00
|
|
|
void loadGame(const XmlNode *rootNode, Faction *faction);
|
2012-03-10 03:27:25 +00:00
|
|
|
|
2011-01-20 15:56:30 +00:00
|
|
|
private:
|
|
|
|
string getLogFilename() const {return "ai"+intToStr(factionIndex)+".log";}
|
|
|
|
bool executeCommandOverNetwork();
|
|
|
|
};
|
|
|
|
|
|
|
|
}}//end namespace
|
|
|
|
|
|
|
|
#endif
|