1
0
Fork 0

(svn r18777) -Codechange: remove some unused parameters from a function

release/1.0
rubidium 2010-01-10 23:20:11 +00:00
parent d5fa74369a
commit f51aac3523
7 changed files with 7 additions and 7 deletions

View File

@ -26,7 +26,7 @@
/**
* The callback function for Mode-classes.
*/
typedef bool (AIModeProc)(TileIndex tile, uint32 p1, uint32 p2, uint procc, CommandCost costs);
typedef bool (AIModeProc)();
/**
* The storage for each AI. It keeps track of important information.

View File

@ -15,7 +15,7 @@
#include "../../company_func.h"
#include "../ai_instance.hpp"
bool AIExecMode::ModeProc(TileIndex tile, uint32 p1, uint32 p2, uint procc, CommandCost costs)
bool AIExecMode::ModeProc()
{
/* In execution mode we only return 'true', telling the DoCommand it
* should continue with the real execution of the command. */

View File

@ -33,7 +33,7 @@ protected:
/**
* The callback proc for Execute mode.
*/
static bool ModeProc(TileIndex tile, uint32 p1, uint32 p2, uint procc, CommandCost costs);
static bool ModeProc();
public:
/**

View File

@ -222,7 +222,7 @@ bool AIObject::DoCommand(TileIndex tile, uint32 p1, uint32 p2, uint cmd, const c
}
/* Check what the callback wants us to do */
if (GetDoCommandMode() != NULL && !GetDoCommandMode()(tile, p1, p2, cmd, res)) {
if (GetDoCommandMode() != NULL && !GetDoCommandMode()()) {
IncreaseDoCommandCosts(res.GetCost());
return true;
}

View File

@ -27,7 +27,7 @@ typedef void (AISuspendCallbackProc)(class AIInstance *instance);
/**
* The callback function for Mode-classes.
*/
typedef bool (AIModeProc)(TileIndex tile, uint32 p1, uint32 p2, uint cmd, CommandCost costs);
typedef bool (AIModeProc)();
/**
* Uper-parent object of all API classes. You should never use this class in

View File

@ -15,7 +15,7 @@
#include "../../company_func.h"
#include "../ai_instance.hpp"
bool AITestMode::ModeProc(TileIndex tile, uint32 p1, uint32 p2, uint procc, CommandCost costs)
bool AITestMode::ModeProc()
{
/* In test mode we only return 'false', telling the DoCommand it
* should stop after testing the command and return with that result. */

View File

@ -35,7 +35,7 @@ protected:
/**
* The callback proc for Testing mode.
*/
static bool ModeProc(TileIndex tile, uint32 p1, uint32 p2, uint procc, CommandCost costs);
static bool ModeProc();
public:
/**