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
|
/* bzflag
* Copyright (c) 1993-2025 Tim Riker
*
* This package is free software; you can redistribute it and/or
* modify it under the terms of the license found in the file
* named COPYING that should have accompanied this file.
*
* THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*/
// serverSidePlayerSample.cpp : Defines the entry point for the DLL application.
//
#include "bzfsAPI.h"
#include "plugin_utils.h"
#include "playerHandler.h"
class ServerSidePlayerSample : public bz_Plugin
{
public:
virtual const char* Name ()
{
return "Server Side Player Sample";
}
virtual void Init ( const char* config );
virtual void Event ( bz_EventData * /* eventData */ );
virtual void Cleanup();
protected:
std::vector<PlayerHandler*> Bots;
};
BZ_PLUGIN(ServerSidePlayerSample)
void ServerSidePlayerSample::Init ( const char* /*commandLine*/ )
{
bz_debugMessage(4,"serverSidePlayerSample plugin loaded");
// bots need cycles
MaxWaitTime = 0.01f;
Register(bz_eTickEvent);
Register(bz_eWorldFinalized);
}
void ServerSidePlayerSample::Cleanup()
{
for (size_t i = 0; i < Bots.size(); i++)
{
bz_removeServerSidePlayer(Bots[i]->getPlayerID(), Bots[i]);
delete(Bots[i]);
Bots[i] = NULL;
}
Bots.clear();
}
void ServerSidePlayerSample::Event ( bz_EventData *eventData )
{
if (eventData->eventType == bz_eWorldFinalized)
{
int botCount = 1;
for (int i = 0; i < botCount; i++)
{
PlayerHandler *bot = new PlayerHandler();
bz_addServerSidePlayer(bot);
Bots.push_back(bot);
}
}
else if (eventData->eventType == bz_eTickEvent)
{
for (size_t i = 0; i < Bots.size(); i++)
Bots[i]->update();
}
}
// Local Variables: ***
// mode: C++ ***
// tab-width: 4 ***
// c-basic-offset: 4 ***
// indent-tabs-mode: nil ***
// End: ***
// ex: shiftwidth=4 tabstop=4
|