1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210
|
// Copyright Hugh Perkins 2006, 2009
// hughperkins@gmail.com http://manageddreams.com
//
// This program is free software; you can redistribute it 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.
//
// This program is distributed in the hope that it will be useful, but
// WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
// or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
// more details.
//
// You should have received a copy of the GNU General Public License along
// with this program in the file licence.txt; if not, write to the
// Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-
// 1307 USA
// You can find the licence also on the web at:
// http://www.opensource.org/licenses/gpl-license.php
//
package hughai;
import java.util.ArrayList;
import java.util.HashMap;
import com.springrts.ai.*;
import com.springrts.ai.oo.*;
import com.springrts.ai.oo.clb.*;
import hughai.basictypes.*;
import hughai.unitdata.*;
import hughai.utils.*;
// wraps giveorder, registers command in UnitCommandCache,
// carries out any statistical analysis for debugging, performance analysis
// abstract order interface somewhat
public class GiveOrderWrapper
{
CSAI csai;
OOAICallback aicallback;
LogFile logfile;
BuildTable buildTable;
TimeHelper timeHelper;
UnitCommandCache unitCommandCache;
DrawingUtils drawingUtils;
public static class CommandInfo
{
public TimeHelper.GameTimePoint datetime;
public OOPCommands.OOPCommand command;
public CommandInfo(TimeHelper.GameTimePoint datetime, OOPCommands.OOPCommand command)
{
this.datetime = datetime;
this.command = command;
}
}
int lastcommandssentresetframe = 0;
ArrayList<CommandInfo> recentcommands = new ArrayList<CommandInfo>(); // for debugging, logging
ArrayList<CommandInfo> allcommands = new ArrayList<CommandInfo>();
GiveOrderWrapper( PlayerObjects playerObjects )
{
csai = playerObjects.getCSAI();
aicallback = csai.aicallback;
logfile = playerObjects.getLogFile();
buildTable = playerObjects.getBuildTable();
timeHelper = playerObjects.getTimeHelper();
unitCommandCache = playerObjects.getUnitCommandCache();
drawingUtils = playerObjects.getDrawingUtils();
csai.registerGameListener( new GameListener() );
//csai.TickEvent += new CSAI.TickHandler(csai_TickEvent);
if (csai.DebugOn)
{
csai.RegisterVoiceCommand("dumporders", new DumpOrdersHandler() );
}
}
class GameListener extends GameAdapter {
@Override
public void Tick(int frame)
{
// if (frame - lastcommandssentresetframe >= 30)
// {
lastcommandssentresetframe = frame;
if (csai.DebugOn)
{
// DumpCommandsSentStats();
}
//}
}
}
public class DumpOrdersHandler implements VoiceCommandHandler {
public void commandReceived(String cmd, String[] split, int player)
{
logfile.WriteLine("Command history:");
synchronized (allcommands)
{
HashMap<Class<?>, Integer> CountByType = new HashMap<Class<?>, Integer>();
for (CommandInfo commandinfo : allcommands)
{
logfile.WriteLine( "" + commandinfo.datetime + ": " + commandinfo.command.toString());
if (!CountByType.containsKey(commandinfo.command.getClass()))
{
CountByType.put(commandinfo.command.getClass(), 1);
}
else
{
int previouscount = CountByType.get( commandinfo.command.getClass() );
int newcount = previouscount + 1;
CountByType.put(commandinfo.command.getClass(), newcount );
}
}
logfile.WriteLine("Command stats");
for( Class<?> thisclass : CountByType.keySet() )
//foreach (KeyValuePair<Type, int> kvp in CountByType)
{
logfile.WriteLine( "" + thisclass + ": " + CountByType.get(thisclass) );
}
}
}
}
void DumpCommandsSentStats()
{
logfile.WriteLine("recent commands:");
synchronized (recentcommands)
{
for (CommandInfo commandinfo : recentcommands)
{
logfile.WriteLine(commandinfo.datetime.toString() + ": " + commandinfo.command.toString());
}
recentcommands.clear();
}
}
public void BuildUnit(Unit builder, String targetunitname )
{
UnitDef unitdeftobuild = buildTable.getUnitDefByName( targetunitname.toLowerCase() );
GiveOrder( new OOPCommands.BuildCommand( builder, unitdeftobuild, targetunitname ) );
}
public void BuildUnit(Unit builder, String targetunitname, TerrainPos pos)
{
UnitDef targetunitdef = buildTable.getUnitDefByName( targetunitname.toLowerCase() );
drawingUtils.DrawUnit( targetunitname, pos, 0, 100,
aicallback.getSkirmishAI().getTeamId(), true, true );
GiveOrder( new OOPCommands.BuildCommand( builder, targetunitdef, pos, targetunitname ) );
}
public void MoveTo(Unit unit, TerrainPos pos)
{
// logfile.WriteLine( "MoveTo " + unit.getUnitId() + " " + unit.getDef().getHumanName() );
GiveOrder( new OOPCommands.MoveToCommand( unit, pos ) );
}
public void Guard(Unit unit, Unit unittoguard)
{
logfile.WriteLine( "giveorder.guard" + unit.getUnitId() + " " + unit.getDef().getHumanName() );
GiveOrder(new OOPCommands.GuardCommand(unit, unittoguard));
}
public void Attack(Unit unit, Unit unittoattack)
{
GiveOrder( new OOPCommands.AttackCommand( unit, new OOPCommands.UnitTarget( unittoattack ) ) );
}
public void Attack(Unit unit, TerrainPos pos)
{
GiveOrder( new OOPCommands.AttackCommand( unit, new OOPCommands.PositionTarget( pos ) ) );
}
public void SelfDestruct(Unit unit)
{
GiveOrder(new OOPCommands.SelfDestructCommand(unit));
}
public void Stop(Unit unit)
{
GiveOrder(new OOPCommands.StopCommand(unit));
}
public void Reclaim(Unit unit, TerrainPos pos, double radius)
{
GiveOrder(new OOPCommands.ReclaimCommand(unit, pos, radius));
}
void GiveOrder( OOPCommands.OOPCommand command)
{
unitCommandCache.RegisterCommand( command.UnitToReceiveOrder, command);
// logfile.WriteLine("GiveOrder " + command.toString());
synchronized (recentcommands)
{
TimeHelper.GameTimePoint gametime = timeHelper.GetGameTimePoint();
recentcommands.add( new CommandInfo( gametime, command) );
allcommands.add(new CommandInfo(gametime, command));
}
try {
command.execute();
} catch (CallbackAIException ex) {
throw new RuntimeException( "GiveOrder failed");
}
}
}
|